ChangeLog 21 KB

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