summaryrefslogtreecommitdiffstats
path: root/build.xml
diff options
context:
space:
mode:
authorPaul Martin <paul@paulsputer.com>2016-01-11 12:25:06 +0000
committerPaul Martin <paul@paulsputer.com>2016-03-27 17:09:16 +0100
commit2754961708ff0eb6030faf6db2edf8fbdae227d5 (patch)
tree827f0904a9e8a5db2282986230b374c42cfd69c1 /build.xml
parent86401c3ff40c137a937a3dd83f12022fce5529b4 (diff)
downloadgitblit-2754961708ff0eb6030faf6db2edf8fbdae227d5.tar.gz
gitblit-2754961708ff0eb6030faf6db2edf8fbdae227d5.zip
Document edit capability via ProseMirror submodule #974
+ New docEdit page with links from docPage and docList + Bespoke menu system with full screen edit mode + npm required for building client side scripts + Ant script added for BuildUI which performs npm commands + Update font-awesome to 4.5.0 + Factor out to JGitUtils common code in BranchTicketService for EditFilePage + getTreeEntries + commitIndex + Merge capability for document editing
Diffstat (limited to 'build.xml')
-rw-r--r--build.xml17
1 files changed, 17 insertions, 0 deletions
diff --git a/build.xml b/build.xml
index 7205bf84..2edc853c 100644
--- a/build.xml
+++ b/build.xml
@@ -1056,4 +1056,21 @@
<mx:install />
</target>
+
+ <!--
+ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
+ Build Gitblit UI via npm
+ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
+ -->
+ <target name="buildUI" description="Build Gitblit UI via npm">
+ <exec executable="npm" dir="src/main/js/" failonerror="true" vmlauncher="false" searchpath="true" >
+ <arg value="install" />
+ </exec>
+
+ <exec executable="npm" dir="src/main/js/" failonerror="true" vmlauncher="false" searchpath="true" >
+ <arg value="run" />
+ <arg value="build" />
+ </exec>
+ </target>
+
</project>