[hibernate-commits] Hibernate SVN: r14614 - in core/branches/Branch_3_2_4_SP1_CP/doc/release_notes: src/main/docbook/en-US and 1 other directory.

hibernate-commits at lists.jboss.org hibernate-commits at lists.jboss.org
Tue Apr 29 20:48:43 EDT 2008


Author: bsatguna
Date: 2008-04-29 20:48:43 -0400 (Tue, 29 Apr 2008)
New Revision: 14614

Added:
   core/branches/Branch_3_2_4_SP1_CP/doc/release_notes/pom.xml
   core/branches/Branch_3_2_4_SP1_CP/doc/release_notes/src/main/docbook/en-US/Article_Info.xml
   core/branches/Branch_3_2_4_SP1_CP/doc/release_notes/src/main/docbook/en-US/Author_Group.xml
   core/branches/Branch_3_2_4_SP1_CP/doc/release_notes/src/main/docbook/en-US/Book_Info.xml
   core/branches/Branch_3_2_4_SP1_CP/doc/release_notes/src/main/docbook/en-US/Release_Notes.xml
   core/branches/Branch_3_2_4_SP1_CP/doc/release_notes/src/main/docbook/en-US/Revision_History.xml
Log:
adding release notes files


Added: core/branches/Branch_3_2_4_SP1_CP/doc/release_notes/pom.xml
===================================================================
--- core/branches/Branch_3_2_4_SP1_CP/doc/release_notes/pom.xml	                        (rev 0)
+++ core/branches/Branch_3_2_4_SP1_CP/doc/release_notes/pom.xml	2008-04-30 00:48:43 UTC (rev 14614)
@@ -0,0 +1,116 @@
+<?xml version="1.0" encoding="UTF-8"?>
+
+<!--
+  ~ Hibernate, Relational Persistence for Idiomatic Java
+  ~
+  ~ Copyright (c) 2008, Red Hat Middleware LLC or third-party contributors as
+  ~ indicated by the @author tags or express copyright attribution
+  ~ statements applied by the authors.  All third-party contributions are
+  ~ distributed under license by Red Hat Middleware LLC.
+  ~
+  ~ This copyrighted material is made available to anyone wishing to use, modify,
+  ~ copy, or redistribute it subject to the terms and conditions of the GNU
+  ~ Lesser General Public License, as published by the Free Software Foundation.
+  ~
+  ~ This program is distributed in the hope that it will be useful,
+  ~ but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
+  ~ or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU Lesser General Public License
+  ~ for more details.
+  ~
+  ~ You should have received a copy of the GNU Lesser General Public License
+  ~ along with this distribution; if not, write to:
+  ~ Free Software Foundation, Inc.
+  ~ 51 Franklin Street, Fifth Floor
+  ~ Boston, MA  02110-1301  USA
+  -->
+
+<project xmlns="http://maven.apache.org/POM/4.0.0" 
+        xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
+        xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
+
+    <modelVersion>4.0.0</modelVersion>
+
+    <parent>
+        <groupId>org.hibernate</groupId>
+        <artifactId>hibernate-parent</artifactId>
+        <version>3.3.0-SNAPSHOT</version>
+        <relativePath>../../parent/pom.xml</relativePath>
+    </parent>
+    
+    <groupId>org.hibernate</groupId>
+    <artifactId>hibernate-releasenotes</artifactId>
+    <version>3.3.0-SNAPSHOT</version>
+    <packaging>jdocbook</packaging>
+
+    <name>Hibernate Release Notes</name>
+    <description>The Hibernate release notes DocBook source module</description>
+
+    <build>
+        <plugins>
+            <plugin>
+                <groupId>org.jboss.maven.plugins</groupId>
+                <artifactId>maven-jdocbook-plugin</artifactId>
+                <version>2.1.0</version>
+                <extensions>true</extensions>
+                <executions>
+                    <execution>
+                        <!--
+                            here we are attaching the translate goal so that the translations are processed
+                            before compilation so that the transated XML is also transformed during
+                            generation
+                        -->
+                        <phase>process-resources</phase>
+                        <goals>
+                            <goal>translate</goal>
+                        </goals>
+                    </execution>
+                </executions>
+                <dependencies>
+                    <dependency>
+                        <groupId>org.hibernate</groupId>
+                        <artifactId>hibernate-jdocbook-style</artifactId>
+                        <version>1.0.2</version>
+                        <type>jdocbook-style</type>
+                    </dependency>
+                </dependencies>
+                <configuration>
+                    <sourceDocumentName>en-US/Release_Notes.xml</sourceDocumentName>
+                    <masterTranslation>en-US</masterTranslation>
+                    <imageResource>
+                        <directory>${basedir}/src/main/docbook/en-US</directory>
+                        <includes>
+                            <include>**/*.svg</include>
+                            <include>**/*.png</include>
+                        </includes>
+                    </imageResource>
+                    <formats>
+                        <format>
+                            <formatName>pdf</formatName>
+                            <stylesheetResource>classpath:/xslt/hibernate/pdf/main-pdf.xsl</stylesheetResource>
+                            <finalName>Release_Notes.pdf</finalName>
+                            <profilingTypeName>two_pass</profilingTypeName>
+                        </format>
+                        <format>
+                            <formatName>html_single</formatName>
+                            <stylesheetResource>classpath:/xslt/hibernate/html/main-single.xsl</stylesheetResource>
+                            <finalName>index.html</finalName>
+                            <profilingTypeName>two_pass</profilingTypeName>
+                        </format>
+                        <format>
+                            <formatName>html</formatName>
+                            <stylesheetResource>classpath:/xslt/hibernate/html/main-chunk.xsl</stylesheetResource>
+                            <finalName>index.html</finalName>
+                            <profilingTypeName>two_pass</profilingTypeName>
+                        </format>
+                    </formats>
+                    <options>
+                        <xincludeSupported>true</xincludeSupported>
+                        <localeSeparator>-</localeSeparator>
+                        <useRelativeImageUris>true</useRelativeImageUris>
+                    </options>
+                </configuration>
+            </plugin>
+        </plugins>
+    </build>
+
+</project>

