ChangeLog 20 KB

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