bb19c4f6d1
Jskad/extensions. If you're lazy, you can move them to extensions/drop-ins, but the correct thing to do is to move x*.jar to $ANT_HOME/lib [next to vamp.jar, if you're already set up for Java Web Start builds]. This is a side effect of improving the nightly builds. Nightly builds now feature an HTML summary of the JUnit test results, a datestamp, and full API docs in two flavors. If you use a patched vamp.jar [e-mail me] that can run when an X11 display is not available (there is not an analogous problem for Windows servers, I suspect), all you have to do to put up a nightly builds site is to set up CVS access so that no password is requires using SSH public-key crypto (sf.net documents how to do so well) and then use the following daily cron job on your Unix box: #! /bin/sh renice +19 -p $$ >/dev/null 2>&1 su -l joe-user /bin/sh -c /var/www/thdl/nightly/doTheBuild.sh where joe-user is an unprivileged user who has installed Ant properly (see the updated BuildSystems.html on the developer's site off of thdltools.sf.net) and set himself up a Jskad sandbox with a Fonts sandbox underneath it in, e.g., /var/www/thdl/nightly/Jskad. Here's doTheBuild.sh: #! /bin/sh JSKAD=/var/www/thdl/nightly/Jskad DEST=/var/www/thdl/nightly/builds HISTORY=/var/www/thdl/nightly/history DATE=`date` if test ! -d $DEST; then \ echo "$DEST does not exist ($DATE)." >> history; exit 1; fi (cd $JSKAD && ant dc-nightly-build \ && rm -fr ${DEST}/* \ && cp dist/nightlyBuild.zip $DEST \ && cd $DEST \ && unzip nightlyBuild.zip) if test $? != 0; then echo "NIGHTLY BUILDS FAILED on $DATE" >> $HISTORY; exit 2; fi DDDATE=`date` echo "Success on start=$DATE end=$DDDATE" >> $HISTORY exit 0
100 lines
2.9 KiB
HTML
100 lines
2.9 KiB
HTML
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
|
|
<html>
|
|
<head>
|
|
<title>THDL Tools Nightly Builds</title>
|
|
</head>
|
|
|
|
<body>
|
|
<h1>THDL Tools Nightly Builds</h1>
|
|
|
|
<p>
|
|
Here you'll find last night's latest and greatest builds of the THDL tools.
|
|
</p>
|
|
|
|
<p>
|
|
If the builds failed last night, then you're actually looking at
|
|
builds that are a little bit older. The actual date these
|
|
builds were done (from clean repository sources) can be found <a
|
|
href="DateStampForNightlyBuilds.html">here</a>.
|
|
</p>
|
|
|
|
<ul>
|
|
<li>
|
|
See <a href="junit-noframes.html">here</a> for results of the
|
|
nightly JUnit tests.
|
|
</li>
|
|
<li>
|
|
Today's Javadocs: [<a href="docs/public">public</a> <a href="docs/public-javadocs-today.zip">(zip file)</a>]
|
|
[<a href="docs/private">private</a> <a href="docs/private-javadocs-today.zip">(zip file)</a>]
|
|
</li>
|
|
<li>
|
|
Today's source distribution (for all the tools combined): <a href="source/THDL-Tools-src-today.zip">zip file</a>
|
|
</li>
|
|
<li>
|
|
Today's Java Web Start binaries (signed with a throwaway key, so
|
|
you have to trust that my server hasn't been compromised and click
|
|
through the warnings):
|
|
<ul>
|
|
<li>
|
|
<a href="java-web-start/DictionarySearchAppletAndJavaWebStart.jnlp">Translation Tool</a>
|
|
</li>
|
|
<li>
|
|
<a href="java-web-start/Jskad.jnlp">Jskad</a>
|
|
</li>
|
|
<li>
|
|
<a href="java-web-start/QuillDriver.jnlp">QuillDriver</a>
|
|
</li>
|
|
<li>
|
|
<a href="java-web-start/Savant.jnlp">Savant</a> [Legacy]
|
|
</li>
|
|
</ul>
|
|
</li>
|
|
<li>
|
|
Self-contained (minus QuickTime for Java, minus Java
|
|
Media Framework) JARs that are not signed:
|
|
<ul>
|
|
<li>
|
|
All-in-one <a href="lib-vanilla/Jskad-self-contained.jar">Jskad</a>
|
|
</li>
|
|
<li>
|
|
All-in-one <a href="lib-vanilla/QuillDriver-self-contained.jar">QuillDriver</a>
|
|
</li>
|
|
<li>
|
|
All-in-one <a href="lib-vanilla/Savant-self-contained.jar">Savant</a> [Legacy]
|
|
</li>
|
|
</ul>
|
|
</li>
|
|
<li>
|
|
Plain Jane, bare-minimum JARs that are not signed:
|
|
<ul>
|
|
<li>
|
|
<a href="lib-vanilla/Tibbibl.jar">Tibbibl</a>
|
|
</li>
|
|
<li>
|
|
<a href="lib-vanilla/Jskad.jar">Jskad</a>
|
|
</li>
|
|
<li>
|
|
<a href="lib-vanilla/QuillDriver.jar">QuillDriver</a>
|
|
</li>
|
|
<li>
|
|
<a href="lib-vanilla/DictionarySearchStandalone.jar">Standalone Translation Tool</a>
|
|
</li>
|
|
<li>
|
|
<a href="lib-vanilla/DictionarySearchHandheld.jar">Translation Tool for Handheld Devices</a>
|
|
</li>
|
|
<li>
|
|
<a href="lib-vanilla/DictionarySearchAppletAndJavaWebStart.jar">Translation Tool for Applets</a>
|
|
</li>
|
|
<li>
|
|
<a href="lib-vanilla/Savant.jar">Savant</a> [Legacy]
|
|
</li>
|
|
</ul>
|
|
</li>
|
|
</ul>
|
|
|
|
|
|
|
|
<hr>
|
|
<address><a href="mailto:dchandler@users.sourceforge.net">David Chandler</a></address>
|
|
</body>
|
|
</html>
|