Added: core/branches/Branch_3_2_4_SP1_CP/doc/release_notes/src/main/docbook/en-US/Article_Info.xml
===================================================================
--- core/branches/Branch_3_2_4_SP1_CP/doc/release_notes/src/main/docbook/en-US/Article_Info.xml	                        (rev 0)
+++ core/branches/Branch_3_2_4_SP1_CP/doc/release_notes/src/main/docbook/en-US/Article_Info.xml	2008-04-30 00:48:43 UTC (rev 14614)
@@ -0,0 +1,25 @@
+<?xml version='1.0'?>
+<!DOCTYPE articleinfo PUBLIC "-//OASIS//DTD DocBook XML V4.5//EN" "http://www.oasis-open.org/docbook/xml/4.5/docbookx.dtd" [
+]>
+
+<articleinfo id="Release_Notes-Hibernate-Standalone">
+	<title>Enterprise Hibernate x.y.z Release Notes</title>
+	<subtitle>Release Notes</subtitle>
+	<issuenum>0.1</issuenum>
+	<productnumber>0</productnumber>
+	<abstract><para>This document outlines information necessary for installation, migration and bug fixes.</para>
+	</abstract>
+	<corpauthor><inlinemediaobject>
+			<imageobject>
+				<imagedata fileref="Common_Content/images/redhat-logo.svg" />
+			</imageobject>
+		</inlinemediaobject>
+	</corpauthor><copyright>
+		<year>&YEAR;</year>
+		<holder>&HOLDER;</holder>
+	</copyright>
+	<xi:include href="Common_Content/Legal_Notice.xml" xmlns:xi="http://www.w3.org/2001/XInclude" />	
+</articleinfo>
+
+
+

Added: core/branches/Branch_3_2_4_SP1_CP/doc/release_notes/src/main/docbook/en-US/Author_Group.xml
===================================================================
--- core/branches/Branch_3_2_4_SP1_CP/doc/release_notes/src/main/docbook/en-US/Author_Group.xml	                        (rev 0)
+++ core/branches/Branch_3_2_4_SP1_CP/doc/release_notes/src/main/docbook/en-US/Author_Group.xml	2008-04-30 00:48:43 UTC (rev 14614)
@@ -0,0 +1,16 @@
+<?xml version='1.0'?>
+<!DOCTYPE authorgroup PUBLIC "-//OASIS//DTD DocBook XML V4.5//EN" "http://www.oasis-open.org/docbook/xml/4.5/docbookx.dtd" [
+]>
+
+<authorgroup>
+	<corpauthor>FF0000 Headgear Documentation Group</corpauthor>
+	<author>
+		<firstname>Dude</firstname>
+		<surname>McDude</surname>
+		<affiliation>
+			<orgname>My Org</orgname>
+			<orgdiv>Best Div in the place</orgdiv>
+		</affiliation>
+		<email>dude.mcdude at myorg.org</email>
+	</author>
+</authorgroup>

Added: core/branches/Branch_3_2_4_SP1_CP/doc/release_notes/src/main/docbook/en-US/Book_Info.xml
===================================================================
--- core/branches/Branch_3_2_4_SP1_CP/doc/release_notes/src/main/docbook/en-US/Book_Info.xml	                        (rev 0)
+++ core/branches/Branch_3_2_4_SP1_CP/doc/release_notes/src/main/docbook/en-US/Book_Info.xml	2008-04-30 00:48:43 UTC (rev 14614)
@@ -0,0 +1,27 @@
+<?xml version='1.0'?>
+<!DOCTYPE articleinfo PUBLIC "-//OASIS//DTD DocBook XML V4.5//EN" "http://www.oasis-open.org/docbook/xml/4.5/docbookx.dtd" [
+]>
+
+<articleinfo id="Release_Notes-Product_Name_and_Version">
+	<title>Product Name and Version</title>
+	<subtitle>Release Notes</subtitle>
+	<issuenum>0.1</issuenum>
+	<productnumber>0</productnumber>
+	<abstract><para>This book is about... (Be brief; this para is used for the RPM spec
+			file)</para>
+	</abstract>
+	<corpauthor><inlinemediaobject>
+			<imageobject>
+				<imagedata fileref="Common_Content/images/redhat-logo.svg" />
+			</imageobject>
+		</inlinemediaobject>
+	</corpauthor><copyright>
+		<year>&YEAR;</year>
+		<holder>&HOLDER;</holder>
+	</copyright>
+	<xi:include href="Common_Content/Legal_Notice.xml" xmlns:xi="http://www.w3.org/2001/XInclude" />
+	<xi:include href="Author_Group.xml" xmlns:xi="http://www.w3.org/2001/XInclude" />
+</articleinfo>
+
+
+

