You are viewing a plain text version of this content. The canonical link for it is here.
Posted to derby-commits@db.apache.org by jt...@apache.org on 2006/08/08 23:24:31 UTC

svn commit: r429820 [3/5] - in /db/derby/site/trunk: build/site/ build/site/integrate/ build/site/manuals/ build/site/papers/ build/site/papers/DerbyTut/ build/site/releases/ src/documentation/content/xdocs/ src/documentation/content/xdocs/images/ src/...

Modified: db/derby/site/trunk/build/site/integrate/DerbyTomcat5512JPetStor.html
URL: http://svn.apache.org/viewvc/db/derby/site/trunk/build/site/integrate/DerbyTomcat5512JPetStor.html?rev=429820&r1=429819&r2=429820&view=diff
==============================================================================
--- db/derby/site/trunk/build/site/integrate/DerbyTomcat5512JPetStor.html (original)
+++ db/derby/site/trunk/build/site/integrate/DerbyTomcat5512JPetStor.html Tue Aug  8 14:24:26 2006
@@ -373,7 +373,7 @@
 <p>
    This article shows the steps required to embed Derby in a Tomcat version 5.5.12 Server and  then deploy a copy of the iBATIS JPetStore application that utilizes a Derby database.  The implementation accesses the Derby database via a JNDI registered datasource and hence the same application code and Derby database can be used unchanged to create the demo in different environments.  Details are provided for registering the datasource as either a Tomcat server-wide (Global) JNDI resource or a per-application (context specific) JNDI resource.</p>
 		
-<a name="N1001C"></a><a name="Why+Derby"></a>
+<a name="N1001D"></a><a name="Why+Derby"></a>
 <h2 class="boxed">Why Derby</h2>
 <div class="section">
 <p>
@@ -384,7 +384,7 @@
 </div>
 		
 		
-<a name="N1002B"></a><a name="The+Software+Components"></a>
+<a name="N1002C"></a><a name="The+Software+Components"></a>
 <h2 class="boxed">The Software Components</h2>
 <div class="section">
 <p>Derby is an open source, java relational database freely available from the Apache Software Foundation (ASF).  It is well suited for use with Java applications that require data persistence and is ideally suited for use in a Server environment like Tomcat.  Derby can be used in one of two configurations, embedded in a java application or used with Network Server and run as a separate DBMS process.  When embedded in an application like Tomcat that provides network communication services there is usually no need to run the Network Server.</p>
@@ -394,7 +394,7 @@
 JPetStore is a rewritten Pet Store application based on Sun's J2EE Pet Store. It was originally designed to compare the .NET and J2EE architectures. It is now the official example application for the iBATIS Data Mapper framework.  iBATIS  greatly simplifies the coding of Java and .NET applications that access data from a relational database like Derby.  iBATIS, like the other software used in this implementation is an open source product freely available from ASF.</p>
 </div>
 		
-<a name="N1003B"></a><a name="Typographic+Conventions+Used"></a>
+<a name="N1003C"></a><a name="Typographic+Conventions+Used"></a>
 <h2 class="boxed">Typographic Conventions Used</h2>
 <div class="section">
 <p> The following codes in curly braces will be used to represent installation dependant information as described below:</p>
@@ -421,7 +421,7 @@
 </dl>
 </div>
 		
-<a name="N1006C"></a><a name="Required+Software+%2F+Downloads"></a>
+<a name="N1006D"></a><a name="Required+Software+%2F+Downloads"></a>
 <h2 class="boxed">Required Software / Downloads</h2>
 <div class="section">
 <ul>
@@ -435,7 +435,7 @@
 </ul>
 </div>
 		
-<a name="N10087"></a><a name="Setup+of+Application+with+the+Datasource+in+the+Global+Context%3A"></a>
+<a name="N10088"></a><a name="Setup+of+Application+with+the+Datasource+in+the+Global+Context%3A"></a>
 <h2 class="boxed">Setup of Application with the Datasource in the Global Context:</h2>
 <div class="section">
 <p>The initial steps below walk you through moving the files contained in the DerbyJPetStore4Tomcat.zip file to the  locations required to support the deployment instructions that follow.  Note that the zipfile contains not only the application system but also the DBMS and the initialized database.  No database activity is required other than placing the files in the proper directories.  Assuming you have a functioning Tomcat 5.5.12 system already everything you need to create the demo is found in the zipfile associated with this article.</p>
@@ -512,7 +512,7 @@
 </div>
 
 		
-<a name="N100F8"></a><a name="Alternate+Setup%3A+Datasource+in+the+Application+Context"></a>
+<a name="N100F9"></a><a name="Alternate+Setup%3A+Datasource+in+the+Application+Context"></a>
 <h2 class="boxed">Alternate Setup: Datasource in the Application Context</h2>
 <div class="section">
 <p>The datasource connection pool used by the JPetStore application can be defined in the Global context as show above or in the Application context outlined here.  Either context will support connections between  iBATIS and Derby.  The difference between the two setups is whether or not another application deployed to this Tomcat server will be able to access the datasource.  When the datasource is defined in the Global context other applications can also connect to the pool by linking to the Global datasource using a copy of the <span class="codefrag">Resource-link</span> definition found in the <span class="codefrag">JPetStoreAppGbl.xml</span> file used in the deployment above.  This is the configuration that should be used if, say, a Petstore accounting or reporting application will be deployed in a separate secured context that is available to a limited number of users.
@@ -576,7 +576,7 @@
 </ul>
 </div>
 		
-<a name="N1016F"></a><a name="Database+Creation+Instructions+%28optional%29"></a>
+<a name="N10170"></a><a name="Database+Creation+Instructions+%28optional%29"></a>
 <h2 class="boxed">Database Creation Instructions (optional)</h2>
 <div class="section">
 <p>The following steps show how to build the Derby database from scratch.  This is similar to the build procedure required when deploying applications using most other DBMS system except a separate database creation step is not required.  Two files (*.sql) are supplied in the zipfile to perform the schema build and data inserts.  To use this procedure you will need to download a complete set of Derby jarfiles in order to obtain the IJ scripting tool used in the following commands.  The IJ tool is used to process the SQL commands in the provided scripts.  The IJ tool is contained in the derbytools.jar file.  Place derbytools.jar in the {Derby_Jars} directory.   For simplicity the examples below place all necessary files in the same directory and specify as much a possible (including the command to create the database) on the command line.</p>
@@ -613,7 +613,7 @@
 </div>
 		
 		
-<a name="N10198"></a><a name="General+Integration+Notes"></a>
+<a name="N10199"></a><a name="General+Integration+Notes"></a>
 <h2 class="boxed">General Integration Notes</h2>
 <div class="section">
 <p>
@@ -624,7 +624,7 @@
 </div>
 		
 		
-<a name="N101A5"></a><a name="Tomcat+Integration+Notes"></a>
+<a name="N101A6"></a><a name="Tomcat+Integration+Notes"></a>
 <h2 class="boxed">Tomcat Integration Notes</h2>
 <div class="section">
 <p>Tomcat is designed so that new java components (a.k.a. shared libraries) can be easily added to the system.  This is accomplished by adding the jarfiles containing the components to the $CATALINA_HOME/common/lib directory.  
@@ -653,7 +653,7 @@
 </div>
 </div>
 		
-<a name="N101CF"></a><a name="iBATIS+Integration+Notes"></a>
+<a name="N101D0"></a><a name="iBATIS+Integration+Notes"></a>
 <h2 class="boxed">iBATIS Integration Notes</h2>
 <div class="section">
 <p>If you wish to build your own iBATIS JPetstore war file like the one supplied in the zipfile file  you will need to download the JPetStore application source code (see the 'Related Links' section) and make the following modifications to the source files before performing a build as described in the JPetStore build instructions: </p>
@@ -688,7 +688,7 @@
 </div>
 		
 		
-<a name="N101F2"></a><a name="Rlinks"></a>
+<a name="N101F3"></a><a name="Rlinks"></a>
 <h2 class="boxed">Links Section</h2>
 <div class="section">
 <p>Required Downloads to perform this deployment: </p>

Modified: db/derby/site/trunk/build/site/integrate/JPOX_Derby.html
URL: http://svn.apache.org/viewvc/db/derby/site/trunk/build/site/integrate/JPOX_Derby.html?rev=429820&r1=429819&r2=429820&view=diff
==============================================================================
--- db/derby/site/trunk/build/site/integrate/JPOX_Derby.html (original)
+++ db/derby/site/trunk/build/site/integrate/JPOX_Derby.html Tue Aug  8 14:24:26 2006
@@ -365,7 +365,7 @@
 </div> 
 
 
-<a name="N1000C"></a><a name="Overview"></a>
+<a name="N1000D"></a><a name="Overview"></a>
 <h2 class="boxed">Overview</h2>
 <div class="section">
 <p>
@@ -397,7 +397,7 @@
 </div>
 
 
-<a name="N10022"></a><a name="Step+1.+Prerequisites"></a>
+<a name="N10023"></a><a name="Step+1.+Prerequisites"></a>
 <h2 class="boxed">Step 1. Prerequisites</h2>
 <div class="section">
 <p>
@@ -482,7 +482,7 @@
 </div>
 
 
-<a name="N100F8"></a><a name="Step+2.+Download+sample+code+and+configuration+files"></a>
+<a name="N100F9"></a><a name="Step+2.+Download+sample+code+and+configuration+files"></a>
 <h2 class="boxed">Step 2. Download sample code and configuration files</h2>
 <div class="section">
 <p>
@@ -497,7 +497,7 @@
 </div>
 
 
-<a name="N1010C"></a><a name="Step+3.+Examine%2FCreate+the+Database+schema"></a>
+<a name="N1010D"></a><a name="Step+3.+Examine%2FCreate+the+Database+schema"></a>
 <h2 class="boxed">Step 3. Examine/Create the Database schema</h2>
 <div class="section">
 <p>
@@ -585,7 +585,7 @@
 </div>
 
 
-<a name="N1011E"></a><a name="Step+4.+Write+the+classes+used+to+persist+the+data"></a>
+<a name="N1011F"></a><a name="Step+4.+Write+the+classes+used+to+persist+the+data"></a>
 <h2 class="boxed">Step 4. Write the classes used to persist the data</h2>
 <div class="section">
 <p>
@@ -661,7 +661,7 @@
 </div>
 
 
-<a name="N10136"></a><a name="Step+5.++Create+the+JDO+meta-data+mapping+file"></a>
+<a name="N10137"></a><a name="Step+5.++Create+the+JDO+meta-data+mapping+file"></a>
 <h2 class="boxed">Step 5.  Create the JDO meta-data mapping file</h2>
 <div class="section">
 <p>
@@ -778,7 +778,7 @@
 </div>
 
 
-<a name="N10180"></a><a name="Step+6.+Create+a+log4j.properties+file+to+be+used+by+JPOX"></a>
+<a name="N10181"></a><a name="Step+6.+Create+a+log4j.properties+file+to+be+used+by+JPOX"></a>
 <h2 class="boxed">Step 6. Create a log4j.properties file to be used by JPOX</h2>
 <div class="section">
 <p>
@@ -809,7 +809,7 @@
 </p>
 </div>
 
-<a name="N10194"></a><a name="Step+7.+Enhancing+the+JPOX+classes"></a>
+<a name="N10195"></a><a name="Step+7.+Enhancing+the+JPOX+classes"></a>
 <h2 class="boxed">Step 7. Enhancing the JPOX classes</h2>
 <div class="section">
 <p>
@@ -826,7 +826,7 @@
 </div>
 
 
-<a name="N101A6"></a><a name="Step+8.+Code+the+class+which+makes+the+JPOX+JDO+queries"></a>
+<a name="N101A7"></a><a name="Step+8.+Code+the+class+which+makes+the+JPOX+JDO+queries"></a>
 <h2 class="boxed">Step 8. Code the class which makes the JPOX JDO queries</h2>
 <div class="section">
 <p>
@@ -1045,7 +1045,7 @@
 </div>
 
 
-<a name="N101E0"></a><a name="Step+9.+Code+the+application+class+which+calls+the+business+logic+class"></a>
+<a name="N101E1"></a><a name="Step+9.+Code+the+application+class+which+calls+the+business+logic+class"></a>
 <h2 class="boxed">Step 9. Code the application class which calls the business logic class</h2>
 <div class="section">
 <p>
@@ -1092,7 +1092,7 @@
 </div>
 
 
-<a name="N101F7"></a><a name="Step+10.+Compile+all+classes%2C+enhance+the+persistence+capable+ones+and+run+the+application"></a>
+<a name="N101F8"></a><a name="Step+10.+Compile+all+classes%2C+enhance+the+persistence+capable+ones+and+run+the+application"></a>
 <h2 class="boxed">Step 10. Compile all classes, enhance the persistence capable ones and run the application</h2>
 <div class="section">
 <p>
@@ -1288,7 +1288,7 @@
 </div>
 
 
-<a name="N102C9"></a><a name="Resources+and+Acknowledgements"></a>
+<a name="N102CA"></a><a name="Resources+and+Acknowledgements"></a>
 <h2 class="boxed">Resources and Acknowledgements</h2>
 <div class="section">
 <p>

