ChangeLog 39 KB

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