ChangeLog 17 KB

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