ChangeLog 24 KB

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