cvs commit: jakarta-turbine-tdk/xdocs tdk-howto.xml
[email protected] 19 Nov 2002 20:21:11 -0000
| Newsgroups | gmane.comp.jakarta.turbine.tdk.devel |
|---|---|
| Message-ID | <[email protected]> |
mpoeschl 2002/11/19 12:21:11
Modified: xdocs tdk-howto.xml
Log:
TDKD2: Dependency on activation.jar need to be documented
Revision Changes Path
1.5 +17 -11 jakarta-turbine-tdk/xdocs/tdk-howto.xml
Index: tdk-howto.xml
===================================================================
RCS file: /home/cvs/jakarta-turbine-tdk/xdocs/tdk-howto.xml,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -r1.4 -r1.5
--- tdk-howto.xml 5 Oct 2002 18:58:16 -0000 1.4
+++ tdk-howto.xml 19 Nov 2002 20:21:11 -0000 1.5
@@ -42,11 +42,17 @@
<p>
You must have Ant installed on your machine in order to do
anything. If you do not have Ant installed, you can find out
-how to install Ant
+how to install Ant
<a href="http://jakarta.apache.org/ant/manual/install.html">here</a>.
</p>
<p>
+In order to use the mail functions you need to download the activation.jar
+from <a href="http://java.sun.com/products/javabeans/glasgow/jaf.html">here</a>.
+We are not allowed to redistribute this library.
+</p>
+
+<p>
In order to do anything interesting with the TDK, you are also going to need a
database that is compatable with the JDBC standard. The TDK currently comes
with drivers for Hypersonic, InstantDB, MySQL, Postgres and SAPDB. Other drivers
@@ -88,7 +94,7 @@
<td><b>Database</b></td>
<td><b>Testers</b></td>
</tr>
-
+
<tr>
<td>Linux</td>
<td>MySQL</td>
@@ -136,12 +142,12 @@
<section name="Downloading and Installing the TDK">
<p>
-First of all, you have to get the TDK distribution. You can fetch it from
-the <a
+First of all, you have to get the TDK distribution. You can fetch it from
+the <a
href="http://jakarta.apache.org/builds/jakarta-turbine/release/">Turbine
release repository</a>. Search for the directory with the latest version, and
-download the file tdk-2.1.tar.gz (preferred choice for
-Unix systems), or tdk-2.1.zip (for Windows systems this may be more
+download the file tdk-2.1.tar.gz (preferred choice for
+Unix systems), or tdk-2.1.zip (for Windows systems this may be more
practical).
</p>
@@ -213,19 +219,19 @@
used to access them. At this time you should also copy your JDBC drivers
(renaming .zip files to .jar files) into the
"webapps/APPNAME/WEB-INF/lib" directory if you are using a database for which
-the TDK does not provide JDBC drivers. These files will be important when
+the TDK does not provide JDBC drivers. These files will be important when
creating the database tables in the next step.
</p>
<p>
5. Go to the directory "/TDKROOT/webapps/APPNAME/WEB-INF/build" and run the
-command "ant init" This command <strong>must be run</strong> before
-attempting to use the TDK. It creates the database tables and OM
+command "ant init" This command <strong>must be run</strong> before
+attempting to use the TDK. It creates the database tables and OM
classes for accessing them.
</p>
<p>
-NOTE
+NOTE
<br/>
For Oracle and Sybase users it is often common that the database
has already been created: if this is the case then by setting the
@@ -238,7 +244,7 @@
6. Your first Turbine app has now been created! go back to the root directory
of your TDK installation and type in "./bin/catalina.sh run" if you want to
see console output or "./bin/catalina.sh start" if you want the servlet
-container process to run in the background.
+container process to run in the background.
</p>
<p>