[jboss-cvs] JBossAS SVN: r97579 - projects/docs/enterprise/5.0/Hibernate/Hibernate_Core/en-US.

jboss-cvs-commits at lists.jboss.org jboss-cvs-commits at lists.jboss.org
Tue Dec 8 21:25:03 EST 2009


Author: benlc
Date: 2009-12-08 21:25:02 -0500 (Tue, 08 Dec 2009)
New Revision: 97579

Modified:
   projects/docs/enterprise/5.0/Hibernate/Hibernate_Core/en-US/architecture.xml
   projects/docs/enterprise/5.0/Hibernate/Hibernate_Core/en-US/association_mapping.xml
   projects/docs/enterprise/5.0/Hibernate/Hibernate_Core/en-US/basic_mapping.xml
   projects/docs/enterprise/5.0/Hibernate/Hibernate_Core/en-US/batch.xml
   projects/docs/enterprise/5.0/Hibernate/Hibernate_Core/en-US/collection_mapping.xml
   projects/docs/enterprise/5.0/Hibernate/Hibernate_Core/en-US/component_mapping.xml
   projects/docs/enterprise/5.0/Hibernate/Hibernate_Core/en-US/configuration.xml
   projects/docs/enterprise/5.0/Hibernate/Hibernate_Core/en-US/events.xml
   projects/docs/enterprise/5.0/Hibernate/Hibernate_Core/en-US/example_mappings.xml
   projects/docs/enterprise/5.0/Hibernate/Hibernate_Core/en-US/example_parentchild.xml
   projects/docs/enterprise/5.0/Hibernate/Hibernate_Core/en-US/example_weblog.xml
   projects/docs/enterprise/5.0/Hibernate/Hibernate_Core/en-US/filters.xml
   projects/docs/enterprise/5.0/Hibernate/Hibernate_Core/en-US/inheritance_mapping.xml
   projects/docs/enterprise/5.0/Hibernate/Hibernate_Core/en-US/performance.xml
   projects/docs/enterprise/5.0/Hibernate/Hibernate_Core/en-US/persistent_classes.xml
   projects/docs/enterprise/5.0/Hibernate/Hibernate_Core/en-US/portability.xml
   projects/docs/enterprise/5.0/Hibernate/Hibernate_Core/en-US/query_criteria.xml
   projects/docs/enterprise/5.0/Hibernate/Hibernate_Core/en-US/query_sql.xml
   projects/docs/enterprise/5.0/Hibernate/Hibernate_Core/en-US/session_api.xml
   projects/docs/enterprise/5.0/Hibernate/Hibernate_Core/en-US/transactions.xml
   projects/docs/enterprise/5.0/Hibernate/Hibernate_Core/en-US/tutorial.xml
Log:
'committing changes necessary for a publican 1.3 build'


Modified: projects/docs/enterprise/5.0/Hibernate/Hibernate_Core/en-US/architecture.xml
===================================================================
--- projects/docs/enterprise/5.0/Hibernate/Hibernate_Core/en-US/architecture.xml	2009-12-09 02:14:33 UTC (rev 97578)
+++ projects/docs/enterprise/5.0/Hibernate/Hibernate_Core/en-US/architecture.xml	2009-12-09 02:25:02 UTC (rev 97579)
@@ -29,7 +29,7 @@
 
     <title>Architecture</title>
 
-    <sect1 id="architecture-overview" revision="1">
+    <section id="architecture-overview" revision="1">
         <title>Overview</title>
         
         <para>
@@ -185,9 +185,9 @@
             <literal>Transaction</literal>/<literal>TransactionFactory</literal> and/or
             <literal>ConnectionProvider</literal> APIs to communicate with JTA or JDBC directly.
         </para>
-    </sect1>
+    </section>
 
-    <sect1 id="architecture-states" revision="1">
+    <section id="architecture-states" revision="1">
         <title>Instance states</title>
         <para>
             An instance of a persistent class can be in one of three different states. These states are
@@ -235,9 +235,9 @@
                 </listitem>
             </varlistentry>
         </variablelist>
-    </sect1>    
+    </section>    
 
-    <sect1 id="architecture-jmx" revision="1">
+    <section id="architecture-jmx" revision="1">
         <title>JMX Integration</title>
 
         <para>
@@ -285,17 +285,17 @@
             Another feature available as a JMX service is runtime Hibernate statistics. See
             <xref linkend="configuration-optional-statistics"/> for more information.
         </para>
-    </sect1>
+    </section>
 
-    <sect1 id="architecture-jca" revision="1">
+    <section id="architecture-jca" revision="1">
         <title>JCA Support</title>
         <para>
             Hibernate can also be configured as a JCA connector. Please see the website for more
             information. Please note, however, that at this stage Hibernate JCA support is under development.
         </para>
-    </sect1>
+    </section>
 
-    <sect1 id="architecture-current-session" revision="2">
+    <section id="architecture-current-session" revision="2">
         <title>Contextual sessions</title>
         <para>
             Most applications using Hibernate need some form of "contextual" session, where a given
@@ -379,7 +379,7 @@
             short names: "jta", "thread", and "managed".
         </para>
         
-    </sect1>
+    </section>
 
 </chapter>
 

Modified: projects/docs/enterprise/5.0/Hibernate/Hibernate_Core/en-US/association_mapping.xml
===================================================================
--- projects/docs/enterprise/5.0/Hibernate/Hibernate_Core/en-US/association_mapping.xml	2009-12-09 02:14:33 UTC (rev 97578)
+++ projects/docs/enterprise/5.0/Hibernate/Hibernate_Core/en-US/association_mapping.xml	2009-12-09 02:25:02 UTC (rev 97579)
@@ -29,7 +29,7 @@
 
     <title>Association Mappings</title>
 
-    <sect1 id="assoc-intro" revision="1">
+    <section id="assoc-intro" revision="1">
         <title>Introduction</title>
         
         <para>
@@ -52,12 +52,12 @@
         	nullability constraints.
         </para>
         
-    </sect1>
+    </section>
 
-    <sect1 id="assoc-unidirectional" revision="1">
+    <section id="assoc-unidirectional" revision="1">
         <title>Unidirectional associations</title>
         
-        <sect2 id="assoc-unidirectional-m21">
+        <section id="assoc-unidirectional-m21">
         <title>Many-to-one</title>
         
         <para>
@@ -84,9 +84,9 @@
 create table Address ( addressId bigint not null primary key )
         ]]></programlisting>
         
-        </sect2>
+        </section>
 
-        <sect2 id="assoc-unidirectional-121">
+        <section id="assoc-unidirectional-121">
         <title>One-to-one</title>
         
         <para>
@@ -139,9 +139,9 @@
 create table Address ( personId bigint not null primary key )
         ]]></programlisting>
         
-        </sect2>
+        </section>
         
-        <sect2 id="assoc-unidirectional-12m">
+        <section id="assoc-unidirectional-12m">
         <title>One-to-many</title>
         
         <para>
@@ -174,14 +174,14 @@
           You should instead use a join table for this kind of association.
         </para>
         
-        </sect2>
+        </section>
     
-    </sect1>
+    </section>
 
-    <sect1 id="assoc-unidirectional-join" revision="1">
+    <section id="assoc-unidirectional-join" revision="1">
         <title>Unidirectional associations with join tables</title>
         
-        <sect2 id="assoc-unidirectional-join-12m">
+        <section id="assoc-unidirectional-join-12m">
         <title>One-to-many</title>
         
         <para>
@@ -213,9 +213,9 @@
 create table Address ( addressId bigint not null primary key )
         ]]></programlisting>
         
-        </sect2>
+        </section>
 
-        <sect2 id="assoc-unidirectional-join-m21">
+        <section id="assoc-unidirectional-join-m21">
         <title>Many-to-one</title>
         
         <para>
@@ -247,9 +247,9 @@
 create table Address ( addressId bigint not null primary key )
         ]]></programlisting>
         
-        </sect2>
+        </section>
 
-        <sect2 id="assoc-unidirectional-join-121">
+        <section id="assoc-unidirectional-join-121">
         <title>One-to-one</title>
         
         <para>
@@ -283,9 +283,9 @@
 create table Address ( addressId bigint not null primary key )
         ]]></programlisting>
         
-        </sect2>
+        </section>
 
-        <sect2 id="assoc-unidirectional-join-m2m">
+        <section id="assoc-unidirectional-join-m2m">
         <title>Many-to-many</title>
         
         <para>
@@ -314,14 +314,14 @@
 create table Address ( addressId bigint not null primary key )
         ]]></programlisting>
         
-        </sect2>
+        </section>
 
-    </sect1>
+    </section>
 
-    <sect1 id="assoc-bidirectional" revision="1">
+    <section id="assoc-bidirectional" revision="1">
         <title>Bidirectional associations</title>
         
-        <sect2 id="assoc-bidirectional-m21" revision="2">
+        <section id="assoc-bidirectional-m21" revision="2">
         <title>one-to-many / many-to-one</title>
         
         <para>
@@ -392,9 +392,9 @@
                 element.
             </para>
 
-        </sect2>
+        </section>
         
-        <sect2 id="assoc-bidirectional-121">
+        <section id="assoc-bidirectional-121">
         <title>One-to-one</title>
         
         <para>
@@ -450,14 +450,14 @@
 create table Address ( personId bigint not null primary key )
         ]]></programlisting>
         
-        </sect2>
+        </section>
         
-    </sect1>
+    </section>
 
-    <sect1 id="assoc-bidirectional-join" revision="1">
+    <section id="assoc-bidirectional-join" revision="1">
         <title>Bidirectional associations with join tables</title>
         
-        <sect2 id="assoc-bidirectional-join-12m">
+        <section id="assoc-bidirectional-join-12m">
         <title>one-to-many / many-to-one</title>
         
         <para>
@@ -498,9 +498,9 @@
 create table Address ( addressId bigint not null primary key )
         ]]></programlisting>
         
-        </sect2>
+        </section>
 
-         <sect2 id="assoc-bidirectional-join-121">
+         <section id="assoc-bidirectional-join-121">
         <title>one to one</title>
         
         <para>
@@ -544,9 +544,9 @@
 create table Address ( addressId bigint not null primary key )
         ]]></programlisting>
 
-        </sect2>
+        </section>
         
-        <sect2 id="assoc-bidirectional-join-m2m" revision="1">
+        <section id="assoc-bidirectional-join-m2m" revision="1">
         <title>Many-to-many</title>
         
         <para>
@@ -581,11 +581,11 @@
 create table Address ( addressId bigint not null primary key )
         ]]></programlisting>
         
-        </sect2>
+        </section>
         
-    </sect1>
+    </section>
     
-    <sect1 id="assoc-complex">
+    <section id="assoc-complex">
         <title>More complex association mappings</title>
         
         <para>
@@ -644,7 +644,7 @@
             to handle these kinds of cases using HQL or a criteria query.
         </para>
 
-    </sect1>
+    </section>
 
 
 </chapter>

