diff options
author | Paul Martin <paul@paulsputer.com> | 2016-01-11 12:25:06 +0000 |
---|---|---|
committer | Paul Martin <paul@paulsputer.com> | 2016-03-27 17:09:16 +0100 |
commit | 2754961708ff0eb6030faf6db2edf8fbdae227d5 (patch) | |
tree | 827f0904a9e8a5db2282986230b374c42cfd69c1 /build.xml | |
parent | 86401c3ff40c137a937a3dd83f12022fce5529b4 (diff) | |
download | gitblit-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.xml | 17 |
1 files changed, 17 insertions, 0 deletions
@@ -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>
|