ChangeLog 20 KB

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