ChangeLog 30 KB

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