ChangeLog 23 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724
  1. 2006-01-08 Konstantin Triger <[email protected]>
  2. * HttpCapabilitiesBase.cs: TARGET_JVM changes to let the compilation
  3. pass with csc 1.1.
  4. 2005-12-22 Gonzalo Paniagua Javier <[email protected]>
  5. * WebConfigurationSettings.cs: patch by Cyrille Colin that sets the
  6. right application path even when MapPath fails. Closes bug #77044.
  7. 2005-12-02 Gonzalo Paniagua Javier <[email protected]>
  8. * WebConfigurationSettings.cs: don't fail if <location> has more
  9. than one element. Fixes bug #76633.
  10. 2005-12-02 Gonzalo Paniagua Javier <[email protected]>
  11. * HttpHandlersSectionHandler.cs:
  12. * HandlerFactoryConfiguration.cs: we need to use a copy of the parent
  13. mappings, otherwise we may remove mappings from the parent. Fix a typo
  14. when removing the item from the collection. Now LocateHandler searches
  15. first for this configuration mappings and then for the parent ones.
  16. Fixes (truly) bug #76842.
  17. 2005-11-30 Gonzalo Paniagua Javier <[email protected]>
  18. * HandlerFactoryConfiguration.cs: my previous patch broke the
  19. * order in which handlers are searched. This one fixes that,
  20. * while not breaking bug 76842 again.
  21. 2005-11-30 Chris Toshok <[email protected]>
  22. * WebConfigurationSettings.cs (ReadSectionGroup): some
  23. CONFIGURATION_2_0 work.
  24. * CompilationConfigurationHandler.cs (ReadCompilers): change the
  25. NET_2_0 to CONFIGURATION_2_0.
  26. * CompilerCollection.cs: more ugly hacks for the
  27. 2.0-without-config-2.0 case. wrap this in #if !CONFIGURATION_2_0
  28. and make it public in the NET_2_0 case (so it can be used to keep
  29. the config 2.0 stuff building).
  30. * Compiler.cs: same.
  31. * CompilationConfiguration.cs (Init): change the #if NET_2_0 to
  32. #if CONFIGURATION_2_0.
  33. 2005-11-28 Gonzalo Paniagua Javier <[email protected]>
  34. * HandlerFactoryConfiguration.cs: copy the parents' mappings
  35. into the new one to allow for removing without affecting the
  36. parent configuration mappings. Fixes bug #76842.
  37. 2005-11-24 Chris Toshok <[email protected]>
  38. * AssemblyInfo.cs: nuke this, it's in System.Web.Configuration_2.0
  39. now.
  40. 2005-11-19 Chris Toshok <[email protected]>
  41. * CompilationConfigurationHandler.cs (ReadCompilers): call
  42. CompilerCollection.Add in the 2.0 case, as it doesn't expose a
  43. setter indexer.
  44. * CompilationConfiguration.cs: need this to keep things compiling,
  45. even though CompilationConfiguration doesn't need to be used in
  46. the 2.0 case.
  47. 2005-11-19 Chris Toshok <[email protected]>
  48. * Compiler.cs: wrap in #if !NET_2_0 and remove a lot of stubs that
  49. now exist in System.Web.Configuration_2.0.
  50. 2005-11-18 Chris Toshok <[email protected]>
  51. * CompilerCollection.cs: wrap in #if !NET_2_0, and remove a lot of
  52. stubs that now exist in System.Web.Configuration_2.0.
  53. 2005-10-31 Chris Toshok <[email protected]>
  54. * IRemoteWebConfigurationHostServer.cs: fix interface.
  55. 2005-10-29 Atsushi Enomoto <[email protected]>
  56. * GlobalizationConfigurationHandler.cs : we don't use ICU.
  57. 2005-10-24 Gonzalo Paniagua Javier <[email protected]>
  58. * HandlerFactoryConfiguration.cs: when using regex matching, pass the
  59. original full virtual path, not just the file name. The regex matches
  60. the end of the path. Fixes bug #76536.
  61. 2005-10-08 Gert Driesen <[email protected]>
  62. * WebConfigurationHost.cs: Added stubs for missing implementation
  63. of IInternalConfigHost to fix build for 2.0 profile.
  64. 2005-10-05 Gonzalo Paniagua Javier <[email protected]>
  65. * ClientTargetSectionHandler.cs: New file.
  66. 2005-09-23 Chris Toshok <[email protected]>
  67. * ExpressionBuilderCollection.cs: track change to
  68. System.Configuration.ConfigurationPropertyOptions.
  69. 2005-09-23 Gonzalo Paniagua Javier <[email protected]>
  70. * PagesConfiguration.cs: on error return a default instance instead
  71. of null.
  72. 2005-09-22 Chris Toshok <[email protected]>
  73. * PositiveTimeSpanValidator.cs: move this from
  74. System.Configuration to here.
  75. 2005-09-15 Sebastien Pouliot <[email protected]>
  76. * CompilationConfiguration.cs: Return an empty configuration object if
  77. no HttpContext is available. This is required for the unit tests and
  78. match the results of MS 1.1 and 2.0 (beta2).
  79. 2005-08-24 Sebastien Pouliot <[email protected]>
  80. * AdapterDictionary.cs: Added missing IDeserializationCallback.
  81. * AuthorizationRuleAction.cs: Fixed enum values.
  82. * BuildProvider.cs: Class is sealed. Removed empty constructor.
  83. * BuildProviderCollection.cs: Adapted to BuildProvider ctor changes.
  84. * CodeSubDirectory.cs: Added missing constructor.
  85. * CodeSubDirectoriesCollection.cs: Adapted to
  86. CodeSubDirectoriesCollection ctor changes.
  87. * CustomErrorsMode.cs: Fixed enum values.
  88. * FormsAuthenticationConfiguration.cs: Class is sealed.
  89. * HttpCapabilitiesBase.cs: Added security permissions with Minimal
  90. level for AspNetHostingPermission (both Link and Inheritance demands).
  91. * ProcessModelComAuthenticationLevel.cs: Fixed enum values.
  92. * ProcessModelComImpersonationLevel.cs: Fixed enum values.
  93. * ProcessModelLogLevel.cs: Fixed enum values.
  94. * WebApplicationLevel.cs: New enum for 2.0.
  95. 2005-08-31 Gonzalo Paniagua Javier <[email protected]>
  96. * ModulesConfiguration.cs: LoadModules creates a HttpModuleCollection,
  97. initializes the module instances and fills in the collection.
  98. 2005-08-30 Gonzalo Paniagua Javier <[email protected]>
  99. * ModulesConfiguration.cs: add Clone (ugly).
  100. 2005-08-30 Miguel de Icaza <[email protected]>
  101. * HttpCapabilitiesBase.cs: Make partial to pull the implementation
  102. from another class.
  103. 2005-08-29 Gonzalo Paniagua Javier <[email protected]>
  104. * HandlerFactoryConfiguration.cs: fix path matching so that
  105. /xxx/WebResource.axd works. If we're going to match using a regexp,
  106. generate it in the constructor, not on every request.
  107. 2005-08-25 Chris Toshok <[email protected]>
  108. * HandlerFactoryConfiguration.cs: implement the slow path for
  109. PathMatches using Regex. Also, make the fast path for exact
  110. matches faster (and more correct).
  111. 2005-08-25 Chris Toshok <[email protected]>
  112. * HandlerFactoryConfiguration.cs: chain up to the parent
  113. Configuration if we don't have a match, instead of adding the
  114. parent's handlers to our list (and thereby overriding ours).
  115. 2005-08-24 Sebastien Pouliot <[email protected]>
  116. * AuthConfig.cs: Add new 2.0 stuff (required for Forms Authentication).
  117. 2005-08-23 Gonzalo Paniagua Javier <[email protected]>
  118. * MachineKeyConfig.cs: we don't honor IsolateApp.
  119. 2005-07-28 Gonzalo Paniagua Javier <[email protected]>
  120. * MachineKeyConfigHandler.cs:
  121. * MachineKeyConfig.cs: removed unused property. The CryptoGod has spoken
  122. and told me to use RandomNumberGenerator.Create to let the
  123. implementation choose the generator.
  124. 2005-07-25 Eyal Alalouf <[email protected]>
  125. * WebConfigurationSettings.cs: Fixed LoadFromFile to find web.config
  126. under TARGET_J2EE (case sensitivity).
  127. 2005-07-25 Eyal Alalouf <[email protected]>
  128. * WebConfigurationSettings.cs: TARGET_J2EE ifdef reorder for
  129. readability.
  130. 2005-07-25 Gonzalo Paniagua Javier <[email protected]>
  131. * MachineKeyConfigHandler.cs: removed unused code. Use
  132. MachineKeyValidation.
  133. * MachineKeyValidation.cs: made internal for 1.1 and added AES.
  134. * MachineKeyConfig.cs: new property to return 24 bits needed for 3DES.
  135. fix typo from last patch ('AutoGenerate'). Made the keys different when
  136. both are autogenerated.
  137. 2005-07-24 Gonzalo Paniagua Javier <[email protected]>
  138. * MachineKeyConfigHandler.cs:
  139. * MachineKeyConfig.cs: patch from Miguel that moves code from
  140. MachineKeyConfigHandler to MachineKeyConfig.
  141. 2005-07-24 Eyal Alalouf <[email protected]>
  142. * WebConfigurationSettings.cs: TARGET_J2EE changes. static variables in
  143. AppDomain.
  144. 2005-07-19 Eyal Alalouf <[email protected]>
  145. * WebConfigurationSettings.cs: Grasshopper doesn't support remoting and the FileSystemWatcher
  146. 2005-07-01 Lluis Sanchez Gual <[email protected]>
  147. * MembershipSection.cs: Implemented.
  148. * SiteMapSection.cs: Define properties using attributes.
  149. * AnonymousIdentificationSection.cs: Define properties using attributes.
  150. * WebConfigurationManager.cs: return the correct base path for the
  151. root path.
  152. * IRemoteWebConfigurationHostServer.cs: Fixed method signatures.
  153. * WebConfigurationHost.cs: Added the machine web.config to the web.config
  154. file chain. Several fixes in the chain order. Implemented
  155. IsDefinitionAllowed and VerifyDefinitionAllowed.
  156. * VirtualDirectoryMappingCollection.cs:
  157. * WebConfigurationFileMap.cs:
  158. * AdapterDictionary.cs:
  159. * AuthenticationSection.cs:
  160. * AssemblyCollection.cs:
  161. * AssemblyInfo.cs: Minor api fixes.
  162. 2005-06-25 Gonzalo Paniagua Javier <[email protected]>
  163. * HandlerItem.cs: the path matches 'path\z', as the previous '\Apath\z'
  164. failed for 'dir/*.ext'.
  165. 2005-06-23 Lluis Sanchez Gual <[email protected]>
  166. * VirtualDirectoryMapping.cs: Implemented.
  167. * WebConfigurationManager.cs: Initial implementation.
  168. * VirtualDirectoryMappingCollection.cs: Implemented.
  169. * WebConfigurationFileMap.cs: Implemented.
  170. * WebConfigurationHost.cs: Initial implementation of class
  171. that supports IInternalConfigHost.
  172. 2005-06-19 Ilya Kharmatsky <ilyak-at-mainsoft.com>
  173. * HttpRuntimeConfig.cs: Added TARGET_JVM directive in "using clause"
  174. in order to exclude in J2EE configuration usage of unsupported
  175. CodeDome API.
  176. 2005-06-15 Lluis Sanchez Gual <[email protected]>
  177. * CodeSubDirectory.cs:
  178. * ExpressionBuilder.cs:
  179. * AssemblyInfo.cs:
  180. * BuildProviderCollection.cs:
  181. * ExpressionBuilderCollection.cs:
  182. * CodeSubDirectoriesCollection.cs:
  183. * AnonymousIdentificationSection.cs: Track 2.0 api changes
  184. in System.Configuration.
  185. 2005-06-13 Gonzalo Paniagua Javier <[email protected]>
  186. * GlobalizationConfigurationHandler.cs: when an attribute is not
  187. provided, don't assing Encoding.Default to it, as we might override
  188. parent's settings.
  189. 2005-05-04 Gonzalo Paniagua Javier <[email protected]>
  190. * CompilationConfiguration.cs: throw if we cannot load the type given
  191. in the configuration file.
  192. 2005-04-25 Gonzalo Paniagua Javier <[email protected]>
  193. * CompilerCollection.cs: added CompareLanguages method.
  194. 2005-04-22 Gonzalo Paniagua Javier <[email protected]>
  195. * CompilationConfigurationHandler.cs: ensure TempDirectory is not empty
  196. before assigning it. Don't mangle the assembly names provided.
  197. * CompilationConfiguration.cs: use DynamicBase as the temp directory
  198. instead of Path.GetTempPath.
  199. 2005-04-20 Gonzalo Paniagua Javier <[email protected]>
  200. * ModuleItem.cs:
  201. * GlobalizationConfigurationHandler.cs:
  202. * WebConfigurationSettings.cs:
  203. * CustomErrorsConfigHandler.cs:
  204. * PagesConfigurationHandler.cs:
  205. * WebControlsSectionHandler.cs:
  206. * AuthorizationConfigHandler.cs: removed warnings.
  207. 2005-03-16 Gonzalo Paniagua Javier <[email protected]>
  208. * CompilerCollection.cs:
  209. * CompilationConfigurationHandler.cs:
  210. * Compiler.cs:
  211. * CompilationSection.cs:
  212. * CompilationConfiguration.cs: reverted last patch and/or disable code
  213. until the whole config system is migrated to 2.0. Fixes bug #73736.
  214. 2005-03-14 Gonzalo Paniagua Javier <[email protected]>
  215. * CodeSubDirectoriesCollection.cs:
  216. * ExpressionBuilderCollection.cs:
  217. * BuildProviderCollection.cs:
  218. * CompilerCollection.cs:
  219. * CompilationConfigurationHandler.cs:
  220. * ExpressionBuilder.cs:
  221. * Compiler.cs:
  222. * CompilationSection.cs:
  223. * CompilationConfiguration.cs:
  224. * CodeSubDirectory.cs: added and implemented
  225. most of these files that are used when reading configuration files in
  226. NET_2_0.
  227. * WebCompiler.cs: renamed to Compiler.cs
  228. 2004-12-15 Gonzalo Paniagua Javier <[email protected]>
  229. * WebConfigurationSettings.cs: correctly detect web.config changes.
  230. 2004-11-28 Gonzalo Paniagua Javier <[email protected]>
  231. * HandlerItem.cs: for reusable items, return the same instance always.
  232. Fixes bug #69959.
  233. 2004-11-24 Gonzalo Paniagua Javier <[email protected]>
  234. * GlobalizationConfigurationHandler.cs: fixed stupid typo (uiculture ->
  235. uiCulture). Closes bug #69524.
  236. 2004-11-18 Lluis Sanchez Gual <[email protected]>
  237. * AnonymousIdentificationSection.cs, AuthenticationSection.cs,
  238. AssemblyInfo.cs: Initialize property collection.
  239. * SiteMapSection.cs, SiteMapHierarchicalDataSourceView.cs,
  240. SiteMapDataSource.cs: New file.
  241. * SiteMapDataSourceView.cs: Minor fixes.
  242. 2004-11-15 Lluis Sanchez Gual <[email protected]>
  243. * AnonymousIdentificationSection.cs, InternalSection.cs,
  244. AuthenticationSection.cs, AssemblyCollection.cs, AssemblyInfo.cs,
  245. AdapterDictionary.cs: Implemented.
  246. * PassportAuthentication.cs, FormsAuthenticationConfiguration.cs:
  247. created classes.
  248. 2004-10-10 Gonzalo Paniagua Javier <[email protected]>
  249. * WebConfigurationSettings.cs: use CurrentExecutionFilePath instead of
  250. FilePath. Fixes bug #67982.
  251. 2004-08-22 Gonzalo Paniagua Javier <[email protected]>
  252. * WebConfigurationSettings.cs: fix bug when processing empty location
  253. tags. Closes bug #63001.
  254. 2004-08-02 Duncan Mak <[email protected]>
  255. * AuthorizationRuleAction.cs:
  256. * BuildProviderAppliesTo.cs:
  257. * CustomErrorsMode.cs:
  258. * MachineKeyValidation.cs:
  259. * PagesEnableSessionState.cs:
  260. * PagesToCountAction.cs:
  261. * ProcessModelComAuthenticationLevel.cs:
  262. * ProcessModelComImpersonationLevel.cs:
  263. * ProcessModelLogLevel.cs;
  264. * SerializationMode.cs:
  265. * TraceDisplayMode.cs: Added enumerations.
  266. * IRemoteWebConfigarationHostServer.cs: Added interface.
  267. 2004-06-23 Gonzalo Paniagua Javier <[email protected]>
  268. * AuthorizationConfig.cs: really fix bug #60482. Thanks David!
  269. 2004-06-22 Gonzalo Paniagua Javier <[email protected]>
  270. * AuthorizationConfig.cs: we must match [verb +] (role|user). Fixes bug
  271. #60482.
  272. 2004-06-15 Gonzalo Paniagua Javier <[email protected]>
  273. * WebConfigurationSettings.cs: allow empty <configSections>.
  274. 2004-06-09 Gonzalo Paniagua Javier <[email protected]>
  275. * GlobalizationConfigurationHandler.cs: if no culture given, use the
  276. default one, not the invariant.
  277. 2004-06-07 Alon Gazit <[email protected]>
  278. * HandlerFactoryConfiguration.cs: using cache to get performance
  279. improvement.
  280. 2004-06-07 Gonzalo Paniagua Javier <[email protected]>
  281. * HttpCapabilitiesBase.cs: set the useragent of the new
  282. HttpBrowserCapabilities object.
  283. 2004-06-04 Gonzalo Paniagua Javier <[email protected]>
  284. * HttpCapabilitiesBase.cs: ClientTarget takes precedence over UserAgent.
  285. 2004-06-02 Gonzalo Paniagua Javier <[email protected]>
  286. * WebConfigurationSettings.cs: when the virtual path is not /, don't
  287. loop forever trying to read configuration from /. Fixes bug #59480.
  288. 2004-05-25 Gonzalo Paniagua Javier <[email protected]>
  289. * GlobalizationConfiguration.cs: if we have no context, use
  290. GetAppConfig instead of GetConfig.
  291. 2004-05-14 Gonzalo Paniagua Javier <[email protected]>
  292. * CompilationConfiguration.cs: a null value is ok for TempDirectory.
  293. 2004-05-12 Jaroslaw Kowalski <[email protected]>
  294. * AuthenticationConfigHandler.cs: fixed slidingExpiration and requireSSL
  295. 2004-05-06 Gonzalo Paniagua Javier <[email protected]>
  296. * WebConfigurationSettings.cs: fixed loading of external files. Closes
  297. bug #57244.
  298. 2004-05-04 Gonzalo Paniagua Javier <[email protected]>
  299. * WebConfigurationSettings.cs: now it defaults to 'web.config' and if
  300. not found, 'Web.config'. Don't throw exception if both exists. Thanks
  301. to urs and dru for bugging me about this.
  302. 2004-04-22 Gonzalo Paniagua Javier <[email protected]>
  303. * WebConfigurationSettings.cs: fixed argument exception if the directory
  304. we're trying to watch does not exists.
  305. 2004-04-21 Gonzalo Paniagua Javier <[email protected]>
  306. * WebConfigurationSettings.cs: modify realpath when we reach the
  307. virtual root of the application.
  308. 2004-04-12 Nick Drochak <[email protected]>
  309. * WebConfigurationSettings.cs: Fix build. Forgot the '?'
  310. 2004-04-12 Atsushi Enomoto <[email protected]>
  311. * WebConfigurationSettings.cs : On Windows "Web.config" is "web.config".
  312. 2004-04-04 Gonzalo Paniagua Javier <[email protected]>
  313. * WebConfigurationSettings.cs: "/" is the virtual root directory of
  314. the application. This fixes a bug reported by Vlad that caused
  315. configuration error because files were read twice when there's an
  316. application different from "/" defined.
  317. 2004-03-31 Gonzalo Paniagua Javier <[email protected]>
  318. * WebConfigurationSettings.cs: fixes bug 56267.
  319. 2004-03-30 Gonzalo Paniagua Javier <[email protected]>
  320. * WebConfigurationSettings.cs: use FileSystemWatcher and really reload
  321. configuration when the file is created or modified.
  322. 2004-02-24 Gonzalo Paniagua Javier <[email protected]>
  323. * WebConfigurationSettings.cs: we were loading web.config from / always!
  324. Thanks to Lluis for noticing this.
  325. 2004-02-09 Gonzalo Paniagua Javier <[email protected]>
  326. * WebConfigurationSettings.cs: fix Web.config search for case
  327. insensitive filesystems.
  328. 2004-02-04 Lluis Sanchez Gual <[email protected]>
  329. * WebConfigurationSettings.cs: Load remoting configuration when reading
  330. the web.config file.
  331. 2004-01-23 Gonzalo Paniagua Javier <[email protected]>
  332. * AuthConfig.cs:
  333. * AuthenticationConfigHandler.cs: added RequireSSL and
  334. SlidingExpiration.
  335. * HandlerFactoryProxy.cs: not public.
  336. * HandlerItem.cs: not public.
  337. 2004-01-20 Gonzalo Paniagua Javier <[email protected]>
  338. * WebConfigurationSettings.cs: fix location path lookup. Closes bug
  339. #53072.
  340. 2004-01-12 Gonzalo Paniagua Javier <[email protected]>
  341. * System.Web.Configuration/GlobalizationConfiguration.cs: undo old fix.
  342. * System.Web.Configuration/PagesConfiguration.cs:
  343. * System.Web.Configuration/PagesConfigurationHandler.cs: new files for
  344. processing system.web/pages section.
  345. 2004-01-10 Jackson Harper <[email protected]>
  346. * TraceConfig.cs: New class contains trace configuration data.
  347. * TraceConfigurationHandler.cs: New class parses trace
  348. configurations.
  349. 2004-01-05 Jackson Harper <[email protected]>
  350. * HandlerItem.cs: Fix typo so slashes are stripped from paths properly.
  351. 2003-12-17 Gonzalo Paniagua Javier <[email protected]>
  352. * CustomErrorsConfigHandler.cs: handle <system.web><customErrors />..
  353. 2003-12-16 Gonzalo Paniagua Javier <[email protected]>
  354. * HttpCapabilitiesBase.cs: use the new loader.
  355. 2003-12-12 Gonzalo Paniagua Javier <[email protected]>
  356. * WebConfigurationSettings.cs: also cache parents when building the
  357. hierarchy up. Fixes bug #51818.
  358. 2003-12-09 Jackson Harper <[email protected]>
  359. * GlobalizationConfigurationHander.cs: Make unicode encodings case
  360. insensitive.
  361. 2003-12-08 Jackson Harper <[email protected]>
  362. * GlobalizationConfigurationHandler.cs: Handle creating some the unicode
  363. encodings here so we can create ones without BOMs.
  364. 2003-12-02 Gonzalo Paniagua Javier <[email protected]>
  365. * GlobalizationConfiguration.cs: return null when the configuration is
  366. not available.
  367. * WebConfigurationSettings.cs: handle configuration for System.Web. It
  368. replaces the default IConfigurationSystem with itself and handles
  369. web.config files oddities.
  370. 2003-11-21 Gonzalo Paniagua Javier <[email protected]>
  371. * CompilationConfiguration.cs: don't throw an HttpException.
  372. * HttpRuntimeConfig.cs:
  373. * HttpRuntimeConfigurationHandler.cs: handle system.web/httpRuntime
  374. configuration section.
  375. 2003-11-10 Jackson Harper <[email protected]>
  376. * CompilationConfigurationHandler.cs: Append .dll to shortened
  377. assembly names.
  378. 2003-11-08 Jackson Harper <[email protected]>
  379. * CompilationConfigurationHandler.cs: Trim extra versioning
  380. information off of assembly names. This is a workaround that fixes
  381. bug #50355.
  382. 2003-11-05 Gonzalo Paniagua Javier <[email protected]>
  383. * GlobalizationConfiguration.cs: added GetInstance method.
  384. * GlobalizationConfigurationHandler.cs: warn about unsupported encodings
  385. and provide reasonable defaults.
  386. 2003-10-17 Ben Maurer <[email protected]>
  387. * CompilationConfiguration.cs (Init): you have to inherit copying
  388. files from the bin folders too.
  389. 2003-10-15 Gonzalo Paniagua Javier <[email protected]>
  390. * CompilationConfiguration.cs: use the context passed in. If not, try
  391. the current context.
  392. 2003-10-14 Gonzalo Paniagua Javier <[email protected]>
  393. * CompilationConfiguration.cs:
  394. * CompilationConfigurationHandler.cs:
  395. * CompilerCollection.cs:
  396. * WebCompiler.cs: new files that process and store
  397. system.web/compilation info (compilers + assemblies).
  398. * HttpHandlersSectionHandler.cs: added option for an attribute to be
  399. empty.
  400. 2003-10-10 Gonzalo Paniagua Javier <[email protected]>
  401. * WebControlsSectionHandler.cs: new file to handle <webControls>
  402. configuration.
  403. 2003-10-01 Gonzalo Paniagua Javier <[email protected]>
  404. * HandlerItem.cs: make it work for file names without wildcards.
  405. 2003-03-03 Gonzalo Paniagua Javier <[email protected]>
  406. * ModuleItem.cs: it's not public.
  407. * ModulesConfiguration.cs: it's not public.
  408. 2003-02-27 Gonzalo Paniagua Javier <[email protected]>
  409. * AuthenticationConfigHandler.cs: 'name' is optional in <forms>.
  410. 2003-02-17 Gonzalo Paniagua Javier <[email protected]>
  411. * HandlerFactoryConfiguration.cs: first search in the mappings of this
  412. instance, then in the parent.
  413. 2003-02-13 Gonzalo Paniagua Javier <[email protected]>
  414. * GlobalizationConfiguration.cs: added internal fields to hold the
  415. values in the globalization node.
  416. * GlobalizationConfigurationHandler.cs: handler to load
  417. <system.web/globalization> section.
  418. 2003-02-12 Gonzalo Paniagua Javier <[email protected]>
  419. * AuthorizationConfigHandler.cs: handler for system.web/authorization
  420. section.
  421. * AuthorizationConfig.cs: keeps record of authorization configuration.
  422. 2003-01-04 Gonzalo Paniagua Javier <[email protected]>
  423. * HttpModulesConfigurationHandler.cs: add a default authentication
  424. module at the end of the list.
  425. * ModuleItem.cs: new constructor.
  426. 2002-12-19 Gonzalo Paniagua Javier <[email protected]>
  427. * AuthConfig.cs: LoginUrl defaults to login.aspx.
  428. 2002-12-17 Gonzalo Paniagua Javier <[email protected]>
  429. * AuthConfig.cs:
  430. * AuthenticationConfigHandler.cs: handler and helper class for
  431. system.web/authentication configuration section.
  432. * HttpHandlersSectionHandler.cs: check for null in attributes.
  433. * MachineKeyConfig.cs:
  434. * MachineKeyConfigHandler.cs: handler and helper class for
  435. system.web/machineKey tag.
  436. 2002-10-27 Gonzalo Paniagua Javier <[email protected]>
  437. * HttpHandlersSectionHandler.cs: more null checks.
  438. 2002-10-08 Gonzalo Paniagua Javier <[email protected]>
  439. * HttpHandlersSectionHandler.cs: made a couple of static methods be
  440. part of a class used in other handlers.
  441. * HttpModulesConfigurationHandler.cs: handler for modules.
  442. * ModuleItem.cs: added IsMatch method.
  443. * ModulesConfiguration.cs: made it similar to the handlers class: added Clear, Remove.
  444. 2002-10-08 Gonzalo Paniagua Javier <[email protected]>
  445. * HttpHandlerTypeMapper.cs: removed.
  446. * HandlerFactoryConfiguration.cs: readded. I removed it by mistake.
  447. * HandlerItem.cs: only load the type if we gotta validate it.
  448. Implemented initial IsMatch.
  449. * HttpConfigurationContext.cs: New file.
  450. * HttpHandlersSectionHandler.cs: validate is optional (default true).
  451. Use HttpHandlerTypeMapper.
  452. 2002-10-06 Gonzalo Paniagua Javier <[email protected]>
  453. * System.Web.Configuration/HandlerFactoryConfiguration.cs: removed.
  454. * System.Web.Configuration/HandlerItem.cs: added validation field.
  455. * System.Web.Configuration/HttpHandlerTypeMapper.cs: holds mappings
  456. between verbs and wilcards and their associated HandlerItem.
  457. * System.Web.Configuration/HttpHandlersSectionHandler.cs: this one
  458. processes system.web/httpHandlers section of machine.config file.
  459. 2002-08-26 Gonzalo Paniagua Javier <[email protected]>
  460. * AuthenticationMode.cs:
  461. * ClientTargetSectionHandler.cs:
  462. * FormsAuthPasswordFormat.cs:
  463. * FormsProtectionEnum.cs:
  464. * HttpCapabilitiesBase.cs: fixes base on class status page.
  465. 2002-08-05 Patrik Torstensson <[email protected]>
  466. * HandlerFactoryConfiguration.cs,
  467. HandlerFactoryProxy.cs,
  468. HandlerItem.cs : New files to emulate HttpHandler configuration
  469. * ModuleItem.cs,
  470. ModulesConfiguration.cs : New files to emulate HttpModule configuration
  471. 2002-06-03 Gonzalo Paniagua Javier <[email protected]>
  472. * System.Web.Configuration/HttpCapabilitiesBase.cs: New file.