Fixed bug in html page generation. Updated download page. Updated change date. git-svn-id: https://svn.code.sf.net/p/jode/code/branches/branch_1_1@1318 379699f6-c40d-0410-875b-85095c16579ebranch_1_1
parent
7fca8d09e9
commit
98bf83e95d
@ -1,42 +1,40 @@ |
||||
<?php require("header.inc"); ?> |
||||
<h1>Download</h1> |
||||
|
||||
<p>Jode is available in the download section. Click <?php |
||||
sflink("project/filelist.php")?>here</a> to download the latest |
||||
released source code of <i>JODE</i> |
||||
|
||||
<p>If you download the source code, you need several other packages to |
||||
build <i>JODE</i>, check the <?php selflink("links") ?>links
|
||||
page</a>. </p> |
||||
<p>Jode is available in the <? |
||||
sflink("project/filelist.php")?>download area</a> in source or |
||||
binary form. For compiling the source code, you need several other |
||||
packages, check the <?php selflink("links") ?>links page</a>. You
|
||||
need a unix like environment for compilation.</p> |
||||
|
||||
<p>The simplest way to get it, especially for non unix users, is in |
||||
precompiled form, though. I have two jar archives at the <a |
||||
href="ftp://jode.sourceforge.net/pub/jode">xftp server</a>. You may |
||||
need to press shift while clicking on the link, depending on your |
||||
browser. |
||||
|
||||
<?php |
||||
function jarlink($what) { |
||||
global $version; |
||||
echo "<a href=\"ftp://jode.sourceforge.net/pub/jode/jode-".$version.$what; |
||||
echo ".jar\">jode-".$version.$what.".jar</a>"; |
||||
} ?> |
||||
precompiled form, though. There are two jar archives in the download |
||||
area:</P> |
||||
|
||||
<ul> <li><?php jarlink("-1.1") ?> is for JDK 1.1. It contains
|
||||
the collection classes from the GNU Classpath project. If you want to |
||||
use the swing interface, you have to download swing separately. </li> |
||||
<ul> <li>jode-1.1-JDK1.1.jar is for JDK 1.1. If you want to use |
||||
the swing interface, you have to download swing separately, all other |
||||
packages are already included in the archive. </li> |
||||
|
||||
<li> <?php jarlink("-1.2") ?> is for JDK 1.2 or better. </li> </ul>
|
||||
</p> |
||||
<li> jode-1.1.jar is for JDK 1.2 or better. It should run |
||||
without any other package.</li> </ul> </p> |
||||
|
||||
<h1>CVS Repository</h1> |
||||
|
||||
<p>You can get the latest sources from the <?php sflink("cvs/") ?> |
||||
CVS repository</a>. |
||||
Follow the instruction on that page; use <code>jode</code> as |
||||
<i>modulename</i>. Then change to the directory jode and run |
||||
<p>You can get the latest sources from the <?php sflink("cvs/") ?> CVS
|
||||
repository</a>. Follow the instruction on that page; use |
||||
<code>jode</code> as <i>modulename</i>. If you want to checkout a |
||||
specific version you can use the <code>-r</code> option:</p> |
||||
|
||||
<ul> |
||||
<li><code>-r jode_1_0_93</code>: checks out the version 1.0.93</li> |
||||
<li><code>-r branch_1_1</code>: checks out the latest version in the |
||||
1.1 series.</li> </ul> |
||||
|
||||
<p>To build the sources from CVS change to the main directory where |
||||
the <code>configure.in</code> file resides and run |
||||
|
||||
<pre>aclocal && automake -a && autoconf</pre> |
||||
|
||||
Afterwards follow the instruction in the INSTALL file. </p> |
||||
<?php require("footer.inc"); ?> |
||||
|
||||
|
Loading…
Reference in new issue