ChangeLog 6.1 KB

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