ChangeLog 7.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257
  1. 2005-11-18 Chris Toshok <[email protected]>
  2. * HostingEnvironmentSection.cs (.cctor): add validators.
  3. * CompilationSection.cs (.cctor): fix defaultvalue of
  4. urlLinePragmas.
  5. 2005-11-18 Chris Toshok <[email protected]>
  6. * SystemWebSectionGroup.cs: enable a whole slew of properties.
  7. * RegexWorker.cs: stub this out.
  8. * HttpCapabilitiesBase.cs: remove GetClrVersions since it's in one
  9. of the other partial files.
  10. * CompilationSection.cs: fix this up.
  11. * PagesSection.cs: fix some types and add a comment to
  12. DeserializeSection.
  13. * CompilerCollection.cs (Add): new internal method.
  14. * ProvidersHelper.cs: put the using System.Configuration.Provider
  15. inside the NET_2_0 block.
  16. * CacheSection.cs: add validators.
  17. 2005-11-14 Chris Toshok <[email protected]>
  18. * BufferModeSettings.cs: add validators/converters to the
  19. programmatic property list.
  20. * BuildProvider.cs: add validators/converters to the programmatic
  21. property list, and add an internal ctor with no args.
  22. * Compiler.cs: wrap the code i hacked from the 1.1 stuff with a
  23. #region.
  24. * BuildProviderCollection.cs (CreateNewElement): use the internal
  25. BuildProvider ctor to get around validation.
  26. * AssemblyCollection.cs: same.
  27. 2005-11-14 Chris Toshok <[email protected]>
  28. * TagPrefixCollection.cs (Remove): pass the key to BaseRemove.
  29. (set_Item (int index)): implement.
  30. * TagPrefixInfo.cs (Equals): implement.
  31. (GetHashCode): implement.
  32. * AuthorizationRuleCollection.cs (CreateNewElement(string)):
  33. implement propertly.
  34. (IndexOf): implement.
  35. (IsElementName): implement.
  36. (ElementName): implement.
  37. (Item (int index)): implement.
  38. * FormsAuthenticationUserCollection.cs (set_Item (int index)): implement.
  39. * UrlMappingCollection.cs (set_Item (int index)): implement.
  40. * OutputCacheProfileCollection.cs (set_Item (int index)): implement.
  41. * TransformerInfo.cs (Equals): implement.
  42. (GetHashCode): implement.
  43. * NamespaceInfo.cs (Equals): implement.
  44. (GetHashCode): implement.
  45. * ProfileSettingsCollection.cs (set_Item (int index)): implement.
  46. * TransformerInfoCollection.cs (set_Item (int index)): implement.
  47. * HttpHandlerActionCollection.cs (set_Item (int index)): implement.
  48. * BufferModesCollection.cs (set_Item (int index)): implement.
  49. * BuildProvider.cs: use the base[fooProp] pattern instead of
  50. instance fields.
  51. * ProfileGroupSettingsCollection.cs: implement most of this class.
  52. * RuleSettingsCollection.cs (set_Item (int index)): implement.
  53. * ClientTargetCollection.cs (set_Item (int index)): implement.
  54. * AssemblyCollection.cs (set_Item (int index)): implement.
  55. * BuildProviderCollection.cs (set_Item (int index)): reformat.
  56. * CustomError.cs (Equals): implement.
  57. (GetHashCode): implement.
  58. * ExpressionBuilderCollection.cs (set_Item (int index)): reformat.
  59. * PassportAuthentication.cs (RedirectUrl): express consternation
  60. in comment form.
  61. * NamespaceCollection.cs (set_Item (int index)): implement.
  62. * RootProfilePropertySettingsCollection.cs (SerializeElement): add
  63. comment.
  64. * ProfilePropertySettingsCollection.cs (set_Item (int index)):
  65. implement.
  66. * CustomErrorCollection.cs (set_Item (int index)): implement.
  67. * HttpModuleActionCollection.cs (set_Item (int index)): implement.
  68. * CodeSubDirectoriesCollection.cs (set_Item (int index)):
  69. implement.
  70. * CustomErrorsSection.cs (DeserializeSection): include call to
  71. base.DeserializeSection, and add MonoTODO.
  72. * EventMappingSettingsCollection.cs (set_Item (int index)):
  73. implement.
  74. * AuthorizationRule.cs (Equals): implement.
  75. (GetHashCode): implement.
  76. (SerializeElement): add comment.
  77. * TagMapCollection.cs (Remove): pass the key to BaseRemove.
  78. (set_Item (int index)): implement.
  79. * TagMapInfo.cs (Equals): implement.
  80. (GetHashCode): implement.
  81. (SerializeElement): add call to base.SerializeElement.
  82. * TrustLevelCollection.cs (Remove): pass the key to BaseRemove.
  83. (GetElementKey): implement.
  84. * SqlCacheDependencyDatabase.cs (set_Item (int index)): implement.
  85. * WebContext.cs: new implementation.
  86. 2005-11-13 Chris Toshok <[email protected]>
  87. * AnonymousIdentificationSection.cs: rework this class a bit to
  88. fit in with the rest of S.W.C. Add validators to the
  89. ConfigurationProperty ctor calls, a pattern which will need to be
  90. replicated across the entire assembly, it appears (uggggh).
  91. 2005-11-13 Chris Toshok <[email protected]>
  92. * AuthorizationRuleCollection.cs: fix ConfigurationCollection
  93. attribute.
  94. * TransformerInfo.cs: fix corcompare.
  95. * SqlCacheDependencyDatabase.cs: mark ctor internal to fix
  96. corcompare.
  97. * AuthenticationSection.cs: add missing Reset stub.
  98. * ProfileSettingsCollection.cs: use the more succint ctor.
  99. * FormsAuthenticationUser.cs: enable the TypeConverter on "name".
  100. * GlobalizationSection.cs: fix up corcompare.
  101. * WebPartsSection.cs: fix up corcompare.
  102. * ProfileGroupSettingsCollection.cs: add missing
  103. ConfigurationCollection attribute.
  104. * ExpressionBuilder.cs: implement.
  105. * FormsAuthenticationCredentials.cs: fix up corcompare.
  106. * AssemblyCollection.cs: implement Properties.
  107. * SiteMapSection.cs: implement Properties.
  108. * ExpressionBuilderCollection.cs: fix up corcompare.
  109. * ProfileSettings.cs: add missing ctor.
  110. * PassportAuthentication.cs: new implementation.
  111. * SqlCacheDependencySection.cs: fix up corcompare.
  112. * ProfilePropertySettingsCollection.cs: fix up corcompare.
  113. * HttpModuleActionCollection.cs: fix up corcompare.
  114. * EventMappingSettingsCollection.cs: fix up corcompare.
  115. * AuthorizationRule.cs: fix up corcompare.
  116. * WebControlsSection.cs: fix up corcompare.
  117. * AuthorizationSection.cs: fix up corcompare.
  118. * MembershipSection.cs: clean this up, implement Properties, fix
  119. up corcompare, etc.
  120. 2005-11-13 Chris Toshok <[email protected]>
  121. * UrlMapping.cs, CustomErrorCollection.cs, CustomError.cs,
  122. HostingEnvironmentSection.cs, TrustLevel.cs,
  123. HttpCookiesSection.cs, UrlMappingsSection.cs,
  124. UrlMappingCollection.cs, LowerCaseStringConverter.cs,
  125. RoleManagerSection.cs, ProcessModelSection.cs,
  126. TrustLevelCollection.cs, ClientTarget.cs, CustomErrorsSection.cs,
  127. MachineKeySection.cs, SessionPageStateSection.cs,
  128. SessionStateSection.cs, ProvidersHelper.cs,
  129. ClientTargetCollection.cs, SecurityPolicySection.cs,
  130. HttpCapabilitiesBase.cs, ClientTargetSection.cs: Another large
  131. swath.
  132. 2005-11-12 Chris Toshok <[email protected]>
  133. * AuthorizationRuleCollection.cs, AuthorizationRule.cs,
  134. AuthorizationSection.cs, BufferModesCollection.cs,
  135. BufferModeSettings.cs, CacheSection.cs, CompilerCollection.cs,
  136. Compiler.cs, DeploymentSection.cs,
  137. EventMappingSettingsCollection.cs, EventMappingSettings.cs,
  138. GlobalizationSection.cs, HealthMonitoringSection.cs,
  139. IdentitySection.cs, OutputCacheProfileCollection.cs,
  140. OutputCacheProfile.cs, OutputCacheSection.cs,
  141. OutputCacheSettingsSection.cs, ProfileSettingsCollection.cs,
  142. ProfileSettings.cs, RuleSettingsCollection.cs, RuleSettings.cs,
  143. SqlCacheDependencyDatabaseCollection.cs,
  144. SqlCacheDependencyDatabase.cs, SqlCacheDependencySection.cs,
  145. SystemWebCachingSectionGroup.cs, TraceSection.cs,
  146. TransformerInfoCollection.cs, TransformerInfo.cs, TrustSection.cs,
  147. WebControlsSection.cs, WebPartsPersonalizationAuthorization.cs,
  148. WebPartsPersonalization.cs, WebPartsSection.cs,
  149. XhtmlConformanceSection.cs: a whole slew of new classes. the
  150. fruits of tons of c&p and ibuprofen.
  151. 2005-11-09 Chris Toshok <[email protected]>
  152. * PagesSection.cs, AuthenticationSection.cs, BuildProvider.cs,
  153. BuildProviderCollection.cs, HttpHandlerActionCollection.cs,
  154. HttpModulesSection.cs, HttpModuleAction.cs,
  155. HttpModuleActionCollection.cs, AnonymousIdentificationSection.cs,
  156. CodeSubDirectory.cs, CodeSubDirectoriesCollection.cs,
  157. SystemWebSectionGroup.cs, SiteMapSection.cs,
  158. WebConfigurationManager.cs: flesh out the implementation.
  159. * TagMap*.cs, TagPrefix*.cs: new implementation.
  160. * FormsAuthentication*.cs: new implementation.
  161. * Profile*.cs: new implementation.
  162. * Namespace*.cs: new implementation.
  163. * HttpRuntimeSection.cs: new implementation.