ChangeLog 5.7 KB

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