ChangeLog 26 KB

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