ChangeLog 12 KB

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