Modified: db/derby/site/trunk/build/site/integrate/JPetStoreGeronimo.html
URL: http://svn.apache.org/viewvc/db/derby/site/trunk/build/site/integrate/JPetStoreGeronimo.html?rev=429820&r1=429819&r2=429820&view=diff
==============================================================================
--- db/derby/site/trunk/build/site/integrate/JPetStoreGeronimo.html (original)
+++ db/derby/site/trunk/build/site/integrate/JPetStoreGeronimo.html Tue Aug  8 14:24:26 2006
@@ -353,7 +353,7 @@
 The first tasks performed when installing an application that uses a database are generally related to database setup.  These steps often involve compiling DBMS code (if the database system is not already installed) and creating and populating the physical database used by the application.  Such steps are required to create executables and files that can be used in the operating environment of the host computer.  By using a database like Derby that is implemented entirely in JAVA these build steps are not required.  Installation of the Derby DBMS can be as simple as copying a 2 Mb jarfile to a known location.  The fully initialized physical database can be bundled with the application thus reducing the database setup steps to a simple copy operation.  The following instructions demonstrate this by deploying the iBATIS JPetStore application along with a ready-to-go Derby database on a Geronimo server.   These instructions can be used on any machine with a functioning J2SE JVM
  using the ASCII codeset.  Conversion or recreation of the supporting files (but not the database) will be required for deployment in an EBCDIC environment.
 </p>
 		
-<a name="N1000F"></a><a name="Introduction"></a>
+<a name="N10010"></a><a name="Introduction"></a>
 <h2 class="boxed">Introduction</h2>
 <div class="section">
 <p>
@@ -361,7 +361,7 @@
 </p>
 </div>
 				
-<a name="N10025"></a><a name="Typographic+Conventions+Used"></a>
+<a name="N10026"></a><a name="Typographic+Conventions+Used"></a>
 <h2 class="boxed">Typographic Conventions Used</h2>
 <div class="section">
 <p> The following codes in curly braces will be used to represent installation dependant file locations as described below:</p>
@@ -378,7 +378,7 @@
 </ul>
 </div>
 		
-<a name="N1004D"></a><a name="Required+Software+%2F+Downloads"></a>
+<a name="N1004E"></a><a name="Required+Software+%2F+Downloads"></a>
 <h2 class="boxed">Required Software / Downloads</h2>
 <div class="section">
 <ul>
@@ -392,7 +392,7 @@
 </ul>
 </div>
 		
-<a name="N10068"></a><a name="Setup+Steps%3A"></a>
+<a name="N10069"></a><a name="Setup+Steps%3A"></a>
 <h2 class="boxed">Setup Steps:</h2>
 <div class="section">
 <ul>	
@@ -460,7 +460,7 @@
 </div>
 		
 		
-<a name="N100BD"></a><a name="Optional+Database+Setup+Instructions"></a>
+<a name="N100BE"></a><a name="Optional+Database+Setup+Instructions"></a>
 <h2 class="boxed">Optional Database Setup Instructions</h2>
 <div class="section">
 <p>The following steps show how to build the Derby database from scratch.  Two files (*.sql) are supplied in the JPetStoreAPP4Geronimo.zip. file to perform the initial build and data inserts.  You will need to download the complete set of Derby jarfiles and use the IJ tool found in derbytools.jar to perform the build.  Place derbytools.jar in the {Derby_Jars} directory.   The IJ tool is used to process the SQL commands in the provided scripts.  For simplicity the examples below place all necessary files in the same directory and specify as much a possible (including the command to create the database) on the command line.</p>
@@ -487,7 +487,7 @@
 </div>
 					
 		
-<a name="N100E3"></a><a name="Integration+Notes"></a>
+<a name="N100E4"></a><a name="Integration+Notes"></a>
 <h2 class="boxed">Integration Notes</h2>
 <div class="section">
 <p>
@@ -529,7 +529,7 @@
 		
 		
 		
-<a name="N1010F"></a><a name="Related+Links"></a>
+<a name="N10110"></a><a name="Related+Links"></a>
 <h2 class="boxed">Related Links</h2>
 <div class="section">
 <p>Required Downloads to perform this deployment: </p>

Modified: db/derby/site/trunk/build/site/integrate/JPetStoreWebSphere.html
URL: http://svn.apache.org/viewvc/db/derby/site/trunk/build/site/integrate/JPetStoreWebSphere.html?rev=429820&r1=429819&r2=429820&view=diff
==============================================================================
--- db/derby/site/trunk/build/site/integrate/JPetStoreWebSphere.html (original)
+++ db/derby/site/trunk/build/site/integrate/JPetStoreWebSphere.html Tue Aug  8 14:24:26 2006
@@ -346,7 +346,7 @@
 </ul>
 </div>
 		
-<a name="N1000C"></a><a name="Introduction"></a>
+<a name="N1000D"></a><a name="Introduction"></a>
 <h2 class="boxed">Introduction</h2>
 <div class="section">
 <p>
@@ -363,7 +363,7 @@
 </p>
 </div>
 		
-<a name="N1001F"></a><a name="Required+Software"></a>
+<a name="N10020"></a><a name="Required+Software"></a>
 <h2 class="boxed">Required Software</h2>
 <div class="section">
 <ul>
@@ -380,7 +380,7 @@
 </ul>
 </div>
 		
-<a name="N10042"></a><a name="Setup+Overview"></a>
+<a name="N10043"></a><a name="Setup+Overview"></a>
 <h2 class="boxed">Setup Overview</h2>
 <div class="section">
 <p> Details on the following steps can be found in the CookBook Details section below.
@@ -439,7 +439,7 @@
 </ul>
 </div>
 		
-<a name="N10089"></a><a name="CookBook+Details"></a>
+<a name="N1008A"></a><a name="CookBook+Details"></a>
 <h2 class="boxed">CookBook Details</h2>
 <div class="section">
 <p>
@@ -662,7 +662,7 @@
    </pre>
 </div>
 		
-<a name="N1014E"></a><a name="Integration+Notes"></a>
+<a name="N1014F"></a><a name="Integration+Notes"></a>
 <h2 class="boxed">Integration Notes</h2>
 <div class="section">
 <p>
@@ -674,7 +674,7 @@
    	The zipfile provided contains a fully initialized database to demonstrate that a Derby database built and populated on one platform (in this case Windows) can be transferred to different platforms and work fine.  Try copying the database and derby jarfiles to different platforms and you will see that the system works without modification.  The text files included in the zipfile will not do well in an EBCDIC architecture but the Derby engine and supplied database will work fine. If you want to build the database from scratch you can use the SQL files supplied in the archive.  See the 'CookBook Details' section for how to use the IJ tools to build and populate the database.</p>
 </div>
 		
-<a name="N10162"></a><a name="Related+Links"></a>
+<a name="N10163"></a><a name="Related+Links"></a>
 <h2 class="boxed">Related Links</h2>
 <div class="section">
 <ul>

Modified: db/derby/site/trunk/build/site/integrate/SQuirreL_Derby.html
URL: http://svn.apache.org/viewvc/db/derby/site/trunk/build/site/integrate/SQuirreL_Derby.html?rev=429820&r1=429819&r2=429820&view=diff
==============================================================================
--- db/derby/site/trunk/build/site/integrate/SQuirreL_Derby.html (original)
+++ db/derby/site/trunk/build/site/integrate/SQuirreL_Derby.html Tue Aug  8 14:24:26 2006
@@ -356,7 +356,7 @@
 </div> 
 
 
-<a name="N1000C"></a><a name="Overview"></a>
+<a name="N1000D"></a><a name="Overview"></a>
 <h2 class="boxed">Overview</h2>
 <div class="section">
 <p>
@@ -401,7 +401,7 @@
 </div>
 
 
-<a name="N10031"></a><a name="Prerequisites"></a>
+<a name="N10032"></a><a name="Prerequisites"></a>
 <h2 class="boxed">Prerequisites</h2>
 <div class="section">
 <p>
@@ -470,7 +470,7 @@
 </div>
 
 
-<a name="N100B5"></a><a name="Configuring+SQuirreL+for+the+Derby+Embedded+JDBC+Driver"></a>
+<a name="N100B6"></a><a name="Configuring+SQuirreL+for+the+Derby+Embedded+JDBC+Driver"></a>
 <h2 class="boxed">Configuring SQuirreL for the Derby Embedded JDBC Driver </h2>
 <div class="section">
 <p>
@@ -529,7 +529,7 @@
 </div>
 
 
-<a name="N10114"></a><a name="Creating+an+Alias+to+a+Derby+database+using+the+Embedded+Driver"></a>
+<a name="N10115"></a><a name="Creating+an+Alias+to+a+Derby+database+using+the+Embedded+Driver"></a>
 <h2 class="boxed">Creating an Alias to a Derby database using the Embedded Driver</h2>
 <div class="section">
 <p>
@@ -564,7 +564,7 @@
 </div>
 
 
-<a name="N10150"></a><a name="Configuring+the+Derby+Client+Driver+in+the+Drivers+window"></a>
+<a name="N10151"></a><a name="Configuring+the+Derby+Client+Driver+in+the+Drivers+window"></a>
 <h2 class="boxed">Configuring the Derby Client Driver in the Drivers window</h2>
 <div class="section">
 <p>
@@ -634,7 +634,7 @@
 </div>
 
 
-<a name="N101C6"></a><a name="Creating+an+Alias+for+an+existing+Derby+database+using+the+Client+Driver"></a>
+<a name="N101C7"></a><a name="Creating+an+Alias+for+an+existing+Derby+database+using+the+Client+Driver"></a>
 <h2 class="boxed">Creating an Alias for an existing Derby database using the Client Driver</h2>
 <div class="section">
 <p>
@@ -673,7 +673,7 @@
 </div>
 
 
-<a name="N1020D"></a><a name="Creating+a+session+to+issue+SQL+and+browse+the+database"></a>
+<a name="N1020E"></a><a name="Creating+a+session+to+issue+SQL+and+browse+the+database"></a>
 <h2 class="boxed">Creating a session to issue SQL and browse the database</h2>
 <div class="section">
 <p>
@@ -901,7 +901,7 @@
 </div>
 
 
-<a name="N102E4"></a><a name="Modifying+data+objects+via+the+Objects+tab"></a>
+<a name="N102E5"></a><a name="Modifying+data+objects+via+the+Objects+tab"></a>
 <h2 class="boxed">Modifying data objects via the Objects tab</h2>
 <div class="section">
 <p>
@@ -1005,7 +1005,7 @@
 </div>
 
 
-<a name="N10392"></a><a name="SQuirreL+and+Derby+Resources"></a>
+<a name="N10393"></a><a name="SQuirreL+and+Derby+Resources"></a>
 <h2 class="boxed">SQuirreL and Derby Resources</h2>
 <div class="section">
 <p>

Modified: db/derby/site/trunk/build/site/integrate/db_ddlutils.html
URL: http://svn.apache.org/viewvc/db/derby/site/trunk/build/site/integrate/db_ddlutils.html?rev=429820&r1=429819&r2=429820&view=diff
==============================================================================
--- db/derby/site/trunk/build/site/integrate/db_ddlutils.html (original)
+++ db/derby/site/trunk/build/site/integrate/db_ddlutils.html Tue Aug  8 14:24:26 2006
@@ -366,7 +366,7 @@
 <a href="#Add+an+import+target+to+the+build.xml">Add an import target to the build.xml</a>
 </li>
 <li>
-<a href="#Execute+the+Ant+task-N10227">Execute the Ant task</a>
+<a href="#Execute+the+Ant+task-N10228">Execute the Ant task</a>
 </li>
 </ul>
 </li>
@@ -383,7 +383,7 @@
 </div> 
 
 
-<a name="N1000C"></a><a name="Overview"></a>
+<a name="N1000D"></a><a name="Overview"></a>
 <h2 class="boxed">Overview</h2>
 <div class="section">
 <p>
@@ -419,7 +419,7 @@
 an alpha database.
 DdlUtils makes this migration easier.
 </p>
-<a name="N1002E"></a><a name="Target+Audience"></a>
+<a name="N1002F"></a><a name="Target+Audience"></a>
 <h3 class="boxed">Target Audience</h3>
 <p>DdlUtils doesn't have an official release yet, 
       so this example is intended for developers -- and for users who have a 
@@ -433,7 +433,7 @@
       variables, and troubleshooting
       any problems that might occur.
    </p>
-<a name="N10038"></a><a name="Prerequisites"></a>
+<a name="N10039"></a><a name="Prerequisites"></a>
 <h3 class="boxed">Prerequisites</h3>
 <p>This project assumes a basic knowledge of Derby.
          If you're new, start with the on-line
@@ -462,7 +462,7 @@
 </div>
 
 
-<a name="N1006E"></a><a name="Step+1%3A+Setup+a+working+directory"></a>
+<a name="N1006F"></a><a name="Step+1%3A+Setup+a+working+directory"></a>
 <h2 class="boxed">Step 1: Setup a working directory</h2>
 <div class="section">
 <p>
@@ -480,7 +480,7 @@
 </div>
 
 
