[jboss-cvs] JBossAS SVN: r96537 - projects/docs/enterprise/4.3.7/Hibernate/Reference_Guide/en-US.

jboss-cvs-commits at lists.jboss.org jboss-cvs-commits at lists.jboss.org
Wed Nov 18 23:37:51 EST 2009


Author: laubai
Date: 2009-11-18 23:37:51 -0500 (Wed, 18 Nov 2009)
New Revision: 96537

Added:
   projects/docs/enterprise/4.3.7/Hibernate/Reference_Guide/en-US/Hibernate_Reference_Guide_CP07.ent
   projects/docs/enterprise/4.3.7/Hibernate/Reference_Guide/en-US/Hibernate_Reference_Guide_CP07.xml
Removed:
   projects/docs/enterprise/4.3.7/Hibernate/Reference_Guide/en-US/Hibernate_Reference_Guide_CP06.ent
   projects/docs/enterprise/4.3.7/Hibernate/Reference_Guide/en-US/Hibernate_Reference_Guide_CP06.xml
Modified:
   projects/docs/enterprise/4.3.7/Hibernate/Reference_Guide/en-US/Book_Info.xml
   projects/docs/enterprise/4.3.7/Hibernate/Reference_Guide/en-US/Revision_History.xml
Log:
Adding changes for CP07 build.

Modified: projects/docs/enterprise/4.3.7/Hibernate/Reference_Guide/en-US/Book_Info.xml
===================================================================
--- projects/docs/enterprise/4.3.7/Hibernate/Reference_Guide/en-US/Book_Info.xml	2009-11-19 04:33:21 UTC (rev 96536)
+++ projects/docs/enterprise/4.3.7/Hibernate/Reference_Guide/en-US/Book_Info.xml	2009-11-19 04:37:51 UTC (rev 96537)
@@ -3,8 +3,8 @@
 ]>
 
 <bookinfo id="Hibernate_Reference_Guide">
-	<title>Hibernate Reference Guide CP06</title>
-	<subtitle>for Use with JBoss Enterprise Application Platform 4.3 Cumulative Patch 6</subtitle>
+	<title>Hibernate Reference Guide CP07</title>
+	<subtitle>for Use with JBoss Enterprise Application Platform 4.3 Cumulative Patch 7</subtitle>
 	<edition>2.0</edition>
 	<pubsnumber>1</pubsnumber>
 	<productname>JBoss Enterprise Application Platform</productname>

Deleted: projects/docs/enterprise/4.3.7/Hibernate/Reference_Guide/en-US/Hibernate_Reference_Guide_CP06.ent
===================================================================
--- projects/docs/enterprise/4.3.7/Hibernate/Reference_Guide/en-US/Hibernate_Reference_Guide_CP06.ent	2009-11-19 04:33:21 UTC (rev 96536)
+++ projects/docs/enterprise/4.3.7/Hibernate/Reference_Guide/en-US/Hibernate_Reference_Guide_CP06.ent	2009-11-19 04:37:51 UTC (rev 96537)
@@ -1,4 +0,0 @@
-<!ENTITY allproperties "&amp;allproperties;">
-<!ENTITY types "&amp;types;">
-<!ENTITY HOLDER "Red Hat, Inc">
-<!ENTITY YEAR "2009">

