You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@openjpa.apache.org by mt...@apache.org on 2011/02/06 20:03:15 UTC

svn commit: r1067730 - in /openjpa/trunk/openjpa-project/src/doc/manual: jpa_overview_intro.xml jpa_overview_query.xml openjpa_intro.xml openjpa_legal.xml ref_guide_optimization.xml ref_guide_pc.xml ref_guide_slice.xml supported_databases.xml

Author: mtylenda
Date: Sun Feb  6 19:03:15 2011
New Revision: 1067730

URL: http://svn.apache.org/viewvc?rev=1067730&view=rev
Log:
OPENJPA-1932: Sun -> Oracle, update copyright year, make LOB term consistent in case, fix typos.

Modified:
    openjpa/trunk/openjpa-project/src/doc/manual/jpa_overview_intro.xml
    openjpa/trunk/openjpa-project/src/doc/manual/jpa_overview_query.xml
    openjpa/trunk/openjpa-project/src/doc/manual/openjpa_intro.xml
    openjpa/trunk/openjpa-project/src/doc/manual/openjpa_legal.xml
    openjpa/trunk/openjpa-project/src/doc/manual/ref_guide_optimization.xml
    openjpa/trunk/openjpa-project/src/doc/manual/ref_guide_pc.xml
    openjpa/trunk/openjpa-project/src/doc/manual/ref_guide_slice.xml
    openjpa/trunk/openjpa-project/src/doc/manual/supported_databases.xml

Modified: openjpa/trunk/openjpa-project/src/doc/manual/jpa_overview_intro.xml
URL: http://svn.apache.org/viewvc/openjpa/trunk/openjpa-project/src/doc/manual/jpa_overview_intro.xml?rev=1067730&r1=1067729&r2=1067730&view=diff
==============================================================================
--- openjpa/trunk/openjpa-project/src/doc/manual/jpa_overview_intro.xml (original)
+++ openjpa/trunk/openjpa-project/src/doc/manual/jpa_overview_intro.xml Sun Feb  6 19:03:15 2011
@@ -35,8 +35,8 @@
             JPA
         </primary>
     </indexterm>
-The Java Persistence API (JPA) is a specification from
-Sun Microsystems for the persistence of Java objects to any relational
+The Java Persistence API (JPA) is a specification
+for the persistence of Java objects to any relational
 datastore. JPA requires J2SE 1.5 (also referred to as "Java 5") or
 higher, as it makes heavy use of new Java language features such as annotations
 and generics. This document provides an overview of JPA. Unless

Modified: openjpa/trunk/openjpa-project/src/doc/manual/jpa_overview_query.xml
URL: http://svn.apache.org/viewvc/openjpa/trunk/openjpa-project/src/doc/manual/jpa_overview_query.xml?rev=1067730&r1=1067729&r2=1067730&view=diff
==============================================================================
--- openjpa/trunk/openjpa-project/src/doc/manual/jpa_overview_query.xml (original)
+++ openjpa/trunk/openjpa-project/src/doc/manual/jpa_overview_query.xml Sun Feb  6 19:03:15 2011
@@ -2531,7 +2531,7 @@ HAVING</literal> clause. 
             </para>
             <para>
 State-fields that are mapped in serialized form or as
-lobs may not be portably used in conditional expressions. <note><para> The
+LOBs may not be portably used in conditional expressions. <note><para> The
 implementation is not expected to perform such query operations involving such
 fields in memory rather than in the database.
                     </para>
@@ -3614,7 +3614,7 @@ the groups, null values are treated as t
              <para>
 Grouping
 by an entity is permitted. In this case, the entity must contain no serialized
-state fields or lob-valued state fields that are eagerly fetched.
+state fields or LOB-valued state fields that are eagerly fetched.
              </para>
              <para>
 Grouping by embeddables is not supported.

Modified: openjpa/trunk/openjpa-project/src/doc/manual/openjpa_intro.xml
URL: http://svn.apache.org/viewvc/openjpa/trunk/openjpa-project/src/doc/manual/openjpa_intro.xml?rev=1067730&r1=1067729&r2=1067730&view=diff
==============================================================================
--- openjpa/trunk/openjpa-project/src/doc/manual/openjpa_intro.xml (original)
+++ openjpa/trunk/openjpa-project/src/doc/manual/openjpa_intro.xml Sun Feb  6 19:03:15 2011
@@ -27,7 +27,7 @@
         </primary>
     </indexterm>
     <para>
-OpenJPA is Apache's implementation of Sun's Java Persistence 2.0 API 
+OpenJPA is Apache's implementation of Java Persistence 2.0 API 
 (JSR-317 JPA 2.0) specification for the transparent persistence of Java objects.
 This document provides an overview of the JPA standard and technical
 details on the use of OpenJPA.

Modified: openjpa/trunk/openjpa-project/src/doc/manual/openjpa_legal.xml
URL: http://svn.apache.org/viewvc/openjpa/trunk/openjpa-project/src/doc/manual/openjpa_legal.xml?rev=1067730&r1=1067729&r2=1067730&view=diff
==============================================================================
--- openjpa/trunk/openjpa-project/src/doc/manual/openjpa_legal.xml (original)
+++ openjpa/trunk/openjpa-project/src/doc/manual/openjpa_legal.xml Sun Feb  6 19:03:15 2011
@@ -93,12 +93,10 @@ The openjpa-all aggregate JAR includes s
         <section id="openjpa_legal_copyright_apache">
             <title>Apache</title>
             <para>
-Copyright (C) 2006,2010 The Apache Software Foundation.
+Copyright (C) 2006,2011 The Apache Software Foundation.
             </para>
             <para>
 Apache, OpenJPA and the Apache feather logo are trademarks of Apache Software Foundation.
