ChangeLog 41 KB

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