Deleted: projects/docs/enterprise/4.3.7/Hibernate/Reference_Guide/en-US/Hibernate_Reference_Guide_CP06.xml
===================================================================
--- projects/docs/enterprise/4.3.7/Hibernate/Reference_Guide/en-US/Hibernate_Reference_Guide_CP06.xml	2009-11-19 04:33:21 UTC (rev 96536)
+++ projects/docs/enterprise/4.3.7/Hibernate/Reference_Guide/en-US/Hibernate_Reference_Guide_CP06.xml	2009-11-19 04:37:51 UTC (rev 96537)
@@ -1,89 +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">
-
-<book>
-	<xi:include href="Book_Info.xml" xmlns:xi="http://www.w3.org/2001/XInclude" />
-	<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="Introduction_to_Hibernate" /> 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 href="Introduction_To_Hibernate.xml" xmlns:xi="http://www.w3.org/2001/XInclude" />
-	<xi:include href="Architecture.xml" xmlns:xi="http://www.w3.org/2001/XInclude" />
-	<xi:include href="Configuration.xml" xmlns:xi="http://www.w3.org/2001/XInclude" />
-	<xi:include href="Persistent_Classes.xml" xmlns:xi="http://www.w3.org/2001/XInclude" />
-	<xi:include href="Basic_O_R_Mapping.xml" xmlns:xi="http://www.w3.org/2001/XInclude" />
-	<xi:include href="Collection_Mapping.xml" xmlns:xi="http://www.w3.org/2001/XInclude" />
-	<xi:include href="Association_Mappings.xml" xmlns:xi="http://www.w3.org/2001/XInclude" />
-	<xi:include href="Component_Mapping.xml" xmlns:xi="http://www.w3.org/2001/XInclude" />
-	<xi:include href="Inheritance_Mapping.xml" xmlns:xi="http://www.w3.org/2001/XInclude" />
-	<xi:include href="Working_With_Objects.xml" xmlns:xi="http://www.w3.org/2001/XInclude" />
-	<xi:include href="Transactions_And_Concurrency.xml" xmlns:xi="http://www.w3.org/2001/XInclude" />
-	<xi:include href="Interceptors_And_Events.xml" xmlns:xi="http://www.w3.org/2001/XInclude" />
-	<xi:include href="Batch_Processing.xml" xmlns:xi="http://www.w3.org/2001/XInclude" />
-	<xi:include href="The_Hibernate_Query_Language.xml" xmlns:xi="http://www.w3.org/2001/XInclude" />
-	<xi:include href="Criteria_Queries.xml" xmlns:xi="http://www.w3.org/2001/XInclude" />
-	<xi:include href="Native_SQL.xml" xmlns:xi="http://www.w3.org/2001/XInclude" />
-	<xi:include href="Filtering_Data.xml" xmlns:xi="http://www.w3.org/2001/XInclude" />
-	<xi:include href="XML_Mapping.xml" xmlns:xi="http://www.w3.org/2001/XInclude" />
-	<xi:include href="Improving_Performance.xml" xmlns:xi="http://www.w3.org/2001/XInclude" />
-	<xi:include href="Toolset_Guide.xml" xmlns:xi="http://www.w3.org/2001/XInclude" />
-	<xi:include href="Example_Parent_Child.xml" xmlns:xi="http://www.w3.org/2001/XInclude" />
-	<xi:include href="Example_Weblog_Application.xml" xmlns:xi="http://www.w3.org/2001/XInclude" />
-	<xi:include href="Example_Various_Mappings.xml" xmlns:xi="http://www.w3.org/2001/XInclude" />
-	<xi:include href="Best_Practices.xml" xmlns:xi="http://www.w3.org/2001/XInclude" />
-<xi:include xmlns:xi="http://www.w3.org/2001/XInclude" href="Revision_History.xml"/>
-
-</book>
-

Added: projects/docs/enterprise/4.3.7/Hibernate/Reference_Guide/en-US/Hibernate_Reference_Guide_CP07.ent
===================================================================
--- projects/docs/enterprise/4.3.7/Hibernate/Reference_Guide/en-US/Hibernate_Reference_Guide_CP07.ent	                        (rev 0)
+++ projects/docs/enterprise/4.3.7/Hibernate/Reference_Guide/en-US/Hibernate_Reference_Guide_CP07.ent	2009-11-19 04:37:51 UTC (rev 96537)
@@ -0,0 +1,4 @@
+<!ENTITY allproperties "&amp;allproperties;">
+<!ENTITY types "&amp;types;">
+<!ENTITY HOLDER "Red Hat, Inc">
+<!ENTITY YEAR "2009">

