[jboss-cvs] JBossAS SVN: r78060 - in projects/docs/enterprise/4.2.5/Hibernate/Advanced_Topics: en-US and 1 other directory.

jboss-cvs-commits at lists.jboss.org jboss-cvs-commits at lists.jboss.org
Fri Sep 5 00:50:55 EDT 2008


Author: irooskov at redhat.com
Date: 2008-09-05 00:50:54 -0400 (Fri, 05 Sep 2008)
New Revision: 78060

Added:
   projects/docs/enterprise/4.2.5/Hibernate/Advanced_Topics/en-US/Hibernate_Advanced_Topics_CP05.ent
   projects/docs/enterprise/4.2.5/Hibernate/Advanced_Topics/en-US/Hibernate_Advanced_Topics_CP05.xml
Removed:
   projects/docs/enterprise/4.2.5/Hibernate/Advanced_Topics/en-US/Advanced_Topics.xml
Modified:
   projects/docs/enterprise/4.2.5/Hibernate/Advanced_Topics/Makefile
   projects/docs/enterprise/4.2.5/Hibernate/Advanced_Topics/en-US/Book_Info.xml
   projects/docs/enterprise/4.2.5/Hibernate/Advanced_Topics/en-US/Improving_Performance.xml
   projects/docs/enterprise/4.2.5/Hibernate/Advanced_Topics/en-US/XML_Mapping.xml
Log:
updated for new build system


Modified: projects/docs/enterprise/4.2.5/Hibernate/Advanced_Topics/Makefile
===================================================================
--- projects/docs/enterprise/4.2.5/Hibernate/Advanced_Topics/Makefile	2008-09-05 04:46:29 UTC (rev 78059)
+++ projects/docs/enterprise/4.2.5/Hibernate/Advanced_Topics/Makefile	2008-09-05 04:50:54 UTC (rev 78060)
@@ -4,6 +4,8 @@
 
 XML_LANG	= en-US
 
+BRAND = JBoss
+
 OTHER_LANGS	= as-IN bn-IN de-DE es-ES fr-FR gu-IN hi-IN it-IT ja-JP kn-IN ko-KR ml-IN mr-IN or-IN pa-IN pt-BR ru-RU si-LK ta-IN te-IN zh-CN zh-TW
 
 COMMON_CONFIG  = /usr/share/publican

Deleted: projects/docs/enterprise/4.2.5/Hibernate/Advanced_Topics/en-US/Advanced_Topics.xml
===================================================================
--- projects/docs/enterprise/4.2.5/Hibernate/Advanced_Topics/en-US/Advanced_Topics.xml	2008-09-05 04:46:29 UTC (rev 78059)
+++ projects/docs/enterprise/4.2.5/Hibernate/Advanced_Topics/en-US/Advanced_Topics.xml	2008-09-05 04:50:54 UTC (rev 78060)
@@ -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="Advanced_Topcis" 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="XML_Mapping.xml"/>
-
-    <xi:include xmlns:xi="http://www.w3.org/2001/XInclude" href="Improving_Performance.xml"/>
-
-<xi:include xmlns:xi="http://www.w3.org/2001/XInclude" href="Revision_History.xml"/>
-
-</book>
-

Modified: projects/docs/enterprise/4.2.5/Hibernate/Advanced_Topics/en-US/Book_Info.xml
===================================================================
--- projects/docs/enterprise/4.2.5/Hibernate/Advanced_Topics/en-US/Book_Info.xml	2008-09-05 04:46:29 UTC (rev 78059)
+++ projects/docs/enterprise/4.2.5/Hibernate/Advanced_Topics/en-US/Book_Info.xml	2008-09-05 04:50:54 UTC (rev 78060)
@@ -1,36 +1,24 @@
 <?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>Advanced Topics</title>
-  <subtitle>for Use with JBoss Enterprise Application Platform</subtitle>
+  <title>Hibernate Advanced Topics CP05</title>
+  	<subtitle>for Use with JBoss Enterprise Application Platform 4.2 CP05</subtitle>
 	<edition>1.0</edition>
