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 2004/11/09 05:13:23 UTC

svn commit: rev 56996 - in incubator/derby/site/trunk: build/site/manuals build/site/manuals/develop build/site/manuals/reference build/site/manuals/tools build/site/papers src/documentation/content/xdocs/manuals src/documentation/content/xdocs/manuals/develop src/documentation/content/xdocs/manuals/reference src/documentation/content/xdocs/manuals/tools src/documentation/content/xdocs/papers

Author: jta
Date: Mon Nov  8 20:13:22 2004
New Revision: 56996

Modified:
   incubator/derby/site/trunk/build/site/manuals/develop/develop157.html
   incubator/derby/site/trunk/build/site/manuals/index.html
   incubator/derby/site/trunk/build/site/manuals/reference/sqlj148.html
   incubator/derby/site/trunk/build/site/manuals/reference/sqlj232.html
   incubator/derby/site/trunk/build/site/manuals/reference/sqlj43.html
   incubator/derby/site/trunk/build/site/manuals/tools/tools108.html
   incubator/derby/site/trunk/build/site/papers/misc.html
   incubator/derby/site/trunk/src/documentation/content/xdocs/manuals/develop/develop109.ihtml
   incubator/derby/site/trunk/src/documentation/content/xdocs/manuals/develop/develop157.ihtml
   incubator/derby/site/trunk/src/documentation/content/xdocs/manuals/index.xml
   incubator/derby/site/trunk/src/documentation/content/xdocs/manuals/reference/sqlj148.ihtml
   incubator/derby/site/trunk/src/documentation/content/xdocs/manuals/reference/sqlj232.ihtml
   incubator/derby/site/trunk/src/documentation/content/xdocs/manuals/reference/sqlj43.ihtml
   incubator/derby/site/trunk/src/documentation/content/xdocs/manuals/tools/tools108.ihtml
   incubator/derby/site/trunk/src/documentation/content/xdocs/papers/misc.xml
Log:
Fixed some doc bugs (DERBY-9, DERBY-41, and DERBY-58). 
Added more mail list links to the miscellaneous integration page (papers/misc.xml). 
Fixed typo on the site navigation page for manuals (manuals/index.xml). 
As a page gets modified, I'm migrating the forrest dtd it uses from 1.3 to 2.0.


Modified: incubator/derby/site/trunk/build/site/manuals/develop/develop157.html
==============================================================================
--- incubator/derby/site/trunk/build/site/manuals/develop/develop157.html	(original)
+++ incubator/derby/site/trunk/build/site/manuals/develop/develop157.html	Mon Nov  8 20:13:22 2004
@@ -1109,7 +1109,7 @@
 </li>
 </ul>
 </li>
-<li>com.ibm.derby.database.UserUtility <a href="develop109.html#IDX758">(758)</a>
+<li>org.apache.derby.database.UserUtility <a href="develop109.html#IDX758">(758)</a>
 </li>
 <li>org.apache.derby.jdbc.EmbeddedConnectionPoolDataSource <a href="develop88.html#IDX721">(721)</a>
 </li>

Modified: incubator/derby/site/trunk/build/site/manuals/index.html
==============================================================================
--- incubator/derby/site/trunk/build/site/manuals/index.html	(original)
+++ incubator/derby/site/trunk/build/site/manuals/index.html	Mon Nov  8 20:13:22 2004
@@ -1065,7 +1065,7 @@
 <p>The <em>Tools and Utilities</em> guide explains the
       ins and outs of
      <span class="codefrag">ij</span>,
-     <span class="codefrag">cslook</span> and
+     <span class="codefrag">dblook</span> and
      <span class="codefrag">sysinfo</span>,
       and describes bulk export and import.
      </p>

