Author: mhabersack
Date: 2008-02-06 07:44:19 -0500 (Wed, 06 Feb 2008)
New Revision: 95016

Modified:
   branches/mono-1-9/mcs/class/System.Web/System.Web/ChangeLog
   branches/mono-1-9/mcs/class/System.Web/System.Web/HttpRuntime.cs
Log:
Backport of r95015


Modified: branches/mono-1-9/mcs/class/System.Web/System.Web/ChangeLog
===================================================================
--- branches/mono-1-9/mcs/class/System.Web/System.Web/ChangeLog 2008-02-06 
12:43:55 UTC (rev 95015)
+++ branches/mono-1-9/mcs/class/System.Web/System.Web/ChangeLog 2008-02-06 
12:44:19 UTC (rev 95016)
@@ -5,6 +5,8 @@
 
        * HttpRuntime.cs: when switching to offline mode fire the
        shutdown events. Fixes bug #357565.
+       Watch for Created event in the FileSystemWatcher for the
+       app_offline.htm files.
 
 2008-01-27  Igor Zelmanovich <[EMAIL PROTECTED]>
 

Modified: branches/mono-1-9/mcs/class/System.Web/System.Web/HttpRuntime.cs
===================================================================
--- branches/mono-1-9/mcs/class/System.Web/System.Web/HttpRuntime.cs    
2008-02-06 12:43:55 UTC (rev 95015)
+++ branches/mono-1-9/mcs/class/System.Web/System.Web/HttpRuntime.cs    
2008-02-06 12:44:19 UTC (rev 95016)
@@ -403,6 +403,7 @@
                                        watcher.NotifyFilter |= 
NotifyFilters.Size;
                                        watcher.Deleted += seh;
                                        watcher.Changed += seh;
+                                       watcher.Created += seh;
                                        watcher.Renamed += reh;
                                        watcher.EnableRaisingEvents = true;
                                        

_______________________________________________
Mono-patches maillist  -  [email protected]
http://lists.ximian.com/mailman/listinfo/mono-patches

Reply via email to