diff options
author | mikl <> | 2008-05-06 07:53:08 +0000 |
---|---|---|
committer | mikl <> | 2008-05-06 07:53:08 +0000 |
commit | dca8960e21273ed8100fa1fdaeab99ccf141a1f3 (patch) | |
tree | 0ae31ef7461dd60686d7e23dcb64ff68bb11ed14 /buildscripts/jGrouseDoc/themes/sample/build.xml | |
parent | d48e9af1650df7cc17db5042c0b9dc1a3bcf213b (diff) |
Imported JS documentor jGrouseDoc-2.0
Diffstat (limited to 'buildscripts/jGrouseDoc/themes/sample/build.xml')
-rw-r--r-- | buildscripts/jGrouseDoc/themes/sample/build.xml | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/buildscripts/jGrouseDoc/themes/sample/build.xml b/buildscripts/jGrouseDoc/themes/sample/build.xml new file mode 100644 index 00000000..9e029fe5 --- /dev/null +++ b/buildscripts/jGrouseDoc/themes/sample/build.xml @@ -0,0 +1,14 @@ +<?xml version="1.0"?>
+
+<project name="sample theme" default="applyJGrouseDoc">
+
+ <target name="applyJGrouseDoc">
+ <echo>Applying sample theme</echo>
+ <copy todir="${outputDir}" overwrite="yes">
+ <fileset dir="${jGrouseHome}/themes/sample/css" includes="*.css"></fileset>
+ </copy>
+ <copy todir="${outputDir}" overwrite="yes">
+ <fileset dir="${jGrouseHome}/themes/sample/img" includes="*"></fileset>
+ </copy>
+ </target>
+</project>
|