[corlib] Improve CancellationTokenSource test
[mono.git] / mcs / class / System.Web / System.Web.Hosting / ChangeLog
index 05cbd72d704170fee7331aa995d80db65be7fbc7..e278c6d657819b4d01b438cc927aa1df949b1099 100644 (file)
@@ -1,3 +1,146 @@
+2010-02-18  Marek Habersack  <mhabersack@novell.com>
+
+       * HostingEnvironment.cs: removed SetHostingId and added internal
+       setters to the SiteName and IsHosted properties.
+
+       * ApplicationManager.cs: CreateHost doesn't have to call set
+       HostingEnvironment.IsHosted, it is done in
+       ApplicationHost.CreateApplicationHost.
+
+       * ApplicationHost.cs: set the ".appId" item in the new appdomain's
+       data, so that HttpRuntime.AppDomainAppId returns a non-null
+       value.
+       Set HostingEnvironment.{IsHosted, SiteName} in the new appdomain
+       instead of the original one.
+
+       All of the above fix bug #578880
+
+2010-01-14  Marek Habersack  <mhabersack@novell.com>
+
+       * ApplicationManager.cs: implemented a missing CreateObject
+       overload
+
+2009-11-18  Marek Habersack  <mhabersack@novell.com>
+
+       * ApplicationHost.cs: changed the order of file names in
+       WebConfigFileNames, so that our global web.config is found first
+       (it's frequently accessed)
+
+2009-10-20 Gonzalo Paniagua Javier <gonzalo@novell.com>
+
+       * ApplicationHost.cs: set the shadow copy options calling the methods
+       in AppDomain, instead of setting them in a copy of the setup
+       information.
+
+2009-10-14 Gonzalo Paniagua Javier <gonzalo@novell.com>
+
+       * ApplicationHost.cs: use shadowCopyBinAssemblies from
+       <hostingEnvironment>.
+
+2009-09-07  Marek Habersack  <mhabersack@novell.com>
+
+       * HostingEnvironment.cs: MapPath checks if HttpContext.Request
+       actually exists before using it.
+
+2009-08-26  Marek Habersack  <mhabersack@novell.com>
+
+       * IApplicationHost.cs: added
+
+2009-07-10 Gonzalo Paniagua Javier <gonzalo@novell.com>
+
+       * SimpleWorkerRequest.cs: move this back to an instance property.
+       Cache works now.
+
+2009-07-09 Gonzalo Paniagua Javier <gonzalo@novell.com>
+
+       * SimpleWorkerRequest.cs: store the root web configuration path in a
+       static variable.
+
+2009-02-19  Marek Habersack  <mhabersack@novell.com>
+
+       * ApplicationHost.cs: added support for the
+       __MONO_DOMAIN_ID_SUFFIX environment variable, used by mod_mono.
+
+2008-10-29  Marek Habersack  <mhabersack@novell.com>
+
+       * ApplicationHost.cs: set domain setup CachePath to the same value
+       as DynamicBase, so that shadow-copied assemblies appear under the
+       same location what generated files.
+
+2008-05-13  Gert Driesen  <drieseng@users.sourceforge.net>
+
+       * VirtualPathProvider.cs: Removed debug code.
+
+2008-04-08  Marek Habersack  <mhabersack@novell.com>
+
+       * DefaultVirtualDirectory.cs: fixed the constructor - derive
+       virtual directory from the original path.
+       AddDirectories and AddFiles combine the virtual paths properly
+       now.
+
+2008-04-01  Marek Habersack  <mhabersack@novell.com>
+
+       * HostingEnvironment.cs: initialize custom VPP on
+       registration.
+       Added an internal boolena property to signal if we're using a
+       custom VPP or not (HaveCustomVPP)
+
+2008-03-31  Marek Habersack  <mhabersack@novell.com>
+
+       * VirtualPathProvider.cs: internal SetPrevious method renamed to
+       InitializeAndSetPrevious.
+
+2008-03-27  Marek Habersack  <mhabersack@novell.com>
+
+       * DefaultVirtualPathProvider.cs: support relative virtual paths in
+       all the methods.
+
+       * VirtualPathProvider.cs: FileExists should chain to the previous
+       handler, if present.
+
+2008-03-13  Marek Habersack  <mhabersack@novell.com>
+
+       * ApplicationHost.cs: use HttpRuntime.CaseInsensitive when
+       checking whether we're running in a case-insensitive environment.
+       Revert to the single-bin-dir behavior when setting the
+       PrivateBinPath - the directories are sought for in the order given
+       by HttpApplication.BinDirs and the first existing directory is set
+       as the value of PrivateBinPath. If none of those are found,
+       PrivateBinPath defaults to "bin" (and "/app/full/path/bin" in the
+       2.0 profile)
+
+2008-03-12  Marek Habersack  <mhabersack@novell.com>
+
+       * DefaultVirtualPathProvider.cs: disable throwing an exception
+       when a virtual path is passed to FileExists.
+
+2008-02-18  Marek Habersack  <mhabersack@novell.com>
+
+       * VirtualPathProvider.cs: chain up to the previous provider, if
+       prexent. Fixes bug #362038
+
+2008-01-06  Marek Habersack  <mhabersack@novell.com>
+
+       * ApplicationHost.cs: make sure that application with virtualDir
+       "/a" and physicalDir "/b" and the other way around get different
+       domain_id values.
+
+2007-12-13  Marek Habersack  <mhabersack@novell.com>
+
+       * ApplicationManager.cs, ApplicationHost.cs,
+       DefaultVirtualPathProvider.cs: speed optimization - use
+       String.Concat instead of String.Format in some cases.
+
+2007-11-03  Gert Driesen  <drieseng@users.sourceforge.net>
+
+       * ApplicationHost.cs: On 2.0, also make PrivateBinPath an absolute
+       paths on Windows (and on systems using MONO_IOMAP).
+
+2007-11-03  Marek Habersack  <mhabersack@novell.com>
+
+       * ApplicationHost.cs: AppDomainSetup.PrivateBinPath is a list of
+       full paths on 2.0.
+
 2007-10-24  Marek Habersack  <mhabersack@novell.com>
 
        * ApplicationHost.cs: ignore exceptions resulting from the attempt