Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'mcs/class/System.Web/System.Web.Configuration_2.0/ChangeLog')
-rw-r--r--mcs/class/System.Web/System.Web.Configuration_2.0/ChangeLog163
1 files changed, 0 insertions, 163 deletions
diff --git a/mcs/class/System.Web/System.Web.Configuration_2.0/ChangeLog b/mcs/class/System.Web/System.Web.Configuration_2.0/ChangeLog
index a67bbb69d80..c1a79fb5ae3 100644
--- a/mcs/class/System.Web/System.Web.Configuration_2.0/ChangeLog
+++ b/mcs/class/System.Web/System.Web.Configuration_2.0/ChangeLog
@@ -1,166 +1,3 @@
-2006-02-28 Chris Toshok <toshok@ximian.com>
-
- * BuildProviderAppliesTo.cs, PagesToCountAction.cs: nuke.
-
-2006-02-10 Gonzalo Paniagua Javier <gonzalo@ximian.com>
-
- * Compiler.cs:
- * CompilerCollection.cs: removed compatibility code.
-
- * BuildProviderCollection.cs: add GetProviderForExtension().
-
-2006-02-02 Chris Toshok <toshok@ximian.com>
-
- * WebConfigurationManager.cs (GetSection(string,string)):
- implement.
-
-2006-02-01 Atsushi Enomoto <atsushi@ximian.com>
-
- * TrustLevelCollection.cs, CodeSubDirectoriesCollection.cs,
- CustomErrorCollection.cs, CompilerCollection.cs,
- HttpHandlerActionCollection.cs,
- FormsAuthenticationUserCollection.cs,
- AuthorizationRuleCollection.cs, TagPrefixCollection.cs :
- CollectionType is public.
-
-2006-02-01 Chris Toshok <toshok@ximian.com>
-
- * WebConfigurationManager.cs: In the normal case, get the current
- request's web.config, not the application's. If there is no
- current request, get the application's.
- (GetWebApplicationConfiguration): use Request.ApplicationPath, not
- Request.PhysicalApplicationPath. OpenWebConfiguration takes
- virtual paths.
-
- * HttpConfigurationSystem.cs: GetWebApplicationSection =>
- GetSection.
-
-2006-02-01 Chris Toshok <toshok@ximian.com>
-
- * CompilerCollection.cs: CONFIGURATION_2_0 => NET_2_0
-
- * Compiler.cs: same.
-
-2006-02-01 Chris Toshok <toshok@ximian.com>
-
- * HttpConfigurationSystem.cs: SupportsUserConfig == true. let's
- use this to determine if ConfigurationManager.AppSettings should
- be read-only or not.
-
-2006-01-31 Chris Toshok <toshok@ximian.com>
-
- * WebConfigurationManager.cs: err, why did i ifdef stuff NET_2_0
- inside of an ifdef NET_2_0?
-
-2006-01-30 Chris Toshok <toshok@ximian.com>
-
- * WebConfigurationManager.cs: lots of little changes. hopefully
- this doesn't break anyone. it fixes all the nunit problems
- gonzalo was having.
-
- * WebConfigurationHost.cs (GetStreamName): in the MachineWebPath
- case, handle the case where we have a WebConfigurationFileMap.
- (MapPath): this is likely wrong, but in the case where we don't
- have a file map or current HttpContext, just return the path.
-
-2006-01-29 Chris Toshok <toshok@ximian.com>
-
- * HttpModulesSection.cs (LoadModules): I'm not sure we want to
- solve this problem in this way, but the 1.x code forces
- DefaultAuthenticationModule to be in the list of modules..
- Without this fix (or something else) HttpContext.User is null when
- it shouldn't be.
-
-2006-01-26 Chris Toshok <toshok@ximian.com>
-
- * HttpConfigurationSystem.cs: new class that gets sections from
- web.config files.
-
- * WebConfigurationManager.cs: change a lot of the
- NotImplementedExceptions to NotSupportedExceptions.
- (AppSettings): implement by just returning
- ConfigurationManager.AppSettings (note this is broken because
- ConfigurationManager.AppSettings are read-only, but it works for
- reading.)
- (ConnectionStrings): same (and probably broken in the same way..)
- (Init): replace the 2.0 IInternalConfigSystem with our
- HttpConfigurationSystem.
-
- * WebConfigurationHost.cs: add a comment about how things are
- likely to work in the face of IRemoteWebConfigurationHostServer.
- (CreateConfigurationContext): return a WebContext instance.
-
-2006-01-25 Chris Toshok <toshok@ximian.com>
-
- * AuthorizationSection.cs (IsValidUser): instead of a blanket
- false for a null user, just set the username to "" and short
- circuit out the check for roles.
-
-2006-01-25 Chris Toshok <toshok@ximian.com>
-
- * AuthorizationRule.cs (CheckUser): handle * and ?, and use
- String.Compare instead of ==.
- (CheckVerb): use String.Compare instead of ==.
-
- * AuthorizationSection.cs (IsValidUser): return false for a null
- user.
-
-2006-01-22 Chris Toshok <toshok@ximian.com>
-
- * GlobalizationSection.cs (VerifyData): quiet mcs.
-
-2006-01-18 Chris Toshok <toshok@ximian.com>
-
- * SystemWebSectionGroup.cs: wrap System.Web.Services references in
- WEBSERVICES_DEP.
-
-2006-01-16 Chris Toshok <toshok@ximian.com>
-
- * WebConfigurationManager.cs: implement a IConfigurationSystem for
- use with WebConfigurationManager.
- (GetSection): try to load the section
- using GetWebApplicationSection before calling into
- ConfigurationManager.GetSection.
- (GetWebApplicationConfiguration): move common code to here.
- (GetWebApplicationSection): use GetWebApplicationConfiguration.
- (AppSettings): implement.
-
- * WebConfigurationHost.cs (GetWebConfigFileName): add
- "Web.Config", and move to an array/loop implementation. maybe we
- should scan the directory and check ToLower() instead of
- explicitly enumerating?
-
-2006-01-10 Chris Toshok <toshok@ximian.com>
-
- * SystemWebSectionGroup.cs (HostingEnvironment): enable this property.
- (ProcessModel): add the ConfigurationPropertyAttribute.
-
-2006-01-10 Chris Toshok <toshok@ximian.com>
-
- * PagesSection.cs (.cctor): fix the default value for the
- enableSessionState attribute - it's not a bool, but a
- PagesEnableSessionState enum.
-
-2006-01-10 Chris Toshok <toshok@ximian.com>
-
- * MachineKeySection.cs (ValidationKeyBytes, DecryptionKeyBytes,
- DecryptionKey192Bits): if the keys are null, generate them. Fixes
- Page.EnableViewStateMac support.
-
-2006-01-09 Chris Toshok <toshok@ximian.com>
-
- * RoleManagerSection.cs, SqlCacheDepencendySection.cs,
- SessionStateSection.cs, TraceSection.cs, SecurityPolicySection.cs,
- PagesSection.cs, RulesSettings.cs, UrlMappingSection.cs: fix
- dumper output.
-
-2006-01-09 Chris Toshok <toshok@ximian.com>
-
- * ExpressionBuilderCollection.cs (.cctor): no need to create a
- collection property here. we're already in the collection.
-
- * CompilationSection.cs: fix typo.
-
2006-01-04 Chris Toshok <toshok@ximian.com>
* MachineKeySection.cs: bring over some more internal methods from