summaryrefslogtreecommitdiffstats
path: root/build
diff options
context:
space:
mode:
authorJouni Koivuviita <jouni.koivuviita@itmill.com>2009-04-09 10:38:20 +0000
committerJouni Koivuviita <jouni.koivuviita@itmill.com>2009-04-09 10:38:20 +0000
commitcd4c6d8ed95bb26672363d2e008464961935166b (patch)
tree27205ceb2244a485d233e0e21562434da0174d96 /build
parent7e676a5e38016e70021b3a48e5e6e263783a5383 (diff)
downloadvaadin-framework-cd4c6d8ed95bb26672363d2e008464961935166b.tar.gz
vaadin-framework-cd4c6d8ed95bb26672363d2e008464961935166b.zip
Theme compilation script that includes theme inheritance.
svn changeset:7376/svn branch:theme_2009_03
Diffstat (limited to 'build')
-rw-r--r--build/buildhelpers/com/itmill/toolkit/buildhelpers/CompileDefaultTheme.java8
1 files changed, 5 insertions, 3 deletions
diff --git a/build/buildhelpers/com/itmill/toolkit/buildhelpers/CompileDefaultTheme.java b/build/buildhelpers/com/itmill/toolkit/buildhelpers/CompileDefaultTheme.java
index b97c74d25e..0a1d768e42 100644
--- a/build/buildhelpers/com/itmill/toolkit/buildhelpers/CompileDefaultTheme.java
+++ b/build/buildhelpers/com/itmill/toolkit/buildhelpers/CompileDefaultTheme.java
@@ -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 });
}
/**