Modified: projects/docs/enterprise/5.0/Hibernate/Hibernate_Core/en-US/basic_mapping.xml
===================================================================
--- projects/docs/enterprise/5.0/Hibernate/Hibernate_Core/en-US/basic_mapping.xml	2009-12-09 02:14:33 UTC (rev 97578)
+++ projects/docs/enterprise/5.0/Hibernate/Hibernate_Core/en-US/basic_mapping.xml	2009-12-09 02:25:02 UTC (rev 97579)
@@ -48,7 +48,8 @@
             Here is an example mapping:
         </para>
 
-        <programlisting id="mapping-declaration-ex1" revision="1"><![CDATA[<?xml version="1.0"?>
+     <!--     <programlisting id="mapping-declaration-ex1" revision="1"> -->
+        <programlisting><![CDATA[<?xml version="1.0"?>
 <!DOCTYPE hibernate-mapping PUBLIC
       "-//Hibernate/Hibernate Mapping DTD 3.0//EN"
           "http://hibernate.sourceforge.net/hibernate-mapping-3.0.dtd">

Modified: projects/docs/enterprise/5.0/Hibernate/Hibernate_Core/en-US/batch.xml
===================================================================
--- projects/docs/enterprise/5.0/Hibernate/Hibernate_Core/en-US/batch.xml	2009-12-09 02:14:33 UTC (rev 97578)
+++ projects/docs/enterprise/5.0/Hibernate/Hibernate_Core/en-US/batch.xml	2009-12-09 02:25:02 UTC (rev 97579)
@@ -75,7 +75,7 @@
         <literal>CacheMode</literal> to disable interaction with the second-level cache.
     </para>
 
-    <sect1 id="batch-inserts">
+    <section id="batch-inserts">
         <title>Batch inserts</title>
 
         <para>
@@ -100,9 +100,9 @@
 tx.commit();
 session.close();]]></programlisting>
 
-    </sect1>
+    </section>
 
-    <sect1 id="batch-update" >
+    <section id="batch-update" >
         <title>Batch updates</title>
 
         <para>
@@ -131,9 +131,9 @@
 tx.commit();
 session.close();]]></programlisting>
 
-    </sect1>
+    </section>
     
-    <sect1 id="batch-statelesssession">
+    <section id="batch-statelesssession">
         <title>The StatelessSession interface</title>
         <para>
             Alternatively, Hibernate provides a command-oriented API that can be used for 
@@ -180,9 +180,9 @@
             interface.
         </para>
 
-    </sect1>
+    </section>
 
-    <sect1 id="batch-direct" revision="3">
+    <section id="batch-direct" revision="3">
         <title>DML-style operations</title>
 
         <para>
@@ -372,6 +372,6 @@
 tx.commit();
 session.close();]]></programlisting>
 
-    </sect1>
+    </section>
 
 </chapter>

Modified: projects/docs/enterprise/5.0/Hibernate/Hibernate_Core/en-US/collection_mapping.xml
===================================================================
--- projects/docs/enterprise/5.0/Hibernate/Hibernate_Core/en-US/collection_mapping.xml	2009-12-09 02:14:33 UTC (rev 97578)
+++ projects/docs/enterprise/5.0/Hibernate/Hibernate_Core/en-US/collection_mapping.xml	2009-12-09 02:25:02 UTC (rev 97579)
@@ -28,7 +28,7 @@
 <chapter id="collections">
     <title>Collection mapping</title>
 
-    <sect1 id="collections-persistent" revision="3">
+    <section id="collections-persistent" revision="3">
         <title>Persistent collections</title>
         
         <para>
@@ -99,9 +99,9 @@
             the semantics of bidirectional associations (these are discussed later).
         </para>
 
-    </sect1>
+    </section>
 
-    <sect1 id="collections-mapping" revision="4">
+    <section id="collections-mapping" revision="4">
         <title>Collection mappings</title>
 
         <note>
@@ -270,7 +270,7 @@
             </calloutlist>
         </programlistingco>
 
-        <sect2 id="collections-foreignkeys" >
+        <section id="collections-foreignkeys" >
            <title>Collection foreign keys</title>
     
             <para>
@@ -301,9 +301,9 @@
                 element.
             </para>
             
-        </sect2>
+        </section>
         
-        <sect2 id="collections-elements" >
+        <section id="collections-elements" >
             <title>Collection elements</title>
     
             <para>
@@ -324,9 +324,9 @@
                 associations.
             </para>
             
-        </sect2>
+        </section>
         
-        <sect2 id="collections-indexed">
+        <section id="collections-indexed">
             <title>Indexed collections</title>
     
             <para>
@@ -439,9 +439,9 @@
                 optionally sorted or ordered.
             </para>
             
-        </sect2>
+        </section>
 
-    <sect2 id="collections-ofvalues" revision="2">
+    <section id="collections-ofvalues" revision="2">
         <title>Collections of values and many-to-many associations</title>
 
         <para>
@@ -643,9 +643,9 @@
     </composite-element>
 </list>]]></programlisting>
 
-    </sect2>
+    </section>
 
-    <sect2 id="collections-onetomany">
+    <section id="collections-onetomany">
         <title>One-to-many associations</title>
 
         <para>
@@ -740,14 +740,14 @@
     <map-key formula="partName"/>
     <one-to-many class="Part"/>
 </map>]]></programlisting>
-    </sect2>
+    </section>
     
-    </sect1>
+    </section>
 
-    <sect1 id="collections-advancedmappings">
+    <section id="collections-advancedmappings">
         <title>Advanced collection mappings</title>
 
-    <sect2 id="collections-sorted" revision="2">
+    <section id="collections-sorted" revision="2">
         <title>Sorted collections</title>
 
         <para>
@@ -814,9 +814,9 @@
 
         <programlisting><![CDATA[sortedUsers = s.createFilter( group.getUsers(), "order by this.name" ).list();]]></programlisting>
 
-    </sect2>
+    </section>
 
-     <sect2 id="collections-bidirectional" revision="1">
+     <section id="collections-bidirectional" revision="1">
         <title>Bidirectional associations</title>
 
         <para>
@@ -925,9 +925,9 @@
             affect the operation of cascades as these are orthogonal concepts.
         </para>
 
-    </sect2>
+    </section>
 
-    <sect2 id="collections-indexedbidirectional">
+    <section id="collections-indexedbidirectional">
         <title>Bidirectional associations with indexed collections</title>
         <para>
             A bidirectional association where one end is represented as a <literal>&lt;list&gt;</literal>
@@ -993,9 +993,9 @@
            updates to the foreign key. <!--TODO: Does this really result in some unnecessary update statements?-->
        </para>
 
-    </sect2>
+    </section>
     
-    <sect2 id="collections-ternary">
+    <section id="collections-ternary">
         <title>Ternary associations</title>
 
         <para>
@@ -1024,9 +1024,9 @@
             A final alternative is to use composite elements, which will be discussed later. 
         </para>
         
-    </sect2>
+    </section>
     
-    <sect2 id="collections-idbag" revision="1">
+    <section id="collections-idbag" revision="1">
         <title><literal>Using an &lt;idbag&gt;</literal></title>
 
         <para>
@@ -1070,9 +1070,9 @@
             strategy is not supported for <literal>&lt;idbag&gt;</literal> collection identifiers.
         </para>
 
-    </sect2>
+    </section>
 
-    </sect1>
+    </section>
     
     <!--undocumenting this stuff -->
     
@@ -1086,9 +1086,9 @@
             rarely, if ever.
         </para>
 
-    </sect1-->
+    </section-->
 
-    <sect1 id="collections-example" revision="1">
+    <section id="collections-example" revision="1">
         <title>Collection examples</title>
 
         <para>
@@ -1264,6 +1264,6 @@
             in the next chapter.
         </para>
 
-    </sect1>
+    </section>
 
 </chapter>

Modified: projects/docs/enterprise/5.0/Hibernate/Hibernate_Core/en-US/component_mapping.xml
===================================================================
--- projects/docs/enterprise/5.0/Hibernate/Hibernate_Core/en-US/component_mapping.xml	2009-12-09 02:14:33 UTC (rev 97578)
+++ projects/docs/enterprise/5.0/Hibernate/Hibernate_Core/en-US/component_mapping.xml	2009-12-09 02:25:02 UTC (rev 97579)
@@ -33,7 +33,7 @@
         throughout Hibernate.
     </para>
 
-    <sect1 id="components-dependentobjects" revision="2" >
+    <section id="components-dependentobjects" revision="2" >
         <title>Dependent objects</title>
 
         <para>
@@ -157,9 +157,9 @@
     </component>
 </class>]]></programlisting>
 
-    </sect1>
+    </section>
 
-    <sect1 id="components-incollections" revision="1">
+    <section id="components-incollections" revision="1">
         <title>Collections of dependent objects</title>
 
         <para>
@@ -258,9 +258,9 @@
             associations to other entities.
         </para>
 
-    </sect1>
+    </section>
 
-    <sect1 id="components-asmapindex">
+    <section id="components-asmapindex">
         <title>Components as Map indices</title>
 
         <para>
@@ -269,9 +269,9 @@
             <literal>hashCode()</literal> and <literal>equals()</literal> correctly on
             the component class.
         </para>
-    </sect1>
+    </section>
 
-    <sect1 id="components-compositeid" revision="1">
+    <section id="components-compositeid" revision="1">
         <title>Components as composite identifiers</title>
 
         <para>
@@ -406,9 +406,9 @@
     </set>
 </class>]]></programlisting>
 
-    </sect1>
+    </section>
 
-    <sect1 id="components-dynamic" revision="1">
+    <section id="components-dynamic" revision="1">
         <title>Dynamic components</title>
 
         <para>
@@ -430,6 +430,6 @@
             configuration-time metamodel via the <literal>Configuration</literal> object.
         </para>
 
-    </sect1>
+    </section>
 
 </chapter>

Modified: projects/docs/enterprise/5.0/Hibernate/Hibernate_Core/en-US/configuration.xml
===================================================================
--- projects/docs/enterprise/5.0/Hibernate/Hibernate_Core/en-US/configuration.xml	2009-12-09 02:14:33 UTC (rev 97578)
+++ projects/docs/enterprise/5.0/Hibernate/Hibernate_Core/en-US/configuration.xml	2009-12-09 02:25:02 UTC (rev 97579)
@@ -36,7 +36,7 @@
         the various options. Simply put the example file in your classpath and customize it to suit your needs.
     </para>
 
-    <sect1 id="configuration-programmatic" revision="1">
+    <section id="configuration-programmatic" revision="1">
         <title>Programmatic configuration</title>
 
         <para>
@@ -122,14 +122,14 @@
             be discarded once a <literal>SessionFactory</literal> is created.
         </para>
 
-    </sect1>
+    </section>
     
-    <sect1 id="configuration-sessionfactory">
+    <section id="configuration-sessionfactory">
         <title>Obtaining a SessionFactory</title>
 
         <para>
             When all mappings have been parsed by the <classname>org.hibernate.cfg.Configuration</classname>,
-            the application must obtain a factory for <interfacename>org.hibernate.Session</interfacename> instances.
+            the application must obtain a factory for <classname>org.hibernate.Session</classname> instances.
             This factory is intended to be shared by all application threads:
         </para>
 
@@ -137,13 +137,13 @@
 
         <para>
             Hibernate does allow your application to instantiate more than one
