ChangeLog 42 KB

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