Modified: incubator/derby/site/trunk/build/site/manuals/reference/sqlj148.html
==============================================================================
--- incubator/derby/site/trunk/build/site/manuals/reference/sqlj148.html	(original)
+++ incubator/derby/site/trunk/build/site/manuals/reference/sqlj148.html	Mon Nov  8 20:13:22 2004
@@ -1044,8 +1044,8 @@
 </tr>
 <tr>
 <td headers="WQ82" width="24%">Comparisons  </td><td headers="WQ83" width="46%">&lt;, =, &gt;, &lt;=, &gt;=, &lt;&gt; are applicable to all of the built-in types. <pre>
-<strong>DATE'1998-02-26' &lt;
-    DATE'1998-03-01'
+<strong>DATE('1998-02-26') &lt;
+    DATE('1998-03-01')
  -- returns true</strong> 
 
 </pre>
@@ -1108,8 +1108,8 @@
 <tr>
 <td headers="WQ82" width="24%">BETWEEN  </td><td headers="WQ83" width="46%">Tests whether the first operand is between the second and third operands. The second operand must be less than the third operand. Applicable only to types to which &lt;= and &gt;= can be applied. <pre>
 <strong>WHERE booking_date BETWEEN
-    DATE'1998-02-26' AND
-    DATE'1998-03-01</strong>
+    DATE('1998-02-26') AND
+    DATE('1998-03-01')</strong>
 
 </pre>
 </td><td headers="WQ84" width="30%">

Modified: incubator/derby/site/trunk/build/site/manuals/reference/sqlj232.html
==============================================================================
--- incubator/derby/site/trunk/build/site/manuals/reference/sqlj232.html	(original)
+++ incubator/derby/site/trunk/build/site/manuals/reference/sqlj232.html	Mon Nov  8 20:13:22 2004
@@ -1023,7 +1023,7 @@
 <strong>Equivalent to</strong>
 </p>
 <pre>
-<strong>DATE'yyyy-mm-dd'</strong>
+<strong>DATE('yyyy-mm-dd')</strong>
 
 </pre>
 <p>

Modified: incubator/derby/site/trunk/build/site/manuals/reference/sqlj43.html
==============================================================================
--- incubator/derby/site/trunk/build/site/manuals/reference/sqlj43.html	(original)
+++ incubator/derby/site/trunk/build/site/manuals/reference/sqlj43.html	Mon Nov  8 20:13:22 2004
@@ -1051,7 +1051,7 @@
  
 UPDATE HotelAvailability
 SET rooms_taken = (rooms_taken + 2)
-WHERE hotel_id = 194 AND booking_date = DATE'1998-04-11';
+WHERE hotel_id = 194 AND booking_date = DATE('1998-04-11');
  
 UPDATE HotelAvailability
 SET rooms_taken = (rooms_taken + 2)

Modified: incubator/derby/site/trunk/build/site/manuals/tools/tools108.html
==============================================================================
--- incubator/derby/site/trunk/build/site/manuals/tools/tools108.html	(original)
+++ incubator/derby/site/trunk/build/site/manuals/tools/tools108.html	Mon Nov  8 20:13:22 2004
@@ -1029,7 +1029,7 @@
 </dl>
 <dl>
 <dt>
-<strong>dblook</strong>
+<strong>-td</strong>
 </dt>
 <dd>specifies a statement delimiter for SQL statements generated by dblook. If a statement delimiter option is not specified, the default is the semicolon (';'). At the end of each DDL statement, the delimiter is printed, followed by a new line.</dd>
 </dl>

Modified: incubator/derby/site/trunk/build/site/papers/misc.html
==============================================================================
--- incubator/derby/site/trunk/build/site/papers/misc.html	(original)
+++ incubator/derby/site/trunk/build/site/papers/misc.html	Mon Nov  8 20:13:22 2004
@@ -286,12 +286,24 @@
 <a href="http://nagoya.apache.org/eyebrowse/BrowseList?listName=derby-dev@db.apache.org&by=subject&from=651194&to=651194&first=1&count=2">ActiveMQ</a>
    
 </li>
