1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
|
<?php
require "menu.inc";
displayHeader("Download");
?>
<TR><TD>
<h2>Tarballs</h2>
A <A HREF="texts/snowball.tgz">Tar gzipped file containing the Snowball sources</A> is now available.
Tarballs containing various stemming algorithms written using snowball
are available on this website.
</TD></TR>
<TR><TD>
<p>
<h2>CVS</h2>
<p>
Developers may wish to access the latest source via anonymous CVS using the commands:
<br>
<font color="red">
(Note that each of the following commands should be placed on a single line.)
</font>
<p>
<tt>
cvs -z3 -d:pserver:cvsuser@cvs.tartarus.org:/home/cvs login
</tt>
<br>
Password is "<tt>anonymous</tt>"
<p>
<tt>
cvs -z3 -d:pserver:cvsuser@cvs.tartarus.org:/home/cvs co snowball
</tt>
</TD></TR>
<TR><TD>
<p>
<h2>CVS Browsing</h2>
<p>
There is also a
<A HREF="http://cvs.tartarus.org/snowball/">web interface to the CVS repository</A>
which you can use to check on the progress of snowball.
</TD></TR>
<?php displayFooter(); ?>
|