-            <interfacename>org.hibernate.SessionFactory</interfacename>. This is useful if you are using more than
+            <classname>org.hibernate.SessionFactory</classname>. This is useful if you are using more than
             one database.
         </para>
 
-    </sect1>
+    </section>
 
-    <sect1 id="configuration-hibernatejdbc" revision="1">
+    <section id="configuration-hibernatejdbc">
         <title>JDBC connections</title>
 
         <para>
@@ -248,7 +248,8 @@
             The following is an example <filename>hibernate.properties</filename> file for c3p0:
         </para>
 
-        <programlisting id="c3p0-configuration" revision="1"><![CDATA[hibernate.connection.driver_class = org.postgresql.Driver
+        <!--  <programlisting id="c3p0-configuration" revision="1"> -->
+        <programlisting><![CDATA[hibernate.connection.driver_class = org.postgresql.Driver
 hibernate.connection.url = jdbc:postgresql://localhost/mydatabase
 hibernate.connection.username = myuser
 hibernate.connection.password = secret
@@ -349,9 +350,9 @@
             custom implementation via the <property>hibernate.connection.provider_class</property> property.
         </para>
 
-    </sect1>
+    </section>
 
-    <sect1 id="configuration-optional" revision="1">
+    <section id="configuration-optional" revision="1">
         <title>Optional configuration properties</title>
         
         <para>
@@ -1045,7 +1046,7 @@
             </tgroup>
         </table>
 
-        <sect2 id="configuration-optional-dialects" revision="1">
+        <section id="configuration-optional-dialects" revision="1">
             <title>SQL Dialects</title>
 
             <para>
@@ -1142,9 +1143,9 @@
                 </tgroup>
             </table>
 
-        </sect2>
+        </section>
 
-        <sect2 id="configuration-optional-outerjoin" revision="4">
+        <section id="configuration-optional-outerjoin" revision="4">
             <title>Outer Join Fetching</title>
 
             <para>
@@ -1168,9 +1169,9 @@
                 See <xref linkend="performance-fetching"/> for more information.
             </para>
 
-        </sect2>
+        </section>
 
-        <sect2 id="configuration-optional-binarystreams" revision="1">
+        <section id="configuration-optional-binarystreams" revision="1">
             <title>Binary Streams</title>
 
             <para>
@@ -1181,9 +1182,9 @@
                 <emphasis>This is a system-level setting only.</emphasis>
             </para>
 
-        </sect2>
+        </section>
 
-        <sect2 id="configuration-optional-cacheprovider" revision="2">
+        <section id="configuration-optional-cacheprovider" revision="2">
             <title>Second-level and query cache</title>
 
             <para>
@@ -1193,9 +1194,9 @@
                 more information.
             </para>
 
-        </sect2>
+        </section>
 
-        <sect2 id="configuration-optional-querysubstitution">
+        <section id="configuration-optional-querysubstitution">
             <title>Query Language Substitution</title>
 
             <para>
@@ -1216,9 +1217,9 @@
                 This would allow you to rename the SQL <literal>LOWER</literal> function.
             </para>
 
-        </sect2>
+        </section>
 
-        <sect2 id="configuration-optional-statistics" revision="2">
+        <section id="configuration-optional-statistics" revision="2">
             <title>Hibernate statistics</title>
 
             <para>
@@ -1229,10 +1230,10 @@
                 <literal>org.hibernate.stats</literal> for more information.
             </para>
 
-        </sect2>
-    </sect1>
+        </section>
+    </section>
 
-    <sect1 id="configuration-logging">
+    <section id="configuration-logging">
         <title>Logging</title>
 
         <para>
@@ -1328,9 +1329,9 @@
         </para>
                        
         
-    </sect1>
+    </section>
 
-    <sect1 id="configuration-namingstrategy">
+    <section id="configuration-namingstrategy">
         <title>Implementing a <literal>NamingStrategy</literal></title>
 
         <para>
@@ -1363,9 +1364,9 @@
             strategy that might be a useful starting point for some applications.
         </para>
 
-    </sect1>
+    </section>
 
-    <sect1 id="configuration-xmlconfig" revision="2">
+    <section id="configuration-xmlconfig" revision="2">
         <title>XML configuration file</title>
 
         <para>
@@ -1436,9 +1437,9 @@
     .configure("catdb.cfg.xml")
     .buildSessionFactory();]]></programlisting>
 
-    </sect1>
+    </section>
 
-    <sect1 id="configuration-j2ee" revision="1">
+    <section id="configuration-j2ee" revision="1">
         <title>J2EE Application Server integration</title>
 
         <para>
@@ -1501,7 +1502,7 @@
             application server shows "connection containment" exceptions.
         </para>
 
-        <sect2 id="configuration-optional-transactionstrategy" revision="3">
+        <section id="configuration-optional-transactionstrategy" revision="3">
             <title>Transaction strategy configuration</title>
 
             <para>
@@ -1626,9 +1627,9 @@
                 </tgroup>
             </table>
 
-        </sect2>
+        </section>
 
-        <sect2 id="configuration-optional-jndi" revision="3">
+        <section id="configuration-optional-jndi" revision="3">
             <title>JNDI-bound <literal>SessionFactory</literal></title>
 
             <para>
@@ -1674,9 +1675,9 @@
                 class is also a convenient way to startup Hibernate&mdash;see chapter 1.
             </para>
 
-        </sect2>
+        </section>
 
-        <sect2 id="configuration-j2ee-currentsession" revision="4">
+        <section id="configuration-j2ee-currentsession" revision="4">
             <title>Current Session context management with JTA</title>
 
             <para>
@@ -1699,9 +1700,9 @@
 	            demarcation with CMT is preferred.
             </para>
 
-        </sect2>
+        </section>
 
-        <sect2 id="configuration-j2ee-jmx" revision="1">
+        <section id="configuration-j2ee-jmx" revision="1">
             <title>JMX deployment</title>
 
             <para>
@@ -1772,9 +1773,9 @@
                 documentation for more information about JMX service and EJB deployment.
             </para>
 
-        </sect2>
+        </section>
 
-    </sect1>
+    </section>
 
 </chapter>
 

Modified: projects/docs/enterprise/5.0/Hibernate/Hibernate_Core/en-US/events.xml
===================================================================
--- projects/docs/enterprise/5.0/Hibernate/Hibernate_Core/en-US/events.xml	2009-12-09 02:14:33 UTC (rev 97578)
+++ projects/docs/enterprise/5.0/Hibernate/Hibernate_Core/en-US/events.xml	2009-12-09 02:25:02 UTC (rev 97579)
@@ -34,7 +34,7 @@
         functionality and the extension of Hibernate functionality.
     </para>
 
-    <sect1 id="objectstate-interceptors" revision="3">
+    <section id="objectstate-interceptors" revision="3">
         <title>Interceptors</title>
 
         <para>
@@ -160,9 +160,9 @@
     
         <programlisting><![CDATA[new Configuration().setInterceptor( new AuditInterceptor() );]]></programlisting>
 
-    </sect1>
+    </section>
 
-     <sect1 id="objectstate-events" revision="4">
+     <section id="objectstate-events" revision="4">
         <title>Event system</title>
 
         <para>
@@ -249,9 +249,9 @@
             or off during configuration.
         </para>
 
-    </sect1>
+    </section>
     
-    <sect1 id="objectstate-decl-security" revision="2">
+    <section id="objectstate-decl-security" revision="2">
         <title>Hibernate declarative security</title>
         <para>
             Usually, declarative security in Hibernate applications is managed in a session facade
@@ -286,7 +286,7 @@
             The role names are the roles understood by your JACC provider.
         </para>
        
-    </sect1>
+    </section>
 
 </chapter>
 

Modified: projects/docs/enterprise/5.0/Hibernate/Hibernate_Core/en-US/example_mappings.xml
===================================================================
--- projects/docs/enterprise/5.0/Hibernate/Hibernate_Core/en-US/example_mappings.xml	2009-12-09 02:14:33 UTC (rev 97578)
+++ projects/docs/enterprise/5.0/Hibernate/Hibernate_Core/en-US/example_mappings.xml	2009-12-09 02:25:02 UTC (rev 97579)
@@ -33,7 +33,7 @@
         This chapters explores some more complex association mappings.
     </para>
     
-    <sect1 id="example-mappings-emp">
+    <section id="example-mappings-emp">
         <title>Employer/Employee</title>
 
         <para>
@@ -144,9 +144,9 @@
 create sequence employment_id_seq
 create sequence employer_id_seq]]></programlisting>
 
-    </sect1>
+    </section>
     
-    <sect1 id="example-mappings-authorwork">
+    <section id="example-mappings-authorwork">
         <title>Author/Work</title>
 
         <para>
@@ -266,9 +266,9 @@
 alter table author_work
     add constraint author_workFK1 foreign key (work_id) references works]]></programlisting>
 
-    </sect1>
+    </section>
 
-    <sect1 id="example-mappings-customerorderproduct">
+    <section id="example-mappings-customerorderproduct">
         <title>Customer/Order/Product</title>
 
         <para>
@@ -374,9 +374,9 @@
 alter table line_items
     add constraint line_itemsFK1 foreign key (order_id) references orders]]></programlisting>
 
-    </sect1>
+    </section>
     
-    <sect1 id="misc">
+    <section id="misc">
         <title>Miscellaneous example mappings</title>
         
         <para>
@@ -387,7 +387,7 @@
         
       <!--  <<para>TODO: put words around this stuff</para>-->
         
-        <sect2 id="example-mappings-typed-onetone">
+        <section id="example-mappings-typed-onetone">
             <title>"Typed" one-to-one association</title>
 <programlisting><![CDATA[<class name="Person">
     <id name="name"/>
@@ -415,9 +415,9 @@
     <property name="state"/>
     <property name="zip"/>
 </class>]]></programlisting>
-        </sect2>
+        </section>
         
-        <sect2 id="example-mappings-composite-key">
+        <section id="example-mappings-composite-key">
             <title>Composite key example</title>
 <programlisting><![CDATA[<class name="Customer">
 
@@ -532,9 +532,9 @@
     </property>
     
 </class>]]></programlisting>
-        </sect2>
+        </section>
         
-        <sect2 id="example-mappings-composite-key-manytomany">
+        <section id="example-mappings-composite-key-manytomany">
             <title>Many-to-many with shared composite key attribute</title>
 <programlisting><![CDATA[<class name="User" table="`User`">
     <composite-id>
@@ -571,9 +571,9 @@
     </set>
 </class>
 ]]></programlisting>
-        </sect2>
+        </section>
 
-        <sect2 id="example-mappings-content-discrimination">
+        <section id="example-mappings-content-discrimination">
             <title>Content based discrimination</title>
 <programlisting><![CDATA[<class name="Person"
     discriminator-value="P">
@@ -625,9 +625,9 @@
     </subclass>
     
 </class>]]></programlisting>
-        </sect2>
+        </section>
 
-        <sect2 id="example-mappings-association-alternatekeys" revision="2">
+        <section id="example-mappings-association-alternatekeys" revision="2">
             <title>Associations on alternate keys</title>
 <programlisting><![CDATA[<class name="Person">
     
@@ -678,9 +678,9 @@
     <property name="type" not-null="true"/>
     
 </class>]]></programlisting>