+   
+<li>
+<a href="http://nagoya.apache.org/eyebrowse/ReadMsg?listName=derby-user@db.apache.org&msgNo=166">Mono/.NET</a>
+</li>
+   
+<li>
+<a href="http://nagoya.apache.org/eyebrowse/BrowseList?listName=derby-user@db.apache.org&by=subject&from=675614&to=675614&first=1&count=2">JBoss</a>
+</li>
+   
+<li>
+<a href="http://nagoya.apache.org/eyebrowse/BrowseList?listName=derby-user@db.apache.org&by=subject&from=669620&to=669620&first=1&count=2">Tomcat</a>
+</li>
 
 </ul>
 </div>
 
 
-<a name="N10066"></a><a name="Wish+List"></a>
+<a name="N10075"></a><a name="Wish+List"></a>
 <h3>Wish List</h3>
 <div style="margin-left: 0 ; border: 2px">
 <p>
@@ -317,7 +329,7 @@
 
 
 <p>
-<em>Last Updated: October 19, 2004</em>
+<em>Last Updated: November 8, 2004</em>
 </p>
 
 <div class="attribution"></div>

Modified: incubator/derby/site/trunk/src/documentation/content/xdocs/manuals/develop/develop109.ihtml
==============================================================================
--- incubator/derby/site/trunk/src/documentation/content/xdocs/manuals/develop/develop109.ihtml	(original)
+++ incubator/derby/site/trunk/src/documentation/content/xdocs/manuals/develop/develop109.ihtml	Mon Nov  8 20:13:22 2004
@@ -10,7 +10,7 @@
 <!-- US Government Users Restricted Rights -                          -->
 <!-- Use, duplication or disclosure restricted by                     -->
 <!-- GSA ADP Schedule Contract with IBM Corp.                         -->
-<META NAME="KEYWORDS" CONTENT="for databases, User authorization, controlling access to, Databases, full (read-write) versus read-only, Access, UserUtility, com.ibm.derby.database.UserUtility">
+<META NAME="KEYWORDS" CONTENT="for databases, User authorization, controlling access to, Databases, full (read-write) versus read-only, Access, UserUtility, org.apache.derby.database.UserUtility">
 <META HTTP-EQUIV="Content-Type" CONTENT="text/html; charset=iso-8859-1">
 <META HTTP-EQUIV="updated" CONTENT="Thu, 15 Jul 2004 13:54:02">
 <META HTTP-EQUIV="review" CONTENT="Fri, 15 Jul 2005 13:54:02">

Modified: incubator/derby/site/trunk/src/documentation/content/xdocs/manuals/develop/develop157.ihtml
==============================================================================
--- incubator/derby/site/trunk/src/documentation/content/xdocs/manuals/develop/develop157.ihtml	(original)
+++ incubator/derby/site/trunk/src/documentation/content/xdocs/manuals/develop/develop157.ihtml	Mon Nov  8 20:13:22 2004
@@ -157,7 +157,7 @@
 </li>
 </ul>
 </li>
-<li>com.ibm.derby.database.UserUtility
+<li>org.apache.derby.database.UserUtility
 <A HREF="develop109.html#IDX758">(758)</A>
 </li>
 <li>org.apache.derby.jdbc.EmbeddedConnectionPoolDataSource

Modified: incubator/derby/site/trunk/src/documentation/content/xdocs/manuals/index.xml
==============================================================================
--- incubator/derby/site/trunk/src/documentation/content/xdocs/manuals/index.xml	(original)
+++ incubator/derby/site/trunk/src/documentation/content/xdocs/manuals/index.xml	Mon Nov  8 20:13:22 2004
@@ -1,5 +1,5 @@
 <?xml version="1.0" encoding="UTF-8"?>
-<!DOCTYPE document PUBLIC "-//APACHE//DTD Documentation V1.2//EN" "http://apache.org/forrest/dtd/document-v12.dtd">
+<!DOCTYPE document PUBLIC "-//APACHE//DTD Documentation V2.0//EN" "http://forrest.apache.org/dtd/document-v20.dtd">
 <document> 
   <header> 
     <title>Apache Derby: Manuals</title> 
