ChangeLog 22 KB

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