ChangeLog 25 KB

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