-        </sect2>
+        </section>
 
-    </sect1>
+    </section>
 
 </chapter>
 

Modified: projects/docs/enterprise/5.0/Hibernate/Hibernate_Core/en-US/example_parentchild.xml
===================================================================
--- projects/docs/enterprise/5.0/Hibernate/Hibernate_Core/en-US/example_parentchild.xml	2009-12-09 02:14:33 UTC (rev 97578)
+++ projects/docs/enterprise/5.0/Hibernate/Hibernate_Core/en-US/example_parentchild.xml	2009-12-09 02:25:02 UTC (rev 97579)
@@ -41,7 +41,7 @@
         
     </para>
     
-    <sect1 id="example-parentchild-collections">
+    <section id="example-parentchild-collections">
         <title>A note about collections</title>
 
         <para>
@@ -82,9 +82,9 @@
             child is bound to the life cycle of the parent.
         </para>
     
-    </sect1>
+    </section>
 
-    <sect1 id="example-parentchild-bidir">
+    <section id="example-parentchild-bidir">
         <title>Bidirectional one-to-many</title>
 
         <para>
@@ -195,9 +195,9 @@
 session.save(c);
 session.flush();]]></programlisting>
 
-     </sect1>
+     </section>
      
-     <sect1 id="example-parentchild-cascades">
+     <section id="example-parentchild-cascades">
          <title>Cascading life cycle</title>
      
          <para>
@@ -268,9 +268,9 @@
              <literal>setParent()</literal>.
          </para>
                
-     </sect1>
+     </section>
      
-     <sect1 id="example-parentchild-update">
+     <section id="example-parentchild-update">
          <title>Cascades and <literal>unsaved-value</literal></title>
      
          <para>
@@ -366,9 +366,9 @@
 			Do not worry; in Hibernate3 you do not need to write any of this kind of code if you do not want to.
 		</para>
      -->
-     </sect1>
+     </section>
 
-     <sect1 id="example-parentchild-conclusion">
+     <section id="example-parentchild-conclusion">
          <title>Conclusion</title>
 
          <para>
@@ -383,6 +383,6 @@
              cannot own collections and they should not be the child of any entity other than the unique parent.
          </para>
      
-     </sect1>
+     </section>
      
 </chapter>

Modified: projects/docs/enterprise/5.0/Hibernate/Hibernate_Core/en-US/example_weblog.xml
===================================================================
--- projects/docs/enterprise/5.0/Hibernate/Hibernate_Core/en-US/example_weblog.xml	2009-12-09 02:14:33 UTC (rev 97578)
+++ projects/docs/enterprise/5.0/Hibernate/Hibernate_Core/en-US/example_weblog.xml	2009-12-09 02:25:02 UTC (rev 97579)
@@ -28,7 +28,7 @@
 <chapter id="example-weblog">
     <title>Example: Weblog Application</title>
 
-    <sect1 id="example-weblog-classes">
+    <section id="example-weblog-classes">
         <title>Persistent Classes</title>
 
         <para>
@@ -110,9 +110,9 @@
     }
 }]]></programlisting>
 
-    </sect1>
+    </section>
 
-    <sect1 id="example-weblog-mappings">
+    <section id="example-weblog-mappings">
         <title>Hibernate Mappings</title>
 
         <para>
@@ -203,9 +203,9 @@
 
 </hibernate-mapping>]]></programlisting>
 
-    </sect1>
+    </section>
     
-    <sect1 id="example-weblog-code">
+    <section id="example-weblog-code">
         <title>Hibernate Code</title>
 
         <para>
@@ -451,7 +451,7 @@
     }
 }]]></programlisting>
 
-    </sect1>
+    </section>
 
 </chapter>
 

Modified: projects/docs/enterprise/5.0/Hibernate/Hibernate_Core/en-US/filters.xml
===================================================================
--- projects/docs/enterprise/5.0/Hibernate/Hibernate_Core/en-US/filters.xml	2009-12-09 02:14:33 UTC (rev 97578)
+++ projects/docs/enterprise/5.0/Hibernate/Hibernate_Core/en-US/filters.xml	2009-12-09 02:25:02 UTC (rev 97579)
@@ -34,7 +34,7 @@
         enabled or disabled for a particular Hibernate session.
     </para>
 
-    <sect1 id="objectstate-filters" revision="1">
+    <section id="objectstate-filters" revision="1">
         <title>Hibernate filters</title>
 
         <para>
@@ -167,7 +167,7 @@
             particular case.
         </para>
 
-    </sect1>
+    </section>
 
 </chapter>
 

Modified: projects/docs/enterprise/5.0/Hibernate/Hibernate_Core/en-US/inheritance_mapping.xml
===================================================================
--- projects/docs/enterprise/5.0/Hibernate/Hibernate_Core/en-US/inheritance_mapping.xml	2009-12-09 02:14:33 UTC (rev 97578)
+++ projects/docs/enterprise/5.0/Hibernate/Hibernate_Core/en-US/inheritance_mapping.xml	2009-12-09 02:25:02 UTC (rev 97579)
@@ -28,7 +28,7 @@
 <chapter id="inheritance">
     <title>Inheritance mapping</title>
 
-    <sect1 id="inheritance-strategies" revision="3">
+    <section id="inheritance-strategies" revision="3">
         <title>The three strategies</title>
 
         <para>
@@ -99,7 +99,7 @@
  </hibernate-mapping>]]></programlisting>
 
 
-        <sect2 id="inheritance-tableperclass" >
+        <section id="inheritance-tableperclass" >
         <title>Table per class hierarchy</title>
 
         <para>
@@ -134,9 +134,9 @@
             cannot have <literal>NOT NULL</literal> constraints.
         </para>
         
-        </sect2>
+        </section>
 
-        <sect2 id="inheritance-tablepersubclass">
+        <section id="inheritance-tablepersubclass">
         <title>Table per subclass</title>
 
         <para>
@@ -170,9 +170,9 @@
             is actually a one-to-one association.
         </para>
 
-        </sect2>
+        </section>
 
-        <sect2 id="inheritance-tablepersubclass-discriminator" revision="2">
+        <section id="inheritance-tablepersubclass-discriminator" revision="2">
         <title>Table per subclass: using a discriminator</title>
 
         <para>
@@ -221,9 +221,9 @@
             outer join when querying the superclass.
         </para>
 
-        </sect2>
+        </section>
 
-        <sect2 id="inheritance-mixing-tableperclass-tablepersubclass">
+        <section id="inheritance-mixing-tableperclass-tablepersubclass">
         <title>Mixing table per class hierarchy with table per subclass</title>
 
         <para>
@@ -260,9 +260,9 @@
 
         <programlisting><![CDATA[<many-to-one name="payment" column="PAYMENT_ID" class="Payment"/>]]></programlisting>
     
-        </sect2>
+        </section>
 
-        <sect2 id="inheritance-tableperconcrete" revision="2">
+        <section id="inheritance-tableperconcrete" revision="2">
         <title>Table per concrete class</title>
 
         <para>
@@ -309,9 +309,9 @@
             of the superclass.
         </para>
 
-        </sect2>
+        </section>
 
-        <sect2 id="inheritance-tableperconcreate-polymorphism">
+        <section id="inheritance-tableperconcreate-polymorphism">
         <title>Table per concrete class using implicit polymorphism</title>
 
         <para>
@@ -346,13 +346,10 @@
             Notice that the <literal>Payment</literal> interface 
             is not mentioned explicitly. Also notice that properties of <literal>Payment</literal> are 
             mapped in each of the subclasses. If you want to avoid duplication, consider
-            using XML entities. For example, 
-            <literal>[ &lt;!ENTITY allproperties SYSTEM "allproperties.xml"&gt; ]</literal>
-            in the <literal>DOCTYPE</literal> declaration and
-            <programlisting language="XML" role="XML">
-<xi:include parse="text" href="extras/allproperties.xml_sample" xmlns:xi="http://www.w3.org/2001/XInclude" />
-</programlisting> 
-          <!--  <literal>&amp;allproperties;</literal> in the mapping). -->
+            using XML entities (for example, 
+            <literal>[ &lt;!ENTITY allproperties SYSTEM "allproperties.xml"> ]</literal>
+            in the <literal>DOCTYPE</literal> declaration and 
+            <literal>&amp;allproperties&semi;</literal> in the mapping).
         </para>
         
         <para>
@@ -373,9 +370,9 @@
     <column name="PAYMENT_ID"/>
 </any>]]></programlisting>
            
-        </sect2>
+        </section>
 
-        <sect2 id="inheritance-mixingpolymorphism">
+        <section id="inheritance-mixingpolymorphism">
         <title>Mixing implicit polymorphism with other inheritance mappings</title>
 
         <para>
@@ -424,11 +421,11 @@
             not instances of <literal>NonelectronicTransaction</literal>.
         </para>
         
-        </sect2>
+        </section>
 
-    </sect1>
+    </section>
 
-    <sect1 id="inheritance-limitations">
+    <section id="inheritance-limitations">
         <title>Limitations</title>
 
         <para>
@@ -569,6 +566,6 @@
            </tgroup>
         </table>-->
 
-    </sect1>
+    </section>
 
 </chapter>

Modified: projects/docs/enterprise/5.0/Hibernate/Hibernate_Core/en-US/performance.xml
===================================================================
--- projects/docs/enterprise/5.0/Hibernate/Hibernate_Core/en-US/performance.xml	2009-12-09 02:14:33 UTC (rev 97578)
+++ projects/docs/enterprise/5.0/Hibernate/Hibernate_Core/en-US/performance.xml	2009-12-09 02:25:02 UTC (rev 97579)
@@ -28,7 +28,7 @@
 <chapter id="performance">
     <title>Improving performance</title>
 
-    <sect1 id="performance-fetching" revision="2">
+    <section id="performance-fetching" revision="2">
         <title>Fetching strategies</title>
 
         <para>
@@ -139,7 +139,7 @@
             in any detached instance of a particular class.
         </para>
  
-        <sect2 id="performance-fetching-lazy">
+        <section id="performance-fetching-lazy">
             <title>Working with lazy associations</title>
             
             <para>
@@ -198,9 +198,9 @@
                 collections.
             </para>
         
-        </sect2>
+        </section>
         
-        <sect2 id="performance-fetching-custom" revision="4">
+        <section id="performance-fetching-custom" revision="4">
             <title>Tuning fetch strategies</title>
             
             <para>
@@ -278,9 +278,9 @@
                 second-level cache.
             </para>
 
-        </sect2>
+        </section>
 
-        <sect2 id="performance-fetching-proxies" revision="2">
+        <section id="performance-fetching-proxies" revision="2">
             <title>Single-ended association proxies</title>
 
             <para>
@@ -427,9 +427,9 @@
                 will result in immediate proxy initialization.
             </para>
 
-        </sect2>
+        </section>
 
-        <sect2 id="performance-fetching-initialization" revision="1">
+        <section id="performance-fetching-initialization" revision="1">
             <title>Initializing collections and proxies</title>
 
             <para>
