ChangeLog 26 KB

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