ajaxify the refresh

This commit is contained in:
zzz
2012-02-23 17:41:06 +00:00
parent a288fc52e0
commit 141ad67650
3 changed files with 89 additions and 21 deletions

View File

@@ -98,10 +98,14 @@
<copy todir="build/icons/.icons" >
<fileset dir="../icons/" />
</copy>
<copy todir="build/js/.js" >
<fileset dir="../js/" />
</copy>
<war destfile="../i2psnark.war" webxml="../web.xml" >
<!-- include only the web stuff, as of 0.7.12 the router will add i2psnark.jar to the classpath for the war -->
<classes dir="./build/obj" includes="**/web/*.class" />
<fileset dir="build/icons/" />
<fileset dir="build/js/" />
<manifest>
<attribute name="Implementation-Version" value="${full.version}" />
<attribute name="Build-Date" value="${build.timestamp}" />
@@ -113,7 +117,7 @@
<target name="warUpToDate">
<uptodate property="war.uptodate" targetfile="../i2psnark.war" >
<srcfiles dir= "." includes="build/obj/org/klomp/snark/web/*.class ../icons/* ../web.xml" />
<srcfiles dir= "." includes="build/obj/org/klomp/snark/web/*.class ../icons/* ../js/* ../web.xml" />
</uptodate>
</target>