ChangeLog 13 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397
  1. 2005-11-26 Chris Toshok <[email protected]>
  2. * AuthorizationRuleCollection.cs (GetElementKey): implement this.
  3. * ProfilePropertyNameValidator.cs: make this internal, and add a
  4. blurb about how MS doesn't do the testing you'd expect them to.
  5. 2005-11-25 Chris Toshok <[email protected]>
  6. * AuthorizationRuleCollection.cs (CreateNewElement): remove
  7. MonoTODO.
  8. * CompilationSection.cs (GetRuntimeObject): add comment to TODO.
  9. * ProfileGroupSettings.cs: reformat some things.
  10. * FormsAuthenticationUser.cs (Name): remove MonoTODO.
  11. * WebPartsSection.cs (GetRuntimeObject): change TODO comment.
  12. * ProfilePropertySettings.cs: add internal argument-less ctor.
  13. * IdentitySection.cs (GetRuntimeObject): return this.
  14. * ProfilePropertySettingsCollection.cs: implement much of the
  15. TODO's.
  16. * WebControlsSection.cs (GetRuntimeObject): implement.
  17. * SqlCacheDependencyDatabaseCollection.cs (GetElementKey):
  18. implement.
  19. (GetKey): implement.
  20. 2005-11-24 Chris Toshok <[email protected]>
  21. * AssemblyInfo.cs: move this here from System.Web.Configuration,
  22. and fix up the properties.
  23. * SystemWebSectionGroup.cs: enable most of the sections (2
  24. remaining to be enabled.)
  25. 2005-11-24 Chris Toshok <[email protected]>
  26. * ProcessModelSection.cs, SqlCacheDependencySection.cs,
  27. SessionStateSection.cs, PassportAuthentication.cs,
  28. FormsAuthenticationConfiguration.cs,
  29. SqlCacheDependencyDatabase.cs, HttpModuleAction.cs,
  30. BufferModeSettings.cs, TagPrefixInfo.cs (..cctor): init
  31. elementProperty.
  32. (ValidateElement): new static validator callback.
  33. (ElementProperty): enable this, return elementProperty.
  34. 2005-11-23 Chris Toshok <[email protected]>
  35. * ProfilePropertyNameValidator.cs: new implementation.
  36. * ProfilePropertySettings.cs, ProfileGroupSettings.cs,
  37. ClientTargetSection.cs, ClientTargetSection.cs,
  38. BufferModeSettings.cs, HttpModulesSection.cs,
  39. WebPartsPersonalization.cs, TransformerInfo.cs, TrustLevel.cs,
  40. NamespaceInfo.cs, SqlCacheDependencyDatabase.cs,
  41. AuthenticationSection.cs, RuleSettings.cs,
  42. FormsAuthenticationUser.cs, WebPartsSection.cs, BuildProvider.cs,
  43. WebPartsPersonalizationAuthorization.cs, Compiler.cs,
  44. ExpressionBuilder.cs, OutputCacheProfile.cs,
  45. FormsAuthenticationCredentials.cs, XhtmlConformanceSection.cs,
  46. OutputCacheSettingsSection.cs, CustomError.cs, TraceSection.cs,
  47. ExpressionBuilderCollection.cs, ProfileSettings.cs,
  48. SessionStateSection.cs, HealthMonitoringSection.cs,
  49. FormsAuthenticationConfiguration.cs, HttpRuntimeSection.cs,
  50. SessionPageStateSection.cs, TrustSection.cs,
  51. AnonymousIdentificationSection.cs, WebControlsSection.cs,
  52. ClientTarget.cs, TagMapInfo.cs, AuthorizationSection.cs,
  53. ProcessModelSection.cs, RoleManagerSection.cs,
  54. MembershipSection.cs, CustomErrorsSection.cs (..cctor): fix
  55. validator/converters.
  56. * MachineKeySection.cs (..cctor): fix validators/converters.
  57. (Validation): enable the Converter.
  58. * CodeSubDirectory.cs (..cctor): fix validator/converters.
  59. (DirectoryName): add note about missing validator decoration.
  60. * HttpModuleAction.cs (..cctor): init properties.
  61. (Properties): return properties.
  62. * CompilationSection.cs (..cctor): fix validator/converters.
  63. (GetInstance): add in this pre-2.0 interface for the time being,
  64. hopefully it'll make it easier to migrate later on.
  65. * HttpHandlerActionCollection.cs (..cctor): init properties.
  66. (Properties): return properties.
  67. * PagesSection.cs (..cctor): fix validator/converters.
  68. (GetInstance): add in this pre-2.0 interface for the time being,
  69. hopefully it'll make it easier to migrate later on.
  70. * HttpHandlersSection.cs (..cctor): init properties.
  71. (Properties): return properties.
  72. * EventMappingSettings.cs (..cctor): fix validator/converters.
  73. (Name): add note about missing validator decoration.
  74. * HttpHandlerAction.cs (..cctor): fix validator/converters.
  75. (PAth, Type, Verb): add note about missing validator decoration.
  76. * NamespaceCollection.cs (..cctor): fix properties.
  77. * ProfilePropertySettingsCollection.cs (..cctor): init properties.
  78. (..ctor): don't throw NIE.
  79. (Properties): return properties.
  80. * HttpModuleActionCollection.cs (..cctor): init properties.
  81. (Properties): return properties.
  82. * CacheSection.cs (..cctor): fix validators/converters.
  83. (PrivateBytesPollTime): add note about missing validator
  84. decoration.
  85. * AuthorizationRule.cs (..cctor): fix validators/converters.
  86. (Roles, Users, Verbs): enable the TypeConverter decorations.
  87. * UrlMapping.cs (ValidateUrl): static method for use as a
  88. validation callback. unimplemented as yet.
  89. (..cctor): fix validators/converters.
  90. (MappedUrl): add note about missing validator decoration.
  91. * PropertyHelper.cs: static utility class which contains
  92. references to validators and converters for use in static
  93. constructors (building the Properties arrays).
  94. 2005-11-23 Chris Toshok <[email protected]>
  95. * MachineKeyValidationConverter.cs: new converter (and a pretty
  96. silly one, considering all it seems to do is convert "TripleDES"
  97. to "3DES").
  98. * HostingEnvironmentSection.cs (.cctor): use
  99. PositiveTimeSpanValidator like MS does.
  100. 2005-11-18 Chris Toshok <[email protected]>
  101. * HostingEnvironmentSection.cs (.cctor): add validators.
  102. * CompilationSection.cs (.cctor): fix defaultvalue of
  103. urlLinePragmas.
  104. 2005-11-18 Chris Toshok <[email protected]>
  105. * SystemWebSectionGroup.cs: enable a whole slew of properties.
  106. * RegexWorker.cs: stub this out.
  107. * HttpCapabilitiesBase.cs: remove GetClrVersions since it's in one
  108. of the other partial files.
  109. * CompilationSection.cs: fix this up.
  110. * PagesSection.cs: fix some types and add a comment to
  111. DeserializeSection.
  112. * CompilerCollection.cs (Add): new internal method.
  113. * ProvidersHelper.cs: put the using System.Configuration.Provider
  114. inside the NET_2_0 block.
  115. * CacheSection.cs: add validators.
  116. 2005-11-14 Chris Toshok <[email protected]>
  117. * BufferModeSettings.cs: add validators/converters to the
  118. programmatic property list.
  119. * BuildProvider.cs: add validators/converters to the programmatic
  120. property list, and add an internal ctor with no args.
  121. * Compiler.cs: wrap the code i hacked from the 1.1 stuff with a
  122. #region.
  123. * BuildProviderCollection.cs (CreateNewElement): use the internal
  124. BuildProvider ctor to get around validation.
  125. * AssemblyCollection.cs: same.
  126. 2005-11-14 Chris Toshok <[email protected]>
  127. * TagPrefixCollection.cs (Remove): pass the key to BaseRemove.
  128. (set_Item (int index)): implement.
  129. * TagPrefixInfo.cs (Equals): implement.
  130. (GetHashCode): implement.
  131. * AuthorizationRuleCollection.cs (CreateNewElement(string)):
  132. implement propertly.
  133. (IndexOf): implement.
  134. (IsElementName): implement.
  135. (ElementName): implement.
  136. (Item (int index)): implement.
  137. * FormsAuthenticationUserCollection.cs (set_Item (int index)): implement.
  138. * UrlMappingCollection.cs (set_Item (int index)): implement.
  139. * OutputCacheProfileCollection.cs (set_Item (int index)): implement.
  140. * TransformerInfo.cs (Equals): implement.
  141. (GetHashCode): implement.
  142. * NamespaceInfo.cs (Equals): implement.
  143. (GetHashCode): implement.
  144. * ProfileSettingsCollection.cs (set_Item (int index)): implement.
  145. * TransformerInfoCollection.cs (set_Item (int index)): implement.
  146. * HttpHandlerActionCollection.cs (set_Item (int index)): implement.
  147. * BufferModesCollection.cs (set_Item (int index)): implement.
  148. * BuildProvider.cs: use the base[fooProp] pattern instead of
  149. instance fields.
  150. * ProfileGroupSettingsCollection.cs: implement most of this class.
  151. * RuleSettingsCollection.cs (set_Item (int index)): implement.
  152. * ClientTargetCollection.cs (set_Item (int index)): implement.
  153. * AssemblyCollection.cs (set_Item (int index)): implement.
  154. * BuildProviderCollection.cs (set_Item (int index)): reformat.
  155. * CustomError.cs (Equals): implement.
  156. (GetHashCode): implement.
  157. * ExpressionBuilderCollection.cs (set_Item (int index)): reformat.
  158. * PassportAuthentication.cs (RedirectUrl): express consternation
  159. in comment form.
  160. * NamespaceCollection.cs (set_Item (int index)): implement.
  161. * RootProfilePropertySettingsCollection.cs (SerializeElement): add
  162. comment.
  163. * ProfilePropertySettingsCollection.cs (set_Item (int index)):
  164. implement.
  165. * CustomErrorCollection.cs (set_Item (int index)): implement.
  166. * HttpModuleActionCollection.cs (set_Item (int index)): implement.
  167. * CodeSubDirectoriesCollection.cs (set_Item (int index)):
  168. implement.
  169. * CustomErrorsSection.cs (DeserializeSection): include call to
  170. base.DeserializeSection, and add MonoTODO.
  171. * EventMappingSettingsCollection.cs (set_Item (int index)):
  172. implement.
  173. * AuthorizationRule.cs (Equals): implement.
  174. (GetHashCode): implement.
  175. (SerializeElement): add comment.
  176. * TagMapCollection.cs (Remove): pass the key to BaseRemove.
  177. (set_Item (int index)): implement.
  178. * TagMapInfo.cs (Equals): implement.
  179. (GetHashCode): implement.
  180. (SerializeElement): add call to base.SerializeElement.
  181. * TrustLevelCollection.cs (Remove): pass the key to BaseRemove.
  182. (GetElementKey): implement.
  183. * SqlCacheDependencyDatabase.cs (set_Item (int index)): implement.
  184. * WebContext.cs: new implementation.
  185. 2005-11-13 Chris Toshok <[email protected]>
  186. * AnonymousIdentificationSection.cs: rework this class a bit to
  187. fit in with the rest of S.W.C. Add validators to the
  188. ConfigurationProperty ctor calls, a pattern which will need to be
  189. replicated across the entire assembly, it appears (uggggh).
  190. 2005-11-13 Chris Toshok <[email protected]>
  191. * AuthorizationRuleCollection.cs: fix ConfigurationCollection
  192. attribute.
  193. * TransformerInfo.cs: fix corcompare.
  194. * SqlCacheDependencyDatabase.cs: mark ctor internal to fix
  195. corcompare.
  196. * AuthenticationSection.cs: add missing Reset stub.
  197. * ProfileSettingsCollection.cs: use the more succint ctor.
  198. * FormsAuthenticationUser.cs: enable the TypeConverter on "name".
  199. * GlobalizationSection.cs: fix up corcompare.
  200. * WebPartsSection.cs: fix up corcompare.
  201. * ProfileGroupSettingsCollection.cs: add missing
  202. ConfigurationCollection attribute.
  203. * ExpressionBuilder.cs: implement.
  204. * FormsAuthenticationCredentials.cs: fix up corcompare.
  205. * AssemblyCollection.cs: implement Properties.
  206. * SiteMapSection.cs: implement Properties.
  207. * ExpressionBuilderCollection.cs: fix up corcompare.
  208. * ProfileSettings.cs: add missing ctor.
  209. * PassportAuthentication.cs: new implementation.
  210. * SqlCacheDependencySection.cs: fix up corcompare.
  211. * ProfilePropertySettingsCollection.cs: fix up corcompare.
  212. * HttpModuleActionCollection.cs: fix up corcompare.
  213. * EventMappingSettingsCollection.cs: fix up corcompare.
  214. * AuthorizationRule.cs: fix up corcompare.
  215. * WebControlsSection.cs: fix up corcompare.
  216. * AuthorizationSection.cs: fix up corcompare.
  217. * MembershipSection.cs: clean this up, implement Properties, fix
  218. up corcompare, etc.
  219. 2005-11-13 Chris Toshok <[email protected]>
  220. * UrlMapping.cs, CustomErrorCollection.cs, CustomError.cs,
  221. HostingEnvironmentSection.cs, TrustLevel.cs,
  222. HttpCookiesSection.cs, UrlMappingsSection.cs,
  223. UrlMappingCollection.cs, LowerCaseStringConverter.cs,
  224. RoleManagerSection.cs, ProcessModelSection.cs,
  225. TrustLevelCollection.cs, ClientTarget.cs, CustomErrorsSection.cs,
  226. MachineKeySection.cs, SessionPageStateSection.cs,
  227. SessionStateSection.cs, ProvidersHelper.cs,
  228. ClientTargetCollection.cs, SecurityPolicySection.cs,
  229. HttpCapabilitiesBase.cs, ClientTargetSection.cs: Another large
  230. swath.
  231. 2005-11-12 Chris Toshok <[email protected]>
  232. * AuthorizationRuleCollection.cs, AuthorizationRule.cs,
  233. AuthorizationSection.cs, BufferModesCollection.cs,
  234. BufferModeSettings.cs, CacheSection.cs, CompilerCollection.cs,
  235. Compiler.cs, DeploymentSection.cs,
  236. EventMappingSettingsCollection.cs, EventMappingSettings.cs,
  237. GlobalizationSection.cs, HealthMonitoringSection.cs,
  238. IdentitySection.cs, OutputCacheProfileCollection.cs,
  239. OutputCacheProfile.cs, OutputCacheSection.cs,
  240. OutputCacheSettingsSection.cs, ProfileSettingsCollection.cs,
  241. ProfileSettings.cs, RuleSettingsCollection.cs, RuleSettings.cs,
  242. SqlCacheDependencyDatabaseCollection.cs,
  243. SqlCacheDependencyDatabase.cs, SqlCacheDependencySection.cs,
  244. SystemWebCachingSectionGroup.cs, TraceSection.cs,
  245. TransformerInfoCollection.cs, TransformerInfo.cs, TrustSection.cs,
  246. WebControlsSection.cs, WebPartsPersonalizationAuthorization.cs,
  247. WebPartsPersonalization.cs, WebPartsSection.cs,
  248. XhtmlConformanceSection.cs: a whole slew of new classes. the
  249. fruits of tons of c&p and ibuprofen.
  250. 2005-11-09 Chris Toshok <[email protected]>
  251. * PagesSection.cs, AuthenticationSection.cs, BuildProvider.cs,
  252. BuildProviderCollection.cs, HttpHandlerActionCollection.cs,
  253. HttpModulesSection.cs, HttpModuleAction.cs,
  254. HttpModuleActionCollection.cs, AnonymousIdentificationSection.cs,
  255. CodeSubDirectory.cs, CodeSubDirectoriesCollection.cs,
  256. SystemWebSectionGroup.cs, SiteMapSection.cs,
  257. WebConfigurationManager.cs: flesh out the implementation.
  258. * TagMap*.cs, TagPrefix*.cs: new implementation.
  259. * FormsAuthentication*.cs: new implementation.
  260. * Profile*.cs: new implementation.
  261. * Namespace*.cs: new implementation.
  262. * HttpRuntimeSection.cs: new implementation.