-<a name="N10085"></a><a name="Step+2%3A+Build+and+Install+DdlUtils"></a>
+<a name="N10086"></a><a name="Step+2%3A+Build+and+Install+DdlUtils"></a>
 <h2 class="boxed">Step 2: Build and Install DdlUtils</h2>
 <div class="section">
 <p>
@@ -534,7 +534,7 @@
 
 
 
-<a name="N100C7"></a><a name="Step+3%3A+Create+a+sample+database%3A+Books1"></a>
+<a name="N100C8"></a><a name="Step+3%3A+Create+a+sample+database%3A+Books1"></a>
 <h2 class="boxed">Step 3: Create a sample database: Books1 </h2>
 <div class="section">
 <p>
@@ -600,7 +600,7 @@
 </div>
 
 
-<a name="N10101"></a><a name="Step+4%3A+Books1+--+Export+Schema+and+Data"></a>
+<a name="N10102"></a><a name="Step+4%3A+Books1+--+Export+Schema+and+Data"></a>
 <h2 class="boxed">Step 4: Books1 -- Export Schema and Data </h2>
 <div class="section">
 <p>
@@ -610,7 +610,7 @@
 <a href="http://db.apache.org/ddlutils/ant-tasks.html">DdlUtils Ant tasks</a>
 to execute the export.
 </p>
-<a name="N10114"></a><a name="Create+an+Ant+build.xml+file+with+an+export+target"></a>
+<a name="N10115"></a><a name="Create+an+Ant+build.xml+file+with+an+export+target"></a>
 <h3 class="boxed">Create an Ant build.xml file with an export target</h3>
 <p>
 Complete source for the Ant build file is below.
@@ -690,7 +690,7 @@
 </li>
 
 </ul>
-<a name="N10172"></a><a name="Execute+the+Ant+task"></a>
+<a name="N10173"></a><a name="Execute+the+Ant+task"></a>
 <h3 class="boxed">Execute the Ant task</h3>
 <p>
 Now execute the task with <span class="codefrag">ant</span>:
@@ -712,7 +712,7 @@
 </div>
 
 
-<a name="N10197"></a><a name="Step+5%3A+Books2+--+Create+Database+and+Import+Schema+and+Data"></a>
+<a name="N10198"></a><a name="Step+5%3A+Books2+--+Create+Database+and+Import+Schema+and+Data"></a>
 <h2 class="boxed">Step 5: Books2 -- Create Database and Import Schema and Data</h2>
 <div class="section">
 <p>
@@ -722,7 +722,7 @@
 <a href="http://db.apache.org/ddlutils/ant-tasks.html">DdlUtils Ant tasks</a>
 to execute the import.
 </p>
-<a name="N101AA"></a><a name="Copy+and+%28maybe%29+modify+the+db-schema.xml+file"></a>
+<a name="N101AB"></a><a name="Copy+and+%28maybe%29+modify+the+db-schema.xml+file"></a>
 <h3 class="boxed">Copy and (maybe) modify the db-schema.xml file </h3>
 <p>
 The export step created a file called <span class="codefrag">db-schema.xml</span>. Copy that
@@ -758,7 +758,7 @@
 </li>
 
 </ul>
-<a name="N101E8"></a><a name="Add+an+import+target+to+the+build.xml"></a>
+<a name="N101E9"></a><a name="Add+an+import+target+to+the+build.xml"></a>
 <h3 class="boxed">Add an import target to the build.xml</h3>
 <p>
 Copy the source for the <span class="codefrag">import-target-db</span> target below
@@ -809,7 +809,7 @@
    </li>
 
 </ul>
-<a name="N10227"></a><a name="Execute+the+Ant+task-N10227"></a>
+<a name="N10228"></a><a name="Execute+the+Ant+task-N10228"></a>
 <h3 class="boxed">Execute the Ant task</h3>
 <p>
 Execute the task with <span class="codefrag">ant</span>:
@@ -838,7 +838,7 @@
 </div>
 
 
-<a name="N10240"></a><a name="Step+6%3A+Verify+Migration"></a>
+<a name="N10241"></a><a name="Step+6%3A+Verify+Migration"></a>
 <h2 class="boxed">Step 6: Verify Migration</h2>
 <div class="section">
 <p>
@@ -859,7 +859,7 @@
 </div>
 
 
-<a name="N1025C"></a><a name="Caveats"></a>
+<a name="N1025D"></a><a name="Caveats"></a>
 <h2 class="boxed">Caveats</h2>
 <div class="section">
 <p>
@@ -872,7 +872,7 @@
 </div>
 
 
-<a name="N1026A"></a><a name="Questions%3F"></a>
+<a name="N1026B"></a><a name="Questions%3F"></a>
 <h2 class="boxed">Questions?</h2>
 <div class="section">
 <p>Please post questions about this example to 

Modified: db/derby/site/trunk/build/site/integrate/db_torque.html
URL: http://svn.apache.org/viewvc/db/derby/site/trunk/build/site/integrate/db_torque.html?rev=429820&r1=429819&r2=429820&view=diff
==============================================================================
--- db/derby/site/trunk/build/site/integrate/db_torque.html (original)
+++ db/derby/site/trunk/build/site/integrate/db_torque.html Tue Aug  8 14:24:26 2006
@@ -380,7 +380,7 @@
 </div> 
 
 
-<a name="N1000C"></a><a name="Overview"></a>
+<a name="N1000D"></a><a name="Overview"></a>
 <h2 class="boxed">Overview</h2>
 <div class="section">
 <p>
@@ -408,7 +408,7 @@
 </div>
 
 
-<a name="N10028"></a><a name="Step+1"></a>
+<a name="N10029"></a><a name="Step+1"></a>
 <h2 class="boxed">Step 1</h2>
 <div class="section"></div>
 
@@ -418,10 +418,10 @@
 </p>
 
 
-<a name="N10032"></a><a name="Step+2"></a>
+<a name="N10033"></a><a name="Step+2"></a>
 <h2 class="boxed">Step 2</h2>
 <div class="section">
-<a name="N10038"></a><a name="Torque+Generator+Properties"></a>
+<a name="N10039"></a><a name="Torque+Generator+Properties"></a>
 <h3 class="boxed">Torque Generator Properties</h3>
 <p>Below is a <span class="codefrag">project.properties</span> file that works
       with the Derby embedded driver:</p>
@@ -459,7 +459,7 @@
    # The hostname or IP address of your database server.
    torque.database.host = 127.0.0.1 
   </pre>
-<a name="N10049"></a><a name="Torque+Database+Schema"></a>
+<a name="N1004A"></a><a name="Torque+Database+Schema"></a>
 <h3 class="boxed">Torque Database Schema</h3>
 <p>
     There is one problem with the <span class="codefrag">src/schema/project-schema.xml</span>
@@ -477,10 +477,10 @@
 
 
 
-<a name="N10057"></a><a name="Step+3"></a>
+<a name="N10058"></a><a name="Step+3"></a>
 <h2 class="boxed">Step 3</h2>
 <div class="section">
-<a name="N1005D"></a><a name="Adding+the+driver+to+the+maven+repository"></a>
+<a name="N1005E"></a><a name="Adding+the+driver+to+the+maven+repository"></a>
 <h3 class="boxed">Adding the driver to the maven repository</h3>
 <p>
 I added the Derby jar to my local maven repository like this:
@@ -494,7 +494,7 @@
 There are probably other ways for incorporating the Derby jar
 that don't require renaming the jar to include the version.
 </p>
-<a name="N1006E"></a><a name="Specifying+the+driver+dependency"></a>
+<a name="N1006F"></a><a name="Specifying+the+driver+dependency"></a>
 <h3 class="boxed">Specifying the driver dependency</h3>
 <p>
 Here is the complete <span class="codefrag">project.xml</span> file:
@@ -518,7 +518,7 @@
      &lt;/dependencies&gt;
    &lt;/project&gt;
 </pre>
-<a name="N1007F"></a><a name="Creating+the+database"></a>
+<a name="N10080"></a><a name="Creating+the+database"></a>
 <h3 class="boxed">Creating the database</h3>
 <p>
 The Torque Tutorial instructions mention that 
@@ -554,7 +554,7 @@
 <pre class="code">
    set DERBY_SYSTEM_HOME=C:\home\jta\Apache\TorqueTutorial
 </pre>
-<a name="N100A7"></a><a name="Creating+the+tables"></a>
+<a name="N100A8"></a><a name="Creating+the+tables"></a>
 <h3 class="boxed">Creating the tables</h3>
 <p>
 No changes to this step are required.
@@ -562,10 +562,10 @@
 </div>
 
 
-<a name="N100B2"></a><a name="Step+4"></a>
+<a name="N100B3"></a><a name="Step+4"></a>
 <h2 class="boxed">Step 4</h2>
 <div class="section">
-<a name="N100B8"></a><a name="Torque+Run-Time+Properties"></a>
+<a name="N100B9"></a><a name="Torque+Run-Time+Properties"></a>
 <h3 class="boxed">Torque Run-Time Properties</h3>
 <p>
 Here is the complete <span class="codefrag">src/conf/torque.properties</span> file:
@@ -584,7 +584,7 @@
 </div>
 
 
-<a name="N100CA"></a><a name="Step+5"></a>
+<a name="N100CB"></a><a name="Step+5"></a>
 <h2 class="boxed">Step 5</h2>
 <div class="section">
 <p>
@@ -593,7 +593,7 @@
 </div>
 
 
-<a name="N100D4"></a><a name="Step+6"></a>
+<a name="N100D5"></a><a name="Step+6"></a>
 <h2 class="boxed">Step 6</h2>
 <div class="section">
 <p>
@@ -620,7 +620,7 @@
 </div>
 
 
-<a name="N100F4"></a><a name="Got+Questions%3F"></a>
+<a name="N100F5"></a><a name="Got+Questions%3F"></a>
 <h2 class="boxed">Got Questions?</h2>
 <div class="section">
 <p>

Modified: db/derby/site/trunk/build/site/integrate/derby_plugin.html
URL: http://svn.apache.org/viewvc/db/derby/site/trunk/build/site/integrate/derby_plugin.html?rev=429820&r1=429819&r2=429820&view=diff
==============================================================================
--- db/derby/site/trunk/build/site/integrate/derby_plugin.html (original)
+++ db/derby/site/trunk/build/site/integrate/derby_plugin.html Tue Aug  8 14:24:26 2006
@@ -287,7 +287,7 @@
 </div>
 
 
-<a name="N1000C"></a><a name="Overview"></a>
+<a name="N1000D"></a><a name="Overview"></a>
 <h2 class="boxed">Overview</h2>
 <div class="section">
 <p>
@@ -297,7 +297,7 @@
 </div>
 
 
-<a name="N10016"></a><a name="Functionality"></a>
+<a name="N10017"></a><a name="Functionality"></a>
 <h2 class="boxed">Functionality</h2>
 <div class="section">
 <p>
@@ -314,7 +314,7 @@
 </div>
 
 
-<a name="N10029"></a><a name="Components"></a>
+<a name="N1002A"></a><a name="Components"></a>
 <h2 class="boxed">Components</h2>
 <div class="section">
 <p>
@@ -342,7 +342,7 @@
 </div>
 
 
-<a name="N1005A"></a><a name="The+UI+plug-in"></a>
+<a name="N1005B"></a><a name="The+UI+plug-in"></a>
 <h2 class="boxed">The UI plug-in</h2>
 <div class="section">
 <p>
@@ -353,7 +353,7 @@
 </div>
 
 
-<a name="N10068"></a><a name="Software+Requirements"></a>
+<a name="N10069"></a><a name="Software+Requirements"></a>
 <h2 class="boxed">Software Requirements</h2>
 <div class="section">
 <ul>
@@ -388,7 +388,7 @@
 </div>
 
 
-<a name="N1008E"></a><a name="Install"></a>
+<a name="N1008F"></a><a name="Install"></a>
 <h2 class="boxed">Install</h2>
 <div class="section">
 <p>
@@ -407,7 +407,7 @@
 </div>
 
 
-<a name="N100A2"></a><a name="Resources"></a>
+<a name="N100A3"></a><a name="Resources"></a>
 <h2 class="boxed">Resources</h2>
 <div class="section">
 <p>

Modified: db/derby/site/trunk/build/site/integrate/index.html
URL: http://svn.apache.org/viewvc/db/derby/site/trunk/build/site/integrate/index.html?rev=429820&r1=429819&r2=429820&view=diff
==============================================================================
--- db/derby/site/trunk/build/site/integrate/index.html (original)
+++ db/derby/site/trunk/build/site/integrate/index.html Tue Aug  8 14:24:26 2006
@@ -278,7 +278,7 @@
 </div> 
 
 
-<a name="N1000C"></a><a name="uses"></a>
+<a name="N1000D"></a><a name="uses"></a>
 <h2 class="boxed">What works with Derby?</h2>
 <div class="section">
 <p>
@@ -291,7 +291,7 @@
 </div>
 
 
-<a name="N1001A"></a><a name="products"></a>
+<a name="N1001B"></a><a name="products"></a>
 <h2 class="boxed">Product Writeups</h2>
 <div class="section">
 <p>
