ChangeLog 26 KB

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