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
|
<?php
require "menu.inc";
displayHeader("");
?>
<?php include "index_body.html" ?>
<TR><TD>
<p>
<h2>Major events</h2>
<p>
<b>May 2005 - UTF-8 Unicode support</b>
</p>
<p>
<b>September 2002 - Finnish stemmer</b>
</p>
<p>
<b>July 2002 - ISO Latin I as default</b>
<br>
The use of MS DOS Latin I is now history, but the old versions of the
Snowball stemmers are still accessible on the site.
</p>
<p>
<b>May 2002 - Unicode support</b>
</p>
<p>
<b>Feb 2002 - Java support</b>
<br>
Richard has modified the snowball code generator to produce Java output as
well as ANSI C output. This means that pure Java systems can now use the
snowball stemmers.
</p>
</TR></TD>
<?php displayFooter(); ?>
|