Added: projects/docs/enterprise/4.3.7/Hibernate/Reference_Guide/en-US/Hibernate_Reference_Guide_CP07.xml
===================================================================
--- projects/docs/enterprise/4.3.7/Hibernate/Reference_Guide/en-US/Hibernate_Reference_Guide_CP07.xml	                        (rev 0)
+++ projects/docs/enterprise/4.3.7/Hibernate/Reference_Guide/en-US/Hibernate_Reference_Guide_CP07.xml	2009-11-19 04:37:51 UTC (rev 96537)
@@ -0,0 +1,89 @@
+<?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>
+	<xi:include href="Book_Info.xml" xmlns:xi="http://www.w3.org/2001/XInclude" />
+	<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="Introduction_to_Hibernate" /> 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 href="Introduction_To_Hibernate.xml" xmlns:xi="http://www.w3.org/2001/XInclude" />
+	<xi:include href="Architecture.xml" xmlns:xi="http://www.w3.org/2001/XInclude" />
+	<xi:include href="Configuration.xml" xmlns:xi="http://www.w3.org/2001/XInclude" />
+	<xi:include href="Persistent_Classes.xml" xmlns:xi="http://www.w3.org/2001/XInclude" />
+	<xi:include href="Basic_O_R_Mapping.xml" xmlns:xi="http://www.w3.org/2001/XInclude" />
+	<xi:include href="Collection_Mapping.xml" xmlns:xi="http://www.w3.org/2001/XInclude" />
+	<xi:include href="Association_Mappings.xml" xmlns:xi="http://www.w3.org/2001/XInclude" />
+	<xi:include href="Component_Mapping.xml" xmlns:xi="http://www.w3.org/2001/XInclude" />
+	<xi:include href="Inheritance_Mapping.xml" xmlns:xi="http://www.w3.org/2001/XInclude" />
+	<xi:include href="Working_With_Objects.xml" xmlns:xi="http://www.w3.org/2001/XInclude" />
+	<xi:include href="Transactions_And_Concurrency.xml" xmlns:xi="http://www.w3.org/2001/XInclude" />
+	<xi:include href="Interceptors_And_Events.xml" xmlns:xi="http://www.w3.org/2001/XInclude" />
+	<xi:include href="Batch_Processing.xml" xmlns:xi="http://www.w3.org/2001/XInclude" />
+	<xi:include href="The_Hibernate_Query_Language.xml" xmlns:xi="http://www.w3.org/2001/XInclude" />
+	<xi:include href="Criteria_Queries.xml" xmlns:xi="http://www.w3.org/2001/XInclude" />
+	<xi:include href="Native_SQL.xml" xmlns:xi="http://www.w3.org/2001/XInclude" />
+	<xi:include href="Filtering_Data.xml" xmlns:xi="http://www.w3.org/2001/XInclude" />
+	<xi:include href="XML_Mapping.xml" xmlns:xi="http://www.w3.org/2001/XInclude" />
+	<xi:include href="Improving_Performance.xml" xmlns:xi="http://www.w3.org/2001/XInclude" />
+	<xi:include href="Toolset_Guide.xml" xmlns:xi="http://www.w3.org/2001/XInclude" />
+	<xi:include href="Example_Parent_Child.xml" xmlns:xi="http://www.w3.org/2001/XInclude" />
+	<xi:include href="Example_Weblog_Application.xml" xmlns:xi="http://www.w3.org/2001/XInclude" />
+	<xi:include href="Example_Various_Mappings.xml" xmlns:xi="http://www.w3.org/2001/XInclude" />
+	<xi:include href="Best_Practices.xml" xmlns:xi="http://www.w3.org/2001/XInclude" />
+<xi:include xmlns:xi="http://www.w3.org/2001/XInclude" href="Revision_History.xml"/>
+
+</book>
+

Modified: projects/docs/enterprise/4.3.7/Hibernate/Reference_Guide/en-US/Revision_History.xml
===================================================================
--- projects/docs/enterprise/4.3.7/Hibernate/Reference_Guide/en-US/Revision_History.xml	2009-11-19 04:33:21 UTC (rev 96536)
+++ projects/docs/enterprise/4.3.7/Hibernate/Reference_Guide/en-US/Revision_History.xml	2009-11-19 04:37:51 UTC (rev 96537)
@@ -8,15 +8,15 @@
 		<revhistory>
 			<revision>
 				<revnumber>1.0</revnumber>
-				<date></date>
+				<date>Thu Nov 19 2009</date>
 				<author>
-					<firstname></firstname>
-					<surname></surname>
-					<email></email>
+					<firstname>Laura</firstname>
+					<surname>Bailey</surname>
+					<email>lbailey at redhat.com</email>
 				</author>
 				<revdescription>
 					<simplelist>
-						<member></member>
+						<member>Initial draft.</member>
 					</simplelist>
 				</revdescription>
 			</revision>




More information about the jboss-cvs-commits mailing list