Moves the CSS reference from the module file to the html file. Consistent with
the new, shiny war structure. 

Patch by: amitmanjhi
Review by: scottb ("semantic" review)



git-svn-id: https://google-web-toolkit.googlecode.com/svn/releases/1.6@4008 8db76d5a-ed1c-0410-87a9-c151d255dfc7
diff --git a/user/src/com/google/gwt/user/tools/AppHtml.htmlsrc b/user/src/com/google/gwt/user/tools/AppHtml.htmlsrc
index d105aeb..9f9c72f 100644
--- a/user/src/com/google/gwt/user/tools/AppHtml.htmlsrc
+++ b/user/src/com/google/gwt/user/tools/AppHtml.htmlsrc
@@ -9,6 +9,10 @@
 <html>
   <head>
     <meta http-equiv="content-type" content="text/html; charset=UTF-8">
+    <!--                                                               -->
+    <!-- Consider inlining CSS to reduce the number of requested files -->
+    <!--                                                               -->
+    <link type="text/css" rel="stylesheet" href="@className.css">
     <!--                                           -->
     <!-- Any title is fine                         -->
     <!--                                           -->
diff --git a/user/src/com/google/gwt/user/tools/Module.gwt.xmlsrc b/user/src/com/google/gwt/user/tools/Module.gwt.xmlsrc
index 84faca6..79536b4 100644
--- a/user/src/com/google/gwt/user/tools/Module.gwt.xmlsrc
+++ b/user/src/com/google/gwt/user/tools/Module.gwt.xmlsrc
@@ -15,8 +15,5 @@
 
       <!-- Specify the app entry point class.                         -->
       <entry-point class='@clientPackage.@className'/>
-    
-      <!-- Specify the application specific style sheet.              -->
-      <stylesheet src='@className.css' />
-	
+
 </module>