-Java and all Java-based trademarks and logos are trademarks of Sun Microsystems, Inc. in the United States, other countries, or both.
-Other names may be trademarks of their respective owners.
             </para>
         </section>
         <section id="openjpa_legal_copyright_serp">
@@ -139,6 +137,10 @@ OpenJPA includes software written by Mir
             <para>
 OpenJPA uses test code written by Charles Tillman.
             </para>
+            <para>
+Oracle and Java are registered trademarks of Oracle and/or its affiliates.
+Other names may be trademarks of their respective owners.
+            </para>
         </section>
     </section>
 </chapter>

Modified: openjpa/trunk/openjpa-project/src/doc/manual/ref_guide_optimization.xml
URL: http://svn.apache.org/viewvc/openjpa/trunk/openjpa-project/src/doc/manual/ref_guide_optimization.xml?rev=1067730&r1=1067729&r2=1067730&view=diff
==============================================================================
--- openjpa/trunk/openjpa-project/src/doc/manual/ref_guide_optimization.xml (original)
+++ openjpa/trunk/openjpa-project/src/doc/manual/ref_guide_optimization.xml Sun Feb  6 19:03:15 2011
@@ -123,7 +123,7 @@ or deletes.
 Manipulating various parameters of the Java Virtual Machine (such as hotspot 
 compilation modes and the maximum memory) can result in performance 
 improvements. For more details about optimizing the JVM execution environment, 
-please see <ulink url="http://java.sun.com/docs/hotspot/HotSpotFAQ.html"/>.
+please see <ulink url="http://www.oracle.com/technetwork/java/hotspotfaq-138619.html"/>.
                     </entry>
                 </row>
                 <row>

Modified: openjpa/trunk/openjpa-project/src/doc/manual/ref_guide_pc.xml
URL: http://svn.apache.org/viewvc/openjpa/trunk/openjpa-project/src/doc/manual/ref_guide_pc.xml?rev=1067730&r1=1067729&r2=1067730&view=diff
==============================================================================
--- openjpa/trunk/openjpa-project/src/doc/manual/ref_guide_pc.xml (original)
+++ openjpa/trunk/openjpa-project/src/doc/manual/ref_guide_pc.xml Sun Feb  6 19:03:15 2011
@@ -386,7 +386,7 @@ java -javaagent:/home/dev/openjpa/lib/op
 	</title>          
 	<para>
 		If a javaagent is not provided via the command line and 
-		OpenJPA is running on the Sun 1.6 SDK or IBM 1.6 JDK (SR8+), OpenJPA
+		OpenJPA is running on the Oracle 1.6 SDK or IBM 1.6 JDK (SR8+), OpenJPA
 		will attempt to dynamically load the Enhancer that was 
 		mentioned in the previous section. This support is 
 		provided as an ease of use feature and it is not recommended

Modified: openjpa/trunk/openjpa-project/src/doc/manual/ref_guide_slice.xml
URL: http://svn.apache.org/viewvc/openjpa/trunk/openjpa-project/src/doc/manual/ref_guide_slice.xml?rev=1067730&r1=1067729&r2=1067730&view=diff
==============================================================================
--- openjpa/trunk/openjpa-project/src/doc/manual/ref_guide_slice.xml (original)
+++ openjpa/trunk/openjpa-project/src/doc/manual/ref_guide_slice.xml Sun Feb  6 19:03:15 2011
@@ -136,11 +136,11 @@
             <para>
             To confine queries to a subset of slices via setting query hints can be considered
             intrusive to existing application. The alternative means of targeting queries is to 
-            a configure a <emphasis>Query Target Policy</emphasis>. This policy is configured 
+            configure a <emphasis>Query Target Policy</emphasis>. This policy is configured 
             via plug-in property <classname>openjpa.slice.QueryTargetPolicy</classname>. The
-            plug-in property is fully-qualified class name an implementation
+            plug-in property is fully-qualified class name of an implementation
             for <classname>org.apache.openjpa.slice.QueryTargetPolicy</classname> interface.
-            This interface contract allows an user application to target a query select a subset 
+            This interface contract allows a user application to target a query to a subset 
             of slices based on the query and its bound parameters. The query target policy is consulted
             only when no explicit target hint is set on the query. By default, the policy 
             executes a query on all available slices.  
@@ -152,7 +152,6 @@
             by primary key. This finder target policy is consulted
             only when no explicit target hint is set on the current fetch plan. By default, the policy 
             executes a query on all available slices to find an instance by its primary key.    
-            To confine queries to a subset of slices via setting query hints can be considered
             </para>
          </section>
 		

Modified: openjpa/trunk/openjpa-project/src/doc/manual/supported_databases.xml
URL: http://svn.apache.org/viewvc/openjpa/trunk/openjpa-project/src/doc/manual/supported_databases.xml?rev=1067730&r1=1067729&r2=1067730&view=diff
==============================================================================
--- openjpa/trunk/openjpa-project/src/doc/manual/supported_databases.xml (original)
+++ openjpa/trunk/openjpa-project/src/doc/manual/supported_databases.xml Sun Feb  6 19:03:15 2011
@@ -715,8 +715,8 @@ See DB2 for z/OS documentation for addit
                 <listitem>
                     <para>
 When using LOBs with persistent attributes of a streaming data type (e.g. 
-<literal>java.io.InputStream</literal>) in the case of very large lob, DB2 JCC 
-driver will automatically use progressive streaming to retrieve the Lob data. 
+<literal>java.io.InputStream</literal>) in the case of very large LOB, DB2 JCC 
+driver will automatically use progressive streaming to retrieve the LOB data. 
 With progressiveStreaming, the inputStream retrieved must be fully materialized
 before the next iteration of call to rs.next(). By default
 this will result in a LobClosedException when OpenJPA processes the InputStream.