ChangeLog 52 KB

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