|
From: Jonathan L. <le...@us...> - 2006-12-01 16:48:24
|
Update of /cvsroot/pyxida/Pyxida/web In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv17338/web Modified Files: index.html Added Files: javadoc.sh release.sh Log Message: release stuff Index: index.html =================================================================== RCS file: /cvsroot/pyxida/Pyxida/web/index.html,v retrieving revision 1.5 retrieving revision 1.6 diff -C2 -d -r1.5 -r1.6 *** index.html 22 Nov 2006 18:46:45 -0000 1.5 --- index.html 1 Dec 2006 16:48:19 -0000 1.6 *************** *** 149,153 **** <ul> ! <li>Michael Parker (UCLA)</li> </ul> --- 149,153 ---- <ul> ! <li>Michael Parker (UCLA, Google)</li> </ul> *************** *** 159,163 **** </table> ! <p>In the works...</p> <table width="100%" bgcolor="#9EB0FF" valign="top"> --- 159,186 ---- </table> ! <p><b>For users of the standalone version:</b> ! <ul> ! <li><a href="#download">Download</a> and untar the tarball. ! <li>Modify <i>config/pyxida.cfg</i> appropriately. ! <li>run: <i>./runPyxida.sh</i> on the nodes in your overlay. ! <li>Observe the local coordinates change in the log files and ! use the (included) perl scripts to query the overlay. ! <li>Or write your own tools that query via external API ! (see <a href="javadoc/index.html">javadoc</a>). ! </ul> ! ! <p><b>For users of the library:</b> ! <ul> ! <li><a href="#download">Download libpyxida.jar</a> ! <li>Create an instance of NCClient on each node ! <li>Piggyback the following information between neighbors: ! the coordinate, the local error, and the age; and ! determine a round-trip time estimate. ! <li>Call ncClient.processSample() to refine each node's ! coordinate. ! <li>The standalone application does all of this for you, so it ! provides a good starting point on using the library in your ! own application. ! </ul> <table width="100%" bgcolor="#9EB0FF" valign="top"> *************** *** 170,174 **** <ul> ! <li>libpyxida-v0.1</li> </ul> --- 193,197 ---- <ul> ! <li><a href="dist/libpyxida-0.1.jar">libpyxida-0.1.jar</a></li> </ul> *************** *** 176,180 **** <ul> ! <li>Pyxida-v0.1</li> </ul> </td> --- 199,203 ---- <ul> ! <li><a href="dist/pyxida-0.1.tar.gz">pyxida-0.1.tar.gz</a></li> </ul> </td> --- NEW FILE: javadoc.sh --- javadoc -d javadoc/ `find ../src -name "*.java"` --- NEW FILE: release.sh --- #!/bin/bash echo "Copy dist" cp ../dist/* dist echo "Generate Javadoc" javadoc -d javadoc/ `find ../src -name "*.java"` echo "rsync with website" ./rsync.pl |