ChangeLog 43 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341
  1. 2008-02-18 Vladimir Krasnov <[email protected]>
  2. * WebConfigurationManager.cs: performance improvement, cached
  3. GetSection method
  4. 2008-02-07 Vladimir Krasnov <[email protected]>
  5. * GlobalizationSection.cs: fixed GetSanitizedCulture, performance
  6. optimization
  7. 2008-02-05 Marek Habersack <[email protected]>
  8. * CompilerCollection.cs: Get (string language) should not use
  9. BaseGet as our collection is keyed on a list of language names
  10. (e.g. "cs;csharp") and passing a single language won't match in
  11. BaseGet correctly. Use the overriden indexer instead.
  12. Initialize the base class with the case-insensitive
  13. comparer. Fixes bug #357824.
  14. 2008-01-27 Daniel Nauck <[email protected]>
  15. * HttpHandlerAction.cs: fixed the internal method PathMatches ()
  16. removed wrong caching of FileMatchingInfo classes with request specific
  17. informations. Now we check against the current request path and cache
  18. the result in a dictionary.
  19. Also check correctly against all possible paths from the HttpHandler.
  20. 2007-12-27 Marek Habersack <[email protected]>
  21. * ProfileGroupSettingsCollection.cs: added an internal method to
  22. add/overwrite new group settings. Used from
  23. RootProfilePropertySettingsCollection.
  24. * ProfileGroupSettings.cs: added the missing "name" property to
  25. the properties collection.
  26. Marked the propertySettingsProp property as the default
  27. collection.
  28. Added internal deserialization method, used from
  29. RootProfilePropertySettingsCollection to support the 'group'
  30. element.
  31. * ProfileSection.cs: defaultProviderProp typo - the name of the
  32. provider should be "AspNetSqlProfileProvider"
  33. * RootProfilePropertySettingsCollection.cs: added
  34. OnDeseerializeUnrecognizedElement to support the profile 'group'
  35. element.
  36. Added a missing Unmerge method.
  37. 2007-12-11 Vladimir Krasnov <[email protected]>
  38. * SiteMapSection.cs: fixed ProvidersInternal property to be thread safe
  39. 2007-12-08 Marek Habersack <[email protected]>
  40. * WebConfigurationManager.cs: GetSection now runs each section
  41. through a mapper (if any is defined for the section) before
  42. returning it to the caller.
  43. 2007-11-23 Marek Habersack <[email protected]>
  44. * TagPrefixCollection.cs: changed the collection type to
  45. BasicMap.
  46. * ProfileSection.cs: added missing Properties property, added a
  47. static constructor to create property descriptors. Use property
  48. descriptors in property accessors.
  49. * ProfileGroupSettingsCollection.cs: added missing attribute to
  50. the class, removed CollectionType method, added missing IsModified
  51. and ResetModified methods, added missing Properties property.
  52. * ProfileGroupSettings.cs: added missing Properties property,
  53. adjusted the set of custom attributes of the PropertySettings
  54. property.
  55. * ProcessModelSection.cs: change the default value of the CpuMask
  56. property.
  57. * OutputCacheSection.cs: added the EnableKernelCacheForVaryByStar
  58. property.
  59. * OutputCacheProfile.cs: added the VaryByContentEncoding property.
  60. * FormsAuthenticationConfiguration.cs: corrected defaults for the
  61. Timeout property.
  62. * ExpressionBuilder.cs: corrected defaults for the
  63. ExpressionPrefix and Type properties.
  64. * CustomErrorsSection.cs: added two missing overrides -
  65. DeserializeSection and Reset.
  66. * ClientTargetSection.cs: added the missing Properties property.
  67. Added static constructor to create the property collection.
  68. * CustomErrorCollection.cs: removed the ThrowOnDuplicate
  69. property.
  70. * CacheSection.cs: corrected defaults for the
  71. PercentagePhysicalMemoryUsedLimit property.
  72. * ClientTargetCollection.cs: added missing Properties property.
  73. * IConfigMapPathFactory.cs: added
  74. * IConfigMapPath.cs: added
  75. * RoleManagerSection.cs: added a static constructor, a collection
  76. of properties, the missing Properties property.
  77. 2007-11-22 Marek Habersack <[email protected]>
  78. * RoleManagerSection.cs: CookieTimeout property custom attributes
  79. changed to match MS.NET's ones.
  80. * AuthorizationRuleCollection.cs: removed the ThrowOnDuplicate
  81. property - it's not found in the MS.NET version of the class.
  82. 2007-11-06 Marek Habersack <[email protected]>
  83. * MachineKeySectionUtils.cs: make sure keys are autogenerated when
  84. necessary.
  85. 2007-11-02 Marek Habersack <[email protected]>
  86. * HttpHandlerActionCollection.cs: clear http handler cache in
  87. HttpApplication if the collection is modified.
  88. 2007-11-01 Marek Habersack <[email protected]>
  89. * MachineKeySection.cs: moved all the internal static methods and
  90. properties to MachineKeySectionUtils.cs
  91. * MachineKeySectionUtils.cs: added. This file is included in the
  92. System.Web.Extensions compilation.
  93. The old properties from MachineKeySection.cs became methods.
  94. 2007-10-24 Marek Habersack <[email protected]>
  95. * HttpHandlerAction.cs: exact path matching must be done on the
  96. original string in PathMatches, not on the sliced one. Fixes bug
  97. #335669.
  98. 2007-10-17 Marek Habersack <[email protected]>
  99. * WebConfigurationHost.cs: if running outside hosted environment,
  100. read only the assemblyname.config configuration file instead of
  101. web.config. Fixes bug #332425
  102. 2007-10-15 Marek Habersack <[email protected]>
  103. * ProvidersHelper.cs: use HttpApplication.LoadType instead of
  104. Type.GetType.
  105. * HttpModulesSection.cs: use HttpApplication.LoadType when loading
  106. modules, to include both the bin/ directory and the top-level
  107. assemblies in search. Fixes bug #333686.
  108. 2007-08-30 Marek Habersack <[email protected]>
  109. * MachineKeySection.cs: retrieve the keys from the registry before
  110. falling back to the old method. Fixes bug #76606
  111. 2007-08-23 Marek Habersack <[email protected]>
  112. * ProvidersHelper.cs: HttpApplication.LoadTypeFromPrivateBin
  113. renamed to LoadTypeFromBin.
  114. 2007-08-21 Marek Habersack <[email protected]>
  115. * ProvidersHelper.cs: use HttpApplication.LoadTypeFromPrivateBin
  116. to get the provider settings type.
  117. 2007-08-10 Gert Driesen <[email protected]>
  118. * PagesEnableSessionState.cs: Marked internal on 1.0 profile.
  119. 2007-07-16 Vladimir Krasnov <[email protected]>
  120. * ProfileGroupSettingsCollection.cs: added ResetInternal internal
  121. method
  122. * RootProfilePropertySettingsCollection.cs: added Reset method
  123. override to reset GroupSettings collection
  124. 2007-06-24 Vladimir Krasnov <[email protected]>
  125. * HttpHandlerAction.cs: fixed SplitPaths property to be thread safe
  126. 2007-06-12 Vladimir Krasnov <[email protected]>
  127. * CompilationSection.cs: TARGET_JVM on not supported features
  128. * HttpModulesSection.cs: ctor should be static
  129. 2007-06-03 Adar Wesley <[email protected]>
  130. * ProfilePropertySettingsCollection.cs: added missing method
  131. OnDeserializeUnrecognizedElement.
  132. 2007-05-30 Marek Habersack <[email protected]>
  133. * WebConfigurationManager.cs: if errors happen when opening the
  134. configuration file, mark the manager as unsafe to prevent further
  135. usage and avoid error loops.
  136. 2007-05-17 Igor Zelmanovich <[email protected]>
  137. * WebConfigurationHost.cs: for TARGET_J2EE only:
  138. prevent NullRefference Exception.
  139. 2007-05-15 Igor Zelmanovich <[email protected]>
  140. * WebConfigurationManager.cs:
  141. make configurations hashtable case-insensitive.
  142. * WebConfigurationHost.cs: for TARGET_J2EE only:
  143. GetStreamName returns file path in right case, that make it works
  144. on case-sensitive file system.
  145. 2007-05-15 Marek Habersack <[email protected]>
  146. * BuildProviderCollection.cs: refactoring - use
  147. HttpApplication.LoadType to actually look up the type.
  148. * HttpHandlerAction.cs: as above
  149. * WebConfigurationHost.cs: refactoring - moved the LoadType to
  150. HttpApplication to share the code between 1.1 and 2.0 profiles.
  151. 2007-05-14 Marek Habersack <[email protected]>
  152. * UrlMappingCollection.cs: implemented the Item (string) indexer.
  153. * UrlMapping.cs: implemented the URL validation callback body
  154. (doesn't work at the moment).
  155. 2007-05-14 Igor Zelmanovich <[email protected]>
  156. * WebConfigurationManager.cs:
  157. make configurations synchronized.
  158. added new internal method RemoveConfigurationFromCache.
  159. 2007-05-07 Marek Habersack <[email protected]>
  160. * PagesSection.cs: buffering is on by default.
  161. 2007-04-24 Marek Habersack <[email protected]>
  162. * WebConfigurationHost.cs: wrap MapPath calls in try/catch,
  163. because bad URLs can cause it to throw exceptions. If such
  164. exception is caught, throw a HttpException for Bad Request (400).
  165. Look for types in the top-level assemblies (App_Code and
  166. friends).
  167. * WebConfigurationManager.cs: added two internal methods for safe
  168. retrieval of config sections.
  169. 2007-04-19 Marek Habersack <[email protected]>
  170. * HttpHandlerAction.cs: look up types in all the toplevel
  171. assemblies. Fixes bug #80897.
  172. 2007-04-17 Atsushi Enomoto <[email protected]>
  173. * ProcessModelSection.cs : cpuMask default value should be int,
  174. not uint.
  175. 2007-04-06 Marek Habersack <[email protected]>
  176. * CustomErrorsSection.cs: make the customErrors section work.
  177. * PagesSection.cs: provide appropriate default value for the
  178. asyncTimeout setting.
  179. 2007-03-24 Marek Habersack <[email protected]>
  180. * WebConfigurationHost.cs: allow MachineToApplication definition
  181. for config paths that equal the domain virtual app directory.
  182. 2007-03-22 Adar Wesley <[email protected]>
  183. * HttpCapabilitiesBase.cs: implemented all capabilities. Capabilities
  184. still throw if there is no value in browscaps.ini and the property is called.
  185. 2007-03-21 Vladimir Krasnov <[email protected]>
  186. * WebConfigurationManager.cs: fixed OpenWebConfiguration, should not
  187. lock when checking if configuration is already open
  188. 2007-03-15 Vladimir Krasnov <[email protected]>
  189. * WebConfigurationManager.cs: fixed OpenWebConfiguration, removed
  190. GetBasePath call and locations search, since this not affects
  191. configuration initialization, but improves performance
  192. 2007-03-12 Marek Habersack <[email protected]>
  193. * ProvidersHelper.cs: support loading custom providers from
  194. App_Code assemblies. Fixes bug #81071.
  195. Also set eol-style to native.
  196. 2007-03-08 Gert Driesen <[email protected]>
  197. * PagesSection.cs: Revert part of Adar's patch that regresses
  198. bug #80913.
  199. 2007-03-06 Adar Wesley <[email protected]>
  200. * PagesSection.cs: improve Enum parsing and strongly typed default values.
  201. 2007-02-20 Marek Habersack <[email protected]>
  202. * Patch from Gert Driesen <[email protected]>
  203. * PagesSection.cs: Process value of EnableSessionState attribute
  204. case-sensitive, and perform check in getter. Fix for bug #80913.
  205. * PageParser.cs: Added note on difference in behaviour between page
  206. level attribute and configuration attribute for enableSessionState.
  207. * PagesConfiguration.cs: Fixed compiler warning.
  208. 2007-02-22 Marek Habersack <[email protected]>
  209. * CompilerCollection.cs: Optimize language lookup a bit.
  210. 2007-02-05 Konstantin Triger <[email protected]>
  211. * TagPrefixCollection.cs: Fix element key creation.
  212. 2007-02-04 Konstantin Triger <[email protected]>
  213. * NamespaceInfo.cs, HttpModuleAction.cs, RoleManagerSection.cs:
  214. fix the default value.
  215. 2007-02-02 Marek Habersack <[email protected]>
  216. * TagPrefixCollection.cs: Add the CollectionType parameter.
  217. Get rid of unnecessary interface references in the class declaration.
  218. GetElementKey should return Source which should be unique, unlike TagPrefix.
  219. 2007-01-04 Konstantin Triger <[email protected]>
  220. * ProfileSection.cs: Ensure enabled = true by default; cleanup.
  221. 2006-12-27 Vladimir Krasnov <[email protected]>
  222. * CustomErrorCollection.cs: fixed ThrowOnDuplicate to false as in .net
  223. 2006-12-21 Gonzalo Paniagua Javier <[email protected]>
  224. * GlobalizationSection.cs: make encodings actually work for the 2.0
  225. profile.
  226. 2006-12-21 Marek Habersack <[email protected]>
  227. * TagMapInfo.cs: Add an internal default constructor for use from
  228. TagMapCollection.
  229. * TagMapCollection.cs: Don't call the string,string constructor of
  230. TagMapInfo - the class disallows empty strings as values of its
  231. properties.
  232. 2006-12-21 Vladimir Krasnov <[email protected]>
  233. * RoleManagerSection.cs: refactored using attributes
  234. 2006-12-20 Marek Habersack <[email protected]>
  235. * ProfilePropertyNameValidator.cs: added a few checks.
  236. 2006-12-18 Vladimir Krasnov <[email protected]>
  237. * WebConfigurationManager.cs: fixed GetSection to execute
  238. GetRuntimeObject, refactored GetSection and GetWebApplicationSection
  239. 2006-12-17 Vladimir Krasnov <[email protected]>
  240. * HttpHandlerAction.cs: fixed 'verb' config property
  241. 2006-12-07 Igor Zelmanovich <[email protected]>
  242. * ProvidersHelper.cs: fixed: load assembles from /bin
  243. 2006-11-22 Miguel de Icaza <[email protected]>
  244. * SessionStateSection.cs: Do not call Enum.Parse with a null
  245. argument, prevents an exception from being thrown.
  246. 2006-11-20 Marek Habersack <[email protected]>
  247. * GlobalizationSection.cs: Added support for "auto" cultures and
  248. the "auto:DEFAULT_CULTURE" cultures.
  249. 2006-11-13 Konstantin Triger <[email protected]>
  250. * WebConfigurationHost.cs: use Type.GetType for loading full qualified types.
  251. 2006-11-05 Vladimir Krasnov <[email protected]>
  252. * ProfileGroupSettings.cs, ProfileGroupSettingsCollection.cs
  253. ProfilePropertySettingsCollection.cs, ProfileSection.cs
  254. RootProfilePropertySettingsCollection.cs: refactoring and fix of
  255. <group> element
  256. 2006-10-18 Marek Habersack <[email protected]>
  257. * WebConfigurationManager.cs: implement support for extra
  258. assemblies to be referenced when compiling a page.
  259. 2006-09-06 Gonzalo Paniagua Javier <[email protected]>
  260. * WebConfigurationManager.cs: add null checks. Patch by Marek Habersack
  261. that fixes bug #79283.
  262. 2006-09-06 Konstantin Triger <[email protected]>
  263. * WebConfigurationHost.cs: do not recourse as this will be done by
  264. Configuration object.
  265. 2006-08-08 Vladimir Krasnov <[email protected]>
  266. * WebConfigurationManager.cs: added configSystem property under
  267. TARGET_JVM part
  268. * WebConfigurationHost.cs: fixed GetStreamName and OpenStreamForRead
  269. for TARGET_JVM
  270. * CompilationSection.cs: BuildProviders property removed from
  271. TARGET_JVM
  272. * SystemWebSectionGroup.cs: Compilation property removed from
  273. TARGET_JVM
  274. 2006-06-26 Atsushi Enomoto <[email protected]>
  275. * NullableStringValidator.cs : new internal class that is almost
  276. identical to StringValidator but allows null value.
  277. * PropertyHelper.cs : use new NullableStringValidator.
  278. * NamespaceCollection.cs : in NamespaceInfo "" is not allowed.
  279. 2006-06-08 Chris Toshok <[email protected]>
  280. * WebConfigurationHost.cs (InitForConfiguration): i know this is
  281. going to bite me in the ass, but guard against configPath being ==
  282. to "/", since this will result in an infinite loop.
  283. (MapPath): fix a NRE.
  284. 2006-05-18 Atsushi Enomoto <[email protected]>
  285. * WebConfigurationManager.cs: recent sys.config.dll changes on
  286. ConfigurationManager.GetSection() which should call
  287. GetRuntimeObject() should also apply here. Fixed monodoc web.
  288. 2006-05-10 Andrew Skiba <[email protected]>
  289. * HttpHandlerAction.cs: keep the internal exception
  290. 2006-05-08 Chris Toshok <[email protected]>
  291. * WebConfigurationManager.cs (GetBasePath): fix bug where
  292. path.Length was 0 when we got to the last while loop (and indexed
  293. -1 into an array.) Thanks Marek for the fix.
  294. 2006-05-04 Chris Toshok <[email protected]>
  295. [ Fixes bug #78256 ]
  296. * WebConfigurationHost.cs (GetConfigType): add a MonoTODO about
  297. how we should use the build provider machinery to get types.
  298. (MapPath): add rudimentary mapping in the case where we don't have
  299. a request, basically handle the case where the url begins with (or
  300. is) HttpRuntime.AppDomainAppVirtualPath.
  301. * WebConfigurationManager.cs (GetSection): if we don't have a
  302. valid request, open the web configuration corresponding to
  303. HttpRuntime.AppDomainAppVirtualPath.
  304. (GetBasePath): comment this a little, and make it work in the case
  305. where we don't have an HttpRequest.
  306. 2006-04-27 Chris Toshok <[email protected]>
  307. * AuthorizationRuleCollection.cs (ThrowOnDuplicate): for the time
  308. being introduce a overridden property MS doesn't make use of.
  309. This needs readdressing, but it should get people making use of
  310. <authorization> rules working again.
  311. 2006-04-25 Chris Toshok <[email protected]>
  312. * AuthorizationRule.cs (Reset): finally figure out what this
  313. method is supposed to do. Assign our Action property based on
  314. parentElement's.
  315. 2006-04-25 Chris Toshok <[email protected]>
  316. * WebConfigurationHost.cs (InitForConfiguration): actually, use
  317. HttpRuntime.AppDomainAppVirtualPath on gonzalo's recommendation.
  318. It's never null, and its use cleans things up a bit.
  319. 2006-04-25 Chris Toshok <[email protected]>
  320. * WebConfigurationHost.cs (InitForConfiguration): stop going up
  321. the virtual hierarchy once we reach the application's base virtual
  322. path.
  323. 2006-04-24 Chris Toshok <[email protected]>
  324. * AuthorizationSection.cs (IsValidUser): fix a problem that
  325. surfaced when converting from the 1.1 to 2.0 config classes. Only
  326. check for verb match if there are actually verbs to match against.
  327. 2006-04-11 Chris Toshok <[email protected]>
  328. * ExpressionBuilderCollection.cs (CreateNewElement): call argless
  329. ctor.
  330. * ExpressionBuilder.cs: add internal argumentless ctor for use by
  331. the collection type.
  332. 2006-03-24 Chris Toshok <[email protected]>
  333. * WebConfigurationManager.cs (GetConfig): add a fallback case for
  334. configuration sections that don't subclass from
  335. ConfigurationSection.
  336. 2006-03-24 Chris Toshok <[email protected]>
  337. * WebConfigurationHost.cs: fix bug where OpenWebConfiguration
  338. ("/") would result in 2 configurations for that toplevel path to
  339. be opened.
  340. 2006-03-08 Chris Toshok <[email protected]>
  341. * ProvidersHelper.cs: implement this static class properly.
  342. * SiteMapSection.cs (ProvidersInternal): add internal property to
  343. get the actual SiteMapProviderCollection from here.
  344. 2006-02-28 Chris Toshok <[email protected]>
  345. * BuildProviderAppliesTo.cs, PagesToCountAction.cs: nuke.
  346. 2006-02-10 Gonzalo Paniagua Javier <[email protected]>
  347. * Compiler.cs:
  348. * CompilerCollection.cs: removed compatibility code.
  349. * BuildProviderCollection.cs: add GetProviderForExtension().
  350. 2006-02-02 Chris Toshok <[email protected]>
  351. * WebConfigurationManager.cs (GetSection(string,string)):
  352. implement.
  353. 2006-02-01 Atsushi Enomoto <[email protected]>
  354. * TrustLevelCollection.cs, CodeSubDirectoriesCollection.cs,
  355. CustomErrorCollection.cs, CompilerCollection.cs,
  356. HttpHandlerActionCollection.cs,
  357. FormsAuthenticationUserCollection.cs,
  358. AuthorizationRuleCollection.cs, TagPrefixCollection.cs :
  359. CollectionType is public.
  360. 2006-02-01 Chris Toshok <[email protected]>
  361. * WebConfigurationManager.cs: In the normal case, get the current
  362. request's web.config, not the application's. If there is no
  363. current request, get the application's.
  364. (GetWebApplicationConfiguration): use Request.ApplicationPath, not
  365. Request.PhysicalApplicationPath. OpenWebConfiguration takes
  366. virtual paths.
  367. * HttpConfigurationSystem.cs: GetWebApplicationSection =>
  368. GetSection.
  369. 2006-02-01 Chris Toshok <[email protected]>
  370. * CompilerCollection.cs: CONFIGURATION_2_0 => NET_2_0
  371. * Compiler.cs: same.
  372. 2006-02-01 Chris Toshok <[email protected]>
  373. * HttpConfigurationSystem.cs: SupportsUserConfig == true. let's
  374. use this to determine if ConfigurationManager.AppSettings should
  375. be read-only or not.
  376. 2006-01-31 Chris Toshok <[email protected]>
  377. * WebConfigurationManager.cs: err, why did i ifdef stuff NET_2_0
  378. inside of an ifdef NET_2_0?
  379. 2006-01-30 Chris Toshok <[email protected]>
  380. * WebConfigurationManager.cs: lots of little changes. hopefully
  381. this doesn't break anyone. it fixes all the nunit problems
  382. gonzalo was having.
  383. * WebConfigurationHost.cs (GetStreamName): in the MachineWebPath
  384. case, handle the case where we have a WebConfigurationFileMap.
  385. (MapPath): this is likely wrong, but in the case where we don't
  386. have a file map or current HttpContext, just return the path.
  387. 2006-01-29 Chris Toshok <[email protected]>
  388. * HttpModulesSection.cs (LoadModules): I'm not sure we want to
  389. solve this problem in this way, but the 1.x code forces
  390. DefaultAuthenticationModule to be in the list of modules..
  391. Without this fix (or something else) HttpContext.User is null when
  392. it shouldn't be.
  393. 2006-01-26 Chris Toshok <[email protected]>
  394. * HttpConfigurationSystem.cs: new class that gets sections from
  395. web.config files.
  396. * WebConfigurationManager.cs: change a lot of the
  397. NotImplementedExceptions to NotSupportedExceptions.
  398. (AppSettings): implement by just returning
  399. ConfigurationManager.AppSettings (note this is broken because
  400. ConfigurationManager.AppSettings are read-only, but it works for
  401. reading.)
  402. (ConnectionStrings): same (and probably broken in the same way..)
  403. (Init): replace the 2.0 IInternalConfigSystem with our
  404. HttpConfigurationSystem.
  405. * WebConfigurationHost.cs: add a comment about how things are
  406. likely to work in the face of IRemoteWebConfigurationHostServer.
  407. (CreateConfigurationContext): return a WebContext instance.
  408. 2006-01-25 Chris Toshok <[email protected]>
  409. * AuthorizationSection.cs (IsValidUser): instead of a blanket
  410. false for a null user, just set the username to "" and short
  411. circuit out the check for roles.
  412. 2006-01-25 Chris Toshok <[email protected]>
  413. * AuthorizationRule.cs (CheckUser): handle * and ?, and use
  414. String.Compare instead of ==.
  415. (CheckVerb): use String.Compare instead of ==.
  416. * AuthorizationSection.cs (IsValidUser): return false for a null
  417. user.
  418. 2006-01-22 Chris Toshok <[email protected]>
  419. * GlobalizationSection.cs (VerifyData): quiet mcs.
  420. 2006-01-18 Chris Toshok <[email protected]>
  421. * SystemWebSectionGroup.cs: wrap System.Web.Services references in
  422. WEBSERVICES_DEP.
  423. 2006-01-16 Chris Toshok <[email protected]>
  424. * WebConfigurationManager.cs: implement a IConfigurationSystem for
  425. use with WebConfigurationManager.
  426. (GetSection): try to load the section
  427. using GetWebApplicationSection before calling into
  428. ConfigurationManager.GetSection.
  429. (GetWebApplicationConfiguration): move common code to here.
  430. (GetWebApplicationSection): use GetWebApplicationConfiguration.
  431. (AppSettings): implement.
  432. * WebConfigurationHost.cs (GetWebConfigFileName): add
  433. "Web.Config", and move to an array/loop implementation. maybe we
  434. should scan the directory and check ToLower() instead of
  435. explicitly enumerating?
  436. 2006-01-10 Chris Toshok <[email protected]>
  437. * SystemWebSectionGroup.cs (HostingEnvironment): enable this property.
  438. (ProcessModel): add the ConfigurationPropertyAttribute.
  439. 2006-01-10 Chris Toshok <[email protected]>
  440. * PagesSection.cs (.cctor): fix the default value for the
  441. enableSessionState attribute - it's not a bool, but a
  442. PagesEnableSessionState enum.
  443. 2006-01-10 Chris Toshok <[email protected]>
  444. * MachineKeySection.cs (ValidationKeyBytes, DecryptionKeyBytes,
  445. DecryptionKey192Bits): if the keys are null, generate them. Fixes
  446. Page.EnableViewStateMac support.
  447. 2006-01-09 Chris Toshok <[email protected]>
  448. * RoleManagerSection.cs, SqlCacheDepencendySection.cs,
  449. SessionStateSection.cs, TraceSection.cs, SecurityPolicySection.cs,
  450. PagesSection.cs, RulesSettings.cs, UrlMappingSection.cs: fix
  451. dumper output.
  452. 2006-01-09 Chris Toshok <[email protected]>
  453. * ExpressionBuilderCollection.cs (.cctor): no need to create a
  454. collection property here. we're already in the collection.
  455. * CompilationSection.cs: fix typo.
  456. 2006-01-04 Chris Toshok <[email protected]>
  457. * MachineKeySection.cs: bring over some more internal methods from
  458. MachineKeyConfig, and call Set{Decryption,Validation}Key from
  459. their respective property setters.
  460. 2006-01-03 Chris Toshok <[email protected]>
  461. * AuthorizationSection.cs (IsValidUser): add analogous method from
  462. AuthorizationConfig.cs.
  463. * AuthorizationRule.cs: add predicates for Verb, User, and Role
  464. analogous to what existed in AuthorizationConfig.cs.
  465. 2005-12-11 Chris Toshok <[email protected]>
  466. * WebConfigurationManager.cs (OpenMachineConfiguration): just call
  467. ConfigurationManager.OpenMachineConfiguration.
  468. (OpenWebConfiguration): remove the "IntPtr userToken" version and
  469. add a "string userName" version to clean up corcompare output.
  470. Modify all the overloads to pass null instead of IntPtr.Zero.
  471. (GetWebApplicationSection): if we're not running in a web
  472. application, use the machine configuration.
  473. 2005-12-06 Chris Toshok <[email protected]>
  474. * CodeSubDirectory.cs (DirectoryName): don't use an private field,
  475. but base[directoyNameProp].
  476. * AuthorizationRuleCollection.cs (Add): use BaseAdd (rule, false),
  477. so we can insert duplicates.
  478. (GetKey): nuke.
  479. (GetElementKey): MS for some reason just uses the action for the
  480. key, ToString()'ed.
  481. (Remove): pass the correct key.
  482. * ProfileGroupSettings.cs (GetHashCode): implement.
  483. * GlobalizationSection.cs (GetEncoding): for the utf-8 case, just
  484. use Encoding.UTF8.
  485. * AssemblyCollection.cs (Add): use BaseAdd (info, false) so we can
  486. insert duplicates.
  487. * CacheSection.cs (.cctor): make privateByteLimit's default 0L so
  488. we don't get a invalid cast exception later on.
  489. * AuthorizationRule.cs (VerifyData): split out the verification
  490. foo from PreSerialize.
  491. (PostDeserialize): so we can call it from here.
  492. (PreSerialize): and here.
  493. 2005-12-05 Chris Toshok <[email protected]>
  494. * AuthorizationRuleCollection.cs (GetKey): split out the logic for
  495. creating a key from a rule here.
  496. (GetElementKey): use it here.
  497. (Remove): and here.
  498. 2005-12-04 Chris Toshok <[email protected]>
  499. * UrlMapping.cs: add an internal argument-less ctor.
  500. * UrlMappingCollection.cs (CreateNewElement): use argument-less
  501. ctor.
  502. (GetKey): implement.
  503. (AllKeys): implement.
  504. * TrustLevel.cs: add an internal argument-less ctor.
  505. * TrustLevelCollection.cs (Set): implement.
  506. (CreateNewElement): use argument-less ctor.
  507. (IsElementName): implement.
  508. (ElementName): implement.
  509. (set_Item (int index)): use Set.
  510. (ThrowOnDuplicate): implement.
  511. * TagPrefixInfo.cs: add internal argument-less ctor.
  512. * TagPrefixCollection.cs (CreateNewElement): call argument-less
  513. ctor.
  514. (CollectionType): add text to TODO.
  515. (ElementName): implement.
  516. * SqlCacheDependencyDatabaseCollection.cs (Set): implement.
  517. (AllKeys): implement.
  518. * RuleSettings.cs: add internal argument-less ctor.
  519. * RuleSettingsCollection.cs (Contains): implement.
  520. (CreateNewElement): use argument-less ctor.
  521. (IndexOf): implement.
  522. (Insert): implement.
  523. * RootProfilePropertySettingsCollection.cs (IsModified): chain up
  524. to base.IsModified for now.
  525. (Reset): chain up to base.Reset for now.
  526. (ResetModified): chain up to base.ResetModified for now.
  527. * ProfileSettings.cs: add internal argument-less ctor.
  528. * ProfileSettingsCollection.cs (Contains): implement.
  529. (CreateNewElement): use argument-less ctor.
  530. (IndexOf): implement.
  531. (Insert): implement.
  532. * ProfilePropertySettingsCollection.cs (IndexOf): implement.
  533. (Set): implement.
  534. (AllKeys): implement.
  535. * ProfileGroupSettings.cs: add internal argument-less ctor.
  536. * ProfileGroupSettingsCollection.cs (CreateNewElement): use
  537. parameter-less ctor.
  538. (GetKey): implement.
  539. (ResetModified): for now call base.ResetModified.
  540. (Set): implement.
  541. (AllKeys): implement.
  542. * OutputCacheProfile.cs: add internal argument-less ctor.
  543. * OutputCacheProfileCollection.cs (CreateNewElement): use
  544. parameter-less ctor.
  545. (Set): implement.
  546. (AllKeys): implement.
  547. * HttpModuleActionCollection.cs (Add): remove MonoTODO.
  548. (CreateNewElement): same.
  549. * HttpHandlerActionCollection.cs (GetElementKey): build up the key
  550. from both the path and the verb.
  551. (Remove): same.
  552. * FormsAuthenticationUserCollection.cs (Set): implement.
  553. (AllKeys): implement.
  554. * EventMappingSettings.cs: add an internal argument-less ctor.
  555. * EventMappingSettingsCollection.cs (Contains): implement.
  556. (CreateNewElement): use argument-less ctor.
  557. (IndexOf): implement.
  558. (Insert): implement.
  559. * CompilerCollection.cs (GetKey): implement.
  560. (AllKeys): implement.
  561. * ClientTargetCollection.cs (GetKey): implement.
  562. (AllKeys): implement.
  563. * AuthorizationRuleCollection.cs (Set): implement.
  564. (ElementName): add some text to the MonoTODO.
  565. (set_Item (int index)): use Set.
  566. 2005-12-04 Chris Toshok <[email protected]>
  567. * CustomError.cs: add an internal argument-less ctor for use by
  568. the collection.
  569. * CustomErrorCollection.cs: implement all the MonoTODO's.
  570. 2005-12-02 Chris Toshok <[email protected]>
  571. * GlobalizationSection.cs (VerifyData): split out the stuff that
  572. used to live in PreSerialize here.
  573. (PreSerialize): call VerifyData here.
  574. (PostDeserialize): and here.
  575. 2005-12-01 Chris Toshok <[email protected]>
  576. * GlobalizationSection.cs (PreSerialize): add checks for Culture
  577. and UICulture properties.
  578. 2005-12-01 Chris Toshok <[email protected]>
  579. * AuthorizationRule.cs (..ctor): provide default values for
  580. roles/users/verbs here. Not sure if we should do this in the ctor
  581. or if the System.Configuration infrastructure should.. time will
  582. tell.
  583. (PreSerialize): throw if Roles.Count and Users.Count == 0.
  584. (SerializeElement): write out the element here. don't chain up to
  585. the base class since that has differing behavior than what we
  586. want.
  587. 2005-11-30 Chris Toshok <[email protected]>
  588. * CompilerCollection.cs: ugly hack to fix the
  589. 2.0-without-config-2.0 case. wrap this file in #if
  590. CONFIGURATION_2_0 as well as #if NET_2_0.
  591. * Compiler.cs: same.
  592. 2005-11-28 Chris Toshok <[email protected]>
  593. * SessionStateSection.cs (CookieLess): correct the compat function
  594. implementation.
  595. 2005-11-28 Chris Toshok <[email protected]>
  596. * GlobalizationSection.cs (GetEncoding): if the encoding name is
  597. null, default to utf-8 before we hit the try block, so we don't
  598. throw and generate a spurious warning.
  599. * SessionStateSection.cs: The Cookieless handling needs a custom
  600. parser, it appears, as the converter is a StringConverter, not a
  601. GenericEnumConverter.
  602. (ParseCookieMode): the parser.
  603. 2005-11-28 Chris Toshok <[email protected]>
  604. * PagesSection.cs (GetInstance): nuke.
  605. * CompilationSection.cs (GetInstance): nuke.
  606. 2005-11-28 Chris Toshok <[email protected]>
  607. * HttpHandlerAction.cs: add some c&p code from the 1.1 config
  608. stuff to look for matching handlers.
  609. (..ctor): add parameterless ctor.
  610. * HttpHandlerActionCollection.cs: clean up formatting.
  611. (CreateNewElement): call the parameter-less ctor for
  612. HttpHandlerAction.
  613. * HttpHandlersSection.cs (..ctor): add a ConfigurationProperty for
  614. the default collection.
  615. (get_Handlers): implement.
  616. (LocateHandler): copy over (and massage) some 1.1 config code.
  617. * MachineKeySection.cs: move some code over from the 1.1 config
  618. code to deal with autogeneration of keys, as well as converting
  619. from the string rep to the byte[] rep.
  620. 2005-11-28 Chris Toshok <[email protected]>
  621. * HttpModuleActionCollection.cs (CreateNewElement): use the new
  622. HttpModuleAction ctor.
  623. * HttpModuleAction.cs: add internal ctor with no parameters, for
  624. use in HttpModuleActionCollection.
  625. 2005-11-28 Chris Toshok <[email protected]>
  626. * GlobalizationSection.cs (..cctor): the encoding
  627. ConfigurationProperties are of type "string", even though the
  628. properties themselves are of type Encoding. we do conversions
  629. manually in the setter/getters. gross. Add code (mostly c&p +
  630. massaged from GlobalizationConfigurationHandler) for this and also
  631. to handle the culture gettes.
  632. 2005-11-26 Chris Toshok <[email protected]>
  633. * AuthorizationRuleCollection.cs (GetElementKey): implement this.
  634. * ProfilePropertyNameValidator.cs: make this internal, and add a
  635. blurb about how MS doesn't do the testing you'd expect them to.
  636. 2005-11-25 Chris Toshok <[email protected]>
  637. * AuthorizationRuleCollection.cs (CreateNewElement): remove
  638. MonoTODO.
  639. * CompilationSection.cs (GetRuntimeObject): add comment to TODO.
  640. * ProfileGroupSettings.cs: reformat some things.
  641. * FormsAuthenticationUser.cs (Name): remove MonoTODO.
  642. * WebPartsSection.cs (GetRuntimeObject): change TODO comment.
  643. * ProfilePropertySettings.cs: add internal argument-less ctor.
  644. * IdentitySection.cs (GetRuntimeObject): return this.
  645. * ProfilePropertySettingsCollection.cs: implement much of the
  646. TODO's.
  647. * WebControlsSection.cs (GetRuntimeObject): implement.
  648. * SqlCacheDependencyDatabaseCollection.cs (GetElementKey):
  649. implement.
  650. (GetKey): implement.
  651. 2005-11-24 Chris Toshok <[email protected]>
  652. * AssemblyInfo.cs: move this here from System.Web.Configuration,
  653. and fix up the properties.
  654. * SystemWebSectionGroup.cs: enable most of the sections (2
  655. remaining to be enabled.)
  656. 2005-11-24 Chris Toshok <[email protected]>
  657. * ProcessModelSection.cs, SqlCacheDependencySection.cs,
  658. SessionStateSection.cs, PassportAuthentication.cs,
  659. FormsAuthenticationConfiguration.cs,
  660. SqlCacheDependencyDatabase.cs, HttpModuleAction.cs,
  661. BufferModeSettings.cs, TagPrefixInfo.cs (..cctor): init
  662. elementProperty.
  663. (ValidateElement): new static validator callback.
  664. (ElementProperty): enable this, return elementProperty.
  665. 2005-11-23 Chris Toshok <[email protected]>
  666. * ProfilePropertyNameValidator.cs: new implementation.
  667. * ProfilePropertySettings.cs, ProfileGroupSettings.cs,
  668. ClientTargetSection.cs, ClientTargetSection.cs,
  669. BufferModeSettings.cs, HttpModulesSection.cs,
  670. WebPartsPersonalization.cs, TransformerInfo.cs, TrustLevel.cs,
  671. NamespaceInfo.cs, SqlCacheDependencyDatabase.cs,
  672. AuthenticationSection.cs, RuleSettings.cs,
  673. FormsAuthenticationUser.cs, WebPartsSection.cs, BuildProvider.cs,
  674. WebPartsPersonalizationAuthorization.cs, Compiler.cs,
  675. ExpressionBuilder.cs, OutputCacheProfile.cs,
  676. FormsAuthenticationCredentials.cs, XhtmlConformanceSection.cs,
  677. OutputCacheSettingsSection.cs, CustomError.cs, TraceSection.cs,
  678. ExpressionBuilderCollection.cs, ProfileSettings.cs,
  679. SessionStateSection.cs, HealthMonitoringSection.cs,
  680. FormsAuthenticationConfiguration.cs, HttpRuntimeSection.cs,
  681. SessionPageStateSection.cs, TrustSection.cs,
  682. AnonymousIdentificationSection.cs, WebControlsSection.cs,
  683. ClientTarget.cs, TagMapInfo.cs, AuthorizationSection.cs,
  684. ProcessModelSection.cs, RoleManagerSection.cs,
  685. MembershipSection.cs, CustomErrorsSection.cs (..cctor): fix
  686. validator/converters.
  687. * MachineKeySection.cs (..cctor): fix validators/converters.
  688. (Validation): enable the Converter.
  689. * CodeSubDirectory.cs (..cctor): fix validator/converters.
  690. (DirectoryName): add note about missing validator decoration.
  691. * HttpModuleAction.cs (..cctor): init properties.
  692. (Properties): return properties.
  693. * CompilationSection.cs (..cctor): fix validator/converters.
  694. (GetInstance): add in this pre-2.0 interface for the time being,
  695. hopefully it'll make it easier to migrate later on.
  696. * HttpHandlerActionCollection.cs (..cctor): init properties.
  697. (Properties): return properties.
  698. * PagesSection.cs (..cctor): fix validator/converters.
  699. (GetInstance): add in this pre-2.0 interface for the time being,
  700. hopefully it'll make it easier to migrate later on.
  701. * HttpHandlersSection.cs (..cctor): init properties.
  702. (Properties): return properties.
  703. * EventMappingSettings.cs (..cctor): fix validator/converters.
  704. (Name): add note about missing validator decoration.
  705. * HttpHandlerAction.cs (..cctor): fix validator/converters.
  706. (PAth, Type, Verb): add note about missing validator decoration.
  707. * NamespaceCollection.cs (..cctor): fix properties.
  708. * ProfilePropertySettingsCollection.cs (..cctor): init properties.
  709. (..ctor): don't throw NIE.
  710. (Properties): return properties.
  711. * HttpModuleActionCollection.cs (..cctor): init properties.
  712. (Properties): return properties.
  713. * CacheSection.cs (..cctor): fix validators/converters.
  714. (PrivateBytesPollTime): add note about missing validator
  715. decoration.
  716. * AuthorizationRule.cs (..cctor): fix validators/converters.
  717. (Roles, Users, Verbs): enable the TypeConverter decorations.
  718. * UrlMapping.cs (ValidateUrl): static method for use as a
  719. validation callback. unimplemented as yet.
  720. (..cctor): fix validators/converters.
  721. (MappedUrl): add note about missing validator decoration.
  722. * PropertyHelper.cs: static utility class which contains
  723. references to validators and converters for use in static
  724. constructors (building the Properties arrays).
  725. 2005-11-23 Chris Toshok <[email protected]>
  726. * MachineKeyValidationConverter.cs: new converter (and a pretty
  727. silly one, considering all it seems to do is convert "TripleDES"
  728. to "3DES").
  729. * HostingEnvironmentSection.cs (.cctor): use
  730. PositiveTimeSpanValidator like MS does.
  731. 2005-11-18 Chris Toshok <[email protected]>
  732. * HostingEnvironmentSection.cs (.cctor): add validators.
  733. * CompilationSection.cs (.cctor): fix defaultvalue of
  734. urlLinePragmas.
  735. 2005-11-18 Chris Toshok <[email protected]>
  736. * SystemWebSectionGroup.cs: enable a whole slew of properties.
  737. * RegexWorker.cs: stub this out.
  738. * HttpCapabilitiesBase.cs: remove GetClrVersions since it's in one
  739. of the other partial files.
  740. * CompilationSection.cs: fix this up.
  741. * PagesSection.cs: fix some types and add a comment to
  742. DeserializeSection.
  743. * CompilerCollection.cs (Add): new internal method.
  744. * ProvidersHelper.cs: put the using System.Configuration.Provider
  745. inside the NET_2_0 block.
  746. * CacheSection.cs: add validators.
  747. 2005-11-14 Chris Toshok <[email protected]>
  748. * BufferModeSettings.cs: add validators/converters to the
  749. programmatic property list.
  750. * BuildProvider.cs: add validators/converters to the programmatic
  751. property list, and add an internal ctor with no args.
  752. * Compiler.cs: wrap the code i hacked from the 1.1 stuff with a
  753. #region.
  754. * BuildProviderCollection.cs (CreateNewElement): use the internal
  755. BuildProvider ctor to get around validation.
  756. * AssemblyCollection.cs: same.
  757. 2005-11-14 Chris Toshok <[email protected]>
  758. * TagPrefixCollection.cs (Remove): pass the key to BaseRemove.
  759. (set_Item (int index)): implement.
  760. * TagPrefixInfo.cs (Equals): implement.
  761. (GetHashCode): implement.
  762. * AuthorizationRuleCollection.cs (CreateNewElement(string)):
  763. implement propertly.
  764. (IndexOf): implement.
  765. (IsElementName): implement.
  766. (ElementName): implement.
  767. (Item (int index)): implement.
  768. * FormsAuthenticationUserCollection.cs (set_Item (int index)): implement.
  769. * UrlMappingCollection.cs (set_Item (int index)): implement.
  770. * OutputCacheProfileCollection.cs (set_Item (int index)): implement.
  771. * TransformerInfo.cs (Equals): implement.
  772. (GetHashCode): implement.
  773. * NamespaceInfo.cs (Equals): implement.
  774. (GetHashCode): implement.
  775. * ProfileSettingsCollection.cs (set_Item (int index)): implement.
  776. * TransformerInfoCollection.cs (set_Item (int index)): implement.
  777. * HttpHandlerActionCollection.cs (set_Item (int index)): implement.
  778. * BufferModesCollection.cs (set_Item (int index)): implement.
  779. * BuildProvider.cs: use the base[fooProp] pattern instead of
  780. instance fields.
  781. * ProfileGroupSettingsCollection.cs: implement most of this class.
  782. * RuleSettingsCollection.cs (set_Item (int index)): implement.
  783. * ClientTargetCollection.cs (set_Item (int index)): implement.
  784. * AssemblyCollection.cs (set_Item (int index)): implement.
  785. * BuildProviderCollection.cs (set_Item (int index)): reformat.
  786. * CustomError.cs (Equals): implement.
  787. (GetHashCode): implement.
  788. * ExpressionBuilderCollection.cs (set_Item (int index)): reformat.
  789. * PassportAuthentication.cs (RedirectUrl): express consternation
  790. in comment form.
  791. * NamespaceCollection.cs (set_Item (int index)): implement.
  792. * RootProfilePropertySettingsCollection.cs (SerializeElement): add
  793. comment.
  794. * ProfilePropertySettingsCollection.cs (set_Item (int index)):
  795. implement.
  796. * CustomErrorCollection.cs (set_Item (int index)): implement.
  797. * HttpModuleActionCollection.cs (set_Item (int index)): implement.
  798. * CodeSubDirectoriesCollection.cs (set_Item (int index)):
  799. implement.
  800. * CustomErrorsSection.cs (DeserializeSection): include call to
  801. base.DeserializeSection, and add MonoTODO.
  802. * EventMappingSettingsCollection.cs (set_Item (int index)):
  803. implement.
  804. * AuthorizationRule.cs (Equals): implement.
  805. (GetHashCode): implement.
  806. (SerializeElement): add comment.
  807. * TagMapCollection.cs (Remove): pass the key to BaseRemove.
  808. (set_Item (int index)): implement.
  809. * TagMapInfo.cs (Equals): implement.
  810. (GetHashCode): implement.
  811. (SerializeElement): add call to base.SerializeElement.
  812. * TrustLevelCollection.cs (Remove): pass the key to BaseRemove.
  813. (GetElementKey): implement.
  814. * SqlCacheDependencyDatabase.cs (set_Item (int index)): implement.
  815. * WebContext.cs: new implementation.
  816. 2005-11-13 Chris Toshok <[email protected]>
  817. * AnonymousIdentificationSection.cs: rework this class a bit to
  818. fit in with the rest of S.W.C. Add validators to the
  819. ConfigurationProperty ctor calls, a pattern which will need to be
  820. replicated across the entire assembly, it appears (uggggh).
  821. 2005-11-13 Chris Toshok <[email protected]>
  822. * AuthorizationRuleCollection.cs: fix ConfigurationCollection
  823. attribute.
  824. * TransformerInfo.cs: fix corcompare.
  825. * SqlCacheDependencyDatabase.cs: mark ctor internal to fix
  826. corcompare.
  827. * AuthenticationSection.cs: add missing Reset stub.
  828. * ProfileSettingsCollection.cs: use the more succint ctor.
  829. * FormsAuthenticationUser.cs: enable the TypeConverter on "name".
  830. * GlobalizationSection.cs: fix up corcompare.
  831. * WebPartsSection.cs: fix up corcompare.
  832. * ProfileGroupSettingsCollection.cs: add missing
  833. ConfigurationCollection attribute.
  834. * ExpressionBuilder.cs: implement.
  835. * FormsAuthenticationCredentials.cs: fix up corcompare.
  836. * AssemblyCollection.cs: implement Properties.
  837. * SiteMapSection.cs: implement Properties.
  838. * ExpressionBuilderCollection.cs: fix up corcompare.
  839. * ProfileSettings.cs: add missing ctor.
  840. * PassportAuthentication.cs: new implementation.
  841. * SqlCacheDependencySection.cs: fix up corcompare.
  842. * ProfilePropertySettingsCollection.cs: fix up corcompare.
  843. * HttpModuleActionCollection.cs: fix up corcompare.
  844. * EventMappingSettingsCollection.cs: fix up corcompare.
  845. * AuthorizationRule.cs: fix up corcompare.
  846. * WebControlsSection.cs: fix up corcompare.
  847. * AuthorizationSection.cs: fix up corcompare.
  848. * MembershipSection.cs: clean this up, implement Properties, fix
  849. up corcompare, etc.
  850. 2005-11-13 Chris Toshok <[email protected]>
  851. * UrlMapping.cs, CustomErrorCollection.cs, CustomError.cs,
  852. HostingEnvironmentSection.cs, TrustLevel.cs,
  853. HttpCookiesSection.cs, UrlMappingsSection.cs,
  854. UrlMappingCollection.cs, LowerCaseStringConverter.cs,
  855. RoleManagerSection.cs, ProcessModelSection.cs,
  856. TrustLevelCollection.cs, ClientTarget.cs, CustomErrorsSection.cs,
  857. MachineKeySection.cs, SessionPageStateSection.cs,
  858. SessionStateSection.cs, ProvidersHelper.cs,
  859. ClientTargetCollection.cs, SecurityPolicySection.cs,
  860. HttpCapabilitiesBase.cs, ClientTargetSection.cs: Another large
  861. swath.
  862. 2005-11-12 Chris Toshok <[email protected]>
  863. * AuthorizationRuleCollection.cs, AuthorizationRule.cs,
  864. AuthorizationSection.cs, BufferModesCollection.cs,
  865. BufferModeSettings.cs, CacheSection.cs, CompilerCollection.cs,
  866. Compiler.cs, DeploymentSection.cs,
  867. EventMappingSettingsCollection.cs, EventMappingSettings.cs,
  868. GlobalizationSection.cs, HealthMonitoringSection.cs,
  869. IdentitySection.cs, OutputCacheProfileCollection.cs,
  870. OutputCacheProfile.cs, OutputCacheSection.cs,
  871. OutputCacheSettingsSection.cs, ProfileSettingsCollection.cs,
  872. ProfileSettings.cs, RuleSettingsCollection.cs, RuleSettings.cs,
  873. SqlCacheDependencyDatabaseCollection.cs,
  874. SqlCacheDependencyDatabase.cs, SqlCacheDependencySection.cs,
  875. SystemWebCachingSectionGroup.cs, TraceSection.cs,
  876. TransformerInfoCollection.cs, TransformerInfo.cs, TrustSection.cs,
  877. WebControlsSection.cs, WebPartsPersonalizationAuthorization.cs,
  878. WebPartsPersonalization.cs, WebPartsSection.cs,
  879. XhtmlConformanceSection.cs: a whole slew of new classes. the
  880. fruits of tons of c&p and ibuprofen.
  881. 2005-11-09 Chris Toshok <[email protected]>
  882. * PagesSection.cs, AuthenticationSection.cs, BuildProvider.cs,
  883. BuildProviderCollection.cs, HttpHandlerActionCollection.cs,
  884. HttpModulesSection.cs, HttpModuleAction.cs,
  885. HttpModuleActionCollection.cs, AnonymousIdentificationSection.cs,
  886. CodeSubDirectory.cs, CodeSubDirectoriesCollection.cs,
  887. SystemWebSectionGroup.cs, SiteMapSection.cs,
  888. WebConfigurationManager.cs: flesh out the implementation.
  889. * TagMap*.cs, TagPrefix*.cs: new implementation.
  890. * FormsAuthentication*.cs: new implementation.
  891. * Profile*.cs: new implementation.
  892. * Namespace*.cs: new implementation.
  893. * HttpRuntimeSection.cs: new implementation.