ChangeLog 6.0 KB

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