You are viewing a plain text version of this content. The canonical link for it is here.
Posted to jdo-commits@db.apache.org by an...@apache.org on 2010/10/23 11:07:38 UTC

svn commit: r1026581 - in /db/jdo/site: docs/jdoql.html docs/jdoql_quickref.odt docs/jdoql_quickref.pdf xdocs/jdoql.xml

Author: andyj
Date: Sat Oct 23 09:07:37 2010
New Revision: 1026581

URL: http://svn.apache.org/viewvc?rev=1026581&view=rev
Log:
JDO-666 OpenOffice doc for quick reference of JDOQL, and the generated PDF that is downloadable.

Added:
    db/jdo/site/docs/jdoql_quickref.odt   (with props)
    db/jdo/site/docs/jdoql_quickref.pdf   (with props)
Modified:
    db/jdo/site/docs/jdoql.html
    db/jdo/site/xdocs/jdoql.xml

Modified: db/jdo/site/docs/jdoql.html
URL: http://svn.apache.org/viewvc/db/jdo/site/docs/jdoql.html?rev=1026581&r1=1026580&r2=1026581&view=diff
==============================================================================
--- db/jdo/site/docs/jdoql.html (original)
+++ db/jdo/site/docs/jdoql.html Sat Oct 23 09:07:37 2010
@@ -26,7 +26,10 @@ List results = (List)q.execute(20.0);</p
                 The class being selected (the SELECT clause in SQL), the filter (which equates 
                 to the WHERE clause in SQL), together with any sorting (the ORDER BY clause 
                 in SQL), etc.
-			</p><br></br><a name="singlestring"></a><div class="subsection"><a name="Single-String_JDOQL"></a><h3>Single-String JDOQL</h3><p>
+			</p><p>
+                Before giving details on JDOQL, you can download a quick
+                reference guide <a href="jdoql_quickref.pdf">here</a>
+            </p><br></br><a name="singlestring"></a><div class="subsection"><a name="Single-String_JDOQL"></a><h3>Single-String JDOQL</h3><p>
                     In traditional (declarative) JDOQL (JDO 1.0) it was necessary to specify 
                     the component parts (filter, candidate class, ordering, etc) of the query 
                     using the mutator methods on the Query. In JDO 2 you can now specify it 

Added: db/jdo/site/docs/jdoql_quickref.odt
URL: http://svn.apache.org/viewvc/db/jdo/site/docs/jdoql_quickref.odt?rev=1026581&view=auto
==============================================================================
Binary file - no diff available.

Propchange: db/jdo/site/docs/jdoql_quickref.odt
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: db/jdo/site/docs/jdoql_quickref.pdf
URL: http://svn.apache.org/viewvc/db/jdo/site/docs/jdoql_quickref.pdf?rev=1026581&view=auto
==============================================================================
Binary file - no diff available.

Propchange: db/jdo/site/docs/jdoql_quickref.pdf
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Modified: db/jdo/site/xdocs/jdoql.xml
URL: http://svn.apache.org/viewvc/db/jdo/site/xdocs/jdoql.xml?rev=1026581&r1=1026580&r2=1026581&view=diff
==============================================================================
--- db/jdo/site/xdocs/jdoql.xml (original)
+++ db/jdo/site/xdocs/jdoql.xml Sat Oct 23 09:07:37 2010
@@ -32,6 +32,10 @@ List results = (List)q.execute(20.0);</s
                 to the WHERE clause in SQL), together with any sorting (the ORDER BY clause 
                 in SQL), etc.
 			</p>
+            <p>
+                Before giving details on JDOQL, you can download a quick
+                reference guide <a href="jdoql_quickref.pdf">here</a>
+            </p>
             <br/>
 
 			<a name="singlestring"/>