[jboss-cvs] JBossAS SVN: r78131 - projects/docs/enterprise/4.2/Hibernate/Data_Query/en-US.

jboss-cvs-commits at lists.jboss.org jboss-cvs-commits at lists.jboss.org
Sun Sep 7 21:07:14 EDT 2008


Author: irooskov at redhat.com
Date: 2008-09-07 21:07:14 -0400 (Sun, 07 Sep 2008)
New Revision: 78131

Added:
   projects/docs/enterprise/4.2/Hibernate/Data_Query/en-US/Hibernate_Data_Query.ent
   projects/docs/enterprise/4.2/Hibernate/Data_Query/en-US/Hibernate_Data_Query.xml
Removed:
   projects/docs/enterprise/4.2/Hibernate/Data_Query/en-US/Data_Query.xml
Modified:
   projects/docs/enterprise/4.2/Hibernate/Data_Query/en-US/Book_Info.xml
   projects/docs/enterprise/4.2/Hibernate/Data_Query/en-US/Criteria_Queries.xml
   projects/docs/enterprise/4.2/Hibernate/Data_Query/en-US/Filtering_Data.xml
   projects/docs/enterprise/4.2/Hibernate/Data_Query/en-US/Native_SQL.xml
   projects/docs/enterprise/4.2/Hibernate/Data_Query/en-US/The_Hibernate_Query_Language.xml
Log:
udpated for build system


Modified: projects/docs/enterprise/4.2/Hibernate/Data_Query/en-US/Book_Info.xml
===================================================================
--- projects/docs/enterprise/4.2/Hibernate/Data_Query/en-US/Book_Info.xml	2008-09-08 01:03:05 UTC (rev 78130)
+++ projects/docs/enterprise/4.2/Hibernate/Data_Query/en-US/Book_Info.xml	2008-09-08 01:07:14 UTC (rev 78131)
@@ -1,18 +1,13 @@
 <?xml version='1.0'?>
 
-<!DOCTYPE bookinfo PUBLIC "-//OASIS//DTD DocBook XML V4.3//EN" "http://www.oasis-open.org/docbook/xml/4.3/docbookx.dtd"[
+<!DOCTYPE bookinfo PUBLIC "-//OASIS//DTD DocBook XML V4.3//EN" "http://www.oasis-open.org/docbook/xml/4.3/docbookx.dtd">
 
-<!ENTITY % RH_ENTITIES SYSTEM "./Common_Config/rh-entities.ent">
-%RH_ENTITIES;
-
-]>
-
 <bookinfo>
-  <title>Data Query</title>
-  	<subtitle>for Use with JBoss Enterprise Application Platform</subtitle>
+  <title>Hibernate Data Query</title>
+  	<subtitle>for Use with JBoss Enterprise Application Platform 4.2</subtitle>
 	<edition>1.0</edition>
 	<pubsnumber>1</pubsnumber>
-	<productname>Hibernate</productname>
+	<productname>JBoss Enterprise Application Platform</productname>
 	<productnumber>4.2</productnumber>
   <mediaobject>
     <imageobject>
@@ -30,7 +25,7 @@
   </publisher>
   <copyright>
     <year>&YEAR;</year>
-    <holder>&FORMAL-RHI;</holder>
+    <holder>&HOLDER;</holder>
   </copyright>
   <xi:include xmlns:xi="http://www.w3.org/2001/XInclude" href="Common_Content/Legal_Notice.xml"/>
 </bookinfo>

Modified: projects/docs/enterprise/4.2/Hibernate/Data_Query/en-US/Criteria_Queries.xml
===================================================================
--- projects/docs/enterprise/4.2/Hibernate/Data_Query/en-US/Criteria_Queries.xml	2008-09-08 01:03:05 UTC (rev 78130)
+++ projects/docs/enterprise/4.2/Hibernate/Data_Query/en-US/Criteria_Queries.xml	2008-09-08 01:07:14 UTC (rev 78131)
@@ -2,13 +2,8 @@
 
 <!DOCTYPE chapter PUBLIC "-//OASIS//DTD DocBook XML V4.3//EN" "http://www.oasis-open.org/docbook/
 xml
