Author: krasnov
Date: 2006-08-08 13:00:23 -0400 (Tue, 08 Aug 2006)
New Revision: 63498

Added:
   
trunk/mcs/class/System.Web/System.Web.Compilation/ThemeDirectoryCompiler.jvm.cs
Modified:
   trunk/mcs/class/System.Web/System.Web.Compilation/ChangeLog
Log:
* added ThemeDirectoryCompiler.jvm.cs

Modified: trunk/mcs/class/System.Web/System.Web.Compilation/ChangeLog
===================================================================
--- trunk/mcs/class/System.Web/System.Web.Compilation/ChangeLog 2006-08-08 
16:57:39 UTC (rev 63497)
+++ trunk/mcs/class/System.Web/System.Web.Compilation/ChangeLog 2006-08-08 
17:00:23 UTC (rev 63498)
@@ -1,3 +1,7 @@
+2006-08-08  Vladimir Krasnov  <[EMAIL PROTECTED]>
+
+       * added ThemeDirectoryCompiler.jvm.cs
+
 2006-07-28 Gonzalo Paniagua Javier <[EMAIL PROTECTED]>
 
        * PageThemeCompiler.cs: Don't generate a 'Items.Clear ()' call if

Added: 
trunk/mcs/class/System.Web/System.Web.Compilation/ThemeDirectoryCompiler.jvm.cs
===================================================================
--- 
trunk/mcs/class/System.Web/System.Web.Compilation/ThemeDirectoryCompiler.jvm.cs 
    2006-08-08 16:57:39 UTC (rev 63497)
+++ 
trunk/mcs/class/System.Web/System.Web.Compilation/ThemeDirectoryCompiler.jvm.cs 
    2006-08-08 17:00:23 UTC (rev 63498)
@@ -0,0 +1,51 @@
+//
+// System.Web.UI.ThemeDirectoryCompiler
+//
+// Authors:
+//   Chris Toshok ([EMAIL PROTECTED])
+//
+// (C) 2006 Novell, Inc. (http://www.novell.com)
+//
+
+//
+// Permission is hereby granted, free of charge, to any person obtaining
+// a copy of this software and associated documentation files (the
+// "Software"), to deal in the Software without restriction, including
+// without limitation the rights to use, copy, modify, merge, publish,
+// distribute, sublicense, and/or sell copies of the Software, and to
+// permit persons to whom the Software is furnished to do so, subject to
+// the following conditions:
+// 
+// The above copyright notice and this permission notice shall be
+// included in all copies or substantial portions of the Software.
+// 
+// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
+// EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
+// MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
+// NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
+// LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
+// OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
+// WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
+//
+
+#if NET_2_0
+
+using System;
+using System.Collections;
+using System.IO;
+using System.Web;
+using System.Web.Compilation;
+using System.Web.Util;
+
+namespace System.Web.UI
+{
+       internal sealed class ThemeDirectoryCompiler
+       {
+               public static PageTheme GetCompiledInstance (string 
virtualPath, HttpContext context)
+               {
+                       return null;
+               }
+       }
+}
+
+#endif

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

Reply via email to