ChangeLog 18 KB

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