ChangeLog 20 KB

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