ChangeLog 9.8 KB

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