@@ -421,7 +421,7 @@
 </div>
 
 
-<a name="N10103"></a><a name="eclipse"></a>
+<a name="N10104"></a><a name="eclipse"></a>
 <h2 class="boxed">Eclipse Plug-ins</h2>
 <div class="section">
 <p>

Modified: db/derby/site/trunk/build/site/integrate/misc.html
URL: http://svn.apache.org/viewvc/db/derby/site/trunk/build/site/integrate/misc.html?rev=429820&r1=429819&r2=429820&view=diff
==============================================================================
--- db/derby/site/trunk/build/site/integrate/misc.html (original)
+++ db/derby/site/trunk/build/site/integrate/misc.html Tue Aug  8 14:24:26 2006
@@ -343,7 +343,7 @@
 </p>
 
 
-<a name="N10017"></a><a name="Product+List"></a>
+<a name="N10018"></a><a name="Product+List"></a>
 <h2 class="boxed">Product List</h2>
 <div class="section">
 <p>
@@ -353,7 +353,7 @@
 </div>
 
 
-<a name="N10025"></a><a name="Products+by+Type"></a>
+<a name="N10026"></a><a name="Products+by+Type"></a>
 <h2 class="boxed">Products by Type</h2>
 <div class="section">
 <p>

Modified: db/derby/site/trunk/build/site/integrate/plugin_howto.html
URL: http://svn.apache.org/viewvc/db/derby/site/trunk/build/site/integrate/plugin_howto.html?rev=429820&r1=429819&r2=429820&view=diff
==============================================================================
--- db/derby/site/trunk/build/site/integrate/plugin_howto.html (original)
+++ db/derby/site/trunk/build/site/integrate/plugin_howto.html Tue Aug  8 14:24:26 2006
@@ -297,7 +297,7 @@
 </p>
 
 
-<a name="N1000F"></a><a name="Architecture+of+the+plug-ins"></a>
+<a name="N10010"></a><a name="Architecture+of+the+plug-ins"></a>
 <h2 class="boxed">Architecture of the plug-ins</h2>
 <div class="section">
 <p>
@@ -355,7 +355,7 @@
 </div>
 
 
-<a name="N10082"></a><a name="Functionality"></a>
+<a name="N10083"></a><a name="Functionality"></a>
 <h2 class="boxed">Functionality</h2>
 <div class="section">
 <p>
@@ -418,7 +418,7 @@
 </div>
 
 
-<a name="N100AD"></a><a name="Installing+the+plug-ins"></a>
+<a name="N100AE"></a><a name="Installing+the+plug-ins"></a>
 <h2 class="boxed">Installing the plug-ins</h2>
 <div class="section">
 <p>
@@ -466,7 +466,7 @@
 </div>
 
 
-<a name="N100DB"></a><a name="Incompatibilities+with+earlier+version+of+the+plug-ins"></a>
+<a name="N100DC"></a><a name="Incompatibilities+with+earlier+version+of+the+plug-ins"></a>
 <h2 class="boxed">Incompatibilities with earlier version of the plug-ins</h2>
 <div class="section">
 <p>
@@ -477,7 +477,7 @@
 </div>
 
 
-<a name="N100E5"></a><a name="Uninstalling+Previous+Versions+of+the+Plug-ins"></a>
+<a name="N100E6"></a><a name="Uninstalling+Previous+Versions+of+the+Plug-ins"></a>
 <h2 class="boxed">Uninstalling Previous Versions of the Plug-ins</h2>
 <div class="section">
 <p>
@@ -488,7 +488,7 @@
 </div>
 
 
-<a name="N100EF"></a><a name="Launching+Eclipse+and+Bringing+up+the+Help"></a>
+<a name="N100F0"></a><a name="Launching+Eclipse+and+Bringing+up+the+Help"></a>
 <h2 class="boxed">Launching Eclipse and Bringing up the Help</h2>
 <div class="section">
 <p>
@@ -523,7 +523,7 @@
 </div>
 
 
-<a name="N1010B"></a><a name="Adding+the+Apache+Derby+Nature+to+an+Eclipse+Project"></a>
+<a name="N1010C"></a><a name="Adding+the+Apache+Derby+Nature+to+an+Eclipse+Project"></a>
 <h2 class="boxed">Adding the Apache Derby Nature to an Eclipse Project</h2>
 <div class="section">
 <p>

Modified: db/derby/site/trunk/build/site/integrate/plugin_slides.html
URL: http://svn.apache.org/viewvc/db/derby/site/trunk/build/site/integrate/plugin_slides.html?rev=429820&r1=429819&r2=429820&view=diff
==============================================================================
--- db/derby/site/trunk/build/site/integrate/plugin_slides.html (original)
+++ db/derby/site/trunk/build/site/integrate/plugin_slides.html Tue Aug  8 14:24:26 2006
@@ -282,7 +282,7 @@
 </p>
 
 
-<a name="N10012"></a><a name="Downloading+the+Presentation+and+Lab"></a>
+<a name="N10013"></a><a name="Downloading+the+Presentation+and+Lab"></a>
 <h2 class="boxed">Downloading the Presentation and Lab</h2>
 <div class="section">
 <p>

Modified: db/derby/site/trunk/build/site/logo.html
URL: http://svn.apache.org/viewvc/db/derby/site/trunk/build/site/logo.html?rev=429820&r1=429819&r2=429820&view=diff
==============================================================================
--- db/derby/site/trunk/build/site/logo.html (original)
+++ db/derby/site/trunk/build/site/logo.html Tue Aug  8 14:24:26 2006
@@ -122,7 +122,7 @@
 </div>
 
 
-<a name="N1000C"></a><a name="Introduction"></a>
+<a name="N1000D"></a><a name="Introduction"></a>
 <h2 class="boxed">Introduction</h2>
 <div class="section">
 <p>
@@ -146,7 +146,7 @@
 </div>
 
 
-<a name="N10028"></a><a name="logo"></a>
+<a name="N10029"></a><a name="logo"></a>
 <h2 class="boxed"> Logo </h2>
 <div class="section">
 <p>
@@ -177,7 +177,7 @@
 </div>
 
 
-<a name="N10068"></a><a name="logo_with_text_white"></a>
+<a name="N10069"></a><a name="logo_with_text_white"></a>
 <h2 class="boxed"> Logo with Text: White Background </h2>
 <div class="section">
 <p>
@@ -213,7 +213,7 @@
 </div>
 
 
-<a name="N100AA"></a><a name="logo_with_text_black"></a>
+<a name="N100AB"></a><a name="logo_with_text_black"></a>
 <h2 class="boxed"> Logo with Text: Black Background </h2>
 <div class="section">
 <p>
@@ -232,7 +232,7 @@
 </div>
 
 
-<a name="N100C9"></a><a name="tiny_buttons"></a>
+<a name="N100CA"></a><a name="tiny_buttons"></a>
 <h2 class="boxed"> Tiny Buttons </h2>
 <div class="section">
 <p>

Modified: db/derby/site/trunk/build/site/manuals/dita.html
URL: http://svn.apache.org/viewvc/db/derby/site/trunk/build/site/manuals/dita.html?rev=429820&r1=429819&r2=429820&view=diff
==============================================================================
--- db/derby/site/trunk/build/site/manuals/dita.html (original)
+++ db/derby/site/trunk/build/site/manuals/dita.html Tue Aug  8 14:24:26 2006
@@ -123,7 +123,7 @@
 <p>This page lists the software required to convert the DITA-sourced documentation into HTML or PDF, and describes how to convert the DITA source to the desired outputs.  These instructions currently describe how to use an <span class="codefrag">ant</span> build file with the DITA Toolkit to create output.</p>
 
 
-<a name="N10019"></a><a name="Setting+up+your+environment"></a>
+<a name="N1001A"></a><a name="Setting+up+your+environment"></a>
 <h2 class="boxed">Setting up your environment</h2>
 <div class="section">
 <p>
@@ -184,7 +184,7 @@
 </ol>
 </div>
 
-<a name="N1009B"></a><a name="Editing+DITA+files"></a>
+<a name="N1009C"></a><a name="Editing+DITA+files"></a>
 <h2 class="boxed">Editing DITA files</h2>
 <div class="section">
 <p>DITA is an XML specification.  You can edit DITA files in any text editor, but XML editors allow you to insert and modifiy tags easily while conforming to the DITA DTD and schemas.  It is HIGHLY recommended that you use an XML editor to avoid errors in tagging.</p>
@@ -214,7 +214,7 @@
 </pre>
 </div>
 
-<a name="N100CC"></a><a name="Creating+output"></a>
+<a name="N100CD"></a><a name="Creating+output"></a>
 <h2 class="boxed">Creating output</h2>
 <div class="section">
 <p>To create output from the DITA source files:</p>
@@ -287,7 +287,7 @@
 </table>
 </div>
 
-<a name="N10174"></a><a name="DITA+file+names"></a>
+<a name="N10175"></a><a name="DITA+file+names"></a>
 <h2 class="boxed">DITA file names</h2>
 <div class="section">
 <p>Dita files are named to provide a sense of what type of topic they contain as well as to which manual they belong.  All DITA topics are classified as either concepts, tasks, or reference material.  Thus, every file begins with either a "c", "t", or "r".  In addition, the letters that appear immediately after this first one provide a shorthand id for the manual.  For example, the <span class="codefrag">Getting Started with Derby</span> manual uses "gs", so a reference topic DITA file in that manual will start with "rgs".  Subsequent letters in the file name may provide hints at the topic's section within the manual, as well as numbers distinguishing it from other DITA files.</p>
@@ -295,7 +295,7 @@
 </div>
 
 
-<a name="N10183"></a><a name="Modifying+the+output+format"></a>
+<a name="N10184"></a><a name="Modifying+the+output+format"></a>
 <h2 class="boxed">Modifying the output format</h2>
 <div class="section">
 <p>You may wish to modify the output created by the DITA Toolkit to fix organization, formatting, links, indexing, etc.  To do this, you will have to modify the xsl files distributed with the DITA Toolkit.  The instructions for which files to modify and how are included within the Toolkit documentation.  To modify the PDF output, it is recommended that you make changes only to the <span class="codefrag">dita2fo_shell.xsl</span> file.</p>
@@ -314,7 +314,7 @@
 
 
 
-<a name="N101A0"></a><a name="Submitting+documentation+patches"></a>
+<a name="N101A1"></a><a name="Submitting+documentation+patches"></a>
 <h2 class="boxed">Submitting documentation patches</h2>
 <div class="section">
 <p> 

Modified: db/derby/site/trunk/build/site/manuals/index.html
URL: http://svn.apache.org/viewvc/db/derby/site/trunk/build/site/manuals/index.html?rev=429820&r1=429819&r2=429820&view=diff
==============================================================================
--- db/derby/site/trunk/build/site/manuals/index.html (original)
+++ db/derby/site/trunk/build/site/manuals/index.html Tue Aug  8 14:24:26 2006
@@ -113,7 +113,7 @@
 </div> 
 
 
-<a name="N1000C"></a><a name="Descriptions"></a>
+<a name="N1000D"></a><a name="Descriptions"></a>
 <h2 class="boxed">Descriptions</h2>
 <div class="section">
 <p>
@@ -180,7 +180,7 @@
 </div>
 
 
-<a name="N1004C"></a><a name="latest"></a>
+<a name="N1004D"></a><a name="latest"></a>
 <h2 class="boxed">Latest Alpha Manuals</h2>
 <div class="section">
 <p>The latest development version of the manuals,  corresponding to the
@@ -312,7 +312,7 @@
 
 
 
-<a name="N1019B"></a><a name="docs_10.1"></a>
+<a name="N1019C"></a><a name="docs_10.1"></a>
 <h2 class="boxed">10.1 Manuals</h2>
 <div class="section">
 <p>
@@ -403,7 +403,7 @@
 </div>
 
 
-<a name="N10276"></a><a name="docs_10.0"></a>
+<a name="N10277"></a><a name="docs_10.0"></a>
 <h2 class="boxed">10.0 Manuals</h2>
 <div class="section">
 <p>
@@ -496,7 +496,7 @@
 
 
 
-<a name="N10322"></a><a name="doc_issues"></a>
+<a name="N10323"></a><a name="doc_issues"></a>
 <h2 class="boxed">Reporting Documentation Issues</h2>
 <div class="section">
 <p>

Modified: db/derby/site/trunk/build/site/papers/ApacheCon.html
URL: http://svn.apache.org/viewvc/db/derby/site/trunk/build/site/papers/ApacheCon.html?rev=429820&r1=429819&r2=429820&view=diff
==============================================================================
--- db/derby/site/trunk/build/site/papers/ApacheCon.html (original)
+++ db/derby/site/trunk/build/site/papers/ApacheCon.html Tue Aug  8 14:24:26 2006
@@ -274,7 +274,7 @@
 <a href="#ApacheCon+US%3A+November+13-17%2C+2004">ApacheCon US: November 13-17, 2004</a>
 <ul class="minitoc">
 <li>
-<a href="#Presentations-N10049">Presentations</a>
+<a href="#Presentations-N1004A">Presentations</a>
 </li>
 <li>
 <a href="#Derby+Code+Contest">Derby Code Contest</a>