-	<pubsnumber>6</pubsnumber>
-	<productname>Hibernate</productname>
-	<productnumber>4.2.5</productnumber>
-  <mediaobject>
-    <imageobject>
-      <imagedata fileref="Common_Content/images/rhlogo-chapter-title.png"/>
-    </imageobject>
-  </mediaobject>
-  <publisher>
-    <publishername>
-      <inlinemediaobject>
-        <imageobject>
-          <imagedata fileref="Common_Content/images/rhlogo-title.png"/>
-        </imageobject>
-      </inlinemediaobject>
-    </publishername>
-  </publisher>
+	<pubsnumber>1</pubsnumber>
+	<productname>JBoss Enterprise Application Platform</productname>
+	<productnumber>4.2</productnumber>
+  <corpauthor>
+	  <inlinemediaobject>
+		<imageobject>
+			 <imagedata fileref="Common_Content/images/redhat-logo.svg" />
+		 </imageobject>
+	  </inlinemediaobject>
+	</corpauthor>
   <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>

Added: projects/docs/enterprise/4.2.5/Hibernate/Advanced_Topics/en-US/Hibernate_Advanced_Topics_CP05.ent
===================================================================
--- projects/docs/enterprise/4.2.5/Hibernate/Advanced_Topics/en-US/Hibernate_Advanced_Topics_CP05.ent	                        (rev 0)
+++ projects/docs/enterprise/4.2.5/Hibernate/Advanced_Topics/en-US/Hibernate_Advanced_Topics_CP05.ent	2008-09-05 04:50:54 UTC (rev 78060)
@@ -0,0 +1,3 @@
+<!ENTITY HOLDER "Red Hat, Inc">
+<!ENTITY YEAR "2008">
+<!ENTITY VERSION "4.3.0.">

Added: projects/docs/enterprise/4.2.5/Hibernate/Advanced_Topics/en-US/Hibernate_Advanced_Topics_CP05.xml
===================================================================
--- projects/docs/enterprise/4.2.5/Hibernate/Advanced_Topics/en-US/Hibernate_Advanced_Topics_CP05.xml	                        (rev 0)
+++ projects/docs/enterprise/4.2.5/Hibernate/Advanced_Topics/en-US/Hibernate_Advanced_Topics_CP05.xml	2008-09-05 04:50:54 UTC (rev 78060)
@@ -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="Advanced_Topcis" 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="XML_Mapping.xml"/>
+
+    <xi:include xmlns:xi="http://www.w3.org/2001/XInclude" href="Improving_Performance.xml"/>
+
+<xi:include xmlns:xi="http://www.w3.org/2001/XInclude" href="Revision_History.xml"/>
+
+</book>
+

Modified: projects/docs/enterprise/4.2.5/Hibernate/Advanced_Topics/en-US/Improving_Performance.xml
===================================================================
--- projects/docs/enterprise/4.2.5/Hibernate/Advanced_Topics/en-US/Improving_Performance.xml	2008-09-05 04:46:29 UTC (rev 78059)
+++ projects/docs/enterprise/4.2.5/Hibernate/Advanced_Topics/en-US/Improving_Performance.xml	2008-09-05 04:50:54 UTC (rev 78060)
@@ -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="performance">
   <title>Improving performance</title>
 

Modified: projects/docs/enterprise/4.2.5/Hibernate/Advanced_Topics/en-US/XML_Mapping.xml
===================================================================
--- projects/docs/enterprise/4.2.5/Hibernate/Advanced_Topics/en-US/XML_Mapping.xml	2008-09-05 04:46:29 UTC (rev 78059)
+++ projects/docs/enterprise/4.2.5/Hibernate/Advanced_Topics/en-US/XML_Mapping.xml	2008-09-05 04:50:54 UTC (rev 78060)
@@ -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="xml">
   <title>XML Mapping</title>
 




More information about the jboss-cvs-commits mailing list