@@ -521,9 +521,9 @@
 
             <programlisting><![CDATA[s.createFilter( lazyCollection, "").setFirstResult(0).setMaxResults(10).list();]]></programlisting>
 
-        </sect2>
+        </section>
 
-        <sect2 id="performance-fetching-batch">
+        <section id="performance-fetching-batch">
             <title>Using batch fetching</title>
 
             <para>
@@ -575,9 +575,9 @@
                 <emphasis>materialized path</emphasis> might be a better option for read-mostly trees.
             </para>
 
-        </sect2>
+        </section>
 
-        <sect2 id="performance-fetching-subselect">
+        <section id="performance-fetching-subselect">
             <title>Using subselect fetching</title>
 
             <para>
@@ -588,9 +588,9 @@
             
             <!-- TODO: Write more about this -->
 
-        </sect2>
+        </section>
         
-        <sect2 id="performance-fetching-lazyproperties">
+        <section id="performance-fetching-lazyproperties">
             <title>Using lazy property fetching</title>
 
             <para>
@@ -652,11 +652,11 @@
                 properties</literal> in HQL.
             </para>
 
-        </sect2>
+        </section>
 
-    </sect1>
+    </section>
 
-    <sect1 id="performance-cache" revision="1">
+    <section id="performance-cache" revision="1">
         <title>The Second Level Cache</title>
 
         <para>
@@ -741,7 +741,7 @@
             </tgroup>
         </table>
 
-        <sect2 id="performance-cache-mapping" revision="2">
+        <section id="performance-cache-mapping" revision="2">
             <title>Cache mappings</title>
 
             <para>
@@ -797,9 +797,9 @@
                 The <literal>usage</literal> attribute specifies a <emphasis>cache concurrency strategy</emphasis>.
             </para>
 
-        </sect2>
+        </section>
 
-        <sect2 id="performance-cache-readonly">
+        <section id="performance-cache-readonly">
             <title>Strategy: read only</title>
 
             <para>
@@ -813,10 +813,10 @@
     ....
 </class>]]></programlisting>
 
-        </sect2>
+        </section>
 
 
-        <sect2 id="performance-cache-readwrite">
+        <section id="performance-cache-readwrite">
             <title>Strategy: read/write</title>
 
             <para>
@@ -839,9 +839,9 @@
     </set>
 </class>]]></programlisting>
 
-        </sect2>
+        </section>
 
-        <sect2 id="performance-cache-nonstrict">
+        <section id="performance-cache-nonstrict">
             <title>Strategy: nonstrict read/write</title>
 
             <para>
@@ -853,9 +853,9 @@
                 <literal>Session.close()</literal> or <literal>Session.disconnect()</literal> is called.
             </para>
 
-        </sect2>
+        </section>
 
-        <sect2 id="performance-cache-transactional">
+        <section id="performance-cache-transactional">
             <title>Strategy: transactional</title>
 
             <para>
@@ -864,9 +864,9 @@
                 specify <literal>hibernate.transaction.manager_lookup_class</literal>. 
             </para>
 
-        </sect2>
+        </section>
 
-        <sect2 id="performance-cache-compat-matrix">
+        <section id="performance-cache-compat-matrix">
             <title>Cache-provider/concurrency-strategy compatibility</title>
 
             <important>
@@ -943,11 +943,11 @@
                 </tgroup>
             </table>
 
-        </sect2>
+        </section>
 
-    </sect1>
+    </section>
 
-    <sect1 id="performance-sessioncache" revision="2">
+    <section id="performance-sessioncache" revision="2">
         <title>Managing the caches</title>
 
         <para>
@@ -1041,9 +1041,9 @@
         <programlisting><![CDATA[hibernate.generate_statistics true
 hibernate.cache.use_structured_entries true]]></programlisting>       
                 
-    </sect1>
+    </section>
     
-    <sect1 id="performance-querycache" revision="1">
+    <section id="performance-querycache" revision="1">
         <title>The Query Cache</title>
 
         <para>
@@ -1092,9 +1092,9 @@
             a query cache region via <literal>SessionFactory.evictQueries()</literal>.
         </para>
 
-    </sect1>
+    </section>
 
-    <sect1 id="performance-collections">
+    <section id="performance-collections">
         <title>Understanding Collection performance</title>
 
         <para>
@@ -1103,7 +1103,7 @@
             collections at runtime.
         </para>
 
-        <sect2 id="performance-collections-taxonomy">
+        <section id="performance-collections-taxonomy">
             <title>Taxonomy</title>
 
             <para>Hibernate defines three basic kinds of collections:</para>
@@ -1180,9 +1180,9 @@
                 collection.
             </para>
 
-        </sect2>
+        </section>
 
-        <sect2 id="performance-collections-mostefficientupdate">
+        <section id="performance-collections-mostefficientupdate">
             <title>Lists, maps, idbags and sets are the most efficient collections to update</title>
 
             <para>
@@ -1215,9 +1215,9 @@
                 considerations of collection update performance simply do not apply.
             </para>
 
-        </sect2>
+        </section>
 
-        <sect2 id="performance-collections-mostefficentinverse">
+        <section id="performance-collections-mostefficentinverse">
             <title>Bags and lists are the most efficient inverse collections</title>
 
             <para>
@@ -1236,9 +1236,9 @@
 p.getChildren().add(c);  //no need to fetch the collection!
 sess.flush();]]></programlisting>
 
-        </sect2>
+        </section>
 
-        <sect2 id="performance-collections-oneshotdelete">
+        <section id="performance-collections-oneshotdelete">
             <title>One shot delete</title>
 
             <para>
@@ -1285,11 +1285,11 @@
                 One-shot-delete does not apply to collections mapped <literal>inverse="true"</literal>.
             </para>
 
-        </sect2>
+        </section>
 
-    </sect1>
+    </section>
 
-    <sect1 id="performance-monitoring" revision="1">
+    <section id="performance-monitoring" revision="1">
         <title>Monitoring performance</title>
 
         <para>
@@ -1298,7 +1298,7 @@
             Statistics in Hibernate are available per <literal>SessionFactory</literal>.
         </para>
 
-        <sect2 id="performance-monitoring-sf" revision="2">
+        <section id="performance-monitoring-sf" revision="2">
             <title>Monitoring a SessionFactory</title>
 
             <para>
@@ -1364,9 +1364,9 @@
                 method.
             </para>
 
-        </sect2>
+        </section>
 
-        <sect2 id="performance-monitoring-metrics" revision="1">
+        <section id="performance-monitoring-metrics" revision="1">
             <title>Metrics</title>
 
             <para>
@@ -1437,8 +1437,8 @@
                 <literal>getSecondLevelCacheRegionNames()</literal>.
             </para>
 
-        </sect2>
+        </section>
 
-    </sect1>
+    </section>
 
 </chapter>

Modified: projects/docs/enterprise/5.0/Hibernate/Hibernate_Core/en-US/persistent_classes.xml
===================================================================
--- projects/docs/enterprise/5.0/Hibernate/Hibernate_Core/en-US/persistent_classes.xml	2009-12-09 02:14:33 UTC (rev 97578)
+++ projects/docs/enterprise/5.0/Hibernate/Hibernate_Core/en-US/persistent_classes.xml	2009-12-09 02:25:02 UTC (rev 97579)
@@ -43,7 +43,7 @@
         ways (using trees of <literal>Map</literal> instances, for example).
     </para>
 
-    <sect1 id="persistent-classes-pojo">
+    <section id="persistent-classes-pojo">
         <title>A simple POJO example</title>
 
         <para>
@@ -134,7 +134,7 @@
         </para>
 
 
-        <sect2 id="persistent-classes-pojo-constructor" revision="1">
+        <section id="persistent-classes-pojo-constructor" revision="1">
             <title>Implement a no-argument constructor</title>
 
             <para>
@@ -144,9 +144,9 @@
                 default constructor with at least <emphasis>package</emphasis> visibility for runtime proxy 
                 generation in Hibernate.
             </para>
-        </sect2>
+        </section>
 
-        <sect2 id="persistent-classes-pojo-identifier" revision="2">
+        <section id="persistent-classes-pojo-identifier" revision="2">
             <title>Provide an identifier property (optional)</title>
 
             <para>
@@ -191,9 +191,9 @@
                 We recommend that you declare consistently-named identifier properties on persistent
                 classes and that you use a nullable (i.e., non-primitive) type.
             </para>
-        </sect2>
+        </section>
 
-        <sect2 id="persistent-classes-pojo-final">
+        <section id="persistent-classes-pojo-final">
             <title>Prefer non-final classes (optional)</title>
             <para>
                 A central feature of Hibernate, <emphasis>proxies</emphasis>, depends upon the
@@ -210,9 +210,9 @@
                 non-final classes. If you want to use a class with a <literal>public final</literal> 
                 method, you must explicitly disable proxying by setting <literal>lazy="false"</literal>.
             </para>
-        </sect2>
+        </section>
         
-        <sect2 id="persistent-classes-pojo-accessors" revision="2">
+        <section id="persistent-classes-pojo-accessors" revision="2">
             <title>Declare accessors and mutators for persistent fields (optional)</title>
 
             <para>
@@ -231,11 +231,11 @@
                 <literal>private</literal> get / set pair.
             </para>
 
-        </sect2>
+        </section>
 
-    </sect1>
+    </section>
 
-    <sect1 id="persistent-classes-inheritance">
+    <section id="persistent-classes-inheritance">
         <title>Implementing inheritance</title>
 
         <para>
@@ -255,9 +255,9 @@
                 this.name=name;
         }
 }]]></programlisting>
-    </sect1>
+    </section>
 
-    <sect1 id="persistent-classes-equalshashcode" revision="1">
+    <section id="persistent-classes-equalshashcode" revision="1">
         <title>Implementing <literal>equals()</literal> and <literal>hashCode()</literal></title>
 
         <para>
@@ -340,9 +340,9 @@
             candidates for a business key.
         </para>
 
-    </sect1>
+    </section>
 
-    <sect1 id="persistent-classes-dynamicmodels">
+    <section id="persistent-classes-dynamicmodels">
         <title>Dynamic models</title>
 
         
@@ -485,9 +485,9 @@
             in <xref linkend="xml"/>.
         </para>
 
-    </sect1>
+    </section>
 
-    <sect1 id="persistent-classes-tuplizers" revision="1">
+    <section id="persistent-classes-tuplizers" revision="1">
         <title>Tuplizers</title>
 
         <para>
@@ -554,10 +554,10 @@
 }]]></programlisting>
 
 
-    </sect1>
+    </section>
 
 
-    <sect1 id="persistent-classes-entity-name-resolver" revision="0">
+    <section id="persistent-classes-entity-name-resolver" revision="0">
         <title>EntityNameResolvers</title>
 
         <para>
@@ -701,14 +701,14 @@
                 </listitem>
             </orderedlist>
         </para>
-    </sect1>
+    </section>
 
-    <!--<sect1 id="persistent-classes-extensions">
+    <!--<section id="persistent-classes-extensions">
         <title>Extensions</title>
         <para>
             TODO: Document user-extension framework in the property and proxy packages
         </para>
-    </sect1>-->
+    </section>-->
 
 </chapter>
 

