2
0

ChangeLog 12 KB

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