X-Git-Url: http://wien.tomnetworks.com/gitweb/?a=blobdiff_plain;f=mcs%2Fclass%2FSystem.Web%2FSystem.Web.Hosting%2FChangeLog;h=e278c6d657819b4d01b438cc927aa1df949b1099;hb=bf5947a0fd2b523c30833605ee69b2b041aa43f4;hp=4cb9afecbe9f3411370718a6eca21bad7a44a299;hpb=6f94553690b1cd6487bcc206aec7f58c99f77adb;p=mono.git diff --git a/mcs/class/System.Web/System.Web.Hosting/ChangeLog b/mcs/class/System.Web/System.Web.Hosting/ChangeLog index 4cb9afecbe9..e278c6d6578 100644 --- a/mcs/class/System.Web/System.Web.Hosting/ChangeLog +++ b/mcs/class/System.Web/System.Web.Hosting/ChangeLog @@ -1,3 +1,103 @@ +2010-02-18 Marek Habersack + + * 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 + + * ApplicationManager.cs: implemented a missing CreateObject + overload + +2009-11-18 Marek Habersack + + * 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 + + * 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 + + * ApplicationHost.cs: use shadowCopyBinAssemblies from + . + +2009-09-07 Marek Habersack + + * HostingEnvironment.cs: MapPath checks if HttpContext.Request + actually exists before using it. + +2009-08-26 Marek Habersack + + * IApplicationHost.cs: added + +2009-07-10 Gonzalo Paniagua Javier + + * SimpleWorkerRequest.cs: move this back to an instance property. + Cache works now. + +2009-07-09 Gonzalo Paniagua Javier + + * SimpleWorkerRequest.cs: store the root web configuration path in a + static variable. + +2009-02-19 Marek Habersack + + * ApplicationHost.cs: added support for the + __MONO_DOMAIN_ID_SUFFIX environment variable, used by mod_mono. + +2008-10-29 Marek Habersack + + * 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 + + * VirtualPathProvider.cs: Removed debug code. + +2008-04-08 Marek Habersack + + * 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 + + * 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 + + * VirtualPathProvider.cs: internal SetPrevious method renamed to + InitializeAndSetPrevious. + +2008-03-27 Marek Habersack + + * 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 * ApplicationHost.cs: use HttpRuntime.CaseInsensitive when