commit | 1280a12a1c3255104c5362b0e696fc631212542f | [log] [tgz] |
---|---|---|
author | amitmanjhi@google.com <amitmanjhi@google.com@8db76d5a-ed1c-0410-87a9-c151d255dfc7> | Mon Nov 10 23:58:45 2008 +0000 |
committer | amitmanjhi@google.com <amitmanjhi@google.com@8db76d5a-ed1c-0410-87a9-c151d255dfc7> | Mon Nov 10 23:58:45 2008 +0000 |
tree | 4bd82c6b73d55fc9c970e0d6b308419d8f5b5597 | |
parent | 2404092611fdb67c6132f094b6fe8e571e12a1f2 [diff] |
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>