-/4.3/docbookx.dtd"[
+/4.3/docbookx.dtd">
 
-<!ENTITY % RH_ENTITIES SYSTEM "./Common_Config/rh-entities.ent">
-%RH_ENTITIES;
-
-]>
-
 <chapter id="querycriteria">
   <title>Criteria Queries</title>
 

Deleted: projects/docs/enterprise/4.2/Hibernate/Data_Query/en-US/Data_Query.xml
===================================================================
--- projects/docs/enterprise/4.2/Hibernate/Data_Query/en-US/Data_Query.xml	2008-09-08 01:03:05 UTC (rev 78130)
+++ projects/docs/enterprise/4.2/Hibernate/Data_Query/en-US/Data_Query.xml	2008-09-08 01:07:14 UTC (rev 78131)
@@ -1,126 +0,0 @@
-<?xml version='1.0'?>
-<!DOCTYPE book PUBLIC "-//OASIS//DTD DocBook XML V4.3//EN" "http://www.oasis-open.org/docbook/xml/4.3/docbookx.dtd" [
-
-<!ENTITY % RH_ENTITIES SYSTEM "./Common_Config/rh-entities.ent">
-%RH_ENTITIES;
-
-]>
-
-<book id="Data_Query" lang="en-US">
-
-    <xi:include xmlns:xi="http://www.w3.org/2001/XInclude" href="Book_Info.xml"/>
-
-    <preface id="preface" revision="2">
-        <title>Preface</title>
-
-        <para>
-            Working with object-oriented software and a relational database can be cumbersome
-            and time consuming in today's enterprise environments. Hibernate is an object/relational
-            mapping tool for Java environments. The term object/relational mapping (ORM) refers to
-            the technique of mapping a data representation from an object model to a relational
-            data model with a SQL-based schema.
-        </para>
-
-        <para>
-            Hibernate not only takes care of the mapping from Java classes to
-            database tables (and from Java data types to SQL data types), but also provides data
-            query and retrieval facilities and can significantly reduce development time otherwise
-            spent with manual data handling in SQL and JDBC.
-        </para>
-
-        <para>
-            Hibernates goal is to relieve the developer from 95 percent of common data persistence
-            related programming tasks. Hibernate may not be the best solution for data-centric
-            applications that only use stored-procedures to implement the business logic in the
-            database, it is most useful with object-oriented domain models and business logic in
-            the Java-based middle-tier. However, Hibernate can certainly help you to remove or
-            encapsulate vendor-specific SQL code and will help with the common task of result set
-            translation from a tabular representation to a graph of objects.
-        </para>
-
-        <para>
-            If you are new to Hibernate and Object/Relational Mapping or even Java,
-            please follow these steps:
-        </para>
-
-        <orderedlist>
-            <!--listitem>
-                <para>
-                    Read <xref linkend="tutorial"/> for a tutorial with step-by-step
-                    instructions. The source code for the tutorial is included in the
-                    distribution in the <literal>doc/reference/tutorial/</literal>
-                    directory.
-                </para>
-            </listitem>
-            <listitem>
-                <para>
-                    Read <xref linkend="architecture"/> to understand the environments where
-                    Hibernate can be used.
-                </para>
-            </listitem-->
-            <listitem>
-                <para>
-                    Have a look at the <literal>eg/</literal> directory in the Hibernate
-                    distribution, it contains a simple standalone application. Copy your
-                    JDBC driver to the <literal>lib/</literal> directory and edit
-                    <literal>etc/hibernate.properties</literal>, specifying correct values for
-                    your database. From a command prompt in the distribution directory,
-                    type <literal>ant eg</literal> (using Ant), or under Windows, type
-                    <literal>build eg</literal>.
-                </para>
-            </listitem>
-            <listitem>
-                <para>
-                    Use this reference documentation as your primary source of information.
-                    Consider reading <emphasis>Hibernate in Action</emphasis>
-                    (http://www.manning.com/bauer) if you need more help with application
-                    design or if you prefer a step-by-step tutorial. Also visit
-                    http://caveatemptor.hibernate.org and download the example application
-                    for Hibernate in Action.
-                </para>
-            </listitem>
-            <listitem>
-				<para>
-					FAQs are answered on the Hibernate website.
-				</para>
-            </listitem>
-			<listitem>
-				<para>
-					Third party demos, examples, and tutorials are linked on the Hibernate
-					website.
-				</para>
-			</listitem>
-            <listitem>
-                <para>
-                    The Community Area on the Hibernate website is a good resource for
-                    design patterns and various integration solutions (Tomcat, JBoss AS,
-                    Struts, EJB, etc.).
-                </para>
-            </listitem>
-         </orderedlist>
-
-         <para>
-             If you have questions, use the user forum linked on the Hibernate website. We also
-             provide a JIRA issue trackings system for bug reports and feature requests. If you
-             are interested in the development of Hibernate, join the developer mailing list. If
-             you are interested in translating this documentation into your language, contact us
-             on the developer mailing list.
-         </para>
-
-         <para>
-             Commercial development support, production support, and training for Hibernate is
-             available through JBoss Inc. (see http://www.hibernate.org/SupportTraining/).
-             Hibernate is a Professional Open Source project and a critical component of the
-             JBoss Enterprise Middleware System (JEMS) suite of products.
-         </para>
-
-    </preface>
-
-    <xi:include xmlns:xi="http://www.w3.org/2001/XInclude" href="The_Hibernate_Query_Language.xml"/>
-    <xi:include xmlns:xi="http://www.w3.org/2001/XInclude" href="Criteria_Queries.xml"/>
-    <xi:include xmlns:xi="http://www.w3.org/2001/XInclude" href="Native_SQL.xml"/>
-    <xi:include xmlns:xi="http://www.w3.org/2001/XInclude" href="Filtering_Data.xml"/>
-<xi:include xmlns:xi="http://www.w3.org/2001/XInclude" href="Revision_History.xml"/>
-
-</book>
-

Modified: projects/docs/enterprise/4.2/Hibernate/Data_Query/en-US/Filtering_Data.xml
===================================================================
--- projects/docs/enterprise/4.2/Hibernate/Data_Query/en-US/Filtering_Data.xml	2008-09-08 01:03:05 UTC (rev 78130)
+++ projects/docs/enterprise/4.2/Hibernate/Data_Query/en-US/Filtering_Data.xml	2008-09-08 01:07:14 UTC (rev 78131)
@@ -2,13 +2,8 @@
 
 <!DOCTYPE chapter PUBLIC "-//OASIS//DTD DocBook XML V4.3//EN" "http://www.oasis-open.org/docbook/
 xml
-/4.3/docbookx.dtd"[
+/4.3/docbookx.dtd">
 
-<!ENTITY % RH_ENTITIES SYSTEM "./Common_Config/rh-entities.ent">
-%RH_ENTITIES;
-
-]>
-
 <chapter id="filters">
   <title>Filtering data</title>
 

Added: projects/docs/enterprise/4.2/Hibernate/Data_Query/en-US/Hibernate_Data_Query.ent
===================================================================
--- projects/docs/enterprise/4.2/Hibernate/Data_Query/en-US/Hibernate_Data_Query.ent	                        (rev 0)
+++ projects/docs/enterprise/4.2/Hibernate/Data_Query/en-US/Hibernate_Data_Query.ent	2008-09-08 01:07:14 UTC (rev 78131)
@@ -0,0 +1,2 @@
+<!ENTITY HOLDER "Red Hat, Inc">
+<!ENTITY YEAR "2008">

Added: projects/docs/enterprise/4.2/Hibernate/Data_Query/en-US/Hibernate_Data_Query.xml
===================================================================
--- projects/docs/enterprise/4.2/Hibernate/Data_Query/en-US/Hibernate_Data_Query.xml	                        (rev 0)
+++ projects/docs/enterprise/4.2/Hibernate/Data_Query/en-US/Hibernate_Data_Query.xml	2008-09-08 01:07:14 UTC (rev 78131)
@@ -0,0 +1,121 @@
+<?xml version='1.0'?>
+<!DOCTYPE book PUBLIC "-//OASIS//DTD DocBook XML V4.3//EN" "http://www.oasis-open.org/docbook/xml/4.3/docbookx.dtd">
+
+<book id="Data_Query" lang="en-US">
+
+    <xi:include xmlns:xi="http://www.w3.org/2001/XInclude" href="Book_Info.xml"/>
+
+    <preface id="preface" revision="2">
+        <title>Preface</title>
+
+        <para>
+            Working with object-oriented software and a relational database can be cumbersome
+            and time consuming in today's enterprise environments. Hibernate is an object/relational
+            mapping tool for Java environments. The term object/relational mapping (ORM) refers to
+            the technique of mapping a data representation from an object model to a relational
+            data model with a SQL-based schema.
+        </para>
+
+        <para>
+            Hibernate not only takes care of the mapping from Java classes to
+            database tables (and from Java data types to SQL data types), but also provides data
+            query and retrieval facilities and can significantly reduce development time otherwise
+            spent with manual data handling in SQL and JDBC.
+        </para>
+
+        <para>
+            Hibernates goal is to relieve the developer from 95 percent of common data persistence
+            related programming tasks. Hibernate may not be the best solution for data-centric
+            applications that only use stored-procedures to implement the business logic in the
+            database, it is most useful with object-oriented domain models and business logic in
+            the Java-based middle-tier. However, Hibernate can certainly help you to remove or
+            encapsulate vendor-specific SQL code and will help with the common task of result set
+            translation from a tabular representation to a graph of objects.
+        </para>
+
+        <para>
+            If you are new to Hibernate and Object/Relational Mapping or even Java,
+            please follow these steps:
+        </para>
+
+        <orderedlist>
+            <!--listitem>
+                <para>
+                    Read <xref linkend="tutorial"/> for a tutorial with step-by-step
+                    instructions. The source code for the tutorial is included in the
+                    distribution in the <literal>doc/reference/tutorial/</literal>
+                    directory.
+                </para>
+            </listitem>
+            <listitem>
+                <para>
+                    Read <xref linkend="architecture"/> to understand the environments where
+                    Hibernate can be used.
+                </para>
+            </listitem-->
+            <listitem>
+                <para>
+                    Have a look at the <literal>eg/</literal> directory in the Hibernate
+                    distribution, it contains a simple standalone application. Copy your
+                    JDBC driver to the <literal>lib/</literal> directory and edit
+                    <literal>etc/hibernate.properties</literal>, specifying correct values for
+                    your database. From a command prompt in the distribution directory,
+                    type <literal>ant eg</literal> (using Ant), or under Windows, type
+                    <literal>build eg</literal>.
+                </para>
+            </listitem>
+            <listitem>
+                <para>
+                    Use this reference documentation as your primary source of information.
+                    Consider reading <emphasis>Hibernate in Action</emphasis>
+                    (http://www.manning.com/bauer) if you need more help with application
+                    design or if you prefer a step-by-step tutorial. Also visit
+                    http://caveatemptor.hibernate.org and download the example application
+                    for Hibernate in Action.
+                </para>
+            </listitem>
+            <listitem>
+				<para>
+					FAQs are answered on the Hibernate website.
+				</para>
+            </listitem>
+			<listitem>
+				<para>
+					Third party demos, examples, and tutorials are linked on the Hibernate
+					website.
+				</para>
+			</listitem>
+            <listitem>
+                <para>
+                    The Community Area on the Hibernate website is a good resource for
+                    design patterns and various integration solutions (Tomcat, JBoss AS,
+                    Struts, EJB, etc.).
+                </para>
+            </listitem>
+         </orderedlist>
+
+         <para>
+             If you have questions, use the user forum linked on the Hibernate website. We also
+             provide a JIRA issue trackings system for bug reports and feature requests. If you
+             are interested in the development of Hibernate, join the developer mailing list. If
+             you are interested in translating this documentation into your language, contact us
+             on the developer mailing list.
+         </para>
+
+         <para>
+             Commercial development support, production support, and training for Hibernate is
+             available through JBoss Inc. (see http://www.hibernate.org/SupportTraining/).
+             Hibernate is a Professional Open Source project and a critical component of the
+             JBoss Enterprise Middleware System (JEMS) suite of products.
+         </para>
+
+    </preface>
+
+    <xi:include xmlns:xi="http://www.w3.org/2001/XInclude" href="The_Hibernate_Query_Language.xml"/>
+    <xi:include xmlns:xi="http://www.w3.org/2001/XInclude" href="Criteria_Queries.xml"/>
+    <xi:include xmlns:xi="http://www.w3.org/2001/XInclude" href="Native_SQL.xml"/>
+    <xi:include xmlns:xi="http://www.w3.org/2001/XInclude" href="Filtering_Data.xml"/>
+<xi:include xmlns:xi="http://www.w3.org/2001/XInclude" href="Revision_History.xml"/>
+
+</book>
+

Modified: projects/docs/enterprise/4.2/Hibernate/Data_Query/en-US/Native_SQL.xml
===================================================================
--- projects/docs/enterprise/4.2/Hibernate/Data_Query/en-US/Native_SQL.xml	2008-09-08 01:03:05 UTC (rev 78130)
+++ projects/docs/enterprise/4.2/Hibernate/Data_Query/en-US/Native_SQL.xml	2008-09-08 01:07:14 UTC (rev 78131)
@@ -2,13 +2,8 @@
 
 <!DOCTYPE chapter PUBLIC "-//OASIS//DTD DocBook XML V4.3//EN" "http://www.oasis-open.org/docbook/
 xml
-/4.3/docbookx.dtd"[
+/4.3/docbookx.dtd">
 
-<!ENTITY % RH_ENTITIES SYSTEM "./Common_Config/rh-entities.ent">
-%RH_ENTITIES;
-
-]>
-
 <chapter id="querysql" revision="2">
   <title>Native SQL</title>
 

Modified: projects/docs/enterprise/4.2/Hibernate/Data_Query/en-US/The_Hibernate_Query_Language.xml
===================================================================
--- projects/docs/enterprise/4.2/Hibernate/Data_Query/en-US/The_Hibernate_Query_Language.xml	2008-09-08 01:03:05 UTC (rev 78130)
+++ projects/docs/enterprise/4.2/Hibernate/Data_Query/en-US/The_Hibernate_Query_Language.xml	2008-09-08 01:07:14 UTC (rev 78131)
@@ -2,13 +2,8 @@
 
 <!DOCTYPE chapter PUBLIC "-//OASIS//DTD DocBook XML V4.3//EN" "http://www.oasis-open.org/docbook/
 xml
-/4.3/docbookx.dtd"[
+/4.3/docbookx.dtd">
 
-<!ENTITY % RH_ENTITIES SYSTEM "./Common_Config/rh-entities.ent">
-%RH_ENTITIES;
-
-]>
-
 <chapter id="queryhql">
   <title>HQL: The Hibernate Query Language</title>
 




More information about the jboss-cvs-commits mailing list