ChangeLog 8.9 KB

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