@@ -296,7 +296,7 @@
 </div>
 
 
-<a name="N1000C"></a><a name="ApacheCon+US%3A+December+10-14%2C+2005"></a>
+<a name="N1000D"></a><a name="ApacheCon+US%3A+December+10-14%2C+2005"></a>
 <h2 class="boxed">ApacheCon US: December 10-14, 2005</h2>
 <div class="section">
 <p>
@@ -304,7 +304,7 @@
 <a class="external" href="http://www.apachecon.com/2005/US">ApacheCon US 2005</a> was held
 in San Diego on December 10-14, 2005. 
 </p>
-<a name="N10019"></a><a name="Presentations"></a>
+<a name="N1001A"></a><a name="Presentations"></a>
 <h3 class="boxed">Presentations</h3>
 <p>
 Sessions that focused on Apache Derby included:
@@ -323,7 +323,7 @@
 </div>
 
 
-<a name="N1003C"></a><a name="ApacheCon+US%3A+November+13-17%2C+2004"></a>
+<a name="N1003D"></a><a name="ApacheCon+US%3A+November+13-17%2C+2004"></a>
 <h2 class="boxed">ApacheCon US: November 13-17, 2004</h2>
 <div class="section">
 <p>
@@ -331,7 +331,7 @@
 <a class="external" href="http://www.apachecon.com/2004/US">ApacheCon US 2004</a> was held
 in Las Vegas on November 13-17 2004. 
 </p>
-<a name="N10049"></a><a name="Presentations-N10049"></a>
+<a name="N1004A"></a><a name="Presentations-N1004A"></a>
 <h3 class="boxed">Presentations</h3>
 <p>
 Sessions that focused on Apache Derby included:
@@ -383,7 +383,7 @@
 
 
 </ul>
-<a name="N10087"></a><a name="Derby+Code+Contest"></a>
+<a name="N10088"></a><a name="Derby+Code+Contest"></a>
 <h3 class="boxed">Derby Code Contest</h3>
 <p>
   An on-site Derby code contest tooks place at ApacheCon with the
@@ -400,7 +400,7 @@
 <li> Result can be a tool, mini-application, or any other demonstration of Derby integration</li>
   
 </ul>
-<a name="N1009F"></a><a name="First+Place"></a>
+<a name="N100A0"></a><a name="First+Place"></a>
 <h4>First Place</h4>
 <p>
   The first place winner was 
@@ -426,7 +426,7 @@
   Universal JDBC Driver. Please try it out and post your experience to the
   Derby mail lists.
   </p>
-<a name="N100BE"></a><a name="Second+Place"></a>
+<a name="N100BF"></a><a name="Second+Place"></a>
 <h4>Second Place</h4>
 <p>
   The second place winner was 
@@ -442,7 +442,7 @@
   time you attend ApacheCon, you won't walk right by people you may have
   been interacting with in email during the last year(s).
   </p>
-<a name="N100D2"></a><a name="Third+Place"></a>
+<a name="N100D3"></a><a name="Third+Place"></a>
 <h4>Third Place</h4>
 <p>
   The third place winner was 

Modified: db/derby/site/trunk/build/site/papers/DerbyTut/embedded_intro.html
URL: http://svn.apache.org/viewvc/db/derby/site/trunk/build/site/papers/DerbyTut/embedded_intro.html?rev=429820&r1=429819&r2=429820&view=diff
==============================================================================
--- db/derby/site/trunk/build/site/papers/DerbyTut/embedded_intro.html (original)
+++ db/derby/site/trunk/build/site/papers/DerbyTut/embedded_intro.html Tue Aug  8 14:24:26 2006
@@ -303,7 +303,7 @@
 </div> 
 
 
-<a name="N1000C"></a><a name="ij_intro"></a>
+<a name="N1000D"></a><a name="ij_intro"></a>
 <h2 class="boxed">Introduction</h2>
 <div class="section">
 <p>
@@ -336,7 +336,7 @@
 </div>
 
 
-<a name="N1002A"></a><a name="embedded_setup"></a>
+<a name="N1002B"></a><a name="embedded_setup"></a>
 <h2 class="boxed">Set the environment</h2>
 <div class="section">
 <p>
@@ -348,10 +348,10 @@
 </div>
 
 
-<a name="N10038"></a><a name="sample_app"></a>
+<a name="N10039"></a><a name="sample_app"></a>
 <h2 class="boxed">Sample Application</h2>
 <div class="section">
-<a name="N1003E"></a><a name="copy_sample_app"></a>
+<a name="N1003F"></a><a name="copy_sample_app"></a>
 <h3 class="boxed">Copy sample application</h3>
 <p>
    The Derby software includes a sample application. Copy that application
@@ -387,7 +387,7 @@
 <li> Shuts down Derby</li>
    
 </ul>
-<a name="N10071"></a><a name="em_lookat_code"></a>
+<a name="N10072"></a><a name="em_lookat_code"></a>
 <h3 class="boxed">A quick look at the code</h3>
 <p>
    The <span class="codefrag">SimpleApp.java</span> application spends most of its time
@@ -399,7 +399,7 @@
    section shows how the same JDBC calls turn the same code into a 
    client/server application.
    </p>
-<a name="N10081"></a><a name="embedded_driver"></a>
+<a name="N10082"></a><a name="embedded_driver"></a>
 <h4>Load the Embedded JDBC Driver</h4>
 <p>
    The <span class="codefrag">SimpleApp</span> application
@@ -409,7 +409,7 @@
 ...
 Class.forName(driver).newInstance();
 </p>
-<a name="N10092"></a><a name="embedded_url"></a>
+<a name="N10093"></a><a name="embedded_url"></a>
 <h4>Get an Embedded Connection</h4>
 <p>
    The <span class="codefrag">SimpleApp</span> application
@@ -423,7 +423,7 @@
    That embedded connection URL, fully constructed, looks like this:
    </p>
 <p class="code-block">jdbc:derby:derbyDB;create=true</p>
-<a name="N100AD"></a><a name="shutdown"></a>
+<a name="N100AE"></a><a name="shutdown"></a>
 <h4>Shut Derby down</h4>
 <p>A clean shutdown performs a checkpoint and releases resources. 
       If an embedded application doesn't shut down Derby, 
@@ -441,13 +441,13 @@
     A clean shutdown always throws SQL exception <span class="codefrag">XJ015</span>, 
     which can be ignored.
    </p>
-<a name="N100CF"></a><a name="compile_sample_app"></a>
+<a name="N100D0"></a><a name="compile_sample_app"></a>
 <h3 class="boxed">Compile sample application</h3>
 <p>
    Compile the sample application as shown below:
    </p>
 <p class="code-block">javac SimpleApp.java</p>
-<a name="N100DD"></a><a name="run_sample_app"></a>
+<a name="N100DE"></a><a name="run_sample_app"></a>
 <h3 class="boxed">Run sample application</h3>
 <p>
    Run the sample application like this:
@@ -499,7 +499,7 @@
 </div>
 
 
-<a name="N10105"></a><a name="just_one_app"></a>
+<a name="N10106"></a><a name="just_one_app"></a>
 <h2 class="boxed">Embedded Derby supports multiple users in one JVM</h2>
 <div class="section">
 <p>

Modified: db/derby/site/trunk/build/site/papers/DerbyTut/ij_intro.html
URL: http://svn.apache.org/viewvc/db/derby/site/trunk/build/site/papers/DerbyTut/ij_intro.html?rev=429820&r1=429819&r2=429820&view=diff
==============================================================================
--- db/derby/site/trunk/build/site/papers/DerbyTut/ij_intro.html (original)
+++ db/derby/site/trunk/build/site/papers/DerbyTut/ij_intro.html Tue Aug  8 14:24:26 2006
@@ -301,7 +301,7 @@
 </div> 
 
 
-<a name="N1000C"></a><a name="ij_intro"></a>
+<a name="N1000D"></a><a name="ij_intro"></a>
 <h2 class="boxed">Introduction</h2>
 <div class="section">
 <p>
@@ -323,7 +323,7 @@
 </div>
 
 
-<a name="N10027"></a><a name="ij_setup"></a>
+<a name="N10028"></a><a name="ij_setup"></a>
 <h2 class="boxed">Set the environment</h2>
 <div class="section">
 <p>
@@ -335,7 +335,7 @@
 </div>
 
 
-<a name="N10035"></a><a name="ij_start"></a>
+<a name="N10036"></a><a name="ij_start"></a>
 <h2 class="boxed">Start up ij</h2>
 <div class="section">
 <p>Start up <span class="codefrag">ij</span> with this command:</p>
@@ -360,7 +360,7 @@
 </div>
 
 
-<a name="N1005F"></a><a name="ij_create"></a>
+<a name="N10060"></a><a name="ij_create"></a>
 <h2 class="boxed">Create a database</h2>
 <div class="section">
 <p>
@@ -393,7 +393,7 @@
 </div>
 
 
-<a name="N10093"></a><a name="ij_connect"></a>
+<a name="N10094"></a><a name="ij_connect"></a>
 <h2 class="boxed">Connect to a database</h2>
 <div class="section">
 <p>
@@ -408,7 +408,7 @@
 protocol ("<span class="codefrag">jdbc:derby:</span>") and
 database ("<span class="codefrag">MyDbTest</span>") in this connection URL.
 </p>
-<a name="N100B0"></a><a name="Protocol"></a>
+<a name="N100B1"></a><a name="Protocol"></a>
 <h3 class="boxed">Protocol</h3>
 <p>
 Internally, <span class="codefrag">ij</span> determines by default which driver to load
@@ -426,7 +426,7 @@
 <a href="http://db.apache.org/derby/docs/dev/tools/ttoolsij98878.html">Tools 
 and Utilities Guide</a>.
 </p>
-<a name="N100D2"></a><a name="Database"></a>
+<a name="N100D3"></a><a name="Database"></a>
 <h3 class="boxed">Database</h3>
 <p>
 Connecting to the <span class="codefrag">MyDbTest</span> database in the connection URL
@@ -471,7 +471,7 @@
 </div>
 
 
-<a name="N10115"></a><a name="ij_sql"></a>
+<a name="N10116"></a><a name="ij_sql"></a>
 <h2 class="boxed">Execute SQL statements</h2>
 <div class="section">
 <p>
@@ -488,7 +488,7 @@
 </div>
 
 
-<a name="N10126"></a><a name="ij_disconnect"></a>
+<a name="N10127"></a><a name="ij_disconnect"></a>
 <h2 class="boxed">Disconnect from a database</h2>
 <div class="section">
 <p>
@@ -499,7 +499,7 @@
 </div>
 
 
-<a name="N10138"></a><a name="ij_exit"></a>
+<a name="N10139"></a><a name="ij_exit"></a>
 <h2 class="boxed">Exit</h2>
 <div class="section">
 <p>
@@ -511,7 +511,7 @@
 </div>
 
 
-<a name="N1014D"></a><a name="Run+SQL+Scripts"></a>
+<a name="N1014E"></a><a name="Run+SQL+Scripts"></a>
 <h2 class="boxed">Run SQL Scripts</h2>
 <div class="section">
 <p>

Modified: db/derby/site/trunk/build/site/papers/DerbyTut/index.html
URL: http://svn.apache.org/viewvc/db/derby/site/trunk/build/site/papers/DerbyTut/index.html?rev=429820&r1=429819&r2=429820&view=diff
==============================================================================
--- db/derby/site/trunk/build/site/papers/DerbyTut/index.html (original)
+++ db/derby/site/trunk/build/site/papers/DerbyTut/index.html Tue Aug  8 14:24:26 2006
@@ -289,7 +289,7 @@
 </div> 
 
 
-<a name="N1000C"></a><a name="Overview"></a>
+<a name="N1000D"></a><a name="Overview"></a>
 <h2 class="boxed">Overview</h2>
 <div class="section">
 <p>
@@ -310,7 +310,7 @@
 </div>
 
 
-<a name="N1001E"></a><a name="Intended+Audience"></a>
+<a name="N1001F"></a><a name="Intended+Audience"></a>
 <h2 class="boxed">Intended Audience</h2>
 <div class="section">
 <p>
@@ -320,7 +320,7 @@
 </div>
 
 
-<a name="N10028"></a><a name="Tutorial+Topics"></a>
+<a name="N10029"></a><a name="Tutorial+Topics"></a>
 <h2 class="boxed">Tutorial Topics</h2>
 <div class="section">
 <p>
@@ -377,7 +377,7 @@
 </div>
 
 
-<a name="N1006F"></a><a name="next"></a>
+<a name="N10070"></a><a name="next"></a>
 <h2 class="boxed">Next Steps</h2>
 <div class="section">
 <p>
@@ -385,7 +385,7 @@
 you'll understand the basics of how to
 use Derby in the embedded and Network Server frameworks.
 </p>
-<a name="N10078"></a><a name="More+Information"></a>
+<a name="N10079"></a><a name="More+Information"></a>
 <h3 class="boxed">More Information</h3>
 <p>
 More information about Derby is on the
