ChangeLog 24 KB

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