ChangeLog 7.5 KB

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