ChangeLog 29 KB

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