ChangeLog 7.4 KB

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