@@ -396,7 +396,7 @@
 <a href="http://db.apache.org/derby/derby_mail.html">derby-user@db.apache.org</a>
 mail list.
 </p>
-<a name="N1008E"></a><a name="Using+Derby+with+other+Products"></a>
+<a name="N1008F"></a><a name="Using+Derby+with+other+Products"></a>
 <h3 class="boxed">Using Derby with other Products</h3>
 <p>
 Below is a partial list of resources on the Derby web site that show how 

Modified: db/derby/site/trunk/build/site/papers/DerbyTut/install_software.html
URL: http://svn.apache.org/viewvc/db/derby/site/trunk/build/site/papers/DerbyTut/install_software.html?rev=429820&r1=429819&r2=429820&view=diff
==============================================================================
--- db/derby/site/trunk/build/site/papers/DerbyTut/install_software.html (original)
+++ db/derby/site/trunk/build/site/papers/DerbyTut/install_software.html Tue Aug  8 14:24:26 2006
@@ -303,7 +303,7 @@
 </div> 
 
 
-<a name="N1000C"></a><a name="Introduction"></a>
+<a name="N1000D"></a><a name="Introduction"></a>
 <h2 class="boxed">Introduction</h2>
 <div class="section">
 <p>
@@ -324,7 +324,7 @@
 </div>
 
 
-<a name="N1001F"></a><a name="jdk"></a>
+<a name="N10020"></a><a name="jdk"></a>
 <h2 class="boxed">Java Development Kit (JDK)</h2>
 <div class="section">
 <p>Derby requires Java 2 Standard Edition (J2SE) 1.3 or higher
@@ -339,7 +339,7 @@
 then proceed
 to the <a href="#derby">Apache Derby</a> installation section.
 </p>
-<a name="N10033"></a><a name="jdk_install"></a>
+<a name="N10034"></a><a name="jdk_install"></a>
 <h3 class="boxed">Install JDK</h3>
 <p>
 If you have not already installed a JDK,
@@ -350,7 +350,7 @@
 <a class="external" href="http://java.sun.com/j2se/">http://java.sun.com/j2se/</a>.
 After installing the JDK of your choice, proceed to the next section.
 </p>
-<a name="N10041"></a><a name="jdk_configure"></a>
+<a name="N10042"></a><a name="jdk_configure"></a>
 <h3 class="boxed">Configure JDK</h3>
 <p>
 Set the <span class="codefrag">JAVA_HOME</span> environment variable to the root location of
@@ -378,7 +378,7 @@
 <p class="code-block">UNIX Korn Shell:
 $ export PATH=$JAVA_HOME/bin:$PATH
 </p>
-<a name="N10076"></a><a name="jdk_verify"></a>
+<a name="N10077"></a><a name="jdk_verify"></a>
 <h3 class="boxed">Verify JDK</h3>
 <p>
 Use the <span class="codefrag">java -version</span> command, as shown below,
@@ -399,10 +399,10 @@
 </div>
 
 
-<a name="N10091"></a><a name="derby"></a>
+<a name="N10092"></a><a name="derby"></a>
 <h2 class="boxed">Apache Derby</h2>
 <div class="section">
-<a name="N10097"></a><a name="derby_download"></a>
+<a name="N10098"></a><a name="derby_download"></a>
 <h3 class="boxed">Download Derby</h3>
 <p>
 Download the binary Apache Derby distribution from the Derby web site at 
@@ -430,7 +430,7 @@
    then substitute that version number 
 for <span class="codefrag">10.1.2.1</span> in the following instructions.
    </p>
-<a name="N100CC"></a><a name="derby_install"></a>
+<a name="N100CD"></a><a name="derby_install"></a>
 <h3 class="boxed">Install Derby</h3>
 <p>
     Choose the directory into which you want to install the Derby software.
@@ -455,7 +455,7 @@
 <p>In both cases, the software will now be extracted into a subdirectory
     named <span class="codefrag">db-derby-10.1.2.1-bin</span>. 
    </p>
-<a name="N100EA"></a><a name="set_derby_install"></a>
+<a name="N100EB"></a><a name="set_derby_install"></a>
 <h3 class="boxed">Set DERBY_INSTALL</h3>
 <p>
 Set the <span class="codefrag">DERBY_INSTALL</span> variable to the location where you
@@ -469,7 +469,7 @@
 <p class="code-block">UNIX Korn Shell:
 $ export DERBY_INSTALL=/opt/Apache/db-derby-10.1.2.1-bin
 </p>
-<a name="N100FF"></a><a name="derby_configure"></a>
+<a name="N10100"></a><a name="derby_configure"></a>
 <h3 class="boxed">Configure Embedded Derby</h3>
 <p>To use Derby in its embedded mode
       set your <span class="codefrag">CLASSPATH</span> to include the jar files listed below:</p>
@@ -529,7 +529,7 @@
 $ cd $DERBY_INSTALL/frameworks/embedded/bin
 $ . setEmbeddedCP.ksh
 </p>
-<a name="N1015F"></a><a name="derby_verify"></a>
+<a name="N10160"></a><a name="derby_verify"></a>
 <h3 class="boxed">Verify Derby</h3>
 <p>Run the <span class="codefrag">sysinfo</span> command, as shown below, to output Derby
 system information:

Modified: db/derby/site/trunk/build/site/papers/DerbyTut/ns_intro.html
URL: http://svn.apache.org/viewvc/db/derby/site/trunk/build/site/papers/DerbyTut/ns_intro.html?rev=429820&r1=429819&r2=429820&view=diff
==============================================================================
--- db/derby/site/trunk/build/site/papers/DerbyTut/ns_intro.html (original)
+++ db/derby/site/trunk/build/site/papers/DerbyTut/ns_intro.html Tue Aug  8 14:24:26 2006
@@ -328,7 +328,7 @@
 </div> 
 
 
-<a name="N1000C"></a><a name="ns_intro"></a>
+<a name="N1000D"></a><a name="ns_intro"></a>
 <h2 class="boxed">Introduction</h2>
 <div class="section">
 <p>
@@ -369,7 +369,7 @@
 </div>
 
 
-<a name="N10034"></a><a name="ns"></a>
+<a name="N10035"></a><a name="ns"></a>
 <h2 class="boxed">Derby Network Server</h2>
 <div class="section">
 <p>
@@ -377,7 +377,7 @@
    <a href="install_software.html#set_derby_install">DERBY_INSTALL</a>
    environment variable.
 </p>
-<a name="N10041"></a><a name="ns_config_env"></a>
+<a name="N10042"></a><a name="ns_config_env"></a>
 <h3 class="boxed">Configure environment</h3>
 <p>To start or stop the Network Server,
       set your <span class="codefrag">CLASSPATH</span> to include the jar files listed below:</p>
@@ -419,7 +419,7 @@
 $ cd $DERBY_INSTALL/frameworks/NetworkServer/bin
 $ . setNetworkServerCP.ksh
 </p>
-<a name="N10082"></a><a name="start_ns"></a>
+<a name="N10083"></a><a name="start_ns"></a>
 <h3 class="boxed">Start Network Server</h3>
 <p>
 Start the Network server by executing the
@@ -447,7 +447,7 @@
 </div>
 
 
-<a name="N100A4"></a><a name="ns_sample"></a>
+<a name="N100A5"></a><a name="ns_sample"></a>
 <h2 class="boxed">Sample Application</h2>
 <div class="section">
 <p>
@@ -455,7 +455,7 @@
    <a href="install_software.html#set_derby_install">DERBY_INSTALL</a>
    environment variable.
 </p>
-<a name="N100B1"></a><a name="configure_ns_client"></a>
+<a name="N100B2"></a><a name="configure_ns_client"></a>
 <h3 class="boxed">Configure environment to use Derby Network Client JDBC driver</h3>
 <p>To use the Derby Network Client JDBC driver,
       set your <span class="codefrag">CLASSPATH</span> to include the jar files listed below:</p>
@@ -495,7 +495,7 @@
 <p class="code-block">UNIX:
 $ . setNetworkClientCP.ksh
 </p>
-<a name="N100F5"></a><a name="ij_ns_client"></a>
+<a name="N100F6"></a><a name="ij_ns_client"></a>
 <h3 class="boxed">Test network server connection with ij</h3>
 <p>
    An <strong>embedded</strong> 
@@ -544,7 +544,7 @@
 </li>
    
 </ul>
-<a name="N10137"></a><a name="copy_ns_client"></a>
+<a name="N10138"></a><a name="copy_ns_client"></a>
 <h3 class="boxed">Copy sample application</h3>
 <p>
    This section uses the same sample application that the 
@@ -565,7 +565,7 @@
    create and connect to the database using the Derby Network Client JDBC
    driver instead.
    </p>
-<a name="N10153"></a><a name="ns_lookat_code"></a>
+<a name="N10154"></a><a name="ns_lookat_code"></a>
 <h3 class="boxed">A quick look at the code</h3>
 <p>
    The <span class="codefrag">SimpleApp.java</span> application spends most of its time
@@ -576,7 +576,7 @@
    The "<a href="embedded_intro.html#em_lookat_code">Embedded Derby</a>"
    section shows how to turn the same code into an embedded application.
    </p>
-<a name="N10163"></a><a name="jdbc_ns_client"></a>
+<a name="N10164"></a><a name="jdbc_ns_client"></a>
 <h4>Load the Client JDBC Driver</h4>
 <p>
    When executed with the <span class="codefrag">derbyclient</span> argument,
@@ -587,7 +587,7 @@
 ...
 Class.forName(driver).newInstance();
 </p>
-<a name="N10177"></a><a name="url_ns_client"></a>
+<a name="N10178"></a><a name="url_ns_client"></a>
 <h4>Get a Network Server Connection</h4>
 <p>
    When executed with the <span class="codefrag">derbyclient</span> argument,
@@ -602,7 +602,7 @@
    That connection URL, fully constructed, looks like this:
    </p>
 <p class="code-block">jdbc:derby://localhost:1527/derbyDB;create=true</p>
-<a name="N10195"></a><a name="ns_client_noshutdown"></a>
+<a name="N10196"></a><a name="ns_client_noshutdown"></a>
 <h4>Don't shut Derby down</h4>
 <p>
    If you look at the <span class="codefrag">SimpleApp.java</span> code you'll notice that it
@@ -611,13 +611,13 @@
    other applications might be accessing
    the same database you are; so, don't shut down the databases or Derby.
    </p>
-<a name="N101A6"></a><a name="compile_ns_client"></a>
+<a name="N101A7"></a><a name="compile_ns_client"></a>
 <h3 class="boxed">Compile Sample Application</h3>
 <p>
    Compile the sample application as shown below:
    </p>
 <p class="code-block">javac SimpleApp.java</p>
-<a name="N101B4"></a><a name="run_ns_client"></a>
+<a name="N101B5"></a><a name="run_ns_client"></a>
 <h3 class="boxed">Run Sample Application</h3>
 <p>
    Run the sample application like this:
@@ -650,7 +650,7 @@
 </div>
 
 
-<a name="N101D8"></a><a name="stop_ns"></a>
+<a name="N101D9"></a><a name="stop_ns"></a>
 <h2 class="boxed">Stop Network Server</h2>
 <div class="section">
 <p>
@@ -674,10 +674,10 @@
 </div>
 
 
-<a name="N101F6"></a><a name="ns_next_steps"></a>
+<a name="N101F7"></a><a name="ns_next_steps"></a>
 <h2 class="boxed">Next Steps</h2>
 <div class="section">
-<a name="N101FC"></a><a name="Network+Server+Options"></a>
+<a name="N101FD"></a><a name="Network+Server+Options"></a>
 <h3 class="boxed">Network Server Options</h3>
 <p>
 By default, the Derby Network Server only accepts requests from the
@@ -704,7 +704,7 @@
 <a href="http://db.apache.org/derby/manuals">Derby Server and 
 Administration Guide</a>.
 </p>
-<a name="N10221"></a><a name="Embedded+Server"></a>
+<a name="N10222"></a><a name="Embedded+Server"></a>
 <h3 class="boxed">Embedded Server</h3>
 <p>
 Up until this point,

Modified: db/derby/site/trunk/build/site/papers/MiscPresentations.html
URL: http://svn.apache.org/viewvc/db/derby/site/trunk/build/site/papers/MiscPresentations.html?rev=429820&r1=429819&r2=429820&view=diff
==============================================================================
--- db/derby/site/trunk/build/site/papers/MiscPresentations.html (original)
+++ db/derby/site/trunk/build/site/papers/MiscPresentations.html Tue Aug  8 14:24:26 2006
@@ -272,7 +272,7 @@
 </div>
 
 
-<a name="N1000C"></a><a name="Colorado+Software+Summit+2004"></a>
+<a name="N1000D"></a><a name="Colorado+Software+Summit+2004"></a>
 <h2 class="boxed">Colorado Software Summit 2004</h2>
 <div class="section">
 <p> 
@@ -287,7 +287,7 @@
 </div>
 
 
-<a name="N10025"></a><a name="OSCON+2005"></a>
+<a name="N10026"></a><a name="OSCON+2005"></a>
 <h2 class="boxed">OSCON 2005</h2>
 <div class="section">
 <p>

