ChangeLog 5.4 KB

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