Modified: projects/docs/enterprise/5.0/Hibernate/Hibernate_Core/en-US/portability.xml
===================================================================
--- projects/docs/enterprise/5.0/Hibernate/Hibernate_Core/en-US/portability.xml	2009-12-09 02:14:33 UTC (rev 97578)
+++ projects/docs/enterprise/5.0/Hibernate/Hibernate_Core/en-US/portability.xml	2009-12-09 02:25:02 UTC (rev 97579)
@@ -25,7 +25,7 @@
 <chapter id="portability">
     <title>Database Portability Considerations</title>
 
-    <sect1 id="portability-basics">
+    <section id="portability-basics">
         <title>Portability Basics</title>
 
         <para>
@@ -36,9 +36,9 @@
             the exact scenario, the basic idea is that you want Hibernate to help you run against any number
             of databases without changes to your code, and ideally without any changes to the mapping metadata.
         </para>
-    </sect1>
+    </section>
 
-    <sect1 id="portability-dialect">
+    <section id="portability-dialect">
         <title>Dialect</title>
 
         <para>
@@ -49,9 +49,9 @@
             of dialects for many of the most popular databases.  If you find that your particular database is
             not among them, it is not terribly difficult to write your own.
         </para>
-    </sect1>
+    </section>
 
-    <sect1 id="portability-dialectresolver">
+    <section id="portability-dialectresolver">
         <title>Dialect resolution</title>
 
         <para>
@@ -92,9 +92,9 @@
             <constant>DIALECT_RESOLVERS</constant> constant on
             <classname>org.hibernate.cfg.Environment</classname>).
         </para>
-    </sect1>
+    </section>
 
-    <sect1 id="portability-idgen">
+    <section id="portability-idgen">
         <title>Identifier generation</title>
 
         <para>
@@ -146,9 +146,9 @@
             <classname>org.hibernate.id.enhanced.SequenceStyleGenerator</classname> mimics the behavior of
             a sequence on databases which do not support sequences by using a table.
         </para>
-    </sect1>
+    </section>
 
-    <sect1 id="portability-functions">
+    <section id="portability-functions">
         <title>Database functions</title>
 
         <warning>
@@ -177,9 +177,9 @@
                 </para>
             </important>
         </para>
-    </sect1>
+    </section>
 
-<!--    <sect1 id="portability-types">
+<!--    <section id="portability-types">
         <title>Type mappings</title>
 
         <para>
@@ -188,13 +188,13 @@
 
         
             todo :
-        <sect2 id="portability-types-lobs">
+        <section id="portability-types-lobs">
             <title>BLOB/CLOB mappings</title>
-        </sect2>
+        </section>
 
-        <sect2 id="portability-types-bool">
+        <section id="portability-types-bool">
             <title>Boolean mappings</title>
-        </sect2>
+        </section>
         
-    </sect1> -->
+    </section> -->
 </chapter>

Modified: projects/docs/enterprise/5.0/Hibernate/Hibernate_Core/en-US/query_criteria.xml
===================================================================
--- projects/docs/enterprise/5.0/Hibernate/Hibernate_Core/en-US/query_criteria.xml	2009-12-09 02:14:33 UTC (rev 97578)
+++ projects/docs/enterprise/5.0/Hibernate/Hibernate_Core/en-US/query_criteria.xml	2009-12-09 02:25:02 UTC (rev 97579)
@@ -32,7 +32,7 @@
         Hibernate features an intuitive, extensible criteria query API.
     </para>
     
-    <sect1 id="querycriteria-creating">
+    <section id="querycriteria-creating">
         <title>Creating a <literal>Criteria</literal> instance</title>
 
         <para>
@@ -45,9 +45,9 @@
 crit.setMaxResults(50);
 List cats = crit.list();]]></programlisting>
 
-    </sect1>
+    </section>
      
-    <sect1 id="querycriteria-narrowing">
+    <section id="querycriteria-narrowing">
         <title>Narrowing the result set</title>
 
         <para>
@@ -117,9 +117,9 @@
     .add( Property.forName("name").in( new String[] { "Fritz", "Izi", "Pk" } ) )
     .list();]]></programlisting>
     
-   </sect1>
+   </section>
      
-    <sect1 id="querycriteria-ordering">
+    <section id="querycriteria-ordering">
         <title>Ordering the results</title>
 
         <para>
@@ -140,9 +140,9 @@
     .setMaxResults(50)
     .list();]]></programlisting>
     
-    </sect1>
+    </section>
     
-    <sect1 id="querycriteria-associations" revision="2">
+    <section id="querycriteria-associations" revision="2">
         <title>Associations</title>
 
         <para>
@@ -196,9 +196,9 @@
     Cat kitten = (Cat) map.get("kt");
 }]]></programlisting>
 
-    </sect1>
+    </section>
     
-    <sect1 id="querycriteria-dynamicfetching" revision="1">
+    <section id="querycriteria-dynamicfetching" revision="1">
         <title>Dynamic association fetching</title>
 
         <para>
@@ -217,9 +217,9 @@
             by outer join. See <xref linkend="performance-fetching"/> for more information.
         </para>
     
-    </sect1>
+    </section>
      
-    <sect1 id="querycriteria-examples">
+    <section id="querycriteria-examples">
         <title>Example queries</title>
 
         <para>
@@ -262,9 +262,9 @@
         .add( Example.create( cat.getMate() ) )
     .list();]]></programlisting>
     
-    </sect1>
+    </section>
     
-    <sect1 id="querycriteria-projection">
+    <section id="querycriteria-projection">
         <title>Projections, aggregation and grouping</title>
         <para>
             The class <literal>org.hibernate.criterion.Projections</literal> is a
@@ -356,9 +356,9 @@
     .addOrder( Order.desc("avgWeight") )
     .list();]]></programlisting>
     
-    </sect1>
+    </section>
     
-    <sect1 id="querycriteria-detachedqueries">
+    <section id="querycriteria-detachedqueries">
         <title>Detached queries and subqueries</title>
         <para>
             The <literal>DetachedCriteria</literal> class allows you to create a query outside the scope 
@@ -403,13 +403,13 @@
     .add( Property.forName("weight").gt(avgWeightForSex) )
     .list();]]></programlisting>
 
-    </sect1>
+    </section>
 
         <!--TODO: ResultSetTransformer + aliasing. AliasToBeanTransformer allow returning arbitrary 
                   user objects - similar to setResultClass in JDO2. General use of ResultTransformer 
                   could also be explained. -->
                
-    <sect1 id="query-criteria-naturalid">
+    <section id="query-criteria-naturalid">
         <title>Queries by natural identifier</title>
         
         <para>
@@ -455,6 +455,6 @@
     ).setCacheable(true)
     .uniqueResult();]]></programlisting>
             
-    </sect1>
+    </section>
     
 </chapter>

Modified: projects/docs/enterprise/5.0/Hibernate/Hibernate_Core/en-US/query_sql.xml
===================================================================
--- projects/docs/enterprise/5.0/Hibernate/Hibernate_Core/en-US/query_sql.xml	2009-12-09 02:14:33 UTC (rev 97578)
+++ projects/docs/enterprise/5.0/Hibernate/Hibernate_Core/en-US/query_sql.xml	2009-12-09 02:25:02 UTC (rev 97579)
@@ -37,7 +37,7 @@
   <para>Hibernate3 allows you to specify handwritten SQL, including stored
   procedures, for all create, update, delete, and load operations.</para>
 
-  <sect1 id="querysql-creating" revision="4">
+  <section id="querysql-creating" revision="4">
     <title>Using a <literal>SQLQuery</literal></title>
 
     <para>Execution of native SQL queries is controlled via the
@@ -45,7 +45,7 @@
     <literal>Session.createSQLQuery()</literal>. The following sections describe how
     to use this API for querying.</para>
 
-    <sect2>
+    <section>
       <title>Scalar queries</title>
 
       <para>The most basic SQL query is to get a list of scalars
@@ -108,9 +108,9 @@
       not mapped, or does not result in the expected type, it is possible to
       customize it via calls to <literal>registerHibernateType</literal> in
       the Dialect.</para>
-    </sect2>
+    </section>
 
-    <sect2>
+    <section>
       <title>Entity queries</title>
 
       <para>The above queries were all about returning scalar values,
@@ -150,9 +150,9 @@
 ]]></programlisting>
 
       <para>This will allow cat.getDog() to function properly.</para>
-    </sect2>
+    </section>
 
-    <sect2>
+    <section>
       <title>Handling associations and collections</title>
 
       <para>It is possible to eagerly join in the <literal>Dog</literal> to
@@ -183,9 +183,9 @@
             enhance the sql queries to make them usable in Hibernate. Problems can arise when returning
             multiple entities of the same type or when the default alias/column names are not enough.
         </para>
-    </sect2>
+    </section>
 
-    <sect2>
+    <section>
       <title>Returning multiple entities</title>
 
       <para>Until now, the result set column names are assumed to be the same
@@ -251,7 +251,7 @@
         .addEntity("mother", Cat.class).list()
 ]]></programlisting>
 
-      <sect3 id="querysql-aliasreferences" revision="2">
+      <section id="querysql-aliasreferences" revision="2">
         <title>Alias and property references</title>
 
         <para>In most cases the above alias injection is needed. For
@@ -368,10 +368,10 @@
             </tbody>
           </tgroup>
         </table>
-      </sect3>
-    </sect2>
+      </section>
+    </section>
 
-    <sect2>
+    <section>
       <title>Returning non-managed entities</title>
 
       <para>It is possible to apply a ResultTransformer to native SQL queries, allowing it to return non-managed entities.</para>
@@ -395,17 +395,17 @@
         The above query will return a list of <literal>CatDTO</literal> which has been instantiated and injected the values of NAME and BIRTHNAME into its corresponding
         properties or fields.
         </para>
-    </sect2>
+    </section>
 
-    <sect2>
+    <section>
       <title>Handling inheritance</title>
 
       <para>Native SQL queries which query for entities that are mapped as part
       of an inheritance must include all properties for the baseclass and all
       its subclasses.</para>
-    </sect2>
+    </section>
 
-    <sect2>
+    <section>
       <title>Parameters</title>
 
       <para>Native SQL queries support positional as well as named
@@ -416,13 +416,13 @@
      
 query = sess.createSQLQuery("SELECT * FROM CATS WHERE NAME like :name").addEntity(Cat.class);
 List pusList = query.setString("name", "Pus%").list();          ]]></programlisting>
-    </sect2>
+    </section>
     
     
         
-  </sect1>
+  </section>
 
-  <sect1 id="querysql-namedqueries" revision="3">
+  <section id="querysql-namedqueries" revision="3">
     <title>Named SQL queries</title>
 
     <para>Named SQL queries can be defined in the mapping document and called
@@ -509,7 +509,7 @@
     .setResultSetMapping("catAndKitten")
     .list();]]></programlisting>
 
-    <sect2 id="propertyresults">
+    <section id="propertyresults">
       <title>Using return-property to explicitly specify column/alias
       names</title>
 
@@ -560,9 +560,9 @@
       <para>If your mapping has a discriminator you must use
       <literal>&lt;return-discriminator&gt;</literal> to specify the
       discriminator column.</para>
