]> source.dussan.org Git - vaadin-framework.git/commitdiff
Theme compilation script that includes theme inheritance.
authorJouni Koivuviita <jouni.koivuviita@itmill.com>
Thu, 9 Apr 2009 10:38:20 +0000 (10:38 +0000)
committerJouni Koivuviita <jouni.koivuviita@itmill.com>
Thu, 9 Apr 2009 10:38:20 +0000 (10:38 +0000)
svn changeset:7376/svn branch:theme_2009_03

build/buildhelpers/com/itmill/toolkit/buildhelpers/CompileDefaultTheme.java

index b97c74d25e88c0296801e31306210061ac3d39ff..0a1d768e426d8c17ad2955f924b0e0e5504f5972 100644 (file)
@@ -19,16 +19,18 @@ import java.util.Comparator;
 public class CompileDefaultTheme {
 
     private static final String THEME_DIR = "./WebContent/ITMILL/themes/";
-    private static final String BONES = "bones";
+    private static final String BASE = "base";
     private static final String DEFAULT = "default";
+    private static final String REINDEER = "reindeer";
 
     /**
      * @param args
      * @throws IOException
      */
     public static void main(String[] args) throws IOException {
-        // combineTheme(new String[] { BONES });
-        combineTheme(new String[] { DEFAULT });
+        combineTheme(new String[] { BASE });
+        combineTheme(new String[] { BASE, DEFAULT });
+        combineTheme(new String[] { BASE, REINDEER });
     }
 
     /**