@@ -10,7 +10,7 @@
 They were ported from the IBM Cloudscape documentation set and might still
 contain references to IBM Cloudscape that aren't quite appropriate for Derby.
 Please post any problems you find to the 
-<link href="../derby_mail.html">derby-user</link>
+<a href="../derby_mail.html">derby-user</a>
 mail list so we can correct them.
 </p>
 
@@ -43,7 +43,7 @@
    <li><p>The <em>Tools and Utilities</em> guide explains the
       ins and outs of
      <code>ij</code>,
-     <code>cslook</code> and
+     <code>dblook</code> and
      <code>sysinfo</code>,
       and describes bulk export and import.
      </p>

Modified: incubator/derby/site/trunk/src/documentation/content/xdocs/manuals/reference/sqlj148.ihtml
==============================================================================
--- incubator/derby/site/trunk/src/documentation/content/xdocs/manuals/reference/sqlj148.ihtml	(original)
+++ incubator/derby/site/trunk/src/documentation/content/xdocs/manuals/reference/sqlj148.ihtml	Mon Nov  8 20:13:22 2004
@@ -59,8 +59,8 @@
 <A NAME="IDX1041"></A>
 </TD><TD ALIGN="LEFT" VALIGN="TOP" HEADERS="WQ83" WIDTH="46%">&lt;, =, &gt;, &lt;=, &gt;=, &lt;&gt; are applicable to all of the
 built-in types. 
-<PRE><B>DATE'1998-02-26'&nbsp;&lt;
-    DATE'1998-03-01'
+<PRE><B>DATE('1998-02-26')&nbsp;&lt;
+    DATE('1998-03-01')
 &nbsp;-- returns true&nbsp;</B>
 </PRE>
 </TD><TD ALIGN="LEFT" VALIGN="TOP" HEADERS="WQ84" WIDTH="30%">
@@ -122,8 +122,8 @@
 operand. Applicable only to types to which &lt;= and &gt;= can be
 applied. 
 <PRE><B>WHERE booking_date BETWEEN
-    DATE'1998-02-26' AND
-    DATE'1998-03-01</B>
+    DATE('1998-02-26') AND
+    DATE('1998-03-01')</B>
 </PRE>
 </TD><TD ALIGN="LEFT" VALIGN="TOP" HEADERS="WQ84" WIDTH="30%">
 <PRE><B><B><I>Expression</I></B> [ NOT ]

Modified: incubator/derby/site/trunk/src/documentation/content/xdocs/manuals/reference/sqlj232.ihtml
==============================================================================
--- incubator/derby/site/trunk/src/documentation/content/xdocs/manuals/reference/sqlj232.ihtml	(original)
+++ incubator/derby/site/trunk/src/documentation/content/xdocs/manuals/reference/sqlj232.ihtml	Mon Nov  8 20:13:22 2004
@@ -30,7 +30,7 @@
 <PRE><B>{d 'yyyy-mm-dd'}</B>
 </PRE>
 <P><STRONG>Equivalent to</STRONG>
-<PRE><B>DATE'yyyy-mm-dd'</B>
+<PRE><B>DATE('yyyy-mm-dd')</B>
 </PRE>
 <P><STRONG>Example</STRONG>
 <PRE><B>VALUES {d '1999-01-09'}</B>

Modified: incubator/derby/site/trunk/src/documentation/content/xdocs/manuals/reference/sqlj43.ihtml
==============================================================================
--- incubator/derby/site/trunk/src/documentation/content/xdocs/manuals/reference/sqlj43.ihtml	(original)
+++ incubator/derby/site/trunk/src/documentation/content/xdocs/manuals/reference/sqlj43.ihtml	Mon Nov  8 20:13:22 2004
@@ -68,7 +68,7 @@
  
 UPDATE HotelAvailability
 SET rooms_taken = (rooms_taken + 2)
