ChangeLog 26 KB

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