ChangeLog 7.2 KB

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