ChangeLog 51 KB

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