ChangeLog 11 KB

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