[hibernate-commits] Hibernate SVN: r14606 - core/trunk/documentation/releasenotes/src/main/docbook/en-US/Common_Content.

hibernate-commits at lists.jboss.org hibernate-commits at lists.jboss.org
Mon Apr 28 21:35:28 EDT 2008


Author: bsatguna
Date: 2008-04-28 21:35:28 -0400 (Mon, 28 Apr 2008)
New Revision: 14606

Added:
   core/trunk/documentation/releasenotes/src/main/docbook/en-US/Common_Content/Boilerplate.xml
   core/trunk/documentation/releasenotes/src/main/docbook/en-US/Common_Content/Code-Conventions.xml
   core/trunk/documentation/releasenotes/src/main/docbook/en-US/Common_Content/Conventions.xml
   core/trunk/documentation/releasenotes/src/main/docbook/en-US/Common_Content/Entities.ent
   core/trunk/documentation/releasenotes/src/main/docbook/en-US/Common_Content/Feedback.xml
   core/trunk/documentation/releasenotes/src/main/docbook/en-US/Common_Content/Legal_Notice.xml
   core/trunk/documentation/releasenotes/src/main/docbook/en-US/Common_Content/Translatable-Entities.ent
Log:
adding files in common_content folder

Added: core/trunk/documentation/releasenotes/src/main/docbook/en-US/Common_Content/Boilerplate.xml
===================================================================
--- core/trunk/documentation/releasenotes/src/main/docbook/en-US/Common_Content/Boilerplate.xml	                        (rev 0)
+++ core/trunk/documentation/releasenotes/src/main/docbook/en-US/Common_Content/Boilerplate.xml	2008-04-29 01:35:28 UTC (rev 14606)
@@ -0,0 +1,51 @@
+<?xml version="1.0"?>
+<!DOCTYPE legalnotice PUBLIC "-//OASIS//DTD DocBook XML V4.5//EN" "http://www.oasis-open.org/docbook/xml/4.5/docbookx.dtd" [
+<!ENTITY % BOOK_ENTITIES SYSTEM "../Release_Notes.ent">
+%BOOK_ENTITIES;
+<!ENTITY % RH_ENTITIES SYSTEM "Entities.ent">
+%RH_ENTITIES;
+
+]>
+<legalnotice>
+	<para>
+		Copyright <trademark class="copyright"></trademark> 2007 by Red Hat,
+		Inc. This material may be distributed only subject to the terms and
+		conditions set forth in the Open Publication License, V1.0 or later
+		(the latest version is presently available at
+		<ulink url="http://www.opencontent.org/openpub/">http://www.opencontent.org/openpub/</ulink>).
+	</para>
+	<para>
+		Distribution of substantively modified versions of this document is
+		prohibited without the explicit permission of the copyright holder.
+	</para>
+	<para>
+		Distribution of the work or derivative of the work in any standard
+		(paper) book form for commercial purposes is prohibited unless prior
+		permission is obtained from the copyright holder.
+	</para>
+	<para>
+		Red Hat and the Red Hat "Shadow Man" logo are registered trademarks of
+		Red Hat, Inc. in the United States and other countries.
+	</para>
+	<para>
+		All other trademarks referenced herein are the property of their
+		respective owners.
+	</para>
+	<para>
+		The GPG fingerprint of the security at redhat.com key is:
+	</para>
+	<para>
+		CA 20 86 86 2B D6 9D FC 65 F6 EC C4 21 91 80 CD DB 42 A6 0E
+	</para>
+	<para>
+<address><street>1801 Varsity Drive</street>
+<city>Raleigh</city>, <state>NC</state> <postcode>27606-2072</postcode>
+<country>USA</country>
+<phone>Phone: +1 919 754 3700</phone>
+<phone>Phone: 888 733 4281</phone>
+<fax>Fax: +1 919 754 3701</fax>
+<pob>PO Box 13588</pob>
+<city>Research Triangle Park</city>, <state>NC</state> <postcode>27709</postcode>
+<country>USA</country></address>
+	</para>
+</legalnotice>

Added: core/trunk/documentation/releasenotes/src/main/docbook/en-US/Common_Content/Code-Conventions.xml
===================================================================
--- core/trunk/documentation/releasenotes/src/main/docbook/en-US/Common_Content/Code-Conventions.xml	                        (rev 0)
+++ core/trunk/documentation/releasenotes/src/main/docbook/en-US/Common_Content/Code-Conventions.xml	2008-04-29 01:35:28 UTC (rev 14606)
@@ -0,0 +1,133 @@
+<?xml version="1.0"?>
+<!DOCTYPE section PUBLIC "-//OASIS//DTD DocBook XML V4.5//EN" "http://www.oasis-open.org/docbook/xml/4.5/docbookx.dtd" [
+<!ENTITY % BOOK_ENTITIES SYSTEM "../Release_Notes.ent">
+%BOOK_ENTITIES;
+<!ENTITY % RH_ENTITIES SYSTEM "Entities.ent">
+%RH_ENTITIES;
+
+]>
+<section id="r-sn-code-conventions">
+	<title>Code Presentation Conventions</title>
+
+	<para>
+		In addition to the standard document conventions covered in
+		<xref
+      linkend="sn-conventions" />, there are some additional
+		conventions related specifically to discussing source code:
+	</para>
+
+	<variablelist>
+		<varlistentry>
+			<term><classname>classname</classname></term>
+			<listitem>
+				<para>
+					This is the name of a class in an object-oriented
+					(<firstterm>OO</firstterm>) programming language. For example, the
+					class
+					<classname>com.arsdigita.categorization.CategoryTreeNode</classname>
+					.
+				</para>
+			</listitem>
+		</varlistentry>
+
+		<varlistentry>
+			<term><methodname>method name</methodname></term>
+			<listitem>
+				<para>
+					This is the name of a method in an OO programming language, e.g.
+					the method
+					<methodname>getBaseDataObjectType</methodname>
+					.
+				</para>
+			</listitem>
+		</varlistentry>
+
+		<varlistentry>
+			<term><function>function</function></term>
+			<listitem>
+				<para>
+					The name of a function or subroutine, as in a programming language.
+					For example, the function
+					<function>SecurityLogger.warn()</function>
+					.
+				</para>
+			</listitem>
+		</varlistentry>
+
+		<varlistentry>
+			<term><varname>variable name</varname></term>
+			<listitem>
+				<para>
+					The name of a variable. For example, the variable
+					<varname>BASE_DATA_OBJECT_TYPE</varname>
+					.
+				</para>
+			</listitem>
+		</varlistentry>
+
+		<varlistentry>
+			<term><option>option</option></term>
+			<listitem>
+				<para>
+					An option for a software command or
+					<methodname>Method</methodname>
+					. For example, a user has been granted <option>read</option>
+					privileges on an object.
+				</para>
+			</listitem>
+		</varlistentry>
+
+		<varlistentry>
+			<term><returnvalue>return value</returnvalue></term>
+			<listitem>
+				<para>
+					The value returned by a function. For example, a method returns
+					<returnvalue>null</returnvalue>
+					.
+				</para>
+			</listitem>
+		</varlistentry>
+
+		<varlistentry>
+			<term>program listing</term>
+			<listitem>
+				<para>
+					A literal listing of all or part of a program:
+				</para>
+<programlisting>
+<![CDATA[
+extern void sem_exit (void);
+extern struct task_struct *child_reaper;
+ 
+int getrusage(struct task_struct *, int, struct rusage *);
+ 
+static void __unhash_process(struct task_struct *p)
+{
+        nr_threads--;
+        detach_pid(p, PIDTYPE_PID);
+        detach_pid(p, PIDTYPE_TGID);
+        if (thread_group_leader(p)) {
+                detach_pid(p, PIDTYPE_PGID);
+                detach_pid(p, PIDTYPE_SID);
+        }
+ 
+        REMOVE_LINKS(p);
+        p->pid = 0;
+}
+]]>
+</programlisting>
+			</listitem>
+		</varlistentry>
+
+		<varlistentry>
+			<term>first term</term>
+			<listitem>
+				<para>
+					The first occurrence of a term, such as the first time we introduce
+					a <firstterm>bulletin-board</firstterm> and note its abbreviated
+					form, <firstterm>bboard</firstterm>.
+				</para>
+			</listitem>
+		</varlistentry>
+	</variablelist>
+</section>

Added: core/trunk/documentation/releasenotes/src/main/docbook/en-US/Common_Content/Conventions.xml
===================================================================
--- core/trunk/documentation/releasenotes/src/main/docbook/en-US/Common_Content/Conventions.xml	                        (rev 0)
+++ core/trunk/documentation/releasenotes/src/main/docbook/en-US/Common_Content/Conventions.xml	2008-04-29 01:35:28 UTC (rev 14606)
@@ -0,0 +1,126 @@
+<?xml version="1.0"?>
+<!DOCTYPE section PUBLIC "-//OASIS//DTD DocBook XML V4.5//EN" "http://www.oasis-open.org/docbook/xml/4.5/docbookx.dtd" [
+<!ENTITY % BOOK_ENTITIES SYSTEM "../Release_Notes.ent">
+%BOOK_ENTITIES;
+]>
+<section>
+	<title>Document Conventions</title>
+
+	<para>
+		Certain words in this manual are represented in different fonts,
+		styles, and weights. This highlighting indicates that the word is part
+		of a specific category. The categories include the following:
+	</para>
+
+	<variablelist>
+		<varlistentry>
+			<term><literal>Courier font</literal></term>
+			<listitem>
+				<para>
+					Courier font represents <command>commands</command>, <filename>file
+					names and paths</filename>, and
+					<prompt>prompts</prompt>
+					.
+				</para>
+				<para>
+					When shown as below, it indicates computer output:
+<screen>
+Desktop       about.html       logs      paulwesterberg.png
+Mail          backupfiles      mail      reports
+</screen>
+				</para>
+			</listitem>
+		</varlistentry>
+
+		<varlistentry>
+			<term><userinput>bold Courier font</userinput></term>
+			<listitem>
+				<para>
+					Bold Courier font represents text that you are to type, such as:
+					<userinput>service jonas start</userinput>
+				</para>
+				<para>
+					If you have to run a command as root, the root prompt
+					(<literal>#</literal>) precedes the command:
+				</para>
+<screen>
+# <userinput>gconftool-2
+</userinput>
+				</screen>
+			</listitem>
+		</varlistentry>
+
+		<varlistentry>
+			<term><replaceable>italic Courier font</replaceable></term>
+			<listitem>
+				<para>
+					Italic Courier font represents a variable, such as an installation
+					directory: <filename>
+					<replaceable>install_dir</replaceable>/bin/</filename>
+				</para>
+			</listitem>
+		</varlistentry>
+
+		<varlistentry>
+			<term><application>bold font</application></term>
+			<listitem>
+				<para>
+					Bold font represents <application>application
+					programs</application> and <guilabel>text found on a graphical
+					interface</guilabel>.
+				</para>
+				<para>
+					When shown like this: <guibutton> OK </guibutton>, it indicates a
+					button on a graphical application interface.
+				</para>
+			</listitem>
+		</varlistentry>
+	</variablelist>
+
+	<para>
+		Additionally, the manual uses different strategies to draw your
+		attention to pieces of information. In order of how critical the
+		information is to you, these items are marked as follows:
+	</para>
+
+	<note>
+		<title>Note</title>
+
+		<para>
+			A note is typically information that you need to understand the
+			behavior of the system.
+		</para>
+	</note>
+	<tip>
+		<title>Tip</title>
+		<para>
+			A tip is typically an alternative way of performing a task.
+		</para>
+	</tip>
+	<important>
+		<title>Important</title>
+
+		<para>
+			Important information is necessary, but possibly unexpected, such as
+			a configuration change that will not persist after a reboot.
+		</para>
+	</important>
+
+	<caution>
+		<title>Caution</title>
+
+		<para>
+			A caution indicates an act that would violate your support agreement,
+			such as recompiling the kernel.
+		</para>
+	</caution>
+
+	<warning>
+		<title>Warning</title>
+
+		<para>
+			A warning indicates potential data loss, as may happen when tuning
+			hardware for maximum performance.
+		</para>
+	</warning>
+</section>

Added: core/trunk/documentation/releasenotes/src/main/docbook/en-US/Common_Content/Entities.ent
===================================================================
--- core/trunk/documentation/releasenotes/src/main/docbook/en-US/Common_Content/Entities.ent	                        (rev 0)
+++ core/trunk/documentation/releasenotes/src/main/docbook/en-US/Common_Content/Entities.ent	2008-04-29 01:35:28 UTC (rev 14606)
@@ -0,0 +1,115 @@
+<!ENTITY RH "Red Hat">
+<!ENTITY RHI "&RH; Inc.">
+<!ENTITY HOLDER "&RHI;">
+<!ENTITY YEAR "You need to override the YEAR enity in your local ent file">
+<!ENTITY BOOKID "You need to override the BOOKID enity in your local ent file">
+<!ENTITY PRODUCT "You need to override the PRODUCT enity in your local ent file">
+
+<!-- everything below here may need to be removed? -->
+<!ENTITY CCAG "&RHI; &CC; &CAG;">
+<!ENTITY CCIG "&RHI; &CC; &CIG;">
+<!ENTITY CCRN "&RHI; &CC; &RN;">
+<!ENTITY CCUG "&RHI; &CC; &UG;">
+<!ENTITY CCVER "4.0">
+<!ENTITY CLUMANAGER-386-RPM "clumanager-1.0.4-1.i386.rpm">
+<!ENTITY CRTSAG "&CRTS; &AG;">
+<!ENTITY CRTSAGG "&CRTS; &AGG;">
+<!ENTITY CRTS "Certificate System">
+<!ENTITY CRTSCLTG "&CRTS; &CLTG;">
+<!ENTITY CRTSMG "&CRTS; &MG;">
+<!ENTITY CS "Engineering Content Services">
+<!ENTITY DG "&DCAG;">
+<!ENTITY DPG "&DCAG;">
+<!ENTITY DSAG "&DS; &AG;">
+<!ENTITY DSCCFR "&DS; &CCFR;">
+<!ENTITY DSDGG "&DS; &DGG;">
+<!ENTITY DS "Directory Server">
+<!ENTITY DSC "&DS; Console">
+<!ENTITY DSDPG "&DS; &DPG;">
+<!ENTITY DSGCG "&DS; &GCG;">
+<!ENTITY DSIG "&DS; &IG;">
+<!ENTITY DSOC "&DS; &OC;">
+<!ENTITY DSPPR "&DS; &PPR;">
+<!ENTITY DSRK "&DS; &RK;">
+<!ENTITY EM64T "Intel EM64T">
+<!ENTITY FC "&FED; Core;">
+<!ENTITY FED "Fedora">
+<!ENTITY FIGUREDASH "&#x2012;">
+<!ENTITY FORMAL-RHI "&RH;, Inc.">
+<!ENTITY FORT "Fortitude">
+<!ENTITY HYPHEN "&#x2010;">
+<!ENTITY IPVS-386-RPM "ipvsadm-1.18-8.i386.rpm">
+<!ENTITY JBEAPVER "4.2">
+<!ENTITY KERNVER "2.6.x">
+<!ENTITY LEGALNOTICE-IDM SYSTEM "./boilerplate-idm.xml">
+<!ENTITY LOCALVER "7.3">
+<!ENTITY MINUS "&#x2212;">
+<!ENTITY NBHYPHEN "&#x2011;">
+<!ENTITY NES "NES">
+<!ENTITY NSS "NSS">
+<!ENTITY ORG "&RHIS;">
+<!ENTITY PG "&SELG;">
+<!ENTITY PIRANHA-386-RPM "piranha-0.7.0-1.i386.rpm">
+<!ENTITY PROD "&RHEL;">
+<!ENTITY PRODVER "&RHELVER;">
+<!ENTITY PROXYIG "&RHN; &PROXYVER; &PROXYX; &IG;">
+<!ENTITY PROXYVER "4.2.0">
+<!ENTITY QUOTEDASH "&#8213;">
+<!ENTITY RA "Registration Authority">
+<!ENTITY RHASVER "V.1.1">
+<!ENTITY RHCC "&RHI; &CC;">
+<!ENTITY RHCRTSAGG "&RHI; &CRTSAGG;">
+<!ENTITY RHCRTSAG "&RHI; &CRTSAG;">
+<!ENTITY RHCRTSCLTG "&RHI; &CRTSCLTG;">
+<!ENTITY RHCRTSMG "&RHI; &CRTSMG;">
+<!ENTITY RHCRTS "&RHI; &CRTS;">
+<!ENTITY RHCRTSVER "8.0">
+<!ENTITY RHCSG "&RHCS; &CMIAG;"> 
+<!ENTITY RHCSGS "rh-cs">
+<!ENTITY RHDSAG "&RHI; &DSAG;">
+<!ENTITY RHDSCCFR "&RHI; &DSCCFR;">
+<!ENTITY RHDSDGG "&RHI; &DSDGG;">
+<!ENTITY RHDSDPG "&RHI; &DSDPG;">
+<!ENTITY RHDSGCG "&RHI; &DSGCG;">
+<!ENTITY RHDSIG "&RHI; &DSIG;">
+<!ENTITY RHDSOC "&RHI; &DSOC;">
+<!ENTITY RHDSPPR "&RHI; &DSPPR;">
+<!ENTITY RHDS "&RHI; &DS;">
+<!ENTITY RHDSVER "8.0.0">
+<!ENTITY RHELIG "&RHEL; &IG;">
+<!ENTITY RHELIGS390S "rhel-ig-s390">
+<!ENTITY RHELIGX8664S "rhel-ig-x8664">
+<!ENTITY RHELISA "&RHEL; &ISA;">
+<!ENTITY RHELQIGS390S "rhel-qig-s390">
+<!ENTITY RHELQIGX8664S "rhel-qig-x8664">
+<!ENTITY RHELRG "&RHEL; &RG;">
+<!ENTITY RHELSAG "&RHEL; &SAG;">
+<!ENTITY RHELSBS "&RHEL; &SBS;">
+<!ENTITY RHELSG "&RHEL; &SG;">
+<!ENTITY RHELVER "5.0.0">
+<!ENTITY RHFORT "&RHI; &FORT;">
+<!ENTITY RHGFSG "&RHGFS; &GFSIAG;">
+<!ENTITY RHGFSGS "rh-gfsg">
+<!ENTITY RHGFS "&RH; GFS">
+<!ENTITY RHLAS "&RHELAS;">
+<!ENTITY RHLASVER "2.1">
+<!ENTITY RHLIA64ASS "rhl-ig-as-itanium">
+<!ENTITY RHLIA64ASVER "2.1">
+<!ENTITY RHLIA64AWS "rhl-ig-aw-itanium">
+<!ENTITY RHLIA64AWVER "2.1">
+<!ENTITY RHLIA64S "rhl-ig-itanium">
+<!ENTITY RHLIGIA64 "&RHL; Itanium &IG;">
+<!ENTITY RHL "&RH; Linux">
+<!ENTITY RHLS390S "rhl-ig-s390">
+<!ENTITY RHNRG "&RHN; &RG;">
+<!ENTITY RHNVER "5.0.0">
+<!ENTITY RHNX "RHN">
+<!ENTITY RHSELG "&RHI; &SELG;">
+<!ENTITY RHSELGS "rhel-selg">
+<!ENTITY ROOT "<systemitem class='username'>root</systemitem>">
+<!ENTITY SATIG "&RHN; &SATVER; &SATX; &IG;">
+<!ENTITY SATVER "4.2.0">
+<!ENTITY SEL "SELinux">
+<!ENTITY SHARED-SCSI-386-RPM "scsi_reserve-0.7-6.i386.rpm">
+<!ENTITY SMPM "solaris2mpm">
+<!ENTITY X8664 "x86, Itanium, AMD64, and &EM64TLONG; (&EM64T;)">

Added: core/trunk/documentation/releasenotes/src/main/docbook/en-US/Common_Content/Feedback.xml
===================================================================
--- core/trunk/documentation/releasenotes/src/main/docbook/en-US/Common_Content/Feedback.xml	                        (rev 0)
+++ core/trunk/documentation/releasenotes/src/main/docbook/en-US/Common_Content/Feedback.xml	2008-04-29 01:35:28 UTC (rev 14606)
@@ -0,0 +1,25 @@
+<?xml version="1.0"?>
+<!DOCTYPE section PUBLIC "-//OASIS//DTD DocBook XML V4.5//EN" "http://www.oasis-open.org/docbook/xml/4.5/docbookx.dtd" [
+<!ENTITY % BOOK_ENTITIES SYSTEM "../Release_Notes.ent">
+%BOOK_ENTITIES;
+
+]>
+<section id="We_Need_Feedback">
+	<title>We Need Feedback!</title>
+	<indexterm>
+		<primary>feedback</primary>
+		<secondary>contact information for this manual</secondary>
+	</indexterm>
+	<para>
+		If you find a typographical error in this manual, or if you have thought of a way to make this manual better, we would love to hear from you! Please submit a report in Bugzilla: <ulink url="http://bugzilla.redhat.com/bugzilla/">http://bugzilla.redhat.com/bugzilla/</ulink>
+		against the product <application>&PRODUCT;.</application>
+	</para>
+
+	<para>
+		When submitting a bug report, be sure to mention the manual's identifier: <citetitle>&BOOKID;</citetitle>
+	</para>
+
+	<para>
+		If you have a suggestion for improving the documentation, try to be as specific as possible when describing it. If you have found an error, please include the section number and some of the surrounding text so we can find it easily.
+	</para>
+</section>

Added: core/trunk/documentation/releasenotes/src/main/docbook/en-US/Common_Content/Legal_Notice.xml
===================================================================
--- core/trunk/documentation/releasenotes/src/main/docbook/en-US/Common_Content/Legal_Notice.xml	                        (rev 0)
+++ core/trunk/documentation/releasenotes/src/main/docbook/en-US/Common_Content/Legal_Notice.xml	2008-04-29 01:35:28 UTC (rev 14606)
@@ -0,0 +1,36 @@
+<?xml version="1.0"?>
+<!DOCTYPE legalnotice PUBLIC "-//OASIS//DTD DocBook XML V4.5//EN" "http://www.oasis-open.org/docbook/xml/4.5/docbookx.dtd" [
+<!ENTITY % BOOK_ENTITIES SYSTEM "../Release_Notes.ent">
+%BOOK_ENTITIES;
+<!ENTITY % RH_ENTITIES SYSTEM "Entities.ent">
+%RH_ENTITIES;
+
+]>
+<legalnotice>
+	<para>
+		Copyright <trademark class="copyright"></trademark> &YEAR; &HOLDER;. This material may only be distributed subject to the terms and conditions set forth in the Creative Commons Attribution-Noncommercial-Share Alike 3.0 Unported License (which is presently available at <ulink url="http://creativecommons.org/licenses/by-nc-sa/3.0/">http://creativecommons.org/licenses/by-nc-sa/3.0/</ulink>).
+	</para>
+	<para>
+		Red Hat and the Red Hat "Shadow Man" logo are registered trademarks of Red Hat, Inc. in the United States and other countries.
+	</para>
+	<para>
+		All other trademarks referenced herein are the property of their respective owners.
+	</para>
+	<para>
+		The GPG fingerprint of the security at redhat.com key is:
+	</para>
+	<para>
+		CA 20 86 86 2B D6 9D FC 65 F6 EC C4 21 91 80 CD DB 42 A6 0E
+	</para>
+	<para>
+<address><street>1801 Varsity Drive</street>
+<city>Raleigh</city>, <state>NC</state> <postcode>27606-2072</postcode>
+<country>USA</country>
+<phone>Phone: +1 919 754 3700</phone>
+<phone>Phone: 888 733 4281</phone>
+<fax>Fax: +1 919 754 3701</fax>
+<pob>PO Box 13588</pob>
+<city>Research Triangle Park</city>, <state>NC</state> <postcode>27709</postcode>
+<country>USA</country></address>
+	</para>
+</legalnotice>

Added: core/trunk/documentation/releasenotes/src/main/docbook/en-US/Common_Content/Translatable-Entities.ent
===================================================================
--- core/trunk/documentation/releasenotes/src/main/docbook/en-US/Common_Content/Translatable-Entities.ent	                        (rev 0)
+++ core/trunk/documentation/releasenotes/src/main/docbook/en-US/Common_Content/Translatable-Entities.ent	2008-04-29 01:35:28 UTC (rev 14606)
@@ -0,0 +1,130 @@
+
+<!ENTITY ADS "Administration Server">
+<!ENTITY AG "Administration Guide">
+<!ENTITY AGG "Agent Guide">
+<!ENTITY AKA "Activation Key Administrator">
+<!ENTITY APACHE "Apache Web server">
+<!ENTITY BC "Update">
+<!ENTITY BIGB "<guilabel>Big Board</guilabel>">
+<!ENTITY BROKER "RHN Proxy Broker Server">
+<!ENTITY CA "certificate authority">
+<!ENTITY CACHE "HTTP Proxy Caching Server">
+<!ENTITY CAG "Check Reference Guide">
+<!ENTITY CC "Command Center">
+<!ENTITY CCFR "Configuration, Command, and File Reference">
+<!ENTITY CCMENU "<guilabel>Command Center</guilabel>">
+<!ENTITY CFA "Configuration Administrator">
+<!ENTITY CIG "Setup and Installation Guide">
+<!ENTITY CLTG "Command-Line Tools Guide">
+<!ENTITY CON "Console">
+<!ENTITY CSMENU "<guilabel>Current State</guilabel> area">
+<!ENTITY DCAG "Deployment Guide">
+<!ENTITY DG "Developer's Guide">
+<!ENTITY DGG "DSML Gateway Guide">
+<!ENTITY EM64TLONG "Intel Extended Memory 64 Technology">
+<!ENTITY EMB "Embedded Database">
+<!ENTITY ENT "Management">
+<!ENTITY FAQ "Frequently Asked Questions (FAQ)">
+<!ENTITY FP "&FED; Project">
+<!ENTITY GCG "Gateway Customization Guide">
+<!ENTITY GFSU2 "&RHGFS; &PRODVER; for &RHEL; 4 Update 2">
+<!ENTITY HTTPD "Apache HTTP Server">
+<!ENTITY IG "Installation Guide">
+<!ENTITY IGS390 "&IG; for the &S390; Architectures">
+<!ENTITY IGX8664 "&IG; for &X8664;">
+<!ENTITY ISA "Introduction to System Administration">
+<!ENTITY JBEAP "JBoss Enterprise Application Platform">
+<!ENTITY LANG "EN">
+<!ENTITY LSCAP "Scout">
+<!ENTITY LS "scout">
+<!ENTITY LSSENT "&LSCAP;">
+<!ENTITY MA "&MON; Administrator">
+<!ENTITY MG "Migration Guide">
+<!ENTITY MMENU "<guilabel>Main Menu</guilabel>">
+<!ENTITY MON "Monitoring">
+<!ENTITY NESFULL "Netscape Enterprise Server">
+<!ENTITY NG "Networking Guide">
+<!ENTITY NSSFULL "Network Security Services">
+<!ENTITY NWMAP "<guilabel>Network Map</guilabel>">
+<!ENTITY NWMENU "<guilabel>Network Status</guilabel> bar">
+<!ENTITY OA "Organization Administrator">
+<!ENTITY OC "Org Chart">
+<!ENTITY PIRANHA "Piranha Configuration Tool">
+<!ENTITY PPC "IBM POWER Architecture">
+<!ENTITY PPR "Plug-in Programmer's Guide">
+<!ENTITY PRO "Provisioning">
+<!ENTITY PROXY "RHN Proxy Server">
+<!ENTITY PROXYX "Proxy">
+<!ENTITY QIGS390 "&QIG; for the &S390; Architectures">
+<!ENTITY QIGX8664 "&QIG; for &X8664;">
+<!ENTITY REDIRECT "RHN SSL Redirect Server">
+<!ENTITY RG "Reference Guide">
+<!ENTITY RHAS "&RH; Application Stack">
+<!ENTITY RHAUTHTOOL "Authentication Configuration Tool">
+<!ENTITY RHCLUSTERSTATTOOL "Cluster Status Tool">
+<!ENTITY RHCLUSTERTOOL "Cluster Configuration Tool">
+<!ENTITY RHCM "&RH; Cluster Manager">
+<!ENTITY RHCS "&RH; Cluster Suite">
+<!ENTITY RHDATETOOL "Time and Date Properties Tool">
+<!ENTITY RHD "&RH; Desktop">
+<!ENTITY RHDSIG "&RH; &DS; Installation Guide">
+<!ENTITY RHDSRK "&RH; &DS; Resource Kit">
+<!ENTITY RHDSSR "&RH; &DS; Schema Reference">
+<!ENTITY RHELAS21 "&RHEL; AS 2.1 Update 5">
+<!ENTITY RHELAS3 "&RHEL; AS 3 Update 5">
+<!ENTITY RHELAS4 "&RHEL; AS 4">
+<!ENTITY RHELAS "&RHEL; AS">
+<!ENTITY RHEL "&RH; Enterprise Linux">
+<!ENTITY RHGFSTOOL "GFS Setup Druid">
+<!ENTITY RHKBDTOOL "Keyboard Configuration Tool">
+<!ENTITY RHLIGS390 "&RHL; for S/390 &IG;">
+<!ENTITY RHLOGTOOL "Log Viewer">
+<!ENTITY RHMAINMENU "Applications (the main menu on the panel)">
+<!ENTITY RHNAC "&RHN; Actions Control">
+<!ENTITY RHNAPPLET "&RHN; Alert Notification Tool">
+<!ENTITY RHNAUTHD "RHN Authentication Daemon">
+<!ENTITY RHNBT "RHN Bootstrap">
+<!ENTITY RHNCC "&RHN; Configuration Client">
+<!ENTITY RHNCLIENTCONF "&RHN; Client Configuration Guide">
+<!ENTITY RHNCM "&RHN; Configuration Manager">
+<!ENTITY RHNDB "RHN DB Control">
+<!ENTITY RHND "&RHN; Daemon">
+<!ENTITY RHNETWORKTOOL "Network Administration Tool">
+<!ENTITY RHNMD "&RHN; Monitoring Daemon">
+<!ENTITY RHNPM "RHN Package Manager">
+<!ENTITY RHNPUSH "RHN Push">
+<!ENTITY RHNRC "&RHN; Registration Client">
+<!ENTITY RHN "Red Hat Network">
+<!ENTITY RHNSA "RHN Satellite Activate">
+<!ENTITY RHNSE "RHN Satellite Exporter">
+<!ENTITY RHNSMT "RHN SSL Maintenance Tool">
+<!ENTITY RHNSST "RHN Satellite Synchronization Tool">
+<!ENTITY RHNTE "RHN Task Engine">
+<!ENTITY RHPRINTERTOOL "Printer Configuration Tool">
+<!ENTITY RHRPMTOOL "Package Management Tool">
+<!ENTITY RHSAMBATOOL "Samba Server Configuration Tool">
+<!ENTITY RHSECLEVELTOOL "Security Level Configuration Tool">
+<!ENTITY RHSECONDMENU "Actions (on the panel)">
+<!ENTITY RHSERVICESTOOL "Services Configuration Tool">
+<!ENTITY RHSETUPAGENT "Setup Agent">
+<!ENTITY RHTHIRDMENU "System (on the panel)">
+<!ENTITY RHUA "Red Hat Update Agent">
+<!ENTITY RHUSERTOOL "User Manager">
+<!ENTITY RHVIRTUALIZATION "Red Hat Virtualization">
+<!ENTITY RHXFREE86TOOL "X Configuration Tool">
+<!ENTITY RK "Resource Kit">
+<!ENTITY RN "Release Notes">
+<!ENTITY S390 "IBM S/390 and IBM eServer zSeries">
+<!ENTITY SAG "System Administration Guide">
+<!ENTITY SAT "RHN Satellite Server">
+<!ENTITY SATX "Satellite">
+<!ENTITY SBS "Step By Step Guide">
+<!ENTITY SELG "&SEL; Guide">
+<!ENTITY SGA "System Group Administrator">
+<!ENTITY SG "Security Guide">
+<!ENTITY SIG "&SAT; &SATVER; Installation Guide">
+<!ENTITY SR "Schema Reference">
+<!ENTITY SSM "System Set Manager">
+<!ENTITY STAN "Stand-Alone Database">
+<!ENTITY UG "User's Guide">
+<!ENTITY UNIX "UNIX Support">




More information about the hibernate-commits mailing list