ChangeLog 15 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463
  1. 2005-11-30 Chris Toshok <[email protected]>
  2. * CompilerCollection.cs: ugly hack to fix the
  3. 2.0-without-config-2.0 case. wrap this file in #if
  4. CONFIGURATION_2_0 as well as #if NET_2_0.
  5. * Compiler.cs: same.
  6. 2005-11-28 Chris Toshok <[email protected]>
  7. * SessionStateSection.cs (CookieLess): correct the compat function
  8. implementation.
  9. 2005-11-28 Chris Toshok <[email protected]>
  10. * GlobalizationSection.cs (GetEncoding): if the encoding name is
  11. null, default to utf-8 before we hit the try block, so we don't
  12. throw and generate a spurious warning.
  13. * SessionStateSection.cs: The Cookieless handling needs a custom
  14. parser, it appears, as the converter is a StringConverter, not a
  15. GenericEnumConverter.
  16. (ParseCookieMode): the parser.
  17. 2005-11-28 Chris Toshok <[email protected]>
  18. * PagesSection.cs (GetInstance): nuke.
  19. * CompilationSection.cs (GetInstance): nuke.
  20. 2005-11-28 Chris Toshok <[email protected]>
  21. * HttpHandlerAction.cs: add some c&p code from the 1.1 config
  22. stuff to look for matching handlers.
  23. (..ctor): add parameterless ctor.
  24. * HttpHandlerActionCollection.cs: clean up formatting.
  25. (CreateNewElement): call the parameter-less ctor for
  26. HttpHandlerAction.
  27. * HttpHandlersSection.cs (..ctor): add a ConfigurationProperty for
  28. the default collection.
  29. (get_Handlers): implement.
  30. (LocateHandler): copy over (and massage) some 1.1 config code.
  31. * MachineKeySection.cs: move some code over from the 1.1 config
  32. code to deal with autogeneration of keys, as well as converting
  33. from the string rep to the byte[] rep.
  34. 2005-11-28 Chris Toshok <[email protected]>
  35. * HttpModuleActionCollection.cs (CreateNewElement): use the new
  36. HttpModuleAction ctor.
  37. * HttpModuleAction.cs: add internal ctor with no parameters, for
  38. use in HttpModuleActionCollection.
  39. 2005-11-28 Chris Toshok <[email protected]>
  40. * GlobalizationSection.cs (..cctor): the encoding
  41. ConfigurationProperties are of type "string", even though the
  42. properties themselves are of type Encoding. we do conversions
  43. manually in the setter/getters. gross. Add code (mostly c&p +
  44. massaged from GlobalizationConfigurationHandler) for this and also
  45. to handle the culture gettes.
  46. 2005-11-26 Chris Toshok <[email protected]>
  47. * AuthorizationRuleCollection.cs (GetElementKey): implement this.
  48. * ProfilePropertyNameValidator.cs: make this internal, and add a
  49. blurb about how MS doesn't do the testing you'd expect them to.
  50. 2005-11-25 Chris Toshok <[email protected]>
  51. * AuthorizationRuleCollection.cs (CreateNewElement): remove
  52. MonoTODO.
  53. * CompilationSection.cs (GetRuntimeObject): add comment to TODO.
  54. * ProfileGroupSettings.cs: reformat some things.
  55. * FormsAuthenticationUser.cs (Name): remove MonoTODO.
  56. * WebPartsSection.cs (GetRuntimeObject): change TODO comment.
  57. * ProfilePropertySettings.cs: add internal argument-less ctor.
  58. * IdentitySection.cs (GetRuntimeObject): return this.
  59. * ProfilePropertySettingsCollection.cs: implement much of the
  60. TODO's.
  61. * WebControlsSection.cs (GetRuntimeObject): implement.
  62. * SqlCacheDependencyDatabaseCollection.cs (GetElementKey):
  63. implement.
  64. (GetKey): implement.
  65. 2005-11-24 Chris Toshok <[email protected]>
  66. * AssemblyInfo.cs: move this here from System.Web.Configuration,
  67. and fix up the properties.
  68. * SystemWebSectionGroup.cs: enable most of the sections (2
  69. remaining to be enabled.)
  70. 2005-11-24 Chris Toshok <[email protected]>
  71. * ProcessModelSection.cs, SqlCacheDependencySection.cs,
  72. SessionStateSection.cs, PassportAuthentication.cs,
  73. FormsAuthenticationConfiguration.cs,
  74. SqlCacheDependencyDatabase.cs, HttpModuleAction.cs,
  75. BufferModeSettings.cs, TagPrefixInfo.cs (..cctor): init
  76. elementProperty.
  77. (ValidateElement): new static validator callback.
  78. (ElementProperty): enable this, return elementProperty.
  79. 2005-11-23 Chris Toshok <[email protected]>
  80. * ProfilePropertyNameValidator.cs: new implementation.
  81. * ProfilePropertySettings.cs, ProfileGroupSettings.cs,
  82. ClientTargetSection.cs, ClientTargetSection.cs,
  83. BufferModeSettings.cs, HttpModulesSection.cs,
  84. WebPartsPersonalization.cs, TransformerInfo.cs, TrustLevel.cs,
  85. NamespaceInfo.cs, SqlCacheDependencyDatabase.cs,
  86. AuthenticationSection.cs, RuleSettings.cs,
  87. FormsAuthenticationUser.cs, WebPartsSection.cs, BuildProvider.cs,
  88. WebPartsPersonalizationAuthorization.cs, Compiler.cs,
  89. ExpressionBuilder.cs, OutputCacheProfile.cs,
  90. FormsAuthenticationCredentials.cs, XhtmlConformanceSection.cs,
  91. OutputCacheSettingsSection.cs, CustomError.cs, TraceSection.cs,
  92. ExpressionBuilderCollection.cs, ProfileSettings.cs,
  93. SessionStateSection.cs, HealthMonitoringSection.cs,
  94. FormsAuthenticationConfiguration.cs, HttpRuntimeSection.cs,
  95. SessionPageStateSection.cs, TrustSection.cs,
  96. AnonymousIdentificationSection.cs, WebControlsSection.cs,
  97. ClientTarget.cs, TagMapInfo.cs, AuthorizationSection.cs,
  98. ProcessModelSection.cs, RoleManagerSection.cs,
  99. MembershipSection.cs, CustomErrorsSection.cs (..cctor): fix
  100. validator/converters.
  101. * MachineKeySection.cs (..cctor): fix validators/converters.
  102. (Validation): enable the Converter.
  103. * CodeSubDirectory.cs (..cctor): fix validator/converters.
  104. (DirectoryName): add note about missing validator decoration.
  105. * HttpModuleAction.cs (..cctor): init properties.
  106. (Properties): return properties.
  107. * CompilationSection.cs (..cctor): fix validator/converters.
  108. (GetInstance): add in this pre-2.0 interface for the time being,
  109. hopefully it'll make it easier to migrate later on.
  110. * HttpHandlerActionCollection.cs (..cctor): init properties.
  111. (Properties): return properties.
  112. * PagesSection.cs (..cctor): fix validator/converters.
  113. (GetInstance): add in this pre-2.0 interface for the time being,
  114. hopefully it'll make it easier to migrate later on.
  115. * HttpHandlersSection.cs (..cctor): init properties.
  116. (Properties): return properties.
  117. * EventMappingSettings.cs (..cctor): fix validator/converters.
  118. (Name): add note about missing validator decoration.
  119. * HttpHandlerAction.cs (..cctor): fix validator/converters.
  120. (PAth, Type, Verb): add note about missing validator decoration.
  121. * NamespaceCollection.cs (..cctor): fix properties.
  122. * ProfilePropertySettingsCollection.cs (..cctor): init properties.
  123. (..ctor): don't throw NIE.
  124. (Properties): return properties.
  125. * HttpModuleActionCollection.cs (..cctor): init properties.
  126. (Properties): return properties.
  127. * CacheSection.cs (..cctor): fix validators/converters.
  128. (PrivateBytesPollTime): add note about missing validator
  129. decoration.
  130. * AuthorizationRule.cs (..cctor): fix validators/converters.
  131. (Roles, Users, Verbs): enable the TypeConverter decorations.
  132. * UrlMapping.cs (ValidateUrl): static method for use as a
  133. validation callback. unimplemented as yet.
  134. (..cctor): fix validators/converters.
  135. (MappedUrl): add note about missing validator decoration.
  136. * PropertyHelper.cs: static utility class which contains
  137. references to validators and converters for use in static
  138. constructors (building the Properties arrays).
  139. 2005-11-23 Chris Toshok <[email protected]>
  140. * MachineKeyValidationConverter.cs: new converter (and a pretty
  141. silly one, considering all it seems to do is convert "TripleDES"
  142. to "3DES").
  143. * HostingEnvironmentSection.cs (.cctor): use
  144. PositiveTimeSpanValidator like MS does.
  145. 2005-11-18 Chris Toshok <[email protected]>
  146. * HostingEnvironmentSection.cs (.cctor): add validators.
  147. * CompilationSection.cs (.cctor): fix defaultvalue of
  148. urlLinePragmas.
  149. 2005-11-18 Chris Toshok <[email protected]>
  150. * SystemWebSectionGroup.cs: enable a whole slew of properties.
  151. * RegexWorker.cs: stub this out.
  152. * HttpCapabilitiesBase.cs: remove GetClrVersions since it's in one
  153. of the other partial files.
  154. * CompilationSection.cs: fix this up.
  155. * PagesSection.cs: fix some types and add a comment to
  156. DeserializeSection.
  157. * CompilerCollection.cs (Add): new internal method.
  158. * ProvidersHelper.cs: put the using System.Configuration.Provider
  159. inside the NET_2_0 block.
  160. * CacheSection.cs: add validators.
  161. 2005-11-14 Chris Toshok <[email protected]>
  162. * BufferModeSettings.cs: add validators/converters to the
  163. programmatic property list.
  164. * BuildProvider.cs: add validators/converters to the programmatic
  165. property list, and add an internal ctor with no args.
  166. * Compiler.cs: wrap the code i hacked from the 1.1 stuff with a
  167. #region.
  168. * BuildProviderCollection.cs (CreateNewElement): use the internal
  169. BuildProvider ctor to get around validation.
  170. * AssemblyCollection.cs: same.
  171. 2005-11-14 Chris Toshok <[email protected]>
  172. * TagPrefixCollection.cs (Remove): pass the key to BaseRemove.
  173. (set_Item (int index)): implement.
  174. * TagPrefixInfo.cs (Equals): implement.
  175. (GetHashCode): implement.
  176. * AuthorizationRuleCollection.cs (CreateNewElement(string)):
  177. implement propertly.
  178. (IndexOf): implement.
  179. (IsElementName): implement.
  180. (ElementName): implement.
  181. (Item (int index)): implement.
  182. * FormsAuthenticationUserCollection.cs (set_Item (int index)): implement.
  183. * UrlMappingCollection.cs (set_Item (int index)): implement.
  184. * OutputCacheProfileCollection.cs (set_Item (int index)): implement.
  185. * TransformerInfo.cs (Equals): implement.
  186. (GetHashCode): implement.
  187. * NamespaceInfo.cs (Equals): implement.
  188. (GetHashCode): implement.
  189. * ProfileSettingsCollection.cs (set_Item (int index)): implement.
  190. * TransformerInfoCollection.cs (set_Item (int index)): implement.
  191. * HttpHandlerActionCollection.cs (set_Item (int index)): implement.
  192. * BufferModesCollection.cs (set_Item (int index)): implement.
  193. * BuildProvider.cs: use the base[fooProp] pattern instead of
  194. instance fields.
  195. * ProfileGroupSettingsCollection.cs: implement most of this class.
  196. * RuleSettingsCollection.cs (set_Item (int index)): implement.
  197. * ClientTargetCollection.cs (set_Item (int index)): implement.
  198. * AssemblyCollection.cs (set_Item (int index)): implement.
  199. * BuildProviderCollection.cs (set_Item (int index)): reformat.
  200. * CustomError.cs (Equals): implement.
  201. (GetHashCode): implement.
  202. * ExpressionBuilderCollection.cs (set_Item (int index)): reformat.
  203. * PassportAuthentication.cs (RedirectUrl): express consternation
  204. in comment form.
  205. * NamespaceCollection.cs (set_Item (int index)): implement.
  206. * RootProfilePropertySettingsCollection.cs (SerializeElement): add
  207. comment.
  208. * ProfilePropertySettingsCollection.cs (set_Item (int index)):
  209. implement.
  210. * CustomErrorCollection.cs (set_Item (int index)): implement.
  211. * HttpModuleActionCollection.cs (set_Item (int index)): implement.
  212. * CodeSubDirectoriesCollection.cs (set_Item (int index)):
  213. implement.
  214. * CustomErrorsSection.cs (DeserializeSection): include call to
  215. base.DeserializeSection, and add MonoTODO.
  216. * EventMappingSettingsCollection.cs (set_Item (int index)):
  217. implement.
  218. * AuthorizationRule.cs (Equals): implement.
  219. (GetHashCode): implement.
  220. (SerializeElement): add comment.
  221. * TagMapCollection.cs (Remove): pass the key to BaseRemove.
  222. (set_Item (int index)): implement.
  223. * TagMapInfo.cs (Equals): implement.
  224. (GetHashCode): implement.
  225. (SerializeElement): add call to base.SerializeElement.
  226. * TrustLevelCollection.cs (Remove): pass the key to BaseRemove.
  227. (GetElementKey): implement.
  228. * SqlCacheDependencyDatabase.cs (set_Item (int index)): implement.
  229. * WebContext.cs: new implementation.
  230. 2005-11-13 Chris Toshok <[email protected]>
  231. * AnonymousIdentificationSection.cs: rework this class a bit to
  232. fit in with the rest of S.W.C. Add validators to the
  233. ConfigurationProperty ctor calls, a pattern which will need to be
  234. replicated across the entire assembly, it appears (uggggh).
  235. 2005-11-13 Chris Toshok <[email protected]>
  236. * AuthorizationRuleCollection.cs: fix ConfigurationCollection
  237. attribute.
  238. * TransformerInfo.cs: fix corcompare.
  239. * SqlCacheDependencyDatabase.cs: mark ctor internal to fix
  240. corcompare.
  241. * AuthenticationSection.cs: add missing Reset stub.
  242. * ProfileSettingsCollection.cs: use the more succint ctor.
  243. * FormsAuthenticationUser.cs: enable the TypeConverter on "name".
  244. * GlobalizationSection.cs: fix up corcompare.
  245. * WebPartsSection.cs: fix up corcompare.
  246. * ProfileGroupSettingsCollection.cs: add missing
  247. ConfigurationCollection attribute.
  248. * ExpressionBuilder.cs: implement.
  249. * FormsAuthenticationCredentials.cs: fix up corcompare.
  250. * AssemblyCollection.cs: implement Properties.
  251. * SiteMapSection.cs: implement Properties.
  252. * ExpressionBuilderCollection.cs: fix up corcompare.
  253. * ProfileSettings.cs: add missing ctor.
  254. * PassportAuthentication.cs: new implementation.
  255. * SqlCacheDependencySection.cs: fix up corcompare.
  256. * ProfilePropertySettingsCollection.cs: fix up corcompare.
  257. * HttpModuleActionCollection.cs: fix up corcompare.
  258. * EventMappingSettingsCollection.cs: fix up corcompare.
  259. * AuthorizationRule.cs: fix up corcompare.
  260. * WebControlsSection.cs: fix up corcompare.
  261. * AuthorizationSection.cs: fix up corcompare.
  262. * MembershipSection.cs: clean this up, implement Properties, fix
  263. up corcompare, etc.
  264. 2005-11-13 Chris Toshok <[email protected]>
  265. * UrlMapping.cs, CustomErrorCollection.cs, CustomError.cs,
  266. HostingEnvironmentSection.cs, TrustLevel.cs,
  267. HttpCookiesSection.cs, UrlMappingsSection.cs,
  268. UrlMappingCollection.cs, LowerCaseStringConverter.cs,
  269. RoleManagerSection.cs, ProcessModelSection.cs,
  270. TrustLevelCollection.cs, ClientTarget.cs, CustomErrorsSection.cs,
  271. MachineKeySection.cs, SessionPageStateSection.cs,
  272. SessionStateSection.cs, ProvidersHelper.cs,
  273. ClientTargetCollection.cs, SecurityPolicySection.cs,
  274. HttpCapabilitiesBase.cs, ClientTargetSection.cs: Another large
  275. swath.
  276. 2005-11-12 Chris Toshok <[email protected]>
  277. * AuthorizationRuleCollection.cs, AuthorizationRule.cs,
  278. AuthorizationSection.cs, BufferModesCollection.cs,
  279. BufferModeSettings.cs, CacheSection.cs, CompilerCollection.cs,
  280. Compiler.cs, DeploymentSection.cs,
  281. EventMappingSettingsCollection.cs, EventMappingSettings.cs,
  282. GlobalizationSection.cs, HealthMonitoringSection.cs,
  283. IdentitySection.cs, OutputCacheProfileCollection.cs,
  284. OutputCacheProfile.cs, OutputCacheSection.cs,
  285. OutputCacheSettingsSection.cs, ProfileSettingsCollection.cs,
  286. ProfileSettings.cs, RuleSettingsCollection.cs, RuleSettings.cs,
  287. SqlCacheDependencyDatabaseCollection.cs,
  288. SqlCacheDependencyDatabase.cs, SqlCacheDependencySection.cs,
  289. SystemWebCachingSectionGroup.cs, TraceSection.cs,
  290. TransformerInfoCollection.cs, TransformerInfo.cs, TrustSection.cs,
  291. WebControlsSection.cs, WebPartsPersonalizationAuthorization.cs,
  292. WebPartsPersonalization.cs, WebPartsSection.cs,
  293. XhtmlConformanceSection.cs: a whole slew of new classes. the
  294. fruits of tons of c&p and ibuprofen.
  295. 2005-11-09 Chris Toshok <[email protected]>
  296. * PagesSection.cs, AuthenticationSection.cs, BuildProvider.cs,
  297. BuildProviderCollection.cs, HttpHandlerActionCollection.cs,
  298. HttpModulesSection.cs, HttpModuleAction.cs,
  299. HttpModuleActionCollection.cs, AnonymousIdentificationSection.cs,
  300. CodeSubDirectory.cs, CodeSubDirectoriesCollection.cs,
  301. SystemWebSectionGroup.cs, SiteMapSection.cs,
  302. WebConfigurationManager.cs: flesh out the implementation.
  303. * TagMap*.cs, TagPrefix*.cs: new implementation.
  304. * FormsAuthentication*.cs: new implementation.
  305. * Profile*.cs: new implementation.
  306. * Namespace*.cs: new implementation.
  307. * HttpRuntimeSection.cs: new implementation.