You are viewing a plain text version of this content. The canonical link for it is here.
Posted to ojb-dev@db.apache.org by ar...@apache.org on 2003/06/22 20:12:50 UTC

cvs commit: db-ojb/xdocs howto-get-started.xml deployment.xml

arminw      2003/06/22 11:12:50

  Modified:    xdocs    howto-get-started.xml deployment.xml
  Log:
  add patch from Brian
  add version id tag
  
  Revision  Changes    Path
  1.2       +11 -10    db-ojb/xdocs/howto-get-started.xml
  
  Index: howto-get-started.xml
  ===================================================================
  RCS file: /home/cvs/db-ojb/xdocs/howto-get-started.xml,v
  retrieving revision 1.1
  retrieving revision 1.2
  diff -u -r1.1 -r1.2
  --- howto-get-started.xml	2 Apr 2003 20:23:10 -0000	1.1
  +++ howto-get-started.xml	22 Jun 2003 18:12:50 -0000	1.2
  @@ -1,4 +1,5 @@
   <?xml version="1.0"?>
  +<!-- @version $Id$ -->
   <document>
   
     <properties>
  @@ -11,7 +12,7 @@
   <section name="Getting Started with OJB">
   <subsection name="Introduction">
   	<p>
  -		This document is designed to help you get started with OJB for the first 
  +		This document is designed to help you get started with OJB for the first
   		time. It is a cookbook type set of instructions designed to get you get
   		OJB installed, and able to work on the other various tutorials.
   	</p>
  @@ -47,7 +48,7 @@
   	</p>
   	<p>
   		It is convenient to use the standard names that OJB likes to use for
  -		testing. So, create a database named <code>OJB</code> and a user with 
  +		testing. So, create a database named <code>OJB</code> and a user with
   		read/write access to that database named <code>oleg</code>. In
   		PostgreSQL I prefer to name the database lower-case
   		<code>ojb</code> as it makes the command line psql tools easier to use.
  @@ -101,7 +102,7 @@
   	</p>
   	<p>
   		Now that the raw information needed to access your database is entered,
  -		go back to the installation directory for OJB and run 
  +		go back to the installation directory for OJB and run
   		<code>ant junit</code> and sit back. This will construct all of the
   		needed tables for OJB, as well as tables for unit testing OJB. It will
   		then happily run all of the various unit tests for you.
  @@ -128,7 +129,7 @@
   		Assuming you tested against the same type of database you intend to run
   		against, the DDL for the required tables already exists, though. You can
   		use this DDL to generate the OJB tables in your database. The core
  -		tables required by OJB will have their DDL in the 
  +		tables required by OJB will have their DDL in the
   		<code>target/src/sql/ojbcore-schema.sql</code> sql script. You can use
   		it directly to generate the required tables in your project's database.
   	</p>
  @@ -139,9 +140,9 @@
   		Torque as well, and include the schema definitions from the JUnit tests
   		in your schema definition. This is, however, beyond the scope of this
   		tutorial. Torque does have an excellent set of tutorials that can make
  -		this task very simple though. The schema definition for OJB is in the 
  +		this task very simple though. The schema definition for OJB is in the
   		<code>src/schema/ojbcore-schema.xml</code> file. Just drop this file
  -		into your own Torque schema directory and you are good to go, the OJB 
  +		into your own Torque schema directory and you are good to go, the OJB
   		schema will be built right alongside your own.
   	</p>
   </subsection>
  @@ -149,8 +150,8 @@
   	<p>
   		Detailed deployment information is available in the <a
   		href="deployment.html">deployment</a> documentation, including examples
  -		of deployment to various J2EE containers. This tutorial 
  -		merely steps through the minimum to get a project up and running in a 
  +		of deployment to various J2EE containers. This tutorial
  +		merely steps through the minimum to get a project up and running in a
   		freestanding applications.
   	</p>
   	<p>
  @@ -186,8 +187,8 @@
   	<p>
   		In addition to the configuration information, you will need the ojb jar
   		library, and its required libraries. An up to date list of these is kept
  -		on the 
  -		<a href="file://localhost/Users/mccallister/src/ojb/db-ojb/target/doc/deployment.html#4">
  +		on the
  +		<a href="deployment.html#Additional jar archives">
   		Deployment</a> page. Copy these jar files to your runtime classpath as
   		well as the db-ojb-*.jar.
   	</p>
  
  
  
  1.23      +1 -0      db-ojb/xdocs/deployment.xml
  
  Index: deployment.xml
  ===================================================================
  RCS file: /home/cvs/db-ojb/xdocs/deployment.xml,v
  retrieving revision 1.22
  retrieving revision 1.23
  diff -u -r1.22 -r1.23
  --- deployment.xml	20 Jun 2003 10:42:33 -0000	1.22
  +++ deployment.xml	22 Jun 2003 18:12:50 -0000	1.23
  @@ -1,4 +1,5 @@
   <?xml version="1.0"?>
  +<!-- @version $Id$ -->
   <document>
   
     <properties>