-WHERE hotel_id = 194 AND booking_date = DATE'1998-04-11';
+WHERE hotel_id = 194 AND booking_date = DATE('1998-04-11');
  
 UPDATE HotelAvailability
 SET rooms_taken = (rooms_taken + 2)

Modified: incubator/derby/site/trunk/src/documentation/content/xdocs/manuals/tools/tools108.ihtml
==============================================================================
--- incubator/derby/site/trunk/src/documentation/content/xdocs/manuals/tools/tools108.ihtml	(original)
+++ incubator/derby/site/trunk/src/documentation/content/xdocs/manuals/tools/tools108.ihtml	Mon Nov  8 20:13:22 2004
@@ -40,7 +40,7 @@
 limitations. Table names are separated by whitespace.
 </DD></DL>
 <DL>
-<P><DT><B>dblook
+<P><DT><B>-td
 </B></DT><DD>specifies a statement delimiter for SQL statements generated by
 dblook. If a statement delimiter option is not specified, the default
 is the semicolon (';'). At the end of each DDL

Modified: incubator/derby/site/trunk/src/documentation/content/xdocs/papers/misc.xml
==============================================================================
--- incubator/derby/site/trunk/src/documentation/content/xdocs/papers/misc.xml	(original)
+++ incubator/derby/site/trunk/src/documentation/content/xdocs/papers/misc.xml	Mon Nov  8 20:13:22 2004
@@ -1,5 +1,5 @@
 <?xml version="1.0" encoding="UTF-8"?>
-<!DOCTYPE document PUBLIC "-//APACHE//DTD Documentation V1.2//EN" "http://apache.org/forrest/dtd/document-v12.dtd">
+<!DOCTYPE document PUBLIC "-//APACHE//DTD Documentation V2.0//EN" "http://forrest.apache.org/dtd/document-v20.dtd">
 <document> 
   <header> 
     <title>Miscellaneous Integration Topics</title> 
@@ -11,7 +11,7 @@
 Derby with other software.
 If you have information about how to use Derby with another piece of software
 or if you want to know how to use Derby with something else, please post
-to the <link href="../derby_mail.html">Derby mail lists</link>.
+to the <a href="../derby_mail.html">Derby mail lists</a>.
 </p>
 
 <section>
@@ -27,33 +27,36 @@
 <ul>
    <li> Hibernate
       <ul>
-      <li><link href="http://nagoya.apache.org/eyebrowse/BrowseList?listName=derby-dev@db.apache.org&amp;by=subject&amp;from=642730&amp;to=642730&amp;first=1&amp;count=3">Derby Discussions</link></li>
-      <li><link href="http://opensource.atlassian.com/projects/hibernate/browse/HB-1224">Hibernate Discussions</link></li>
+      <li><a href="http://nagoya.apache.org/eyebrowse/BrowseList?listName=derby-dev@db.apache.org&amp;by=subject&amp;from=642730&amp;to=642730&amp;first=1&amp;count=3">Derby Discussions</a></li>
+      <li><a href="http://opensource.atlassian.com/projects/hibernate/browse/HB-1224">Hibernate Discussions</a></li>
       </ul>
    <p></p>
    </li>
    <li> Geronimo
       <ul>
-        <li><link href="http://nagoya.apache.org/eyebrowse/ReadMsg?listName=derby-dev@db.apache.org&amp;msgNo=105">Geronimo</link></li>
+        <li><a href="http://nagoya.apache.org/eyebrowse/ReadMsg?listName=derby-dev@db.apache.org&amp;msgNo=105">Geronimo</a></li>
 	<li> Geronimo Jira entries related to Derby 
