ChangeLog 30 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913
  1. 2006-06-26 Atsushi Enomoto <[email protected]>
  2. * NullableStringValidator.cs : new internal class that is almost
  3. identical to StringValidator but allows null value.
  4. * PropertyHelper.cs : use new NullableStringValidator.
  5. * NamespaceCollection.cs : in NamespaceInfo "" is not allowed.
  6. 2006-06-08 Chris Toshok <[email protected]>
  7. * WebConfigurationHost.cs (InitForConfiguration): i know this is
  8. going to bite me in the ass, but guard against configPath being ==
  9. to "/", since this will result in an infinite loop.
  10. (MapPath): fix a NRE.
  11. 2006-05-18 Atsushi Enomoto <[email protected]>
  12. * WebConfigurationManager.cs: recent sys.config.dll changes on
  13. ConfigurationManager.GetSection() which should call
  14. GetRuntimeObject() should also apply here. Fixed monodoc web.
  15. 2006-05-10 Andrew Skiba <[email protected]>
  16. * HttpHandlerAction.cs: keep the internal exception
  17. 2006-05-08 Chris Toshok <[email protected]>
  18. * WebConfigurationManager.cs (GetBasePath): fix bug where
  19. path.Length was 0 when we got to the last while loop (and indexed
  20. -1 into an array.) Thanks Marek for the fix.
  21. 2006-05-04 Chris Toshok <[email protected]>
  22. [ Fixes bug #78256 ]
  23. * WebConfigurationHost.cs (GetConfigType): add a MonoTODO about
  24. how we should use the build provider machinery to get types.
  25. (MapPath): add rudimentary mapping in the case where we don't have
  26. a request, basically handle the case where the url begins with (or
  27. is) HttpRuntime.AppDomainAppVirtualPath.
  28. * WebConfigurationManager.cs (GetSection): if we don't have a
  29. valid request, open the web configuration corresponding to
  30. HttpRuntime.AppDomainAppVirtualPath.
  31. (GetBasePath): comment this a little, and make it work in the case
  32. where we don't have an HttpRequest.
  33. 2006-04-27 Chris Toshok <[email protected]>
  34. * AuthorizationRuleCollection.cs (ThrowOnDuplicate): for the time
  35. being introduce a overridden property MS doesn't make use of.
  36. This needs readdressing, but it should get people making use of
  37. <authorization> rules working again.
  38. 2006-04-25 Chris Toshok <[email protected]>
  39. * AuthorizationRule.cs (Reset): finally figure out what this
  40. method is supposed to do. Assign our Action property based on
  41. parentElement's.
  42. 2006-04-25 Chris Toshok <[email protected]>
  43. * WebConfigurationHost.cs (InitForConfiguration): actually, use
  44. HttpRuntime.AppDomainAppVirtualPath on gonzalo's recommendation.
  45. It's never null, and its use cleans things up a bit.
  46. 2006-04-25 Chris Toshok <[email protected]>
  47. * WebConfigurationHost.cs (InitForConfiguration): stop going up
  48. the virtual hierarchy once we reach the application's base virtual
  49. path.
  50. 2006-04-24 Chris Toshok <[email protected]>
  51. * AuthorizationSection.cs (IsValidUser): fix a problem that
  52. surfaced when converting from the 1.1 to 2.0 config classes. Only
  53. check for verb match if there are actually verbs to match against.
  54. 2006-04-11 Chris Toshok <[email protected]>
  55. * ExpressionBuilderCollection.cs (CreateNewElement): call argless
  56. ctor.
  57. * ExpressionBuilder.cs: add internal argumentless ctor for use by
  58. the collection type.
  59. 2006-03-24 Chris Toshok <[email protected]>
  60. * WebConfigurationManager.cs (GetConfig): add a fallback case for
  61. configuration sections that don't subclass from
  62. ConfigurationSection.
  63. 2006-03-24 Chris Toshok <[email protected]>
  64. * WebConfigurationHost.cs: fix bug where OpenWebConfiguration
  65. ("/") would result in 2 configurations for that toplevel path to
  66. be opened.
  67. 2006-03-08 Chris Toshok <[email protected]>
  68. * ProvidersHelper.cs: implement this static class properly.
  69. * SiteMapSection.cs (ProvidersInternal): add internal property to
  70. get the actual SiteMapProviderCollection from here.
  71. 2006-02-28 Chris Toshok <[email protected]>
  72. * BuildProviderAppliesTo.cs, PagesToCountAction.cs: nuke.
  73. 2006-02-10 Gonzalo Paniagua Javier <[email protected]>
  74. * Compiler.cs:
  75. * CompilerCollection.cs: removed compatibility code.
  76. * BuildProviderCollection.cs: add GetProviderForExtension().
  77. 2006-02-02 Chris Toshok <[email protected]>
  78. * WebConfigurationManager.cs (GetSection(string,string)):
  79. implement.
  80. 2006-02-01 Atsushi Enomoto <[email protected]>
  81. * TrustLevelCollection.cs, CodeSubDirectoriesCollection.cs,
  82. CustomErrorCollection.cs, CompilerCollection.cs,
  83. HttpHandlerActionCollection.cs,
  84. FormsAuthenticationUserCollection.cs,
  85. AuthorizationRuleCollection.cs, TagPrefixCollection.cs :
  86. CollectionType is public.
  87. 2006-02-01 Chris Toshok <[email protected]>
  88. * WebConfigurationManager.cs: In the normal case, get the current
  89. request's web.config, not the application's. If there is no
  90. current request, get the application's.
  91. (GetWebApplicationConfiguration): use Request.ApplicationPath, not
  92. Request.PhysicalApplicationPath. OpenWebConfiguration takes
  93. virtual paths.
  94. * HttpConfigurationSystem.cs: GetWebApplicationSection =>
  95. GetSection.
  96. 2006-02-01 Chris Toshok <[email protected]>
  97. * CompilerCollection.cs: CONFIGURATION_2_0 => NET_2_0
  98. * Compiler.cs: same.
  99. 2006-02-01 Chris Toshok <[email protected]>
  100. * HttpConfigurationSystem.cs: SupportsUserConfig == true. let's
  101. use this to determine if ConfigurationManager.AppSettings should
  102. be read-only or not.
  103. 2006-01-31 Chris Toshok <[email protected]>
  104. * WebConfigurationManager.cs: err, why did i ifdef stuff NET_2_0
  105. inside of an ifdef NET_2_0?
  106. 2006-01-30 Chris Toshok <[email protected]>
  107. * WebConfigurationManager.cs: lots of little changes. hopefully
  108. this doesn't break anyone. it fixes all the nunit problems
  109. gonzalo was having.
  110. * WebConfigurationHost.cs (GetStreamName): in the MachineWebPath
  111. case, handle the case where we have a WebConfigurationFileMap.
  112. (MapPath): this is likely wrong, but in the case where we don't
  113. have a file map or current HttpContext, just return the path.
  114. 2006-01-29 Chris Toshok <[email protected]>
  115. * HttpModulesSection.cs (LoadModules): I'm not sure we want to
  116. solve this problem in this way, but the 1.x code forces
  117. DefaultAuthenticationModule to be in the list of modules..
  118. Without this fix (or something else) HttpContext.User is null when
  119. it shouldn't be.
  120. 2006-01-26 Chris Toshok <[email protected]>
  121. * HttpConfigurationSystem.cs: new class that gets sections from
  122. web.config files.
  123. * WebConfigurationManager.cs: change a lot of the
  124. NotImplementedExceptions to NotSupportedExceptions.
  125. (AppSettings): implement by just returning
  126. ConfigurationManager.AppSettings (note this is broken because
  127. ConfigurationManager.AppSettings are read-only, but it works for
  128. reading.)
  129. (ConnectionStrings): same (and probably broken in the same way..)
  130. (Init): replace the 2.0 IInternalConfigSystem with our
  131. HttpConfigurationSystem.
  132. * WebConfigurationHost.cs: add a comment about how things are
  133. likely to work in the face of IRemoteWebConfigurationHostServer.
  134. (CreateConfigurationContext): return a WebContext instance.
  135. 2006-01-25 Chris Toshok <[email protected]>
  136. * AuthorizationSection.cs (IsValidUser): instead of a blanket
  137. false for a null user, just set the username to "" and short
  138. circuit out the check for roles.
  139. 2006-01-25 Chris Toshok <[email protected]>
  140. * AuthorizationRule.cs (CheckUser): handle * and ?, and use
  141. String.Compare instead of ==.
  142. (CheckVerb): use String.Compare instead of ==.
  143. * AuthorizationSection.cs (IsValidUser): return false for a null
  144. user.
  145. 2006-01-22 Chris Toshok <[email protected]>
  146. * GlobalizationSection.cs (VerifyData): quiet mcs.
  147. 2006-01-18 Chris Toshok <[email protected]>
  148. * SystemWebSectionGroup.cs: wrap System.Web.Services references in
  149. WEBSERVICES_DEP.
  150. 2006-01-16 Chris Toshok <[email protected]>
  151. * WebConfigurationManager.cs: implement a IConfigurationSystem for
  152. use with WebConfigurationManager.
  153. (GetSection): try to load the section
  154. using GetWebApplicationSection before calling into
  155. ConfigurationManager.GetSection.
  156. (GetWebApplicationConfiguration): move common code to here.
  157. (GetWebApplicationSection): use GetWebApplicationConfiguration.
  158. (AppSettings): implement.
  159. * WebConfigurationHost.cs (GetWebConfigFileName): add
  160. "Web.Config", and move to an array/loop implementation. maybe we
  161. should scan the directory and check ToLower() instead of
  162. explicitly enumerating?
  163. 2006-01-10 Chris Toshok <[email protected]>
  164. * SystemWebSectionGroup.cs (HostingEnvironment): enable this property.
  165. (ProcessModel): add the ConfigurationPropertyAttribute.
  166. 2006-01-10 Chris Toshok <[email protected]>
  167. * PagesSection.cs (.cctor): fix the default value for the
  168. enableSessionState attribute - it's not a bool, but a
  169. PagesEnableSessionState enum.
  170. 2006-01-10 Chris Toshok <[email protected]>
  171. * MachineKeySection.cs (ValidationKeyBytes, DecryptionKeyBytes,
  172. DecryptionKey192Bits): if the keys are null, generate them. Fixes
  173. Page.EnableViewStateMac support.
  174. 2006-01-09 Chris Toshok <[email protected]>
  175. * RoleManagerSection.cs, SqlCacheDepencendySection.cs,
  176. SessionStateSection.cs, TraceSection.cs, SecurityPolicySection.cs,
  177. PagesSection.cs, RulesSettings.cs, UrlMappingSection.cs: fix
  178. dumper output.
  179. 2006-01-09 Chris Toshok <[email protected]>
  180. * ExpressionBuilderCollection.cs (.cctor): no need to create a
  181. collection property here. we're already in the collection.
  182. * CompilationSection.cs: fix typo.
  183. 2006-01-04 Chris Toshok <[email protected]>
  184. * MachineKeySection.cs: bring over some more internal methods from
  185. MachineKeyConfig, and call Set{Decryption,Validation}Key from
  186. their respective property setters.
  187. 2006-01-03 Chris Toshok <[email protected]>
  188. * AuthorizationSection.cs (IsValidUser): add analogous method from
  189. AuthorizationConfig.cs.
  190. * AuthorizationRule.cs: add predicates for Verb, User, and Role
  191. analogous to what existed in AuthorizationConfig.cs.
  192. 2005-12-11 Chris Toshok <[email protected]>
  193. * WebConfigurationManager.cs (OpenMachineConfiguration): just call
  194. ConfigurationManager.OpenMachineConfiguration.
  195. (OpenWebConfiguration): remove the "IntPtr userToken" version and
  196. add a "string userName" version to clean up corcompare output.
  197. Modify all the overloads to pass null instead of IntPtr.Zero.
  198. (GetWebApplicationSection): if we're not running in a web
  199. application, use the machine configuration.
  200. 2005-12-06 Chris Toshok <[email protected]>
  201. * CodeSubDirectory.cs (DirectoryName): don't use an private field,
  202. but base[directoyNameProp].
  203. * AuthorizationRuleCollection.cs (Add): use BaseAdd (rule, false),
  204. so we can insert duplicates.
  205. (GetKey): nuke.
  206. (GetElementKey): MS for some reason just uses the action for the
  207. key, ToString()'ed.
  208. (Remove): pass the correct key.
  209. * ProfileGroupSettings.cs (GetHashCode): implement.
  210. * GlobalizationSection.cs (GetEncoding): for the utf-8 case, just
  211. use Encoding.UTF8.
  212. * AssemblyCollection.cs (Add): use BaseAdd (info, false) so we can
  213. insert duplicates.
  214. * CacheSection.cs (.cctor): make privateByteLimit's default 0L so
  215. we don't get a invalid cast exception later on.
  216. * AuthorizationRule.cs (VerifyData): split out the verification
  217. foo from PreSerialize.
  218. (PostDeserialize): so we can call it from here.
  219. (PreSerialize): and here.
  220. 2005-12-05 Chris Toshok <[email protected]>
  221. * AuthorizationRuleCollection.cs (GetKey): split out the logic for
  222. creating a key from a rule here.
  223. (GetElementKey): use it here.
  224. (Remove): and here.
  225. 2005-12-04 Chris Toshok <[email protected]>
  226. * UrlMapping.cs: add an internal argument-less ctor.
  227. * UrlMappingCollection.cs (CreateNewElement): use argument-less
  228. ctor.
  229. (GetKey): implement.
  230. (AllKeys): implement.
  231. * TrustLevel.cs: add an internal argument-less ctor.
  232. * TrustLevelCollection.cs (Set): implement.
  233. (CreateNewElement): use argument-less ctor.
  234. (IsElementName): implement.
  235. (ElementName): implement.
  236. (set_Item (int index)): use Set.
  237. (ThrowOnDuplicate): implement.
  238. * TagPrefixInfo.cs: add internal argument-less ctor.
  239. * TagPrefixCollection.cs (CreateNewElement): call argument-less
  240. ctor.
  241. (CollectionType): add text to TODO.
  242. (ElementName): implement.
  243. * SqlCacheDependencyDatabaseCollection.cs (Set): implement.
  244. (AllKeys): implement.
  245. * RuleSettings.cs: add internal argument-less ctor.
  246. * RuleSettingsCollection.cs (Contains): implement.
  247. (CreateNewElement): use argument-less ctor.
  248. (IndexOf): implement.
  249. (Insert): implement.
  250. * RootProfilePropertySettingsCollection.cs (IsModified): chain up
  251. to base.IsModified for now.
  252. (Reset): chain up to base.Reset for now.
  253. (ResetModified): chain up to base.ResetModified for now.
  254. * ProfileSettings.cs: add internal argument-less ctor.
  255. * ProfileSettingsCollection.cs (Contains): implement.
  256. (CreateNewElement): use argument-less ctor.
  257. (IndexOf): implement.
  258. (Insert): implement.
  259. * ProfilePropertySettingsCollection.cs (IndexOf): implement.
  260. (Set): implement.
  261. (AllKeys): implement.
  262. * ProfileGroupSettings.cs: add internal argument-less ctor.
  263. * ProfileGroupSettingsCollection.cs (CreateNewElement): use
  264. parameter-less ctor.
  265. (GetKey): implement.
  266. (ResetModified): for now call base.ResetModified.
  267. (Set): implement.
  268. (AllKeys): implement.
  269. * OutputCacheProfile.cs: add internal argument-less ctor.
  270. * OutputCacheProfileCollection.cs (CreateNewElement): use
  271. parameter-less ctor.
  272. (Set): implement.
  273. (AllKeys): implement.
  274. * HttpModuleActionCollection.cs (Add): remove MonoTODO.
  275. (CreateNewElement): same.
  276. * HttpHandlerActionCollection.cs (GetElementKey): build up the key
  277. from both the path and the verb.
  278. (Remove): same.
  279. * FormsAuthenticationUserCollection.cs (Set): implement.
  280. (AllKeys): implement.
  281. * EventMappingSettings.cs: add an internal argument-less ctor.
  282. * EventMappingSettingsCollection.cs (Contains): implement.
  283. (CreateNewElement): use argument-less ctor.
  284. (IndexOf): implement.
  285. (Insert): implement.
  286. * CompilerCollection.cs (GetKey): implement.
  287. (AllKeys): implement.
  288. * ClientTargetCollection.cs (GetKey): implement.
  289. (AllKeys): implement.
  290. * AuthorizationRuleCollection.cs (Set): implement.
  291. (ElementName): add some text to the MonoTODO.
  292. (set_Item (int index)): use Set.
  293. 2005-12-04 Chris Toshok <[email protected]>
  294. * CustomError.cs: add an internal argument-less ctor for use by
  295. the collection.
  296. * CustomErrorCollection.cs: implement all the MonoTODO's.
  297. 2005-12-02 Chris Toshok <[email protected]>
  298. * GlobalizationSection.cs (VerifyData): split out the stuff that
  299. used to live in PreSerialize here.
  300. (PreSerialize): call VerifyData here.
  301. (PostDeserialize): and here.
  302. 2005-12-01 Chris Toshok <[email protected]>
  303. * GlobalizationSection.cs (PreSerialize): add checks for Culture
  304. and UICulture properties.
  305. 2005-12-01 Chris Toshok <[email protected]>
  306. * AuthorizationRule.cs (..ctor): provide default values for
  307. roles/users/verbs here. Not sure if we should do this in the ctor
  308. or if the System.Configuration infrastructure should.. time will
  309. tell.
  310. (PreSerialize): throw if Roles.Count and Users.Count == 0.
  311. (SerializeElement): write out the element here. don't chain up to
  312. the base class since that has differing behavior than what we
  313. want.
  314. 2005-11-30 Chris Toshok <[email protected]>
  315. * CompilerCollection.cs: ugly hack to fix the
  316. 2.0-without-config-2.0 case. wrap this file in #if
  317. CONFIGURATION_2_0 as well as #if NET_2_0.
  318. * Compiler.cs: same.
  319. 2005-11-28 Chris Toshok <[email protected]>
  320. * SessionStateSection.cs (CookieLess): correct the compat function
  321. implementation.
  322. 2005-11-28 Chris Toshok <[email protected]>
  323. * GlobalizationSection.cs (GetEncoding): if the encoding name is
  324. null, default to utf-8 before we hit the try block, so we don't
  325. throw and generate a spurious warning.
  326. * SessionStateSection.cs: The Cookieless handling needs a custom
  327. parser, it appears, as the converter is a StringConverter, not a
  328. GenericEnumConverter.
  329. (ParseCookieMode): the parser.
  330. 2005-11-28 Chris Toshok <[email protected]>
  331. * PagesSection.cs (GetInstance): nuke.
  332. * CompilationSection.cs (GetInstance): nuke.
  333. 2005-11-28 Chris Toshok <[email protected]>
  334. * HttpHandlerAction.cs: add some c&p code from the 1.1 config
  335. stuff to look for matching handlers.
  336. (..ctor): add parameterless ctor.
  337. * HttpHandlerActionCollection.cs: clean up formatting.
  338. (CreateNewElement): call the parameter-less ctor for
  339. HttpHandlerAction.
  340. * HttpHandlersSection.cs (..ctor): add a ConfigurationProperty for
  341. the default collection.
  342. (get_Handlers): implement.
  343. (LocateHandler): copy over (and massage) some 1.1 config code.
  344. * MachineKeySection.cs: move some code over from the 1.1 config
  345. code to deal with autogeneration of keys, as well as converting
  346. from the string rep to the byte[] rep.
  347. 2005-11-28 Chris Toshok <[email protected]>
  348. * HttpModuleActionCollection.cs (CreateNewElement): use the new
  349. HttpModuleAction ctor.
  350. * HttpModuleAction.cs: add internal ctor with no parameters, for
  351. use in HttpModuleActionCollection.
  352. 2005-11-28 Chris Toshok <[email protected]>
  353. * GlobalizationSection.cs (..cctor): the encoding
  354. ConfigurationProperties are of type "string", even though the
  355. properties themselves are of type Encoding. we do conversions
  356. manually in the setter/getters. gross. Add code (mostly c&p +
  357. massaged from GlobalizationConfigurationHandler) for this and also
  358. to handle the culture gettes.
  359. 2005-11-26 Chris Toshok <[email protected]>
  360. * AuthorizationRuleCollection.cs (GetElementKey): implement this.
  361. * ProfilePropertyNameValidator.cs: make this internal, and add a
  362. blurb about how MS doesn't do the testing you'd expect them to.
  363. 2005-11-25 Chris Toshok <[email protected]>
  364. * AuthorizationRuleCollection.cs (CreateNewElement): remove
  365. MonoTODO.
  366. * CompilationSection.cs (GetRuntimeObject): add comment to TODO.
  367. * ProfileGroupSettings.cs: reformat some things.
  368. * FormsAuthenticationUser.cs (Name): remove MonoTODO.
  369. * WebPartsSection.cs (GetRuntimeObject): change TODO comment.
  370. * ProfilePropertySettings.cs: add internal argument-less ctor.
  371. * IdentitySection.cs (GetRuntimeObject): return this.
  372. * ProfilePropertySettingsCollection.cs: implement much of the
  373. TODO's.
  374. * WebControlsSection.cs (GetRuntimeObject): implement.
  375. * SqlCacheDependencyDatabaseCollection.cs (GetElementKey):
  376. implement.
  377. (GetKey): implement.
  378. 2005-11-24 Chris Toshok <[email protected]>
  379. * AssemblyInfo.cs: move this here from System.Web.Configuration,
  380. and fix up the properties.
  381. * SystemWebSectionGroup.cs: enable most of the sections (2
  382. remaining to be enabled.)
  383. 2005-11-24 Chris Toshok <[email protected]>
  384. * ProcessModelSection.cs, SqlCacheDependencySection.cs,
  385. SessionStateSection.cs, PassportAuthentication.cs,
  386. FormsAuthenticationConfiguration.cs,
  387. SqlCacheDependencyDatabase.cs, HttpModuleAction.cs,
  388. BufferModeSettings.cs, TagPrefixInfo.cs (..cctor): init
  389. elementProperty.
  390. (ValidateElement): new static validator callback.
  391. (ElementProperty): enable this, return elementProperty.
  392. 2005-11-23 Chris Toshok <[email protected]>
  393. * ProfilePropertyNameValidator.cs: new implementation.
  394. * ProfilePropertySettings.cs, ProfileGroupSettings.cs,
  395. ClientTargetSection.cs, ClientTargetSection.cs,
  396. BufferModeSettings.cs, HttpModulesSection.cs,
  397. WebPartsPersonalization.cs, TransformerInfo.cs, TrustLevel.cs,
  398. NamespaceInfo.cs, SqlCacheDependencyDatabase.cs,
  399. AuthenticationSection.cs, RuleSettings.cs,
  400. FormsAuthenticationUser.cs, WebPartsSection.cs, BuildProvider.cs,
  401. WebPartsPersonalizationAuthorization.cs, Compiler.cs,
  402. ExpressionBuilder.cs, OutputCacheProfile.cs,
  403. FormsAuthenticationCredentials.cs, XhtmlConformanceSection.cs,
  404. OutputCacheSettingsSection.cs, CustomError.cs, TraceSection.cs,
  405. ExpressionBuilderCollection.cs, ProfileSettings.cs,
  406. SessionStateSection.cs, HealthMonitoringSection.cs,
  407. FormsAuthenticationConfiguration.cs, HttpRuntimeSection.cs,
  408. SessionPageStateSection.cs, TrustSection.cs,
  409. AnonymousIdentificationSection.cs, WebControlsSection.cs,
  410. ClientTarget.cs, TagMapInfo.cs, AuthorizationSection.cs,
  411. ProcessModelSection.cs, RoleManagerSection.cs,
  412. MembershipSection.cs, CustomErrorsSection.cs (..cctor): fix
  413. validator/converters.
  414. * MachineKeySection.cs (..cctor): fix validators/converters.
  415. (Validation): enable the Converter.
  416. * CodeSubDirectory.cs (..cctor): fix validator/converters.
  417. (DirectoryName): add note about missing validator decoration.
  418. * HttpModuleAction.cs (..cctor): init properties.
  419. (Properties): return properties.
  420. * CompilationSection.cs (..cctor): fix validator/converters.
  421. (GetInstance): add in this pre-2.0 interface for the time being,
  422. hopefully it'll make it easier to migrate later on.
  423. * HttpHandlerActionCollection.cs (..cctor): init properties.
  424. (Properties): return properties.
  425. * PagesSection.cs (..cctor): fix validator/converters.
  426. (GetInstance): add in this pre-2.0 interface for the time being,
  427. hopefully it'll make it easier to migrate later on.
  428. * HttpHandlersSection.cs (..cctor): init properties.
  429. (Properties): return properties.
  430. * EventMappingSettings.cs (..cctor): fix validator/converters.
  431. (Name): add note about missing validator decoration.
  432. * HttpHandlerAction.cs (..cctor): fix validator/converters.
  433. (PAth, Type, Verb): add note about missing validator decoration.
  434. * NamespaceCollection.cs (..cctor): fix properties.
  435. * ProfilePropertySettingsCollection.cs (..cctor): init properties.
  436. (..ctor): don't throw NIE.
  437. (Properties): return properties.
  438. * HttpModuleActionCollection.cs (..cctor): init properties.
  439. (Properties): return properties.
  440. * CacheSection.cs (..cctor): fix validators/converters.
  441. (PrivateBytesPollTime): add note about missing validator
  442. decoration.
  443. * AuthorizationRule.cs (..cctor): fix validators/converters.
  444. (Roles, Users, Verbs): enable the TypeConverter decorations.
  445. * UrlMapping.cs (ValidateUrl): static method for use as a
  446. validation callback. unimplemented as yet.
  447. (..cctor): fix validators/converters.
  448. (MappedUrl): add note about missing validator decoration.
  449. * PropertyHelper.cs: static utility class which contains
  450. references to validators and converters for use in static
  451. constructors (building the Properties arrays).
  452. 2005-11-23 Chris Toshok <[email protected]>
  453. * MachineKeyValidationConverter.cs: new converter (and a pretty
  454. silly one, considering all it seems to do is convert "TripleDES"
  455. to "3DES").
  456. * HostingEnvironmentSection.cs (.cctor): use
  457. PositiveTimeSpanValidator like MS does.
  458. 2005-11-18 Chris Toshok <[email protected]>
  459. * HostingEnvironmentSection.cs (.cctor): add validators.
  460. * CompilationSection.cs (.cctor): fix defaultvalue of
  461. urlLinePragmas.
  462. 2005-11-18 Chris Toshok <[email protected]>
  463. * SystemWebSectionGroup.cs: enable a whole slew of properties.
  464. * RegexWorker.cs: stub this out.
  465. * HttpCapabilitiesBase.cs: remove GetClrVersions since it's in one
  466. of the other partial files.
  467. * CompilationSection.cs: fix this up.
  468. * PagesSection.cs: fix some types and add a comment to
  469. DeserializeSection.
  470. * CompilerCollection.cs (Add): new internal method.
  471. * ProvidersHelper.cs: put the using System.Configuration.Provider
  472. inside the NET_2_0 block.
  473. * CacheSection.cs: add validators.
  474. 2005-11-14 Chris Toshok <[email protected]>
  475. * BufferModeSettings.cs: add validators/converters to the
  476. programmatic property list.
  477. * BuildProvider.cs: add validators/converters to the programmatic
  478. property list, and add an internal ctor with no args.
  479. * Compiler.cs: wrap the code i hacked from the 1.1 stuff with a
  480. #region.
  481. * BuildProviderCollection.cs (CreateNewElement): use the internal
  482. BuildProvider ctor to get around validation.
  483. * AssemblyCollection.cs: same.
  484. 2005-11-14 Chris Toshok <[email protected]>
  485. * TagPrefixCollection.cs (Remove): pass the key to BaseRemove.
  486. (set_Item (int index)): implement.
  487. * TagPrefixInfo.cs (Equals): implement.
  488. (GetHashCode): implement.
  489. * AuthorizationRuleCollection.cs (CreateNewElement(string)):
  490. implement propertly.
  491. (IndexOf): implement.
  492. (IsElementName): implement.
  493. (ElementName): implement.
  494. (Item (int index)): implement.
  495. * FormsAuthenticationUserCollection.cs (set_Item (int index)): implement.
  496. * UrlMappingCollection.cs (set_Item (int index)): implement.
  497. * OutputCacheProfileCollection.cs (set_Item (int index)): implement.
  498. * TransformerInfo.cs (Equals): implement.
  499. (GetHashCode): implement.
  500. * NamespaceInfo.cs (Equals): implement.
  501. (GetHashCode): implement.
  502. * ProfileSettingsCollection.cs (set_Item (int index)): implement.
  503. * TransformerInfoCollection.cs (set_Item (int index)): implement.
  504. * HttpHandlerActionCollection.cs (set_Item (int index)): implement.
  505. * BufferModesCollection.cs (set_Item (int index)): implement.
  506. * BuildProvider.cs: use the base[fooProp] pattern instead of
  507. instance fields.
  508. * ProfileGroupSettingsCollection.cs: implement most of this class.
  509. * RuleSettingsCollection.cs (set_Item (int index)): implement.
  510. * ClientTargetCollection.cs (set_Item (int index)): implement.
  511. * AssemblyCollection.cs (set_Item (int index)): implement.
  512. * BuildProviderCollection.cs (set_Item (int index)): reformat.
  513. * CustomError.cs (Equals): implement.
  514. (GetHashCode): implement.
  515. * ExpressionBuilderCollection.cs (set_Item (int index)): reformat.
  516. * PassportAuthentication.cs (RedirectUrl): express consternation
  517. in comment form.
  518. * NamespaceCollection.cs (set_Item (int index)): implement.
  519. * RootProfilePropertySettingsCollection.cs (SerializeElement): add
  520. comment.
  521. * ProfilePropertySettingsCollection.cs (set_Item (int index)):
  522. implement.
  523. * CustomErrorCollection.cs (set_Item (int index)): implement.
  524. * HttpModuleActionCollection.cs (set_Item (int index)): implement.
  525. * CodeSubDirectoriesCollection.cs (set_Item (int index)):
  526. implement.
  527. * CustomErrorsSection.cs (DeserializeSection): include call to
  528. base.DeserializeSection, and add MonoTODO.
  529. * EventMappingSettingsCollection.cs (set_Item (int index)):
  530. implement.
  531. * AuthorizationRule.cs (Equals): implement.
  532. (GetHashCode): implement.
  533. (SerializeElement): add comment.
  534. * TagMapCollection.cs (Remove): pass the key to BaseRemove.
  535. (set_Item (int index)): implement.
  536. * TagMapInfo.cs (Equals): implement.
  537. (GetHashCode): implement.
  538. (SerializeElement): add call to base.SerializeElement.
  539. * TrustLevelCollection.cs (Remove): pass the key to BaseRemove.
  540. (GetElementKey): implement.
  541. * SqlCacheDependencyDatabase.cs (set_Item (int index)): implement.
  542. * WebContext.cs: new implementation.
  543. 2005-11-13 Chris Toshok <[email protected]>
  544. * AnonymousIdentificationSection.cs: rework this class a bit to
  545. fit in with the rest of S.W.C. Add validators to the
  546. ConfigurationProperty ctor calls, a pattern which will need to be
  547. replicated across the entire assembly, it appears (uggggh).
  548. 2005-11-13 Chris Toshok <[email protected]>
  549. * AuthorizationRuleCollection.cs: fix ConfigurationCollection
  550. attribute.
  551. * TransformerInfo.cs: fix corcompare.
  552. * SqlCacheDependencyDatabase.cs: mark ctor internal to fix
  553. corcompare.
  554. * AuthenticationSection.cs: add missing Reset stub.
  555. * ProfileSettingsCollection.cs: use the more succint ctor.
  556. * FormsAuthenticationUser.cs: enable the TypeConverter on "name".
  557. * GlobalizationSection.cs: fix up corcompare.
  558. * WebPartsSection.cs: fix up corcompare.
  559. * ProfileGroupSettingsCollection.cs: add missing
  560. ConfigurationCollection attribute.
  561. * ExpressionBuilder.cs: implement.
  562. * FormsAuthenticationCredentials.cs: fix up corcompare.
  563. * AssemblyCollection.cs: implement Properties.
  564. * SiteMapSection.cs: implement Properties.
  565. * ExpressionBuilderCollection.cs: fix up corcompare.
  566. * ProfileSettings.cs: add missing ctor.
  567. * PassportAuthentication.cs: new implementation.
  568. * SqlCacheDependencySection.cs: fix up corcompare.
  569. * ProfilePropertySettingsCollection.cs: fix up corcompare.
  570. * HttpModuleActionCollection.cs: fix up corcompare.
  571. * EventMappingSettingsCollection.cs: fix up corcompare.
  572. * AuthorizationRule.cs: fix up corcompare.
  573. * WebControlsSection.cs: fix up corcompare.
  574. * AuthorizationSection.cs: fix up corcompare.
  575. * MembershipSection.cs: clean this up, implement Properties, fix
  576. up corcompare, etc.
  577. 2005-11-13 Chris Toshok <[email protected]>
  578. * UrlMapping.cs, CustomErrorCollection.cs, CustomError.cs,
  579. HostingEnvironmentSection.cs, TrustLevel.cs,
  580. HttpCookiesSection.cs, UrlMappingsSection.cs,
  581. UrlMappingCollection.cs, LowerCaseStringConverter.cs,
  582. RoleManagerSection.cs, ProcessModelSection.cs,
  583. TrustLevelCollection.cs, ClientTarget.cs, CustomErrorsSection.cs,
  584. MachineKeySection.cs, SessionPageStateSection.cs,
  585. SessionStateSection.cs, ProvidersHelper.cs,
  586. ClientTargetCollection.cs, SecurityPolicySection.cs,
  587. HttpCapabilitiesBase.cs, ClientTargetSection.cs: Another large
  588. swath.
  589. 2005-11-12 Chris Toshok <[email protected]>
  590. * AuthorizationRuleCollection.cs, AuthorizationRule.cs,
  591. AuthorizationSection.cs, BufferModesCollection.cs,
  592. BufferModeSettings.cs, CacheSection.cs, CompilerCollection.cs,
  593. Compiler.cs, DeploymentSection.cs,
  594. EventMappingSettingsCollection.cs, EventMappingSettings.cs,
  595. GlobalizationSection.cs, HealthMonitoringSection.cs,
  596. IdentitySection.cs, OutputCacheProfileCollection.cs,
  597. OutputCacheProfile.cs, OutputCacheSection.cs,
  598. OutputCacheSettingsSection.cs, ProfileSettingsCollection.cs,
  599. ProfileSettings.cs, RuleSettingsCollection.cs, RuleSettings.cs,
  600. SqlCacheDependencyDatabaseCollection.cs,
  601. SqlCacheDependencyDatabase.cs, SqlCacheDependencySection.cs,
  602. SystemWebCachingSectionGroup.cs, TraceSection.cs,
  603. TransformerInfoCollection.cs, TransformerInfo.cs, TrustSection.cs,
  604. WebControlsSection.cs, WebPartsPersonalizationAuthorization.cs,
  605. WebPartsPersonalization.cs, WebPartsSection.cs,
  606. XhtmlConformanceSection.cs: a whole slew of new classes. the
  607. fruits of tons of c&p and ibuprofen.
  608. 2005-11-09 Chris Toshok <[email protected]>
  609. * PagesSection.cs, AuthenticationSection.cs, BuildProvider.cs,
  610. BuildProviderCollection.cs, HttpHandlerActionCollection.cs,
  611. HttpModulesSection.cs, HttpModuleAction.cs,
  612. HttpModuleActionCollection.cs, AnonymousIdentificationSection.cs,
  613. CodeSubDirectory.cs, CodeSubDirectoriesCollection.cs,
  614. SystemWebSectionGroup.cs, SiteMapSection.cs,
  615. WebConfigurationManager.cs: flesh out the implementation.
  616. * TagMap*.cs, TagPrefix*.cs: new implementation.
  617. * FormsAuthentication*.cs: new implementation.
  618. * Profile*.cs: new implementation.
  619. * Namespace*.cs: new implementation.
  620. * HttpRuntimeSection.cs: new implementation.