ChangeLog 21 KB

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