~snowball-yiddish-dev/snowball-yiddish/trunk

« back to all changes in this revision

Viewing changes to website/download.php

  • Committer: martin
  • Date: 2010-10-05 10:07:21 UTC
  • Revision ID: svn-v4:633ccae0-01f4-0310-8c99-d3591da6f01f:trunk:541
Contributed French stemmer in javascript

Show diffs side-by-side

added added

removed removed

Lines of Context:
3
3
  displayHeader("Download");
4
4
?>
5
5
 
6
 
<TR><TD>
 
6
<tr><td>
7
7
<h2>Tarballs</h2>
8
8
 
9
 
A <A HREF="texts/snowball.tgz">Tar gzipped file containing the Snowball sources</A> is now available.
10
 
 
11
 
Tarballs containing various stemming algorithms written using snowball
12
 
are available on this website.
13
 
 
14
 
</TD></TR>
15
 
<TR><TD>
16
 
<p>
17
 
<h2>CVS</h2>
18
 
 
19
 
<p>
20
 
Developers may wish to access the latest source via anonymous CVS using the commands:
21
 
<br>
22
 
<font color="red">
23
 
  (Note that each of the following commands should be placed on a single line.)
24
 
</font>
25
 
<p>
26
 
<tt>
27
 
 cvs -z3 -d:pserver:cvsuser@cvs.tartarus.org:/home/cvs login
28
 
</tt>
29
 
<br>
30
 
  Password is "<tt>anonymous</tt>"
31
 
<p>
32
 
 
33
 
<tt>
34
 
 cvs -z3 -d:pserver:cvsuser@cvs.tartarus.org:/home/cvs co snowball
35
 
</tt>
36
 
 
37
 
</TD></TR>
38
 
<TR><TD>
39
 
<p>
40
 
<h2>CVS Browsing</h2>
41
 
 
42
 
<p>
43
 
There is also a
44
 
<A HREF="http://cvs.tartarus.org/snowball/">web interface to the CVS repository</A>
45
 
which you can use to check on the progress of snowball.
46
 
 
47
 
</TD></TR>
 
9
Several tarballs of the snowball sources are available.
 
10
 
 
11
<ul>
 
12
<li>
 
13
<a href="dist/libstemmer_c.tgz">The C version of the libstemmer library.</a><br/>
 
14
This contains all you need to include the snowball stemming algorithms into a
 
15
C project of your own.  If you download this, you don't need to use the snowball
 
16
compiler, or worry about the internals of the stemmers in any way.
 
17
</li>
 
18
<li>
 
19
<a href="dist/libstemmer_java.tgz">The Java version of the libstemmer library.</a><br/>
 
20
This contains all you need to include the snowball stemming algorithms into a
 
21
Java project of your own.  If you download this, you don't need to use the snowball
 
22
compiler, or worry about the internals of the stemmers in any way.
 
23
</li>
 
24
<li>
 
25
<a href="dist/snowball_code.tgz">Snowball, algorithms, and libstemmer library.</a><br/>
 
26
This contains all the source code for snowball (but not the generated source files).
 
27
This is useful mainly if you are wanting to work on the algorithms (tweaking them,
 
28
or producing new algorithms).
 
29
</li>
 
30
<li>
 
31
<a href="dist/snowball_web_and_code.tgz">Snowball, algorithms, and libstemmer library, and documentation</a><br/>
 
32
This contains all the source code for snowball (but not the generated source files), and
 
33
also the full documentation of the stemming algorithms.
 
34
</li>
 
35
<li>
 
36
<a href="dist/snowball_all.tgz">Everything related to snowball</a><br/>
 
37
This contains all the source code for snowball (but not the generated source files), and
 
38
also the full documentation of the stemming algorithms.  It also contains all
 
39
the test data files, and is therefore rather large (several megabytes).
 
40
</li>
 
41
</ul>
 
42
 
 
43
<p>
 
44
Also, tarballs containing just the files related to each individual stemming
 
45
algorithm described on this site are available from the page for each algorithm.
 
46
</p>
 
47
<p>
 
48
We do not make binary (ie, compiled) distributions of snowball available -
 
49
there are simply too many different platforms and architectures to support.  If
 
50
you are willing to make such binaries available for others, and can provide at
 
51
least some measure of support for ensuring that they work, feel free to contact
 
52
us and we will add a link to your work from this site.
 
53
</p>
 
54
 
 
55
</td></tr>
 
56
<tr><td>
 
57
<p>
 
58
<h2>Python</h2>
 
59
 
 
60
<p>
 
61
We provide and support python wrappers for Snowball.  The latest version can
 
62
be downloaded from <a
 
63
href="http://snowball.tartarus.org/wrappers/PyStemmer-1.1.0.tar.gz">our wrappers page</a>.
 
64
</p>
 
65
 
 
66
<p>
 
67
Some wrappers for other languages are also available on the wrappers page, but
 
68
are not supported by us. (Though if you ask on the mailing list for help, someone else might be able to assist you.)
 
69
</p>
 
70
 
 
71
</td></tr>
 
72
<tr><td>
 
73
<p>
 
74
<h2>Subversion</h2>
 
75
 
 
76
<p>
 
77
Developers may wish to access the latest source using the command:
 
78
<br>
 
79
<p>
 
80
<tt>
 
81
svn co svn://snowball.tartarus.org/snowball/trunk snowball
 
82
</tt>
 
83
</td></tr>
 
84
<tr><td>
 
85
<p>
 
86
<h2>Web interface to subversion</h2>
 
87
 
 
88
<p>
 
89
The subversion code repository can also be <a href="http://svn.tartarus.org/?root=snowball">browsed online</a>.
 
90
</p>
 
91
 
 
92
</td></tr>
48
93
<?php displayFooter(); ?>