Modified: db/derby/site/trunk/build/site/papers/derby_arch.html
URL: http://svn.apache.org/viewvc/db/derby/site/trunk/build/site/papers/derby_arch.html?rev=429820&r1=429819&r2=429820&view=diff
==============================================================================
--- db/derby/site/trunk/build/site/papers/derby_arch.html (original)
+++ db/derby/site/trunk/build/site/papers/derby_arch.html Tue Aug  8 14:24:26 2006
@@ -309,13 +309,13 @@
 </p>
 
 
-<a name="N1001E"></a><a name="Module+View"></a>
+<a name="N1001F"></a><a name="Module+View"></a>
 <h2 class="boxed">Module View</h2>
 <div class="section">
 <p>
 A running system is comprised of a monitor and a collection of modules.
 </p>
-<a name="N10027"></a><a name="Monitor"></a>
+<a name="N10028"></a><a name="Monitor"></a>
 <h3 class="boxed">Monitor</h3>
 <p>
 The monitor is code that maps module requests,
@@ -327,7 +327,7 @@
 implementation. This allows Derby to present a single JDBC driver to the
 application regardless of JDK and internally the correct driver is loaded.
 </p>
-<a name="N10031"></a><a name="Modules"></a>
+<a name="N10032"></a><a name="Modules"></a>
 <h3 class="boxed">Modules</h3>
 <p>
 A module is a set of discrete functionality, such as a lock manager,
@@ -352,13 +352,13 @@
 </div>
 
 
-<a name="N10042"></a><a name="Layer%2FBox+View"></a>
+<a name="N10043"></a><a name="Layer%2FBox+View"></a>
 <h2 class="boxed">Layer/Box View</h2>
 <div class="section">
 <p>
 There are four main code areas: JDBC, SQL, Store and Services.
 </p>
-<a name="N1004B"></a><a name="JDBC"></a>
+<a name="N1004C"></a><a name="JDBC"></a>
 <h3 class="boxed">JDBC</h3>
 <p>
 JDBC presents the only api to Derby to applications and consists of
@@ -373,7 +373,7 @@
 <p>
 The JDBC layer sits on top of the SQL layer.
 </p>
-<a name="N10058"></a><a name="SQL"></a>
+<a name="N10059"></a><a name="SQL"></a>
 <h3 class="boxed">SQL</h3>
 <p>
 The SQL layer is split into two main logical areas, compilation and
@@ -433,7 +433,7 @@
 These result set objects interface with the Store layer to fetch rows
 from tables, indexes or perform sorts.
 </p>
-<a name="N10083"></a><a name="Store"></a>
+<a name="N10084"></a><a name="Store"></a>
 <h3 class="boxed">Store</h3>
 <p>
 The Store layer is split into two main areas, access and raw.
@@ -450,7 +450,7 @@
 to be stored in the Java filesystem, jar files, jar files in the
 classpath, or any other mechanism.
 </p>
-<a name="N10090"></a><a name="Services"></a>
+<a name="N10091"></a><a name="Services"></a>
 <h3 class="boxed">Services</h3>
 <p>
 Services are utility modules such as lock management, cache management

Modified: db/derby/site/trunk/build/site/papers/derby_web.html
URL: http://svn.apache.org/viewvc/db/derby/site/trunk/build/site/papers/derby_web.html?rev=429820&r1=429819&r2=429820&view=diff
==============================================================================
--- db/derby/site/trunk/build/site/papers/derby_web.html (original)
+++ db/derby/site/trunk/build/site/papers/derby_web.html Tue Aug  8 14:24:26 2006
@@ -191,17 +191,17 @@
 </p>
 
 
-<a name="N10017"></a><a name="Web+Site+Change+Notes"></a>
+<a name="N10018"></a><a name="Web+Site+Change+Notes"></a>
 <h2 class="boxed">Web Site Change Notes</h2>
 <div class="section">
-<a name="N1001D"></a><a name="12-Aug-2005%3A+Web+site+upgraded+to+Forrest+0.7"></a>
+<a name="N1001E"></a><a name="12-Aug-2005%3A+Web+site+upgraded+to+Forrest+0.7"></a>
 <h3 class="boxed">12-Aug-2005: Web site upgraded to Forrest 0.7</h3>
 <p>The web site was recently upgraded to build with the latest
 release of Forrest, Forrest 0.7.</p>
 <p>If you receive OutOfMemoryErrors while trying to build the
 site, try increasing the amount of memory available to forrest
 by setting the ANT_OPTS environment variable to -mx512M.</p>
-<a name="N1002A"></a><a name="31-Jul-2005%3A+Web+site+moved+from+Incubator+to+Apache+DB"></a>
+<a name="N1002B"></a><a name="31-Jul-2005%3A+Web+site+moved+from+Incubator+to+Apache+DB"></a>
 <h3 class="boxed">31-Jul-2005: Web site moved from Incubator to Apache DB</h3>
 <p>
 Derby graduated from the Incubator to the Apache DB project,
@@ -224,7 +224,7 @@
   </li>
 
 </ul>
-<a name="N10043"></a><a name="15-May-2005%3A+Version+10.0+manuals+moved"></a>
+<a name="N10044"></a><a name="15-May-2005%3A+Version+10.0+manuals+moved"></a>
 <h3 class="boxed">15-May-2005: Version 10.0 manuals moved</h3>
 <p>
 The files that comprise the 10.0 manuals are numerous (about 750), static,
@@ -232,7 +232,7 @@
 In May they were moved to a separate "mini" forrest site, which is now at
 <a href="http://db.apache.org/derby/docs/10.0/index.html">http://db.apache.org/derby/docs/10.0/index.html</a>.
 </p>
-<a name="N10051"></a><a name="27-Jan-2005%3A+Web+site+upgraded+to+Forrest+0.6"></a>
+<a name="N10052"></a><a name="27-Jan-2005%3A+Web+site+upgraded+to+Forrest+0.6"></a>
 <h3 class="boxed">27-Jan-2005: Web site upgraded to Forrest 0.6</h3>
 <p>
 The Derby web site was initialized in August 2004 with Forrest 0.5.1.
@@ -271,7 +271,7 @@
 </div>
 
 
-<a name="N10080"></a><a name="Forrest+in+a+Nutshell"></a>
+<a name="N10081"></a><a name="Forrest+in+a+Nutshell"></a>
 <h2 class="boxed">Forrest in a Nutshell</h2>
 <div class="section">
 <p>
@@ -307,7 +307,7 @@
 
 
 
-<a name="N100AB"></a><a name="Testing+New+Pages+for+the+Derby+Site"></a>
+<a name="N100AC"></a><a name="Testing+New+Pages+for+the+Derby+Site"></a>
 <h2 class="boxed">Testing New Pages for the Derby Site</h2>
 <div class="section">
 <p>
@@ -317,7 +317,7 @@
 It is much easier to integrate new pages by first
 testing them outside the Derby web site source tree.
 </p>
-<a name="N100B4"></a><a name="Create+a+Forrest+seed+site"></a>
+<a name="N100B5"></a><a name="Create+a+Forrest+seed+site"></a>
 <h3 class="boxed">Create a Forrest seed site</h3>
 <p>
 To get started:
@@ -340,7 +340,7 @@
 <li> Look at the sample pages that are included in the seed site.</li>
 
 </ul>
-<a name="N100D9"></a><a name="Add+your+new+page+to+the+seed+site"></a>
+<a name="N100DA"></a><a name="Add+your+new+page+to+the+seed+site"></a>
 <h3 class="boxed">Add your new page to the seed site</h3>
 <p>
 Next, incorporate the new page(s) into the newly-created seed site:
@@ -429,7 +429,7 @@
         source file. </li>
 
 </ul>
-<a name="N1013C"></a><a name="What+editor+can+you+use+for+Forrest+XML%3F"></a>
+<a name="N1013D"></a><a name="What+editor+can+you+use+for+Forrest+XML%3F"></a>
 <h3 class="boxed">What editor can you use for Forrest XML?</h3>
 <p>
 The Forrest web site mentions jEdit, oXygen, xmlspy, 
@@ -460,7 +460,7 @@
 by posting to
 <a href="../derby_mail.html">derby-dev@db.apache.org</a>.
 </p>
-<a name="N10166"></a><a name="Resolve+Forrest+DTDs+locally"></a>
+<a name="N10167"></a><a name="Resolve+Forrest+DTDs+locally"></a>
 <h3 class="boxed">Resolve Forrest DTDs locally</h3>
 <p>
 Many source files in the Derby web site repository are in Forrest XML format.
@@ -493,14 +493,14 @@
 
 
 
-<a name="N10185"></a><a name="Updating+the+Apache+Derby+web+site"></a>
+<a name="N10186"></a><a name="Updating+the+Apache+Derby+web+site"></a>
 <h2 class="boxed">Updating the Apache Derby web site </h2>
 <div class="section">
 <p>
 The information in this section is intended for committers
 who need to add a page to the Derby web site or modify an existing page.
 </p>
-<a name="N1018E"></a><a name="1.+Install+Forrest+on+your+machine"></a>
+<a name="N1018F"></a><a name="1.+Install+Forrest+on+your+machine"></a>
 <h3 class="boxed">1. Install Forrest on your machine</h3>
 <p>
 If you haven't installed Forrest yet,
@@ -510,7 +510,7 @@
 as described in the previous section,
 and play with it to get comfortable working with Forrest.
 </p>
-<a name="N1019C"></a><a name="2.+Check+out+the+Derby+web+site+pages"></a>
+<a name="N1019D"></a><a name="2.+Check+out+the+Derby+web+site+pages"></a>
 <h3 class="boxed">2. Check out the Derby web site pages </h3>
 <p>
 Check the Derby web site files out of the Subversion repository:
@@ -518,7 +518,7 @@
 <pre class="code">
 svn co https://svn.apache.org/repos/asf/db/derby/site/trunk
 </pre>
-<a name="N101AA"></a><a name="3.+Modify+files+in+the+src+tree"></a>
+<a name="N101AB"></a><a name="3.+Modify+files+in+the+src+tree"></a>
 <h3 class="boxed">3. Modify files in the src tree </h3>
 <p>
 Source files are in the places listed below:
@@ -597,7 +597,7 @@
 </li>
 
 </ul>
-<a name="N10234"></a><a name="4.+Build+the+site"></a>
+<a name="N10235"></a><a name="4.+Build+the+site"></a>
 <h3 class="boxed">4. Build the site </h3>
 <p>
 After modifying files, you need to rebuild the site with the
@@ -615,7 +615,7 @@
 build/site/releases so that they can be checked into subversion with the source
 changes.
 </p>
-<a name="N1024E"></a><a name="5.+Test+the+changes"></a>
+<a name="N1024F"></a><a name="5.+Test+the+changes"></a>
 <h3 class="boxed">5. Test the changes </h3>
 <p>
 There are a couple ways (at least) to review changes.
@@ -650,7 +650,7 @@
 won't be added when the site is viewed locally.</a>
 
 </p>
-<a name="N10280"></a><a name="odd_diffs"></a>
+<a name="N10281"></a><a name="odd_diffs"></a>
 <h3 class="boxed">6. Odd diffs under build/site/skin and build/site/papers explained (sort of) </h3>
 <p>
 Forrest generates inconsistent line endings on Windows machines
@@ -678,7 +678,7 @@
 <a href="../derby_mail.html">derby-dev@db.apache.org</a>
 if a particular file should be committed or not.
 </p>
-<a name="N102B1"></a><a name="7.+Commit+changes+to+the+src+and+build%2Fsite+directories"></a>
+<a name="N102B2"></a><a name="7.+Commit+changes+to+the+src+and+build%2Fsite+directories"></a>
 <h3 class="boxed">7. Commit changes to the src and build/site directories</h3>
 <p>
 Commit modified pages in the <span class="codefrag">src</span> and
@@ -720,7 +720,7 @@
 <pre class="code">
 svn commit --message "here is my commit message" src build/site 
 </pre>
-<a name="N102F6"></a><a name="8.+Make+web+site+changes+visible"></a>
+<a name="N102F7"></a><a name="8.+Make+web+site+changes+visible"></a>
 <h3 class="boxed">8. Make web site changes visible</h3>
 <p>
 A Derby committer can make web site changes visible as follows:
@@ -734,7 +734,7 @@
 www.apache.org automatically syncs up with people.apache.org every couple hours
 (the specific schedule could change).
 </p>
-<a name="N1030A"></a><a name="9.+Considering+a+quick+fix+to+the+build+tree%3F"></a>
+<a name="N1030B"></a><a name="9.+Considering+a+quick+fix+to+the+build+tree%3F"></a>
 <h3 class="boxed">9. Considering a quick fix to the build tree?</h3>
 <p>
 If you modify a file in the <span class="codefrag">build/site</span> tree, 

Modified: db/derby/site/trunk/build/site/papers/fortune_tut.html
URL: http://svn.apache.org/viewvc/db/derby/site/trunk/build/site/papers/fortune_tut.html?rev=429820&r1=429819&r2=429820&view=diff
==============================================================================
--- db/derby/site/trunk/build/site/papers/fortune_tut.html (original)
+++ db/derby/site/trunk/build/site/papers/fortune_tut.html Tue Aug  8 14:24:26 2006
@@ -284,7 +284,7 @@
 </div> 
 
 
