ChangeLog 16 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506
  1. 2005-07-19 Eyal Alalouf <[email protected]>
  2. * WebConfigurationSettings.cs: Grasshopper doesn't support remoting and the FileSystemWatcher
  3. 2005-07-01 Lluis Sanchez Gual <[email protected]>
  4. * MembershipSection.cs: Implemented.
  5. * SiteMapSection.cs: Define properties using attributes.
  6. * AnonymousIdentificationSection.cs: Define properties using attributes.
  7. * WebConfigurationManager.cs: return the correct base path for the
  8. root path.
  9. * IRemoteWebConfigurationHostServer.cs: Fixed method signatures.
  10. * WebConfigurationHost.cs: Added the machine web.config to the web.config
  11. file chain. Several fixes in the chain order. Implemented
  12. IsDefinitionAllowed and VerifyDefinitionAllowed.
  13. * VirtualDirectoryMappingCollection.cs:
  14. * WebConfigurationFileMap.cs:
  15. * AdapterDictionary.cs:
  16. * AuthenticationSection.cs:
  17. * AssemblyCollection.cs:
  18. * AssemblyInfo.cs: Minor api fixes.
  19. 2005-06-25 Gonzalo Paniagua Javier <[email protected]>
  20. * HandlerItem.cs: the path matches 'path\z', as the previous '\Apath\z'
  21. failed for 'dir/*.ext'.
  22. 2005-06-23 Lluis Sanchez Gual <[email protected]>
  23. * VirtualDirectoryMapping.cs: Implemented.
  24. * WebConfigurationManager.cs: Initial implementation.
  25. * VirtualDirectoryMappingCollection.cs: Implemented.
  26. * WebConfigurationFileMap.cs: Implemented.
  27. * WebConfigurationHost.cs: Initial implementation of class
  28. that supports IInternalConfigHost.
  29. 2005-06-19 Ilya Kharmatsky <ilyak-at-mainsoft.com>
  30. * HttpRuntimeConfig.cs: Added TARGET_JVM directive in "using clause"
  31. in order to exclude in J2EE configuration usage of unsupported
  32. CodeDome API.
  33. 2005-06-15 Lluis Sanchez Gual <[email protected]>
  34. * CodeSubDirectory.cs:
  35. * ExpressionBuilder.cs:
  36. * AssemblyInfo.cs:
  37. * BuildProviderCollection.cs:
  38. * ExpressionBuilderCollection.cs:
  39. * CodeSubDirectoriesCollection.cs:
  40. * AnonymousIdentificationSection.cs: Track 2.0 api changes
  41. in System.Configuration.
  42. 2005-06-13 Gonzalo Paniagua Javier <[email protected]>
  43. * GlobalizationConfigurationHandler.cs: when an attribute is not
  44. provided, don't assing Encoding.Default to it, as we might override
  45. parent's settings.
  46. 2005-05-04 Gonzalo Paniagua Javier <[email protected]>
  47. * CompilationConfiguration.cs: throw if we cannot load the type given
  48. in the configuration file.
  49. 2005-04-25 Gonzalo Paniagua Javier <[email protected]>
  50. * CompilerCollection.cs: added CompareLanguages method.
  51. 2005-04-22 Gonzalo Paniagua Javier <[email protected]>
  52. * CompilationConfigurationHandler.cs: ensure TempDirectory is not empty
  53. before assigning it. Don't mangle the assembly names provided.
  54. * CompilationConfiguration.cs: use DynamicBase as the temp directory
  55. instead of Path.GetTempPath.
  56. 2005-04-20 Gonzalo Paniagua Javier <[email protected]>
  57. * ModuleItem.cs:
  58. * GlobalizationConfigurationHandler.cs:
  59. * WebConfigurationSettings.cs:
  60. * CustomErrorsConfigHandler.cs:
  61. * PagesConfigurationHandler.cs:
  62. * WebControlsSectionHandler.cs:
  63. * AuthorizationConfigHandler.cs: removed warnings.
  64. 2005-03-16 Gonzalo Paniagua Javier <[email protected]>
  65. * CompilerCollection.cs:
  66. * CompilationConfigurationHandler.cs:
  67. * Compiler.cs:
  68. * CompilationSection.cs:
  69. * CompilationConfiguration.cs: reverted last patch and/or disable code
  70. until the whole config system is migrated to 2.0. Fixes bug #73736.
  71. 2005-03-14 Gonzalo Paniagua Javier <[email protected]>
  72. * CodeSubDirectoriesCollection.cs:
  73. * ExpressionBuilderCollection.cs:
  74. * BuildProviderCollection.cs:
  75. * CompilerCollection.cs:
  76. * CompilationConfigurationHandler.cs:
  77. * ExpressionBuilder.cs:
  78. * Compiler.cs:
  79. * CompilationSection.cs:
  80. * CompilationConfiguration.cs:
  81. * CodeSubDirectory.cs: added and implemented
  82. most of these files that are used when reading configuration files in
  83. NET_2_0.
  84. * WebCompiler.cs: renamed to Compiler.cs
  85. 2004-12-15 Gonzalo Paniagua Javier <[email protected]>
  86. * WebConfigurationSettings.cs: correctly detect web.config changes.
  87. 2004-11-28 Gonzalo Paniagua Javier <[email protected]>
  88. * HandlerItem.cs: for reusable items, return the same instance always.
  89. Fixes bug #69959.
  90. 2004-11-24 Gonzalo Paniagua Javier <[email protected]>
  91. * GlobalizationConfigurationHandler.cs: fixed stupid typo (uiculture ->
  92. uiCulture). Closes bug #69524.
  93. 2004-11-18 Lluis Sanchez Gual <[email protected]>
  94. * AnonymousIdentificationSection.cs, AuthenticationSection.cs,
  95. AssemblyInfo.cs: Initialize property collection.
  96. * SiteMapSection.cs, SiteMapHierarchicalDataSourceView.cs,
  97. SiteMapDataSource.cs: New file.
  98. * SiteMapDataSourceView.cs: Minor fixes.
  99. 2004-11-15 Lluis Sanchez Gual <[email protected]>
  100. * AnonymousIdentificationSection.cs, InternalSection.cs,
  101. AuthenticationSection.cs, AssemblyCollection.cs, AssemblyInfo.cs,
  102. AdapterDictionary.cs: Implemented.
  103. * PassportAuthentication.cs, FormsAuthenticationConfiguration.cs:
  104. created classes.
  105. 2004-10-10 Gonzalo Paniagua Javier <[email protected]>
  106. * WebConfigurationSettings.cs: use CurrentExecutionFilePath instead of
  107. FilePath. Fixes bug #67982.
  108. 2004-08-22 Gonzalo Paniagua Javier <[email protected]>
  109. * WebConfigurationSettings.cs: fix bug when processing empty location
  110. tags. Closes bug #63001.
  111. 2004-08-02 Duncan Mak <[email protected]>
  112. * AuthorizationRuleAction.cs:
  113. * BuildProviderAppliesTo.cs:
  114. * CustomErrorsMode.cs:
  115. * MachineKeyValidation.cs:
  116. * PagesEnableSessionState.cs:
  117. * PagesToCountAction.cs:
  118. * ProcessModelComAuthenticationLevel.cs:
  119. * ProcessModelComImpersonationLevel.cs:
  120. * ProcessModelLogLevel.cs;
  121. * SerializationMode.cs:
  122. * TraceDisplayMode.cs: Added enumerations.
  123. * IRemoteWebConfigarationHostServer.cs: Added interface.
  124. 2004-06-23 Gonzalo Paniagua Javier <[email protected]>
  125. * AuthorizationConfig.cs: really fix bug #60482. Thanks David!
  126. 2004-06-22 Gonzalo Paniagua Javier <[email protected]>
  127. * AuthorizationConfig.cs: we must match [verb +] (role|user). Fixes bug
  128. #60482.
  129. 2004-06-15 Gonzalo Paniagua Javier <[email protected]>
  130. * WebConfigurationSettings.cs: allow empty <configSections>.
  131. 2004-06-09 Gonzalo Paniagua Javier <[email protected]>
  132. * GlobalizationConfigurationHandler.cs: if no culture given, use the
  133. default one, not the invariant.
  134. 2004-06-07 Alon Gazit <[email protected]>
  135. * HandlerFactoryConfiguration.cs: using cache to get performance
  136. improvement.
  137. 2004-06-07 Gonzalo Paniagua Javier <[email protected]>
  138. * HttpCapabilitiesBase.cs: set the useragent of the new
  139. HttpBrowserCapabilities object.
  140. 2004-06-04 Gonzalo Paniagua Javier <[email protected]>
  141. * HttpCapabilitiesBase.cs: ClientTarget takes precedence over UserAgent.
  142. 2004-06-02 Gonzalo Paniagua Javier <[email protected]>
  143. * WebConfigurationSettings.cs: when the virtual path is not /, don't
  144. loop forever trying to read configuration from /. Fixes bug #59480.
  145. 2004-05-25 Gonzalo Paniagua Javier <[email protected]>
  146. * GlobalizationConfiguration.cs: if we have no context, use
  147. GetAppConfig instead of GetConfig.
  148. 2004-05-14 Gonzalo Paniagua Javier <[email protected]>
  149. * CompilationConfiguration.cs: a null value is ok for TempDirectory.
  150. 2004-05-12 Jaroslaw Kowalski <[email protected]>
  151. * AuthenticationConfigHandler.cs: fixed slidingExpiration and requireSSL
  152. 2004-05-06 Gonzalo Paniagua Javier <[email protected]>
  153. * WebConfigurationSettings.cs: fixed loading of external files. Closes
  154. bug #57244.
  155. 2004-05-04 Gonzalo Paniagua Javier <[email protected]>
  156. * WebConfigurationSettings.cs: now it defaults to 'web.config' and if
  157. not found, 'Web.config'. Don't throw exception if both exists. Thanks
  158. to urs and dru for bugging me about this.
  159. 2004-04-22 Gonzalo Paniagua Javier <[email protected]>
  160. * WebConfigurationSettings.cs: fixed argument exception if the directory
  161. we're trying to watch does not exists.
  162. 2004-04-21 Gonzalo Paniagua Javier <[email protected]>
  163. * WebConfigurationSettings.cs: modify realpath when we reach the
  164. virtual root of the application.
  165. 2004-04-12 Nick Drochak <[email protected]>
  166. * WebConfigurationSettings.cs: Fix build. Forgot the '?'
  167. 2004-04-12 Atsushi Enomoto <[email protected]>
  168. * WebConfigurationSettings.cs : On Windows "Web.config" is "web.config".
  169. 2004-04-04 Gonzalo Paniagua Javier <[email protected]>
  170. * WebConfigurationSettings.cs: "/" is the virtual root directory of
  171. the application. This fixes a bug reported by Vlad that caused
  172. configuration error because files were read twice when there's an
  173. application different from "/" defined.
  174. 2004-03-31 Gonzalo Paniagua Javier <[email protected]>
  175. * WebConfigurationSettings.cs: fixes bug 56267.
  176. 2004-03-30 Gonzalo Paniagua Javier <[email protected]>
  177. * WebConfigurationSettings.cs: use FileSystemWatcher and really reload
  178. configuration when the file is created or modified.
  179. 2004-02-24 Gonzalo Paniagua Javier <[email protected]>
  180. * WebConfigurationSettings.cs: we were loading web.config from / always!
  181. Thanks to Lluis for noticing this.
  182. 2004-02-09 Gonzalo Paniagua Javier <[email protected]>
  183. * WebConfigurationSettings.cs: fix Web.config search for case
  184. insensitive filesystems.
  185. 2004-02-04 Lluis Sanchez Gual <[email protected]>
  186. * WebConfigurationSettings.cs: Load remoting configuration when reading
  187. the web.config file.
  188. 2004-01-23 Gonzalo Paniagua Javier <[email protected]>
  189. * AuthConfig.cs:
  190. * AuthenticationConfigHandler.cs: added RequireSSL and
  191. SlidingExpiration.
  192. * HandlerFactoryProxy.cs: not public.
  193. * HandlerItem.cs: not public.
  194. 2004-01-20 Gonzalo Paniagua Javier <[email protected]>
  195. * WebConfigurationSettings.cs: fix location path lookup. Closes bug
  196. #53072.
  197. 2004-01-12 Gonzalo Paniagua Javier <[email protected]>
  198. * System.Web.Configuration/GlobalizationConfiguration.cs: undo old fix.
  199. * System.Web.Configuration/PagesConfiguration.cs:
  200. * System.Web.Configuration/PagesConfigurationHandler.cs: new files for
  201. processing system.web/pages section.
  202. 2004-01-10 Jackson Harper <[email protected]>
  203. * TraceConfig.cs: New class contains trace configuration data.
  204. * TraceConfigurationHandler.cs: New class parses trace
  205. configurations.
  206. 2004-01-05 Jackson Harper <[email protected]>
  207. * HandlerItem.cs: Fix typo so slashes are stripped from paths properly.
  208. 2003-12-17 Gonzalo Paniagua Javier <[email protected]>
  209. * CustomErrorsConfigHandler.cs: handle <system.web><customErrors />..
  210. 2003-12-16 Gonzalo Paniagua Javier <[email protected]>
  211. * HttpCapabilitiesBase.cs: use the new loader.
  212. 2003-12-12 Gonzalo Paniagua Javier <[email protected]>
  213. * WebConfigurationSettings.cs: also cache parents when building the
  214. hierarchy up. Fixes bug #51818.
  215. 2003-12-09 Jackson Harper <[email protected]>
  216. * GlobalizationConfigurationHander.cs: Make unicode encodings case
  217. insensitive.
  218. 2003-12-08 Jackson Harper <[email protected]>
  219. * GlobalizationConfigurationHandler.cs: Handle creating some the unicode
  220. encodings here so we can create ones without BOMs.
  221. 2003-12-02 Gonzalo Paniagua Javier <[email protected]>
  222. * GlobalizationConfiguration.cs: return null when the configuration is
  223. not available.
  224. * WebConfigurationSettings.cs: handle configuration for System.Web. It
  225. replaces the default IConfigurationSystem with itself and handles
  226. web.config files oddities.
  227. 2003-11-21 Gonzalo Paniagua Javier <[email protected]>
  228. * CompilationConfiguration.cs: don't throw an HttpException.
  229. * HttpRuntimeConfig.cs:
  230. * HttpRuntimeConfigurationHandler.cs: handle system.web/httpRuntime
  231. configuration section.
  232. 2003-11-10 Jackson Harper <[email protected]>
  233. * CompilationConfigurationHandler.cs: Append .dll to shortened
  234. assembly names.
  235. 2003-11-08 Jackson Harper <[email protected]>
  236. * CompilationConfigurationHandler.cs: Trim extra versioning
  237. information off of assembly names. This is a workaround that fixes
  238. bug #50355.
  239. 2003-11-05 Gonzalo Paniagua Javier <[email protected]>
  240. * GlobalizationConfiguration.cs: added GetInstance method.
  241. * GlobalizationConfigurationHandler.cs: warn about unsupported encodings
  242. and provide reasonable defaults.
  243. 2003-10-17 Ben Maurer <[email protected]>
  244. * CompilationConfiguration.cs (Init): you have to inherit copying
  245. files from the bin folders too.
  246. 2003-10-15 Gonzalo Paniagua Javier <[email protected]>
  247. * CompilationConfiguration.cs: use the context passed in. If not, try
  248. the current context.
  249. 2003-10-14 Gonzalo Paniagua Javier <[email protected]>
  250. * CompilationConfiguration.cs:
  251. * CompilationConfigurationHandler.cs:
  252. * CompilerCollection.cs:
  253. * WebCompiler.cs: new files that process and store
  254. system.web/compilation info (compilers + assemblies).
  255. * HttpHandlersSectionHandler.cs: added option for an attribute to be
  256. empty.
  257. 2003-10-10 Gonzalo Paniagua Javier <[email protected]>
  258. * WebControlsSectionHandler.cs: new file to handle <webControls>
  259. configuration.
  260. 2003-10-01 Gonzalo Paniagua Javier <[email protected]>
  261. * HandlerItem.cs: make it work for file names without wildcards.
  262. 2003-03-03 Gonzalo Paniagua Javier <[email protected]>
  263. * ModuleItem.cs: it's not public.
  264. * ModulesConfiguration.cs: it's not public.
  265. 2003-02-27 Gonzalo Paniagua Javier <[email protected]>
  266. * AuthenticationConfigHandler.cs: 'name' is optional in <forms>.
  267. 2003-02-17 Gonzalo Paniagua Javier <[email protected]>
  268. * HandlerFactoryConfiguration.cs: first search in the mappings of this
  269. instance, then in the parent.
  270. 2003-02-13 Gonzalo Paniagua Javier <[email protected]>
  271. * GlobalizationConfiguration.cs: added internal fields to hold the
  272. values in the globalization node.
  273. * GlobalizationConfigurationHandler.cs: handler to load
  274. <system.web/globalization> section.
  275. 2003-02-12 Gonzalo Paniagua Javier <[email protected]>
  276. * AuthorizationConfigHandler.cs: handler for system.web/authorization
  277. section.
  278. * AuthorizationConfig.cs: keeps record of authorization configuration.
  279. 2003-01-04 Gonzalo Paniagua Javier <[email protected]>
  280. * HttpModulesConfigurationHandler.cs: add a default authentication
  281. module at the end of the list.
  282. * ModuleItem.cs: new constructor.
  283. 2002-12-19 Gonzalo Paniagua Javier <[email protected]>
  284. * AuthConfig.cs: LoginUrl defaults to login.aspx.
  285. 2002-12-17 Gonzalo Paniagua Javier <[email protected]>
  286. * AuthConfig.cs:
  287. * AuthenticationConfigHandler.cs: handler and helper class for
  288. system.web/authentication configuration section.
  289. * HttpHandlersSectionHandler.cs: check for null in attributes.
  290. * MachineKeyConfig.cs:
  291. * MachineKeyConfigHandler.cs: handler and helper class for
  292. system.web/machineKey tag.
  293. 2002-10-27 Gonzalo Paniagua Javier <[email protected]>
  294. * HttpHandlersSectionHandler.cs: more null checks.
  295. 2002-10-08 Gonzalo Paniagua Javier <[email protected]>
  296. * HttpHandlersSectionHandler.cs: made a couple of static methods be
  297. part of a class used in other handlers.
  298. * HttpModulesConfigurationHandler.cs: handler for modules.
  299. * ModuleItem.cs: added IsMatch method.
  300. * ModulesConfiguration.cs: made it similar to the handlers class: added Clear, Remove.
  301. 2002-10-08 Gonzalo Paniagua Javier <[email protected]>
  302. * HttpHandlerTypeMapper.cs: removed.
  303. * HandlerFactoryConfiguration.cs: readded. I removed it by mistake.
  304. * HandlerItem.cs: only load the type if we gotta validate it.
  305. Implemented initial IsMatch.
  306. * HttpConfigurationContext.cs: New file.
  307. * HttpHandlersSectionHandler.cs: validate is optional (default true).
  308. Use HttpHandlerTypeMapper.
  309. 2002-10-06 Gonzalo Paniagua Javier <[email protected]>
  310. * System.Web.Configuration/HandlerFactoryConfiguration.cs: removed.
  311. * System.Web.Configuration/HandlerItem.cs: added validation field.
  312. * System.Web.Configuration/HttpHandlerTypeMapper.cs: holds mappings
  313. between verbs and wilcards and their associated HandlerItem.
  314. * System.Web.Configuration/HttpHandlersSectionHandler.cs: this one
  315. processes system.web/httpHandlers section of machine.config file.
  316. 2002-08-26 Gonzalo Paniagua Javier <[email protected]>
  317. * AuthenticationMode.cs:
  318. * ClientTargetSectionHandler.cs:
  319. * FormsAuthPasswordFormat.cs:
  320. * FormsProtectionEnum.cs:
  321. * HttpCapabilitiesBase.cs: fixes base on class status page.
  322. 2002-08-05 Patrik Torstensson <[email protected]>
  323. * HandlerFactoryConfiguration.cs,
  324. HandlerFactoryProxy.cs,
  325. HandlerItem.cs : New files to emulate HttpHandler configuration
  326. * ModuleItem.cs,
  327. ModulesConfiguration.cs : New files to emulate HttpModule configuration
  328. 2002-06-03 Gonzalo Paniagua Javier <[email protected]>
  329. * System.Web.Configuration/HttpCapabilitiesBase.cs: New file.