-	(<link href="http://nagoya.apache.org/jira/browse/GERONIMO-342">342</link>,
-	<link href="http://nagoya.apache.org/jira/browse/GERONIMO-343">343</link>,
-	<link href="http://nagoya.apache.org/jira/browse/GERONIMO-344">344</link>,
-	<link href="http://nagoya.apache.org/jira/browse/GERONIMO-345">345</link>).
+	(<a href="http://nagoya.apache.org/jira/browse/GERONIMO-342">342</a>,
+	<a href="http://nagoya.apache.org/jira/browse/GERONIMO-343">343</a>,
+	<a href="http://nagoya.apache.org/jira/browse/GERONIMO-344">344</a>,
+	<a href="http://nagoya.apache.org/jira/browse/GERONIMO-345">345</a>).
 	</li>
       </ul>
    <p></p>
    </li>
 
-   <li><link href="http://nagoya.apache.org/eyebrowse/ReadMsg?listName=derby-user@db.apache.org&amp;msgNo=144">Eclipse plug-in for Derby</link>
+   <li><a href="http://nagoya.apache.org/eyebrowse/ReadMsg?listName=derby-user@db.apache.org&amp;msgNo=144">Eclipse plug-in for Derby</a>
    </li>
 
    <li>
-   <link href="http://nagoya.apache.org/eyebrowse/ReadMsg?listName=derby-user@db.apache.org&amp;msgNo=38">db2db (open source JDBC migration tool)</link>
+   <a href="http://nagoya.apache.org/eyebrowse/ReadMsg?listName=derby-user@db.apache.org&amp;msgNo=38">db2db (open source JDBC migration tool)</a>
    </li>
    <li>
-    <link href="http://nagoya.apache.org/eyebrowse/BrowseList?listName=derby-dev@db.apache.org&amp;by=subject&amp;from=651194&amp;to=651194&amp;first=1&amp;count=2">ActiveMQ</link>
+    <a href="http://nagoya.apache.org/eyebrowse/BrowseList?listName=derby-dev@db.apache.org&amp;by=subject&amp;from=651194&amp;to=651194&amp;first=1&amp;count=2">ActiveMQ</a>
    </li>
+   <li><a href="http://nagoya.apache.org/eyebrowse/ReadMsg?listName=derby-user@db.apache.org&amp;msgNo=166">Mono/.NET</a></li>
+   <li><a href="http://nagoya.apache.org/eyebrowse/BrowseList?listName=derby-user@db.apache.org&amp;by=subject&amp;from=675614&amp;to=675614&amp;first=1&amp;count=2">JBoss</a></li>
+   <li><a href="http://nagoya.apache.org/eyebrowse/BrowseList?listName=derby-user@db.apache.org&amp;by=subject&amp;from=669620&amp;to=669620&amp;first=1&amp;count=2">Tomcat</a></li>
 </ul>
 
 </section>
@@ -67,13 +70,13 @@
 </p>
 
 <ul>
-   <li><link href="http://nagoya.apache.org/eyebrowse/ReadMsg?listName=derby-user@db.apache.org&amp;msgNo=15">JDBC SQL browsing tools</link></li>
-   <li><link href="http://nagoya.apache.org/eyebrowse/ReadMsg?listName=derby-dev@db.apache.org&amp;msgNo=180">DRDA ODBC and JDBC clients</link></li>
-   <li><link href="http://nagoya.apache.org/eyebrowse/ReadMsg?listName=derby-user@db.apache.org&amp;msgNo=3">JDO</link></li>
+   <li><a href="http://nagoya.apache.org/eyebrowse/ReadMsg?listName=derby-user@db.apache.org&amp;msgNo=15">JDBC SQL browsing tools</a></li>
+   <li><a href="http://nagoya.apache.org/eyebrowse/ReadMsg?listName=derby-dev@db.apache.org&amp;msgNo=180">DRDA ODBC and JDBC clients</a></li>
+   <li><a href="http://nagoya.apache.org/eyebrowse/ReadMsg?listName=derby-user@db.apache.org&amp;msgNo=3">JDO</a></li>
 </ul>
 
 </section>
 
-<p><em>Last Updated: October 19, 2004</em></p>
+<p><em>Last Updated: November 8, 2004</em></p>
 </body>
 </document>