ChangeLog 6.4 KB

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