2008-04-15 Marek Habersack <mhabersack@novell.com>
[mono.git] / mcs / class / System.Web / System.Web.Hosting / ChangeLog
index ca382c3ab7410c1f01ea32ec9389b47e4ce2ed29..bd06c64f0df55c0667e143d3d71e9f5761fb30b1 100644 (file)
@@ -1,3 +1,203 @@
+2008-04-15  Marek Habersack  <mhabersack@novell.com>
+
+       * ApplicationHost.cs: restore Bin;bin to PrivateBinPath, as a
+       work-around for an IOMAP bug. Fixes bugs #379890 and #379888
+
+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
+       to delete a stamp directory in CreateApplicationHost. It is safe
+       to do so, since the code inside the loop serves the only purpose
+       to create the asp.net temporary directory if the filesystem
+       permissions allow it. If the directory has been deleted by some
+       other thread, that's ok.
+
+2007-10-17  Marek Habersack  <mhabersack@novell.com>
+
+       * ApplicationHost.cs: introduce an application domain data item to
+       allow checks for whether System.Web code runs inside a hosted
+       application or in a stand-alone one.
+       Made the array of web.config name variations an internal one, to
+       be used from within configuration code.
+
+2007-08-24  Marek Habersack  <mhabersack@novell.com>
+
+       * ApplicationHost.cs: use ; as the separator with PrivateBinPath.
+
+2007-08-23  Marek Habersack  <mhabersack@novell.com>
+
+       * ApplicationHost.cs: set AppDomainSetup.PrivateBinPath to "bin"
+       if running on Windows or with MONO_IOMAP in effect, and to
+       "Bin:bin" otherwise.
+
+2007-08-21  Marek Habersack  <mhabersack@novell.com>
+
+       * ApplicationHost.cs: AppDomainSetup.PrivateBinPath should contain
+       a list of paths relative to AppDomainSetup.ApplicationBase, not a
+       full path.
+       We no longer check if the bin directories exist, the user can
+       create them while the application is running.
+
+2007-07-21  Marek Habersack  <mhabersack@novell.com>
+
+       * ApplicationHost.cs: ClearDynamicBaseDirectory becomes an
+       internal method.
+
+2007-07-12  Marek Habersack  <mhabersack@novell.com>
+
+       * HostingEnvironment.cs: allow relative paths to be
+       passed. Matches both MSDN and the MS.NET behavior. Fixes bug
+       #82061.
+
+2007-05-09 Igor Zelmanovich <igorz@mainsoft.com>
+
+       * ApplicationHost.cs:
+       added MonoNotSupported attribute for TARGATE_JVM.       
+
+2007-04-13  Marek Habersack  <mhabersack@novell.com>
+
+       * ApplicationHost.cs: clear the dynamic base directory before
+       creating the host. Fixes bug #80635
+
+2007-04-05  Marek Habersack  <mhabersack@novell.com>
+
+       * ApplicationHost.cs: make ApplicationName/domain id really
+       unique.
+
+2007-02-21  Marek Habersack  <grendello@gmail.com>
+
+       * ApplicationHost.cs: support both Bin and bin directories, prefer
+       the former.
+
+2007-02-19  Marek Habersack  <grendello@gmail.com>
+
+       * ApplicationHost.cs: Use a deterministic application name, so
+       that the temporary location is always in the same place for the
+       given app.
+
+2007-01-30  Marek Habersack  <grendello@gmail.com>
+
+       * ApplicationHost.cs: Define AppDomain data item "DataDirectory" - used
+       by the ADO.NET |DataDirectory| connection string placeholder. Present
+       by default in MS.NET.
+
+2007-01-20  Miguel de Icaza  <miguel@novell.com>
+
+       * ApplicationManager.cs: Remove unused variable.
+       (ShutdownAll) remove unused variables.
+
+       * ApplicationHost.cs: Protect create_dir lock 
+
+2007-01-19  Marek Habersack  <grendello@gmail.com>
+
+       * SimpleWorkerRequest.cs: If path is empty, return the physical
+       application directory. Fixes bug #80544.
+
+2007-01-17  Adar Wesley <adarw@mainsoft.com>
+
+       * ApplicationHost.cs: tweaking CreateApplicationHost to throw the 
+       right exceptions so the tests will pass.
+
+2007-01-11  Adar Wesley <adarw@mainsoft.com>
+
+       * ApplicationHost.cs: fixed AppDomain initialization of physical
+       path to be in file system semantics
+
+2006-12-22  Marek Habersack  <grendello@gmail.com>
+
+       * HostingEnvironment.cs: implemented the SetCultures methods.
+
+2006-12-19 Igor Zelmanovich <igorz@mainsoft.com>
+
+       * ServletWorkerRequest.cs: fixed:
+       Path.Combine is used in GetFilePathTranslated to consider 
+       platform-depended PathSeparator char.
+
+2006-12-07  Vladimir Krasnov  <vladimirk@mainsoft.com>
+
+       * ServletWorkerRequest.jvm.cs: fixed request uri unescaping in
+       ServletWorkerRequest ctor
+
+2006-11-24  Miguel de Icaza  <miguel@novell.com>
+
+       * ApplicationHost.cs: In 2.0, as Todd reports the default is
+       "Web.Config", try that before we tell people to use MONO_IOMAP=all ;-)
+
+2006-11-07 Gonzalo Paniagua Javier <gonzalo@ximian.com>
+
+       * ApplicationHost.cs: the new Directory code throws if the directory
+       exists, so handle that as gracefully as possible.
+
 2006-08-23 Konstantin Triger <kostat@mainsoft.com>
 
        * ServletWorkerRequest.jvm.cs: fix default page resolution.