-    </sect2>
+    </section>
 
-    <sect2 id="sp_query" revision="1">
+    <section id="sp_query" revision="1">
       <title>Using stored procedures for querying</title>
 
       <para>Hibernate3 provides support for queries via stored procedures
@@ -607,7 +607,7 @@
       entities. <literal>&lt;return-join&gt;</literal> and
       <literal>&lt;load-collection&gt;</literal> are not supported.</para>
 
-      <sect3 id="querysql-limits-storedprocedures" revision="1">
+      <section id="querysql-limits-storedprocedures" revision="1">
         <title>Rules/limitations for using stored procedures</title>
 
         <para>You cannot use stored procedures with Hibernate unless you follow some procedure/function
@@ -655,11 +655,11 @@
             requirement.</para>
           </listitem>
         </itemizedlist>
-      </sect3>
-    </sect2>
-  </sect1>
+      </section>
+    </section>
+  </section>
 
-  <sect1 id="querysql-cud">
+  <section id="querysql-cud">
     <title>Custom SQL for create, update and delete</title>
 
     <para>Hibernate3 can use custom SQL statements for create, update, and
@@ -726,9 +726,9 @@
     return SQL%ROWCOUNT;
 
 END updatePerson;]]></programlisting>
-  </sect1>
+  </section>
 
-  <sect1 id="querysql-load">
+  <section id="querysql-load">
     <title>Custom SQL for loading</title>
 
     <para>You can also declare your own SQL (or HQL) queries for entity
@@ -783,5 +783,5 @@
         ON pers.ID = emp.PERSON_ID
     WHERE ID=?
 </sql-query>]]></programlisting>
-  </sect1>
+  </section>
 </chapter>

Modified: projects/docs/enterprise/5.0/Hibernate/Hibernate_Core/en-US/session_api.xml
===================================================================
--- projects/docs/enterprise/5.0/Hibernate/Hibernate_Core/en-US/session_api.xml	2009-12-09 02:14:33 UTC (rev 97578)
+++ projects/docs/enterprise/5.0/Hibernate/Hibernate_Core/en-US/session_api.xml	2009-12-09 02:25:02 UTC (rev 97579)
@@ -44,7 +44,7 @@
         relevant for the application developer when tuning the performance of the system.
     </para>
 
-    <sect1 id="objectstate-overview">
+    <section id="objectstate-overview">
         <title>Hibernate object states</title>
 
         <para>
@@ -95,9 +95,9 @@
             trigger a transition) in more detail.
         </para>
 
-    </sect1>
+    </section>
 
-    <sect1 id="objectstate-makingpersistent" revision="1">
+    <section id="objectstate-makingpersistent" revision="1">
         <title>Making objects persistent</title>
 
         <para>
@@ -177,9 +177,9 @@
             Transitive persistence is discussed later in this chapter.
         </para>
         
-    </sect1>
+    </section>
 
-    <sect1 id="objectstate-loading">
+    <section id="objectstate-loading">
         <title>Loading an object</title>
 
         <para>
@@ -259,9 +259,9 @@
             <xref linkend="performance-fetching"/>.
         </para>
 
-    </sect1>
+    </section>
 
-    <sect1 id="objectstate-querying" revision="1">
+    <section id="objectstate-querying" revision="1">
         <title>Querying</title>
 
         <para>
@@ -273,7 +273,7 @@
             optional support from Hibernate for result set conversion into objects.
         </para>
 
-        <sect2 id="objectstate-querying-executing" revision="1">
+        <section id="objectstate-querying-executing" revision="1">
             <title>Executing queries</title>
 
             <para>
@@ -318,7 +318,7 @@
                 these duplicates through a <literal>Set</literal>.
             </para>
 
-            <sect3 id="objectstate-querying-executing-iterate">
+            <section id="objectstate-querying-executing-iterate">
                 <title>Iterating results</title>
 
                 <para>
@@ -345,9 +345,9 @@
         break;
     }
 }]]></programlisting>
-            </sect3>
+            </section>
             
-            <sect3 id="objectstate-querying-executing-tuples">
+            <section id="objectstate-querying-executing-tuples">
                 <title>Queries that return tuples</title>
 
                 <para>
@@ -367,9 +367,9 @@
     ....
 }]]></programlisting>
 
-            </sect3>
+            </section>
 
-            <sect3 id="objectstate-querying-executing-scalar" revision="1">
+            <section id="objectstate-querying-executing-scalar" revision="1">
                 <title>Scalar results</title>
 
                 <para>
@@ -392,9 +392,9 @@
     .....
 }]]></programlisting>
 
-            </sect3>
+            </section>
 
-            <sect3 id="objectstate-querying-executing-parameters">
+            <section id="objectstate-querying-executing-parameters">
                 <title>Bind parameters</title>
 
                 <para>
@@ -442,9 +442,9 @@
 q.setParameterList("namesList", names);
 List cats = q.list();]]></programlisting>
 
-            </sect3>
+            </section>
 
-            <sect3 id="objectstate-querying-executing-pagination">
+            <section id="objectstate-querying-executing-pagination">
                 <title>Pagination</title>
 
                 <para>
@@ -463,9 +463,9 @@
                     SQL of your DBMS.
                 </para>
 
-            </sect3>
+            </section>
 
-            <sect3 id="objectstate-querying-executing-scrolling">
+            <section id="objectstate-querying-executing-scrolling">
                 <title>Scrollable iteration</title>
 
                 <para>
@@ -503,9 +503,9 @@
                     if you need offline pagination functionality.
                 </para>
 
-            </sect3>
+            </section>
 
-            <sect3 id="objectstate-querying-executing-named" revision="1">
+            <section id="objectstate-querying-executing-named" revision="1">
                 <title>Externalizing named queries</title>
 
                 <para>
@@ -543,11 +543,11 @@
                     <literal>eg.Cat.ByNameAndMaximumWeight</literal>.
                 </para>
 
-            </sect3>
+            </section>
 
-        </sect2>
+        </section>
 
-        <sect2 id="objectstate-filtering" revision="1">
+        <section id="objectstate-filtering" revision="1">
             <title>Filtering collections</title>
             <para>
                 A collection <emphasis>filter</emphasis> is a special type of query that can be applied to
@@ -588,9 +588,9 @@
     .setFirstResult(0).setMaxResults(10)
     .list();]]></programlisting>
 
-        </sect2>
+        </section>
 
-        <sect2 id="objecstate-querying-criteria" revision="1">
+        <section id="objecstate-querying-criteria" revision="1">
            <title>Criteria queries</title>
 
             <para>
@@ -609,9 +609,9 @@
                 API are discussed in more detail in <xref linkend="querycriteria"/>.
             </para>
 
-        </sect2>
+        </section>
 
-        <sect2 id="objectstate-querying-nativesql" revision="2">
+        <section id="objectstate-querying-nativesql" revision="2">
             <title>Queries in native SQL</title>
 
             <para>
@@ -639,11 +639,11 @@
                 <xref linkend="querysql"/>.
             </para>
 
-        </sect2>
+        </section>
 
-    </sect1>
+    </section>
 
-    <sect1 id="objectstate-modifying" revision="1">
+    <section id="objectstate-modifying" revision="1">
         <title>Modifying persistent objects</title>
 
         <para>
@@ -682,9 +682,9 @@
         </para>
 </important>
 
-    </sect1>
+    </section>
 
-    <sect1 id="objectstate-detached" revision="2">
+    <section id="objectstate-detached" revision="2">
         <title>Modifying detached objects</title>
 
         <para>
@@ -757,9 +757,9 @@
             Other models for long units of work are discussed in <xref linkend="transactions-optimistic"/>.
         </para>
 
-    </sect1>
+    </section>
 
-    <sect1 id="objectstate-saveorupdate">
+    <section id="objectstate-saveorupdate">
         <title>Automatic state detection</title>
 
         <para>
@@ -895,9 +895,9 @@
             </listitem>
         </itemizedlist>
 
-    </sect1>
+    </section>
 
-    <sect1 id="objectstate-deleting" revision="1">
+    <section id="objectstate-deleting" revision="1">
         <title>Deleting persistent objects</title>
 
         <para>
@@ -917,9 +917,9 @@
             children.
         </para>
 
-    </sect1>
+    </section>
     
-    <sect1 id="objectstate-replicating" revision="1">
+    <section id="objectstate-replicating" revision="1">
     	<title>Replicating object between two different datastores</title>
     	
     	<para>
@@ -981,9 +981,9 @@
             rolling back changes made during non-ACID transactions and more.
         </para>
     	
-    </sect1>
+    </section>
 
-    <sect1 id="objectstate-flushing">
+    <section id="objectstate-flushing">
         <title>Flushing the Session</title>
 
         <para>
@@ -1094,9 +1094,9 @@
             behavior, we discuss it in <xref linkend="transactions"/>.
         </para>
 
-    </sect1>
+    </section>
 
-    <sect1 id="objectstate-transitive" revision="1">
+    <section id="objectstate-transitive" revision="1">
         <title>Transitive persistence</title>
 
         <para>
@@ -1248,9 +1248,9 @@
             <literal>Session</literal>.
         </para>
 
-    </sect1>
+    </section>
 
-    <sect1 id="objectstate-metadata">
+    <section id="objectstate-metadata">
         <title>Using metadata</title>
 
         <para>
@@ -1282,7 +1282,7 @@
     }
 }]]></programlisting>
         
-    </sect1>
+    </section>
 
 </chapter>
 

Modified: projects/docs/enterprise/5.0/Hibernate/Hibernate_Core/en-US/transactions.xml
===================================================================
--- projects/docs/enterprise/5.0/Hibernate/Hibernate_Core/en-US/transactions.xml	2009-12-09 02:14:33 UTC (rev 97578)
+++ projects/docs/enterprise/5.0/Hibernate/Hibernate_Core/en-US/transactions.xml	2009-12-09 02:25:02 UTC (rev 97579)
@@ -56,7 +56,7 @@
         <literal>Session</literal>, as well as database transactions and long conversations.
     </para>
 
-    <sect1 id="transactions-basics" revision="1">
+    <section id="transactions-basics" revision="1">
         <title>Session and transaction scopes</title>
 
         <para>
@@ -88,7 +88,7 @@
             database transaction boundaries? These questions are addressed in the following sections.
         </para>
 
-        <sect2 id="transactions-basics-uow" revision="1">
+        <section id="transactions-basics-uow" revision="1">
             <title>Unit of work</title>
 
             <para>
@@ -167,9 +167,9 @@
                 this <emphasis>Open Session in View</emphasis> pattern.
              </para>
 
-        </sect2>
+        </section>
 
-        <sect2 id="transactions-basics-apptx" revision="1">
+        <section id="transactions-basics-apptx" revision="1">
             <title>Long conversations</title>
 
             <para>
@@ -261,9 +261,9 @@
                 These disadvantages are discussed later in this chapter in the context of optimistic concurrency control.
             </para>
 
-        </sect2>
+        </section>
 
-        <sect2 id="transactions-basics-identity">
+        <section id="transactions-basics-identity">
             <title>Considering object identity</title>
 
             <para>
