ChangeLog 51 KB

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