ChangeLog 20 KB

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