ChangeLog 26 KB

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