ChangeLog 22 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677
  1. 2006-01-10 Chris Toshok <[email protected]>
  2. * SystemWebSectionGroup.cs (HostingEnvironment): enable this property.
  3. (ProcessModel): add the ConfigurationPropertyAttribute.
  4. 2006-01-10 Chris Toshok <[email protected]>
  5. * PagesSection.cs (.cctor): fix the default value for the
  6. enableSessionState attribute - it's not a bool, but a
  7. PagesEnableSessionState enum.
  8. 2006-01-10 Chris Toshok <[email protected]>
  9. * MachineKeySection.cs (ValidationKeyBytes, DecryptionKeyBytes,
  10. DecryptionKey192Bits): if the keys are null, generate them. Fixes
  11. Page.EnableViewStateMac support.
  12. 2006-01-09 Chris Toshok <[email protected]>
  13. * RoleManagerSection.cs, SqlCacheDepencendySection.cs,
  14. SessionStateSection.cs, TraceSection.cs, SecurityPolicySection.cs,
  15. PagesSection.cs, RulesSettings.cs, UrlMappingSection.cs: fix
  16. dumper output.
  17. 2006-01-09 Chris Toshok <[email protected]>
  18. * ExpressionBuilderCollection.cs (.cctor): no need to create a
  19. collection property here. we're already in the collection.
  20. * CompilationSection.cs: fix typo.
  21. 2006-01-04 Chris Toshok <[email protected]>
  22. * MachineKeySection.cs: bring over some more internal methods from
  23. MachineKeyConfig, and call Set{Decryption,Validation}Key from
  24. their respective property setters.
  25. 2006-01-03 Chris Toshok <[email protected]>
  26. * AuthorizationSection.cs (IsValidUser): add analogous method from
  27. AuthorizationConfig.cs.
  28. * AuthorizationRule.cs: add predicates for Verb, User, and Role
  29. analogous to what existed in AuthorizationConfig.cs.
  30. 2005-12-11 Chris Toshok <[email protected]>
  31. * WebConfigurationManager.cs (OpenMachineConfiguration): just call
  32. ConfigurationManager.OpenMachineConfiguration.
  33. (OpenWebConfiguration): remove the "IntPtr userToken" version and
  34. add a "string userName" version to clean up corcompare output.
  35. Modify all the overloads to pass null instead of IntPtr.Zero.
  36. (GetWebApplicationSection): if we're not running in a web
  37. application, use the machine configuration.
  38. 2005-12-06 Chris Toshok <[email protected]>
  39. * CodeSubDirectory.cs (DirectoryName): don't use an private field,
  40. but base[directoyNameProp].
  41. * AuthorizationRuleCollection.cs (Add): use BaseAdd (rule, false),
  42. so we can insert duplicates.
  43. (GetKey): nuke.
  44. (GetElementKey): MS for some reason just uses the action for the
  45. key, ToString()'ed.
  46. (Remove): pass the correct key.
  47. * ProfileGroupSettings.cs (GetHashCode): implement.
  48. * GlobalizationSection.cs (GetEncoding): for the utf-8 case, just
  49. use Encoding.UTF8.
  50. * AssemblyCollection.cs (Add): use BaseAdd (info, false) so we can
  51. insert duplicates.
  52. * CacheSection.cs (.cctor): make privateByteLimit's default 0L so
  53. we don't get a invalid cast exception later on.
  54. * AuthorizationRule.cs (VerifyData): split out the verification
  55. foo from PreSerialize.
  56. (PostDeserialize): so we can call it from here.
  57. (PreSerialize): and here.
  58. 2005-12-05 Chris Toshok <[email protected]>
  59. * AuthorizationRuleCollection.cs (GetKey): split out the logic for
  60. creating a key from a rule here.
  61. (GetElementKey): use it here.
  62. (Remove): and here.
  63. 2005-12-04 Chris Toshok <[email protected]>
  64. * UrlMapping.cs: add an internal argument-less ctor.
  65. * UrlMappingCollection.cs (CreateNewElement): use argument-less
  66. ctor.
  67. (GetKey): implement.
  68. (AllKeys): implement.
  69. * TrustLevel.cs: add an internal argument-less ctor.
  70. * TrustLevelCollection.cs (Set): implement.
  71. (CreateNewElement): use argument-less ctor.
  72. (IsElementName): implement.
  73. (ElementName): implement.
  74. (set_Item (int index)): use Set.
  75. (ThrowOnDuplicate): implement.
  76. * TagPrefixInfo.cs: add internal argument-less ctor.
  77. * TagPrefixCollection.cs (CreateNewElement): call argument-less
  78. ctor.
  79. (CollectionType): add text to TODO.
  80. (ElementName): implement.
  81. * SqlCacheDependencyDatabaseCollection.cs (Set): implement.
  82. (AllKeys): implement.
  83. * RuleSettings.cs: add internal argument-less ctor.
  84. * RuleSettingsCollection.cs (Contains): implement.
  85. (CreateNewElement): use argument-less ctor.
  86. (IndexOf): implement.
  87. (Insert): implement.
  88. * RootProfilePropertySettingsCollection.cs (IsModified): chain up
  89. to base.IsModified for now.
  90. (Reset): chain up to base.Reset for now.
  91. (ResetModified): chain up to base.ResetModified for now.
  92. * ProfileSettings.cs: add internal argument-less ctor.
  93. * ProfileSettingsCollection.cs (Contains): implement.
  94. (CreateNewElement): use argument-less ctor.
  95. (IndexOf): implement.
  96. (Insert): implement.
  97. * ProfilePropertySettingsCollection.cs (IndexOf): implement.
  98. (Set): implement.
  99. (AllKeys): implement.
  100. * ProfileGroupSettings.cs: add internal argument-less ctor.
  101. * ProfileGroupSettingsCollection.cs (CreateNewElement): use
  102. parameter-less ctor.
  103. (GetKey): implement.
  104. (ResetModified): for now call base.ResetModified.
  105. (Set): implement.
  106. (AllKeys): implement.
  107. * OutputCacheProfile.cs: add internal argument-less ctor.
  108. * OutputCacheProfileCollection.cs (CreateNewElement): use
  109. parameter-less ctor.
  110. (Set): implement.
  111. (AllKeys): implement.
  112. * HttpModuleActionCollection.cs (Add): remove MonoTODO.
  113. (CreateNewElement): same.
  114. * HttpHandlerActionCollection.cs (GetElementKey): build up the key
  115. from both the path and the verb.
  116. (Remove): same.
  117. * FormsAuthenticationUserCollection.cs (Set): implement.
  118. (AllKeys): implement.
  119. * EventMappingSettings.cs: add an internal argument-less ctor.
  120. * EventMappingSettingsCollection.cs (Contains): implement.
  121. (CreateNewElement): use argument-less ctor.
  122. (IndexOf): implement.
  123. (Insert): implement.
  124. * CompilerCollection.cs (GetKey): implement.
  125. (AllKeys): implement.
  126. * ClientTargetCollection.cs (GetKey): implement.
  127. (AllKeys): implement.
  128. * AuthorizationRuleCollection.cs (Set): implement.
  129. (ElementName): add some text to the MonoTODO.
  130. (set_Item (int index)): use Set.
  131. 2005-12-04 Chris Toshok <[email protected]>
  132. * CustomError.cs: add an internal argument-less ctor for use by
  133. the collection.
  134. * CustomErrorCollection.cs: implement all the MonoTODO's.
  135. 2005-12-02 Chris Toshok <[email protected]>
  136. * GlobalizationSection.cs (VerifyData): split out the stuff that
  137. used to live in PreSerialize here.
  138. (PreSerialize): call VerifyData here.
  139. (PostDeserialize): and here.
  140. 2005-12-01 Chris Toshok <[email protected]>
  141. * GlobalizationSection.cs (PreSerialize): add checks for Culture
  142. and UICulture properties.
  143. 2005-12-01 Chris Toshok <[email protected]>
  144. * AuthorizationRule.cs (..ctor): provide default values for
  145. roles/users/verbs here. Not sure if we should do this in the ctor
  146. or if the System.Configuration infrastructure should.. time will
  147. tell.
  148. (PreSerialize): throw if Roles.Count and Users.Count == 0.
  149. (SerializeElement): write out the element here. don't chain up to
  150. the base class since that has differing behavior than what we
  151. want.
  152. 2005-11-30 Chris Toshok <[email protected]>
  153. * CompilerCollection.cs: ugly hack to fix the
  154. 2.0-without-config-2.0 case. wrap this file in #if
  155. CONFIGURATION_2_0 as well as #if NET_2_0.
  156. * Compiler.cs: same.
  157. 2005-11-28 Chris Toshok <[email protected]>
  158. * SessionStateSection.cs (CookieLess): correct the compat function
  159. implementation.
  160. 2005-11-28 Chris Toshok <[email protected]>
  161. * GlobalizationSection.cs (GetEncoding): if the encoding name is
  162. null, default to utf-8 before we hit the try block, so we don't
  163. throw and generate a spurious warning.
  164. * SessionStateSection.cs: The Cookieless handling needs a custom
  165. parser, it appears, as the converter is a StringConverter, not a
  166. GenericEnumConverter.
  167. (ParseCookieMode): the parser.
  168. 2005-11-28 Chris Toshok <[email protected]>
  169. * PagesSection.cs (GetInstance): nuke.
  170. * CompilationSection.cs (GetInstance): nuke.
  171. 2005-11-28 Chris Toshok <[email protected]>
  172. * HttpHandlerAction.cs: add some c&p code from the 1.1 config
  173. stuff to look for matching handlers.
  174. (..ctor): add parameterless ctor.
  175. * HttpHandlerActionCollection.cs: clean up formatting.
  176. (CreateNewElement): call the parameter-less ctor for
  177. HttpHandlerAction.
  178. * HttpHandlersSection.cs (..ctor): add a ConfigurationProperty for
  179. the default collection.
  180. (get_Handlers): implement.
  181. (LocateHandler): copy over (and massage) some 1.1 config code.
  182. * MachineKeySection.cs: move some code over from the 1.1 config
  183. code to deal with autogeneration of keys, as well as converting
  184. from the string rep to the byte[] rep.
  185. 2005-11-28 Chris Toshok <[email protected]>
  186. * HttpModuleActionCollection.cs (CreateNewElement): use the new
  187. HttpModuleAction ctor.
  188. * HttpModuleAction.cs: add internal ctor with no parameters, for
  189. use in HttpModuleActionCollection.
  190. 2005-11-28 Chris Toshok <[email protected]>
  191. * GlobalizationSection.cs (..cctor): the encoding
  192. ConfigurationProperties are of type "string", even though the
  193. properties themselves are of type Encoding. we do conversions
  194. manually in the setter/getters. gross. Add code (mostly c&p +
  195. massaged from GlobalizationConfigurationHandler) for this and also
  196. to handle the culture gettes.
  197. 2005-11-26 Chris Toshok <[email protected]>
  198. * AuthorizationRuleCollection.cs (GetElementKey): implement this.
  199. * ProfilePropertyNameValidator.cs: make this internal, and add a
  200. blurb about how MS doesn't do the testing you'd expect them to.
  201. 2005-11-25 Chris Toshok <[email protected]>
  202. * AuthorizationRuleCollection.cs (CreateNewElement): remove
  203. MonoTODO.
  204. * CompilationSection.cs (GetRuntimeObject): add comment to TODO.
  205. * ProfileGroupSettings.cs: reformat some things.
  206. * FormsAuthenticationUser.cs (Name): remove MonoTODO.
  207. * WebPartsSection.cs (GetRuntimeObject): change TODO comment.
  208. * ProfilePropertySettings.cs: add internal argument-less ctor.
  209. * IdentitySection.cs (GetRuntimeObject): return this.
  210. * ProfilePropertySettingsCollection.cs: implement much of the
  211. TODO's.
  212. * WebControlsSection.cs (GetRuntimeObject): implement.
  213. * SqlCacheDependencyDatabaseCollection.cs (GetElementKey):
  214. implement.
  215. (GetKey): implement.
  216. 2005-11-24 Chris Toshok <[email protected]>
  217. * AssemblyInfo.cs: move this here from System.Web.Configuration,
  218. and fix up the properties.
  219. * SystemWebSectionGroup.cs: enable most of the sections (2
  220. remaining to be enabled.)
  221. 2005-11-24 Chris Toshok <[email protected]>
  222. * ProcessModelSection.cs, SqlCacheDependencySection.cs,
  223. SessionStateSection.cs, PassportAuthentication.cs,
  224. FormsAuthenticationConfiguration.cs,
  225. SqlCacheDependencyDatabase.cs, HttpModuleAction.cs,
  226. BufferModeSettings.cs, TagPrefixInfo.cs (..cctor): init
  227. elementProperty.
  228. (ValidateElement): new static validator callback.
  229. (ElementProperty): enable this, return elementProperty.
  230. 2005-11-23 Chris Toshok <[email protected]>
  231. * ProfilePropertyNameValidator.cs: new implementation.
  232. * ProfilePropertySettings.cs, ProfileGroupSettings.cs,
  233. ClientTargetSection.cs, ClientTargetSection.cs,
  234. BufferModeSettings.cs, HttpModulesSection.cs,
  235. WebPartsPersonalization.cs, TransformerInfo.cs, TrustLevel.cs,
  236. NamespaceInfo.cs, SqlCacheDependencyDatabase.cs,
  237. AuthenticationSection.cs, RuleSettings.cs,
  238. FormsAuthenticationUser.cs, WebPartsSection.cs, BuildProvider.cs,
  239. WebPartsPersonalizationAuthorization.cs, Compiler.cs,
  240. ExpressionBuilder.cs, OutputCacheProfile.cs,
  241. FormsAuthenticationCredentials.cs, XhtmlConformanceSection.cs,
  242. OutputCacheSettingsSection.cs, CustomError.cs, TraceSection.cs,
  243. ExpressionBuilderCollection.cs, ProfileSettings.cs,
  244. SessionStateSection.cs, HealthMonitoringSection.cs,
  245. FormsAuthenticationConfiguration.cs, HttpRuntimeSection.cs,
  246. SessionPageStateSection.cs, TrustSection.cs,
  247. AnonymousIdentificationSection.cs, WebControlsSection.cs,
  248. ClientTarget.cs, TagMapInfo.cs, AuthorizationSection.cs,
  249. ProcessModelSection.cs, RoleManagerSection.cs,
  250. MembershipSection.cs, CustomErrorsSection.cs (..cctor): fix
  251. validator/converters.
  252. * MachineKeySection.cs (..cctor): fix validators/converters.
  253. (Validation): enable the Converter.
  254. * CodeSubDirectory.cs (..cctor): fix validator/converters.
  255. (DirectoryName): add note about missing validator decoration.
  256. * HttpModuleAction.cs (..cctor): init properties.
  257. (Properties): return properties.
  258. * CompilationSection.cs (..cctor): fix validator/converters.
  259. (GetInstance): add in this pre-2.0 interface for the time being,
  260. hopefully it'll make it easier to migrate later on.
  261. * HttpHandlerActionCollection.cs (..cctor): init properties.
  262. (Properties): return properties.
  263. * PagesSection.cs (..cctor): fix validator/converters.
  264. (GetInstance): add in this pre-2.0 interface for the time being,
  265. hopefully it'll make it easier to migrate later on.
  266. * HttpHandlersSection.cs (..cctor): init properties.
  267. (Properties): return properties.
  268. * EventMappingSettings.cs (..cctor): fix validator/converters.
  269. (Name): add note about missing validator decoration.
  270. * HttpHandlerAction.cs (..cctor): fix validator/converters.
  271. (PAth, Type, Verb): add note about missing validator decoration.
  272. * NamespaceCollection.cs (..cctor): fix properties.
  273. * ProfilePropertySettingsCollection.cs (..cctor): init properties.
  274. (..ctor): don't throw NIE.
  275. (Properties): return properties.
  276. * HttpModuleActionCollection.cs (..cctor): init properties.
  277. (Properties): return properties.
  278. * CacheSection.cs (..cctor): fix validators/converters.
  279. (PrivateBytesPollTime): add note about missing validator
  280. decoration.
  281. * AuthorizationRule.cs (..cctor): fix validators/converters.
  282. (Roles, Users, Verbs): enable the TypeConverter decorations.
  283. * UrlMapping.cs (ValidateUrl): static method for use as a
  284. validation callback. unimplemented as yet.
  285. (..cctor): fix validators/converters.
  286. (MappedUrl): add note about missing validator decoration.
  287. * PropertyHelper.cs: static utility class which contains
  288. references to validators and converters for use in static
  289. constructors (building the Properties arrays).
  290. 2005-11-23 Chris Toshok <[email protected]>
  291. * MachineKeyValidationConverter.cs: new converter (and a pretty
  292. silly one, considering all it seems to do is convert "TripleDES"
  293. to "3DES").
  294. * HostingEnvironmentSection.cs (.cctor): use
  295. PositiveTimeSpanValidator like MS does.
  296. 2005-11-18 Chris Toshok <[email protected]>
  297. * HostingEnvironmentSection.cs (.cctor): add validators.
  298. * CompilationSection.cs (.cctor): fix defaultvalue of
  299. urlLinePragmas.
  300. 2005-11-18 Chris Toshok <[email protected]>
  301. * SystemWebSectionGroup.cs: enable a whole slew of properties.
  302. * RegexWorker.cs: stub this out.
  303. * HttpCapabilitiesBase.cs: remove GetClrVersions since it's in one
  304. of the other partial files.
  305. * CompilationSection.cs: fix this up.
  306. * PagesSection.cs: fix some types and add a comment to
  307. DeserializeSection.
  308. * CompilerCollection.cs (Add): new internal method.
  309. * ProvidersHelper.cs: put the using System.Configuration.Provider
  310. inside the NET_2_0 block.
  311. * CacheSection.cs: add validators.
  312. 2005-11-14 Chris Toshok <[email protected]>
  313. * BufferModeSettings.cs: add validators/converters to the
  314. programmatic property list.
  315. * BuildProvider.cs: add validators/converters to the programmatic
  316. property list, and add an internal ctor with no args.
  317. * Compiler.cs: wrap the code i hacked from the 1.1 stuff with a
  318. #region.
  319. * BuildProviderCollection.cs (CreateNewElement): use the internal
  320. BuildProvider ctor to get around validation.
  321. * AssemblyCollection.cs: same.
  322. 2005-11-14 Chris Toshok <[email protected]>
  323. * TagPrefixCollection.cs (Remove): pass the key to BaseRemove.
  324. (set_Item (int index)): implement.
  325. * TagPrefixInfo.cs (Equals): implement.
  326. (GetHashCode): implement.
  327. * AuthorizationRuleCollection.cs (CreateNewElement(string)):
  328. implement propertly.
  329. (IndexOf): implement.
  330. (IsElementName): implement.
  331. (ElementName): implement.
  332. (Item (int index)): implement.
  333. * FormsAuthenticationUserCollection.cs (set_Item (int index)): implement.
  334. * UrlMappingCollection.cs (set_Item (int index)): implement.
  335. * OutputCacheProfileCollection.cs (set_Item (int index)): implement.
  336. * TransformerInfo.cs (Equals): implement.
  337. (GetHashCode): implement.
  338. * NamespaceInfo.cs (Equals): implement.
  339. (GetHashCode): implement.
  340. * ProfileSettingsCollection.cs (set_Item (int index)): implement.
  341. * TransformerInfoCollection.cs (set_Item (int index)): implement.
  342. * HttpHandlerActionCollection.cs (set_Item (int index)): implement.
  343. * BufferModesCollection.cs (set_Item (int index)): implement.
  344. * BuildProvider.cs: use the base[fooProp] pattern instead of
  345. instance fields.
  346. * ProfileGroupSettingsCollection.cs: implement most of this class.
  347. * RuleSettingsCollection.cs (set_Item (int index)): implement.
  348. * ClientTargetCollection.cs (set_Item (int index)): implement.
  349. * AssemblyCollection.cs (set_Item (int index)): implement.
  350. * BuildProviderCollection.cs (set_Item (int index)): reformat.
  351. * CustomError.cs (Equals): implement.
  352. (GetHashCode): implement.
  353. * ExpressionBuilderCollection.cs (set_Item (int index)): reformat.
  354. * PassportAuthentication.cs (RedirectUrl): express consternation
  355. in comment form.
  356. * NamespaceCollection.cs (set_Item (int index)): implement.
  357. * RootProfilePropertySettingsCollection.cs (SerializeElement): add
  358. comment.
  359. * ProfilePropertySettingsCollection.cs (set_Item (int index)):
  360. implement.
  361. * CustomErrorCollection.cs (set_Item (int index)): implement.
  362. * HttpModuleActionCollection.cs (set_Item (int index)): implement.
  363. * CodeSubDirectoriesCollection.cs (set_Item (int index)):
  364. implement.
  365. * CustomErrorsSection.cs (DeserializeSection): include call to
  366. base.DeserializeSection, and add MonoTODO.
  367. * EventMappingSettingsCollection.cs (set_Item (int index)):
  368. implement.
  369. * AuthorizationRule.cs (Equals): implement.
  370. (GetHashCode): implement.
  371. (SerializeElement): add comment.
  372. * TagMapCollection.cs (Remove): pass the key to BaseRemove.
  373. (set_Item (int index)): implement.
  374. * TagMapInfo.cs (Equals): implement.
  375. (GetHashCode): implement.
  376. (SerializeElement): add call to base.SerializeElement.
  377. * TrustLevelCollection.cs (Remove): pass the key to BaseRemove.
  378. (GetElementKey): implement.
  379. * SqlCacheDependencyDatabase.cs (set_Item (int index)): implement.
  380. * WebContext.cs: new implementation.
  381. 2005-11-13 Chris Toshok <[email protected]>
  382. * AnonymousIdentificationSection.cs: rework this class a bit to
  383. fit in with the rest of S.W.C. Add validators to the
  384. ConfigurationProperty ctor calls, a pattern which will need to be
  385. replicated across the entire assembly, it appears (uggggh).
  386. 2005-11-13 Chris Toshok <[email protected]>
  387. * AuthorizationRuleCollection.cs: fix ConfigurationCollection
  388. attribute.
  389. * TransformerInfo.cs: fix corcompare.
  390. * SqlCacheDependencyDatabase.cs: mark ctor internal to fix
  391. corcompare.
  392. * AuthenticationSection.cs: add missing Reset stub.
  393. * ProfileSettingsCollection.cs: use the more succint ctor.
  394. * FormsAuthenticationUser.cs: enable the TypeConverter on "name".
  395. * GlobalizationSection.cs: fix up corcompare.
  396. * WebPartsSection.cs: fix up corcompare.
  397. * ProfileGroupSettingsCollection.cs: add missing
  398. ConfigurationCollection attribute.
  399. * ExpressionBuilder.cs: implement.
  400. * FormsAuthenticationCredentials.cs: fix up corcompare.
  401. * AssemblyCollection.cs: implement Properties.
  402. * SiteMapSection.cs: implement Properties.
  403. * ExpressionBuilderCollection.cs: fix up corcompare.
  404. * ProfileSettings.cs: add missing ctor.
  405. * PassportAuthentication.cs: new implementation.
  406. * SqlCacheDependencySection.cs: fix up corcompare.
  407. * ProfilePropertySettingsCollection.cs: fix up corcompare.
  408. * HttpModuleActionCollection.cs: fix up corcompare.
  409. * EventMappingSettingsCollection.cs: fix up corcompare.
  410. * AuthorizationRule.cs: fix up corcompare.
  411. * WebControlsSection.cs: fix up corcompare.
  412. * AuthorizationSection.cs: fix up corcompare.
  413. * MembershipSection.cs: clean this up, implement Properties, fix
  414. up corcompare, etc.
  415. 2005-11-13 Chris Toshok <[email protected]>
  416. * UrlMapping.cs, CustomErrorCollection.cs, CustomError.cs,
  417. HostingEnvironmentSection.cs, TrustLevel.cs,
  418. HttpCookiesSection.cs, UrlMappingsSection.cs,
  419. UrlMappingCollection.cs, LowerCaseStringConverter.cs,
  420. RoleManagerSection.cs, ProcessModelSection.cs,
  421. TrustLevelCollection.cs, ClientTarget.cs, CustomErrorsSection.cs,
  422. MachineKeySection.cs, SessionPageStateSection.cs,
  423. SessionStateSection.cs, ProvidersHelper.cs,
  424. ClientTargetCollection.cs, SecurityPolicySection.cs,
  425. HttpCapabilitiesBase.cs, ClientTargetSection.cs: Another large
  426. swath.
  427. 2005-11-12 Chris Toshok <[email protected]>
  428. * AuthorizationRuleCollection.cs, AuthorizationRule.cs,
  429. AuthorizationSection.cs, BufferModesCollection.cs,
  430. BufferModeSettings.cs, CacheSection.cs, CompilerCollection.cs,
  431. Compiler.cs, DeploymentSection.cs,
  432. EventMappingSettingsCollection.cs, EventMappingSettings.cs,
  433. GlobalizationSection.cs, HealthMonitoringSection.cs,
  434. IdentitySection.cs, OutputCacheProfileCollection.cs,
  435. OutputCacheProfile.cs, OutputCacheSection.cs,
  436. OutputCacheSettingsSection.cs, ProfileSettingsCollection.cs,
  437. ProfileSettings.cs, RuleSettingsCollection.cs, RuleSettings.cs,
  438. SqlCacheDependencyDatabaseCollection.cs,
  439. SqlCacheDependencyDatabase.cs, SqlCacheDependencySection.cs,
  440. SystemWebCachingSectionGroup.cs, TraceSection.cs,
  441. TransformerInfoCollection.cs, TransformerInfo.cs, TrustSection.cs,
  442. WebControlsSection.cs, WebPartsPersonalizationAuthorization.cs,
  443. WebPartsPersonalization.cs, WebPartsSection.cs,
  444. XhtmlConformanceSection.cs: a whole slew of new classes. the
  445. fruits of tons of c&p and ibuprofen.
  446. 2005-11-09 Chris Toshok <[email protected]>
  447. * PagesSection.cs, AuthenticationSection.cs, BuildProvider.cs,
  448. BuildProviderCollection.cs, HttpHandlerActionCollection.cs,
  449. HttpModulesSection.cs, HttpModuleAction.cs,
  450. HttpModuleActionCollection.cs, AnonymousIdentificationSection.cs,
  451. CodeSubDirectory.cs, CodeSubDirectoriesCollection.cs,
  452. SystemWebSectionGroup.cs, SiteMapSection.cs,
  453. WebConfigurationManager.cs: flesh out the implementation.
  454. * TagMap*.cs, TagPrefix*.cs: new implementation.
  455. * FormsAuthentication*.cs: new implementation.
  456. * Profile*.cs: new implementation.
  457. * Namespace*.cs: new implementation.
  458. * HttpRuntimeSection.cs: new implementation.