|
1 | | -
|
2 | | - J A Z Z Y : Java Spell Checker |
3 | | -
|
4 | | -
|
5 | | - What is it? |
6 | | - ----------- |
7 | | -
|
8 | | - Jazzy is a 100% pure Java library implementing a spell checking algorithm |
9 | | - similar to aspell. It may be used to spell check a variety of sources. |
10 | | -
|
11 | | - The Latest Version |
12 | | - ------------------ |
13 | | -
|
14 | | - The latest version is available from the Jazzy project web site |
15 | | - ( http://sourceforge.net/projects/jazzy ). |
16 | | -
|
17 | | - Requirements |
18 | | - ------------ |
19 | | -
|
20 | | - The following requirements exist for installing Jazzy: |
21 | | -
|
22 | | - o Java Interpreter: |
23 | | -
|
24 | | - A fully compliant Java 1.1 Runtime environment is needed for the core engine of Jazzy |
25 | | - to operate. (For example: for use in a servlet) |
26 | | - |
27 | | - A fully compliant Java 1.3 Runtime environment is needed for the swing components of |
28 | | - Jazzy to operate. |
29 | | -
|
30 | | - o Java JFC (Swing components): |
31 | | -
|
32 | | - These GUI extentions are required for proper GUI functionality. However, core |
33 | | - spell check functionality can work without Swing Components. |
34 | | -
|
35 | | - Installation Instructions and Documentation |
36 | | - ------------------------------------------- |
37 | | -
|
38 | | - There are two ways to install Jazzy. One from a pre packaged version and the other is to |
39 | | - compile the sources from CVS. |
40 | | -
|
41 | | - If you have downloaded the source code from CVS, please cd to the jazzy directory and run ant. |
42 | | - |
43 | | - |
44 | | - Building Jazzy From the Source |
45 | | - ------------------------------ |
46 | | - 1) In order to build the jedit plugin, you will need to have the jedit.jar in your classpath, |
47 | | - otherwise you will get a lot of compile errors. All of the build errors relate to the files |
48 | | - under |
49 | | - src/com/swabunga/spell/jedit/* |
50 | | - The easiest way to get jedit.jar onto your machine is to install jedit. You can find it at |
51 | | - http://sourceforge.net/projects/jedit |
52 | | -
|
53 | | - 2) In order to build the sample applet spell checker, you will need to sign the jar with "jazzykey". |
54 | | - In order to sign the jar, you will need a key called "jazzykey". |
55 | | - On some systems, you should be able to run the following command to get the key built: |
56 | | - keytool -genkey -alias jazzyKey |
57 | | - when prompted for the password, use the same one that's in build.xml (search for "sign") |
58 | | - For more information on creating keys, see: |
59 | | - http://java.sun.com/docs/books/tutorial/security1.2/toolsign/step3.html |
60 | | - |
61 | | -
|
62 | | - 3) The ant target that builds most things is "binary-release", but you may want to build a smaller |
63 | | - target. |
64 | | - The current default target is "library-all", which may be sufficient if you just want the jar. |
65 | | -
|
66 | | - 4) In order to see the applet demo, you will have to have a web server running. Point it to the |
67 | | - www directory to see the index.html page and the applet demo.html page |
68 | | -
|
69 | | - Licensing and legal issues |
70 | | - -------------------------- |
71 | | -
|
72 | | - Jazzy is licensed under the LGPL. See LICENSE.txt for license restrictions. |
73 | | -
|
| 1 | + |
| 2 | + J A Z Z Y : Java Spell Checker |
| 3 | + |
| 4 | + |
| 5 | + What is it? |
| 6 | + ----------- |
| 7 | + |
| 8 | + Jazzy is a 100% pure Java library implementing a spell checking algorithm |
| 9 | + similar to aspell. It may be used to spell check a variety of sources. |
| 10 | + |
| 11 | + The Latest Version |
| 12 | + ------------------ |
| 13 | + |
| 14 | + The latest version is available from the Jazzy project web site |
| 15 | + ( http://sourceforge.net/projects/jazzy ). |
| 16 | + |
| 17 | + Requirements |
| 18 | + ------------ |
| 19 | + |
| 20 | + The following requirements exist for installing Jazzy: |
| 21 | + |
| 22 | + o Java Interpreter: |
| 23 | + |
| 24 | + A fully compliant Java 1.1 Runtime environment is needed for the core engine of Jazzy |
| 25 | + to operate. (For example: for use in a servlet) |
| 26 | + |
| 27 | + A fully compliant Java 1.3 Runtime environment is needed for the swing components of |
| 28 | + Jazzy to operate. |
| 29 | + |
| 30 | + o Java JFC (Swing components): |
| 31 | + |
| 32 | + These GUI extentions are required for proper GUI functionality. However, core |
| 33 | + spell check functionality can work without Swing Components. |
| 34 | + |
| 35 | + Installation Instructions and Documentation |
| 36 | + ------------------------------------------- |
| 37 | + |
| 38 | + There are two ways to install Jazzy. One from a pre packaged version and the other is to |
| 39 | + compile the sources from CVS. |
| 40 | + |
| 41 | + If you have downloaded the source code from CVS, please cd to the jazzy directory and run ant. |
| 42 | + |
| 43 | + |
| 44 | + Building Jazzy From the Source |
| 45 | + ------------------------------ |
| 46 | + 1) In order to build the jedit plugin, you will need to have the jedit.jar in your classpath, |
| 47 | + otherwise you will get a lot of compile errors. All of the build errors relate to the files |
| 48 | + under |
| 49 | + src/com/swabunga/spell/jedit/* |
| 50 | + The easiest way to get jedit.jar onto your machine is to install jedit. You can find it at |
| 51 | + http://sourceforge.net/projects/jedit |
| 52 | + |
| 53 | + 2) In order to build the sample applet spell checker, you will need to sign the jar with "jazzykey". |
| 54 | + In order to sign the jar, you will need a key called "jazzykey". |
| 55 | + On some systems, you should be able to run the following command to get the key built: |
| 56 | + keytool -genkey -alias jazzyKey |
| 57 | + when prompted for the password, use the same one that's in build.xml (search for "sign") |
| 58 | + For more information on creating keys, see: |
| 59 | + http://java.sun.com/docs/books/tutorial/security1.2/toolsign/step3.html |
| 60 | + |
| 61 | + |
| 62 | + 3) The ant target that builds most things is "binary-release", but you may want to build a smaller |
| 63 | + target. |
| 64 | + The current default target is "library-all", which may be sufficient if you just want the jar. |
| 65 | + |
| 66 | + 4) In order to see the applet demo, you will have to have a web server running. Point it to the |
| 67 | + www directory to see the index.html page and the applet demo.html page |
| 68 | + |
| 69 | + Licensing and legal issues |
| 70 | + -------------------------- |
| 71 | + |
| 72 | + Jazzy is licensed under the LGPL. See LICENSE.txt for license restrictions. |
| 73 | + |
0 commit comments