ChangeLog 29 KB

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