@@ -328,9 +328,9 @@
                 a Hibernate issue, but simply how Java object identity and equality has to be implemented.
             </para>
 
-        </sect2>
+        </section>
 
-        <sect2 id="transactions-basics-issues">
+        <section id="transactions-basics-issues">
             <title>Common issues</title>
 
              <para>
@@ -378,11 +378,11 @@
                 </listitem>
             </itemizedlist>
 
-        </sect2>
+        </section>
 
-    </sect1>
+    </section>
 
-    <sect1 id="transactions-demarcation">
+    <section id="transactions-demarcation">
         <title>Database transaction demarcation</title>
 
         <para>
@@ -447,7 +447,7 @@
         </para>
 
 
-        <sect2 id="transactions-demarcation-nonmanaged" revision="2">
+        <section id="transactions-demarcation-nonmanaged" revision="2">
             <title>Non-managed environment</title>
 
             <para>
@@ -520,9 +520,9 @@
                 <literal>hibernate.current_session_context_class</literal>.
             </para>
             
-        </sect2>
+        </section>
 
-        <sect2 id="transactions-demarcation-jta" revision="3">
+        <section id="transactions-demarcation-jta" revision="3">
             <title>Using JTA</title>
 
             <para>
@@ -623,9 +623,9 @@
                 <literal>iterate()</literal> from the JTA or CMT code.)
             </para>
 
-        </sect2>
+        </section>
 
-        <sect2 id="transactions-demarcation-exceptions">
+        <section id="transactions-demarcation-exceptions">
             <title>Exception handling</title>
 
             <para>
@@ -698,9 +698,9 @@
                 </listitem>
             </itemizedlist>
 
-        </sect2>
+        </section>
 
-        <sect2 id="transactions-demarcation-timeout">
+        <section id="transactions-demarcation-timeout">
             <title>Transaction timeout</title>
 
             <para>
@@ -741,11 +741,11 @@
                 where transaction timeouts must be defined declaratively.
             </para>
             
-        </sect2>
+        </section>
         
-    </sect1>
+    </section>
 
-    <sect1 id="transactions-optimistic">
+    <section id="transactions-optimistic">
         <title>Optimistic concurrency control</title>
 
         <para>
@@ -758,7 +758,7 @@
             also has the benefit of preventing lost updates in single database transactions.
         </para>
 
-        <sect2 id="transactions-optimistic-manual">
+        <section id="transactions-optimistic-manual">
             <title>Application version checking</title>
 
             <para>
@@ -805,9 +805,9 @@
                 as the design paradigm.
             </para>
 
-        </sect2>
+        </section>
 
-        <sect2 id="transactions-optimistic-longsession">
+        <section id="transactions-optimistic-longsession">
             <title>Extended session and automatic versioning</title>
 
             <para>
@@ -883,9 +883,9 @@
                 for this. See the Hibernate Wiki for examples.
             </para>
 
-        </sect2>
+        </section>
 
-        <sect2 id="transactions-optimistic-detached">
+        <section id="transactions-optimistic-detached">
             <title>Detached objects and automatic versioning</title>
 
             <para>
@@ -915,9 +915,9 @@
                 caches) if you are sure that the object has not been modified.
             </para>
 
-        </sect2>
+        </section>
 
-        <sect2 id="transactions-optimistic-customizing">
+        <section id="transactions-optimistic-customizing">
             <title>Customizing automatic versioning</title>
 
             <para>
@@ -958,11 +958,11 @@
                 the instance to ensure that changes did occur before updating the row.
             </para>
 
-        </sect2>
+        </section>
 
-    </sect1>
+    </section>
 
-    <sect1 id="transactions-locking">
+    <section id="transactions-locking">
         <title>Pessimistic locking</title>
 
         <para>
@@ -1062,9 +1062,9 @@
             portable.
         </para>
 
-    </sect1>
+    </section>
 
-    <sect1 id="transactions-connection-release">
+    <section id="transactions-connection-release">
         <title>Connection release modes</title>
 
         <para>
@@ -1147,7 +1147,7 @@
             </listitem>
         </itemizedlist>
 
-    </sect1>
+    </section>
 
 </chapter>
 

Modified: projects/docs/enterprise/5.0/Hibernate/Hibernate_Core/en-US/tutorial.xml
===================================================================
--- projects/docs/enterprise/5.0/Hibernate/Hibernate_Core/en-US/tutorial.xml	2009-12-09 02:14:33 UTC (rev 97578)
+++ projects/docs/enterprise/5.0/Hibernate/Hibernate_Core/en-US/tutorial.xml	2009-12-09 02:25:02 UTC (rev 97579)
@@ -55,7 +55,7 @@
         </para>
     </note>
 
-    <sect1 id="tutorial-firstapp">
+    <section id="tutorial-firstapp">
         <title>Part 1 - The first Hibernate Application</title>
 
         <para>
@@ -72,7 +72,7 @@
             </para>
         </note>
 
-        <sect2 id="tutorial-firstapp-setup">
+        <section id="tutorial-firstapp-setup">
             <title>Setup</title>
 
             <para>
@@ -155,10 +155,10 @@
             <para>
                 Save this file as <filename>pom.xml</filename> in the project root directory.
             </para>
-        </sect2>
+        </section>
 
 
-        <sect2 id="tutorial-firstapp-firstclass">
+        <section id="tutorial-firstapp-firstclass">
             <title>The first class</title>
             
             <para>
@@ -238,9 +238,9 @@
                 Save this file to the <filename>src/main/java/org/hibernate/tutorial/domain</filename>
                 directory.
             </para>
-        </sect2>
+        </section>
 
-        <sect2 id="tutorial-firstapp-mapping">
+        <section id="tutorial-firstapp-mapping">
             <title>The mapping file</title>
 
             <para>
@@ -414,9 +414,9 @@
                 <filename>src/main/resources/org/hibernate/tutorial/domain/Event.hbm.xml</filename>.
             </para>
 
-        </sect2>
+        </section>
 
-        <sect2 id="tutorial-firstapp-configuration" revision="2">
+        <section id="tutorial-firstapp-configuration" revision="2">
             <title>Hibernate configuration</title>
 
             <para>
@@ -541,9 +541,9 @@
                 <filename>src/main/resources</filename> directory.
             </para>
 
-        </sect2>
+        </section>
 
-        <sect2 id="tutorial-firstapp-mvn" revision="1">
+        <section id="tutorial-firstapp-mvn" revision="1">
             <title>Building with Maven</title>
 
             <para>
@@ -574,9 +574,9 @@
 [INFO] Final Memory: 5M/547M
 [INFO] ------------------------------------------------------------------------]]></programlisting>
 
-        </sect2>
+        </section>
 
-        <sect2 id="tutorial-firstapp-helpers" revision="3">
+        <section id="tutorial-firstapp-helpers" revision="3">
             <title>Startup and helpers</title>
 
             <para>
@@ -664,9 +664,9 @@
                 Hibernate.
             </para>
 
-        </sect2>
+        </section>
 
-        <sect2 id="tutorial-firstapp-workingpersistence" revision="5">
+        <section id="tutorial-firstapp-workingpersistence" revision="5">
             <title>Loading and storing objects</title>
 
             <para>
@@ -854,11 +854,11 @@
                 <command>mvn exec:java -Dexec.mainClass="org.hibernate.tutorial.EventManager" -Dexec.args="list"</command>
             </para>
 
-        </sect2>
+        </section>
 
-    </sect1>
+    </section>
 
-    <sect1 id="tutorial-associations">
+    <section id="tutorial-associations">
         <title>Part 2 - Mapping associations</title>
 
         <para>
@@ -868,7 +868,7 @@
             which they participate.
         </para>
 
-        <sect2 id="tutorial-associations-mappinguser" revision="1">
+        <section id="tutorial-associations-mappinguser" revision="1">
             <title>Mapping the Person class</title>
 
             <para>
@@ -927,9 +927,9 @@
                 behavior.
             </para>
 
-        </sect2>
+        </section>
 
-        <sect2 id="tutorial-associations-unidirset" revision="3">
+        <section id="tutorial-associations-unidirset" revision="3">
             <title>A unidirectional Set-based association</title>
 
             <para>
@@ -1018,9 +1018,9 @@
                                                   |_____________|
  ]]></programlisting>
 
-        </sect2>
+        </section>
 
-        <sect2 id="tutorial-associations-working" revision="2">
+        <section id="tutorial-associations-working" revision="2">
             <title>Working the association</title>
 
             <para>
@@ -1139,9 +1139,9 @@
                 entities, but looks almost the same in Java.
             </para>
 
-        </sect2>
+        </section>
 
-        <sect2 id="tutorial-associations-valuecollections">
+        <section id="tutorial-associations-valuecollections">
             <title>Collection of values</title>
 
             <para>
@@ -1231,9 +1231,9 @@
                 optimize this with an eager fetch.
             </para>
 
-        </sect2>
+        </section>
 
-        <sect2 id="tutorial-associations-bidirectional" revision="1">
+        <section id="tutorial-associations-bidirectional" revision="1">
             <title>Bi-directional associations</title>
 
             <para>
@@ -1290,9 +1290,9 @@
                 understand once you see how the bi-directional link between our two entities is created.
             </para>
 
-        </sect2>
+        </section>
 
-        <sect2 id="tutorial-associations-usingbidir">
+        <section id="tutorial-associations-usingbidir">
             <title>Working bi-directional links</title>
 
             <para>
@@ -1346,11 +1346,11 @@
                 and in many-to-many association you can select either side.
             </para>
 
-        </sect2>
+        </section>
 
-    </sect1>
+    </section>
 
-    <sect1 id="tutorial-webapp">
+    <section id="tutorial-webapp">
         <title>Part 3 - The EventManager web application</title>
 
         <para>
@@ -1360,7 +1360,7 @@
             database, and it provides an HTML form to enter new events.
         </para>
 
-        <sect2 id="tutorial-webapp-servlet" revision="2">
+        <section id="tutorial-webapp-servlet" revision="2">
             <title>Writing the basic servlet</title>
 
             <para>
@@ -1440,9 +1440,9 @@
                 as you consider rendering your view in JSP, not in a servlet.
             </para>
 
-        </sect2>
+        </section>
 
-        <sect2 id="tutorial-webapp-processing" revision="1">
+        <section id="tutorial-webapp-processing" revision="1">
             <title>Processing and rendering</title>
 
             <para>
@@ -1550,9 +1550,9 @@
                 examples.
             </para>
 
-        </sect2>
+        </section>
 
-        <sect2 id="tutorial-webapp-deploy">
+        <section id="tutorial-webapp-deploy">
             <title>Deploying and testing</title>
 
             <para>
@@ -1601,11 +1601,11 @@
                 is called) and to get the detailed output if any exceptions occurs.
             </para>
 
-        </sect2>
+        </section>
 
-    </sect1>
+    </section>
 
-    <sect1 id="tutorial-summary" revision="1">
+    <section id="tutorial-summary" revision="1">
         <title>Summary</title>
 
         <para>
@@ -1614,6 +1614,6 @@
             <ulink url="http://hibernate.org">website</ulink>.
         </para>
 
-    </sect1>
+    </section>
 
 </chapter>




More information about the jboss-cvs-commits mailing list