ChangeLog 20 KB

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