ChangeLog 22 KB

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