ChangeLog 19 KB

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