ChangeLog 26 KB

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