ChangeLog 21 KB

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