ChangeLog 4.8 KB

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