-<a name="N1000C"></a><a name="Overview"></a>
+<a name="N1000D"></a><a name="Overview"></a>
 <h2 class="boxed">Overview</h2>
 <div class="section">
 <p>
@@ -309,7 +309,7 @@
 </div>
 
 
-<a name="N10024"></a><a name="Intended+Audience"></a>
+<a name="N10025"></a><a name="Intended+Audience"></a>
 <h2 class="boxed">Intended Audience</h2>
 <div class="section">
 <p>
@@ -321,7 +321,7 @@
 </div>
 
 
-<a name="N1002E"></a><a name="Tutorial+Topics"></a>
+<a name="N1002F"></a><a name="Tutorial+Topics"></a>
 <h2 class="boxed">Tutorial Topics</h2>
 <div class="section">
 <p>
@@ -383,7 +383,7 @@
 
 
 
-<a name="N10071"></a><a name="Download+Software"></a>
+<a name="N10072"></a><a name="Download+Software"></a>
 <h2 class="boxed">Download Software</h2>
 <div class="section">
 <ul>
@@ -413,7 +413,7 @@
 </div>
 
 
-<a name="N1009A"></a><a name="Credits+and+Acknowledgments"></a>
+<a name="N1009B"></a><a name="Credits+and+Acknowledgments"></a>
 <h2 class="boxed">Credits and Acknowledgments</h2>
 <div class="section">
 <p>
@@ -443,7 +443,7 @@
 </div>
 
 
-<a name="N100BC"></a><a name="Revision+History"></a>
+<a name="N100BD"></a><a name="Revision+History"></a>
 <h2 class="boxed">Revision History</h2>
 <div class="section">
 <p>

Modified: db/derby/site/trunk/build/site/papers/index.html
URL: http://svn.apache.org/viewvc/db/derby/site/trunk/build/site/papers/index.html?rev=429820&r1=429819&r2=429820&view=diff
==============================================================================
--- db/derby/site/trunk/build/site/papers/index.html (original)
+++ db/derby/site/trunk/build/site/papers/index.html Tue Aug  8 14:24:26 2006
@@ -287,7 +287,7 @@
 </p>
 
 
-<a name="N10016"></a><a name="Derby+Engine"></a>
+<a name="N10017"></a><a name="Derby+Engine"></a>
 <h2 class="boxed">Derby Engine</h2>
 <div class="section">
 <p>
@@ -401,7 +401,7 @@
 </div>
 
 
-<a name="N100FE"></a><a name="Derby+Network+Client"></a>
+<a name="N100FF"></a><a name="Derby+Network+Client"></a>
 <h2 class="boxed">Derby Network Client</h2>
 <div class="section">
 <p>
@@ -423,7 +423,7 @@
 </div>
 
 
-<a name="N10124"></a><a name="Instruction"></a>
+<a name="N10125"></a><a name="Instruction"></a>
 <h2 class="boxed">Instruction</h2>
 <div class="section">
 <p>
@@ -436,7 +436,7 @@
 </div>
 
 
-<a name="N10136"></a><a name="How+to+Contribute+Papers"></a>
+<a name="N10137"></a><a name="How+to+Contribute+Papers"></a>
 <h2 class="boxed">How to Contribute Papers</h2>
 <div class="section">
 <p>

Modified: db/derby/site/trunk/build/site/papers/logformats.html
URL: http://svn.apache.org/viewvc/db/derby/site/trunk/build/site/papers/logformats.html?rev=429820&r1=429819&r2=429820&view=diff
==============================================================================
--- db/derby/site/trunk/build/site/papers/logformats.html (original)
+++ db/derby/site/trunk/build/site/papers/logformats.html Tue Aug  8 14:24:26 2006
@@ -304,7 +304,7 @@
 </ul>
 </div> 
       
-<a name="N1000F"></a><a name="introduction"></a>
+<a name="N10010"></a><a name="introduction"></a>
 <h2 class="boxed"> Introduction </h2>
 <div class="section">
 <p> Derby uses a Write Ahead Log to record all changes to the database. 
@@ -333,7 +333,7 @@
           paper.</p>
 </div>
       
-<a name="N1002B"></a><a name="References"></a>
+<a name="N1002C"></a><a name="References"></a>
 <h2 class="boxed"> References </h2>
 <div class="section">
 <p> A good description of Write Ahead Logging, and how a log is typically 
@@ -345,7 +345,7 @@
           .</p>
 </div>
       
-<a name="N1003C"></a><a name="Derby+implementation+of+the+Write+Ahead+Log"></a>
+<a name="N1003D"></a><a name="Derby+implementation+of+the+Write+Ahead+Log"></a>
 <h2 class="boxed">Derby implementation of the Write Ahead Log</h2>
 <div class="section">
 <p> Derby implements the Write Ahead Log using a non-circular file system 
@@ -412,7 +412,7 @@
             while"</li>
         
 </ol>
-<a name="N1007B"></a><a name="LogCounter"></a>
+<a name="N1007C"></a><a name="LogCounter"></a>
 <h3 class="boxed">LogCounter</h3>
 <p>Log records are identified using LogCounter, which is an implementation 
             of LogInstant, a Derby term for LSN. The LogCounter is made up of 
@@ -424,7 +424,7 @@
             tells if one log instant is lessThan, equals or greater than another.</p>
 </div>
       
-<a name="N10089"></a><a name="Format+of+Write+Ahead+Log"></a>
+<a name="N1008A"></a><a name="Format+of+Write+Ahead+Log"></a>
 <h2 class="boxed"> Format of Write Ahead Log </h2>
 <div class="section">
 <p> An implementation of file based log is in 
@@ -432,7 +432,7 @@
           This LogFactory is responsible for the formats of 2 kinds of file: 
           the log file and the log control file. And it is responsible for the 
           format of the log record wrapper. </p>
-<a name="N10095"></a><a name="Format+of+Log+Control+File"></a>
+<a name="N10096"></a><a name="Format+of+Log+Control+File"></a>
 <h3 class="boxed">Format of Log Control File</h3>
 <p>The log control file contains information about which log files are 
             present and where the last checkpoint log record is located.</p>
@@ -502,7 +502,7 @@
 </tr>
           
 </table>
-<a name="N10117"></a><a name="Format+of+the+log+file"></a>
+<a name="N10118"></a><a name="Format+of+the+log+file"></a>
 <h3 class="boxed">Format of the log file</h3>
 <p>The log file contains log records which record all the changes to 
             the database. The complete transaction log is composed of a series 
@@ -570,7 +570,7 @@
 </tr>
           
 </table>
-<a name="N1018C"></a><a name="Format+of+the+log+record+wrapper"></a>
+<a name="N1018D"></a><a name="Format+of+the+log+record+wrapper"></a>
 <h3 class="boxed">Format of the log record wrapper</h3>
 <p>The log record wrapper provides information for the log scan.</p>
 <table class="ForrestTable" cellspacing="1" cellpadding="4"> 
@@ -611,7 +611,7 @@
 </tr>
           
 </table>
-<a name="N101DA"></a><a name="The+format+of+a+log+record"></a>
+<a name="N101DB"></a><a name="The+format+of+a+log+record"></a>
 <h3 class="boxed">The format of a log record</h3>
 <p>The log record described every change to the persistent store</p>
 <table class="ForrestTable" cellspacing="1" cellpadding="4"> 
@@ -767,7 +767,7 @@
 </table>
 </div>
       
-<a name="N10307"></a><a name="Pointers+to+relevant+classes"></a>
+<a name="N10308"></a><a name="Pointers+to+relevant+classes"></a>
 <h2 class="boxed">Pointers to relevant classes</h2>
 <div class="section">
 <div class="frame fixme">

Modified: db/derby/site/trunk/build/site/papers/optimizer.html
URL: http://svn.apache.org/viewvc/db/derby/site/trunk/build/site/papers/optimizer.html?rev=429820&r1=429819&r2=429820&view=diff
==============================================================================
--- db/derby/site/trunk/build/site/papers/optimizer.html (original)
+++ db/derby/site/trunk/build/site/papers/optimizer.html Tue Aug  8 14:24:26 2006
@@ -278,7 +278,7 @@
 </ul>
 </div> 
       
-<a name="N1000F"></a><a name="overview"></a>
+<a name="N10010"></a><a name="overview"></a>
 <h2 class="boxed">Overview</h2>
 <div class="section">
 <div class="frame note">
@@ -348,7 +348,7 @@
          the join order musn't be inverted under the current implementation). </p>
 </div>
       
-<a name="N10031"></a><a name="Example+of+a+5-way+Join"></a>
+<a name="N10032"></a><a name="Example+of+a+5-way+Join"></a>
 <h2 class="boxed">Example of a 5-way Join</h2>
 <div class="section">
 <p> The optimizer looks at so many 
@@ -466,7 +466,7 @@
           - t5 - t2. </p>
 </div>
       
-<a name="N10077"></a><a name="Potential+Improvements+to+the+Optimizer"></a>
+<a name="N10078"></a><a name="Potential+Improvements+to+the+Optimizer"></a>
 <h2 class="boxed">Potential Improvements to the Optimizer</h2>
 <div class="section">
 <p> It's hard to consider the optimizer by itself. Many optimizer enhancements

Modified: db/derby/site/trunk/build/site/papers/pageformats.html
URL: http://svn.apache.org/viewvc/db/derby/site/trunk/build/site/papers/pageformats.html?rev=429820&r1=429819&r2=429820&view=diff
==============================================================================
--- db/derby/site/trunk/build/site/papers/pageformats.html (original)
+++ db/derby/site/trunk/build/site/papers/pageformats.html Tue Aug  8 14:24:26 2006
@@ -312,7 +312,7 @@
 </ul>
 </div>
     
-<a name="N1000F"></a><a name="introduction"></a>
+<a name="N10010"></a><a name="introduction"></a>
 <h2 class="boxed"> Introduction </h2>
 <div class="section">
 <p>Derby stores table and index data in Containers, which currently map 
@@ -381,18 +381,18 @@
 </p>
 </div>
     
-<a name="N10048"></a><a name="storedpage"></a>
+<a name="N10049"></a><a name="storedpage"></a>
 <h2 class="boxed">Data Page Format</h2>
 <div class="section">
 <p>A data page is broken into five sections. 
 
         <img alt="" src="page-format.png"></p>
-<a name="N10054"></a><a name="formatid"></a>
+<a name="N10055"></a><a name="formatid"></a>
 <h3 class="boxed">Format Id </h3>
 <p> The formatId is a 4 bytes array, it contains the format Id of this 
 
           page. The possible values are RAW_STORE_STORED_PAGE or RAW_STORE_ALLOC_PAGE.</p>
-<a name="N1005E"></a><a name="pageheader"></a>
+<a name="N1005F"></a><a name="pageheader"></a>
 <h3 class="boxed"> Page Header </h3>
 <p> The page header is a fixed size, 56 bytes. </p>
 <table class="ForrestTable" cellspacing="1" cellpadding="4">
@@ -560,7 +560,7 @@
 
             that 0 means field was never assigned. </div>
 </div>
-<a name="N1018B"></a><a name="records"></a>
+<a name="N1018C"></a><a name="records"></a>
 <h3 class="boxed"> Records </h3>
 <p>The records section contains zero or more records. Each record starts 
 
@@ -855,7 +855,7 @@
 
           </div>
 </div>
-<a name="N102E1"></a><a name="slottable"></a>
+<a name="N102E2"></a><a name="slottable"></a>
 <h3 class="boxed">Slot Offset Table</h3>
 <p>The slot offset table is a table of 6 or 12 bytes per record, depending 
 
@@ -900,14 +900,14 @@
           First slot is slot 0. The slot table grows backwards. Slots are never 
 
           left empty. </p>
-<a name="N10328"></a><a name="checksum"></a>
+<a name="N10329"></a><a name="checksum"></a>
 <h3 class="boxed">Checksum</h3>
 <p>8 bytes of a java.util.zip.CRC32 checksum of the entire's page contents 
 
           without the 8 bytes representing the checksum.</p>
 </div>
     
-<a name="N10333"></a><a name="allocpage"></a>
+<a name="N10334"></a><a name="allocpage"></a>
 <h2 class="boxed">Allocation Page</h2>
 <div class="section">
 <p> An allocation page of the file container extends a normal Stored page, 
@@ -1121,7 +1121,7 @@
 	extent row to the alloc page.
 
 	</p>
-<a name="N10408"></a><a name="Alloc+Page+detailed+implementation+notes"></a>
+<a name="N10409"></a><a name="Alloc+Page+detailed+implementation+notes"></a>
 <h3 class="boxed">
 
 	Alloc Page detailed implementation notes</h3>
@@ -1191,7 +1191,7 @@
 <p>For the fields in an allocation extent row.</p>
 </div>
     
-<a name="N10422"></a><a name="Allocation+Extent"></a>
+<a name="N10423"></a><a name="Allocation+Extent"></a>
 <h2 class="boxed">Allocation Extent</h2>
 <div class="section">
 <p>