Added: core/branches/Branch_3_2_4_SP1_CP/doc/release_notes/src/main/docbook/en-US/Release_Notes.xml
===================================================================
--- core/branches/Branch_3_2_4_SP1_CP/doc/release_notes/src/main/docbook/en-US/Release_Notes.xml	                        (rev 0)
+++ core/branches/Branch_3_2_4_SP1_CP/doc/release_notes/src/main/docbook/en-US/Release_Notes.xml	2008-04-30 00:48:43 UTC (rev 14614)
@@ -0,0 +1,69 @@
+<?xml version="1.0"?>
+<!DOCTYPE article PUBLIC "-//OASIS//DTD DocBook XML V4.3//EN" "http://www.oasis-open.org/docbook/xml/4.3/docbookx.dtd">
+<article id="HIB_Release_Notes">
+	<xi:include href="Article_Info.xml" xmlns:xi="http://www.w3.org/2001/XInclude"/>
+	
+	<section id="Overview">		
+		<title>
+			Overview
+		</title>
+		<para>
+			These release notes contain important information regarding Hibernate &VERSION;. This document covers installation and migration notes, new features and bug fixes. 
+		</para>
+	
+		<section id="Background">
+			<title>Background</title>
+			<para>
+				Hibernate is a powerful object/relational mapping tool for building Java applications. It significantly reduces repetitive persistence related programming tasks by mapping the object model's data representation to a relational data model. The mapping feature eliminates paradigm mismatch issues caused by data handling between objects and relational databases. 			
+			</para>
+		</section>
+	</section>
+	<section id="Important_Notes">
+		<title>Installation And Migration Guide</title>
+		<para>
+			This section contains all information related to installing hibernate, testing the installation and running some examples.
+		</para>
+		<section id="Installation_Notes">
+			<title>Installation Notes</title>
+			<para>
+				Any information that the user must keep in mind before or during installation has to be specified here.
+			</para>
+		</section>
+		<section id="Migration_Guide">
+			<title>Migration Guide</title>
+			<para>
+				Information regarding upgrades  
+			</para>
+		</section>
+	</section>
+	<section id="Features_And_Bug_Fixes">
+		<title>New features and bug fixes</title>
+		<para>
+			All new features and bug fixes mentioned in these release notes are applicable to VERSION;. 
+		</para>
+		<section id="New_Features">
+			<title>New Features</title>
+			<para>
+				Provide a summary of new features applicable to this release. 
+			</para>
+		</section>
+		<section id="Bug_Fixes">
+			<title>Bug Fixes</title>
+			<para>
+				The following bugs have been addressed and resolved in this release.  
+			</para>
+		</section>
+	</section>
+	<section id="Documentation">
+		<title>Documentation</title>
+		<para>
+			 List all the documentation links here and where to find them. 
+		</para>		
+	</section>
+	<section id="Product_Support">
+		<title>Product Support</title>
+		<para>
+			List all the links here. 
+		</para>		
+	</section>
+</article>

Added: core/branches/Branch_3_2_4_SP1_CP/doc/release_notes/src/main/docbook/en-US/Revision_History.xml
===================================================================
--- core/branches/Branch_3_2_4_SP1_CP/doc/release_notes/src/main/docbook/en-US/Revision_History.xml	                        (rev 0)
+++ core/branches/Branch_3_2_4_SP1_CP/doc/release_notes/src/main/docbook/en-US/Revision_History.xml	2008-04-30 00:48:43 UTC (rev 14614)
@@ -0,0 +1,20 @@
+<?xml version='1.0'?>
+<!DOCTYPE revhistory PUBLIC "-//OASIS//DTD DocBook XML V4.5//EN" "http://www.oasis-open.org/docbook/xml/4.5/docbookx.dtd" [
+]>
+
+<revhistory>
+	<revision>
+		<revnumber>1.0</revnumber>
+		<date></date>
+		<author>
+			<firstname></firstname>
+			<surname></surname>
+			<email></email>
+		</author>
+		<revdescription>
+			<simplelist>
+				<member></member>
+			</simplelist>
+		</revdescription>
+	</revision>
+</revhistory>




More information about the hibernate-commits mailing list