[hibernate-commits] Hibernate SVN: r15344 - in search/trunk/doc/reference: en and 2 other directories.

hibernate-commits at lists.jboss.org hibernate-commits at lists.jboss.org
Mon Oct 13 15:06:38 EDT 2008


Author: hardy.ferentschik
Date: 2008-10-13 15:06:38 -0400 (Mon, 13 Oct 2008)
New Revision: 15344

Added:
   search/trunk/doc/reference/support/lib/xinclude-task-0.2.jar
   search/trunk/doc/reference/support/lib/xincluder.jar
Removed:
   search/trunk/doc/reference/.cvsignore
Modified:
   search/trunk/doc/reference/build.xml
   search/trunk/doc/reference/docbook-common-build.xml
   search/trunk/doc/reference/en/master.xml
   search/trunk/doc/reference/en/modules/architecture.xml
   search/trunk/doc/reference/en/modules/batchindex.xml
   search/trunk/doc/reference/en/modules/configuration.xml
   search/trunk/doc/reference/en/modules/getting-started.xml
   search/trunk/doc/reference/en/modules/lucene-native.xml
   search/trunk/doc/reference/en/modules/mapping.xml
   search/trunk/doc/reference/en/modules/optimize.xml
   search/trunk/doc/reference/en/modules/query.xml
Log:
HSEARCH-231 - switched to use xi:includes for the modules in order to use the latest version xml mind editor. This change will also help to switch later to the maven jdocbook plugin. In order to use xi:include I had to add one more intermediate target using xinclude.

Deleted: search/trunk/doc/reference/.cvsignore
===================================================================
(Binary files differ)

Modified: search/trunk/doc/reference/build.xml
===================================================================
--- search/trunk/doc/reference/build.xml	2008-10-13 15:29:23 UTC (rev 15343)
+++ search/trunk/doc/reference/build.xml	2008-10-13 19:06:38 UTC (rev 15344)
@@ -3,6 +3,16 @@
     <import file="docbook-common-build.xml"/>
     <target name="all.doc" depends="clean">
 
+        <echo>
+           To build the reference docs for a particular language only, use "ant -Dlang=en", for
+           example, and call either lang.all, lang.docpdf, lang.dochtml, or lang.dochtmlsingle
+           for the target of your choice.
+
+           You can also call lang.section-check to track down missing identifiers in a particular
+           language, or you can call lang.revdiff to get a difference report for a particular
+           language, compared with the English reference.
+        </echo>
+
         <!-- TRANSLATOR: Duplicate this call for your language -->
         <antcall target="lang.all">
             <param name="docname" value="hibernate_search"/>

Modified: search/trunk/doc/reference/docbook-common-build.xml
===================================================================
--- search/trunk/doc/reference/docbook-common-build.xml	2008-10-13 15:29:23 UTC (rev 15343)
+++ search/trunk/doc/reference/docbook-common-build.xml	2008-10-13 19:06:38 UTC (rev 15344)
@@ -1,29 +1,20 @@
-<!--
-   To build the reference docs for a particular language only, use "ant -Dlang=en", for
-   example, and call either lang.all, lang.docpdf, lang.dochtml, or lang.dochtmlsingle
-   for the target of your choice.
-
-   You can also call lang.section-check to track down missing identifiers in a particular
-   language, or you can call lang.revdiff to get a difference report for a particular
-   language, compared with the English reference.
--->
 <project name="ReferenceDocumentation" default="all.doc" basedir=".">
     <!-- Allow this to be overriden by others importing this project. -->
     <dirname property="imported.basedir" file="${ant.file.ReferenceDocumentation}"/>
 
     <!-- Set build directories for all formats. -->
-    <property name="build.dir"             value="${basedir}/build"/>
+    <property name="build.dir" value="${basedir}/build"/>
 
     <!-- Support files for build process. -->
-    <property name="support.dir"           value="${imported.basedir}/support"/>
+    <property name="support.dir" value="${imported.basedir}/support"/>
 
     <!-- Base name for documentation artifacts. -->
-    <property name="docname"               value="hibernate_reference"/>
+    <property name="docname" value="hibernate_reference"/>
 
     <!-- Set DocBook stylesheets. -->
-    <property name="db.style.fopdf"        value="fopdf.xsl"/>
-    <property name="db.style.html"         value="html_chunk.xsl"/>
-    <property name="db.style.htmlsingle"   value="html.xsl"/>
+    <property name="db.style.fopdf" value="fopdf.xsl"/>
+    <property name="db.style.html" value="html_chunk.xsl"/>
+    <property name="db.style.htmlsingle" value="html.xsl"/>
 
     <!-- Classpath for the build tools. -->
     <path id="lib.classpath">
@@ -32,6 +23,8 @@
         </fileset>
     </path>
 
+    <taskdef name="xinclude" classname="org.znerd.xincludetask.XIncludeTask" classpathref="lib.classpath"/>
+
     <!-- ################################################################## -->
 
     <target name="all.doc"
@@ -39,38 +32,38 @@
             description="Compile documentation for all languages and all formats.">
 
         <!-- TRANSLATOR: Duplicate this line for your language -->
-        <antcall target="lang.all"><param name="lang" value="en"/></antcall>
-        <antcall target="lang.all"><param name="lang" value="fr"/></antcall>
-        <!-- TODO: These translations need updating before we can enable them...
-        <antcall target="lang.all"><param name="lang" value="ja"/></antcall>
-    	<antcall target="lang.all"><param name="lang" value="ko"/></antcall>
-        <antcall target="lang.all"><param name="lang" value="zh-cn"/></antcall>
-    	-->
-
+        <antcall target="lang.all">
+            <param name="lang" value="en"/>
+        </antcall>
+        <!--antcall target="lang.all">
+            <param name="lang" value="fr"/>
+        </antcall-->
     </target>
 
     <target name="all.revdiff"
             description="Generates a diff report for all translated versions.">
 
         <!-- TRANSLATOR: Duplicate this line for your language -->
-		<antcall target="lang.revdiff"><param name="lang" value="fr"/></antcall>
-        <antcall target="lang.revdiff"><param name="lang" value="ko"/></antcall>
-		<antcall target="lang.revdiff"><param name="lang" value="ja"/></antcall>
-        <antcall target="lang.revdiff"><param name="lang" value="zh-cn"/></antcall>
-
+        <antcall target="lang.revdiff">
+            <param name="lang" value="fr"/>
+        </antcall>
     </target>
 
     <!-- ################################################################## -->
 
     <target name="clean">
-
         <!-- Delete build directory. -->
         <delete dir="${build.dir}"/>
+    </target>
 
+    <target name="xinclude" description="Resolve xi:include references and generate a complete master document.">
+        <mkdir dir="${build.dir}/${lang}"/>
+        <xinclude in="${basedir}/${lang}/master.xml" out="${build.dir}/${lang}/master.xml"/>
     </target>
 
-    <target name="lang.all">
+    <target name="lang.all">        
         <!-- Compile the documentation for a single language in all formats. -->
+        <antcall target="xinclude"/>
         <antcall target="lang.docpdf"/>
         <antcall target="lang.dochtml"/>
         <antcall target="lang.dochtmlsingle"/>
@@ -90,11 +83,12 @@
         </copy>
 
         <!-- Create the XSL/FO temporary file. -->
-        <java classname="com.icl.saxon.StyleSheet" fork="true" dir="${basedir}" maxmemory="128m" >
+        <java classname="com.icl.saxon.StyleSheet" fork="true" dir="${basedir}" maxmemory="128m">
             <classpath refid="lib.classpath"/>
             <arg value="-o"/>
             <arg value="${build.dir}/${lang}/pdf/docbook_fop.tmp"/>
-            <arg value="${basedir}/${lang}/master.xml"/>
+
+            <arg value="${build.dir}/${lang}/master.xml"/>
             <arg value="${basedir}/${lang}/styles/${db.style.fopdf}"/>
         </java>
 
@@ -110,7 +104,7 @@
         </copy>
 
         <!-- Create a PDF from the XSL/FO, using customized fop userconfig.xml -->
-        <java classname="org.apache.fop.apps.Fop" fork="true" dir="${basedir}" maxmemory="128m" >
+        <java classname="org.apache.fop.apps.Fop" fork="true" dir="${basedir}" maxmemory="128m">
             <classpath refid="lib.classpath"/>
             <arg value="-c"/>
             <arg value="${basedir}/${lang}/fop/userconfig.xml"/>
@@ -128,29 +122,29 @@
         </java>
     </target>
 
-    <target name="lang.docpdf" depends="lang.docpdf.normal,lang.docpdf.customized"
+    <target name="lang.docpdf" depends="xinclude,lang.docpdf.normal,lang.docpdf.customized"
             description="Generates the PDF documentation only for a language (set lang)">
         <!-- House keeping,delete temporary files. -->
         <delete>
             <fileset dir="${build.dir}/${lang}/pdf" excludes="**/*.pdf"/>
         </delete>
-        <delete  dir="${build.dir}/${lang}/pdf/images"/>
+        <delete dir="${build.dir}/${lang}/pdf/images"/>
     </target>
 
-    <target name="lang.dochtml"
+    <target name="lang.dochtml" depends="xinclude"
             description="Generates the HTML documentation only for a language (set lang)">
 
         <mkdir dir="${build.dir}/${lang}/html/"/>
 
         <java classname="com.icl.saxon.StyleSheet" fork="true" dir="${build.dir}/${lang}/html">
             <classpath refid="lib.classpath"/>
-            <arg value="${basedir}/${lang}/master.xml"/>
+            <arg value="${build.dir}/${lang}/master.xml"/>
             <arg value="${basedir}/${lang}/styles/${db.style.html}"/>
         </java>
     </target>
 
-    <target name="lang.dochtmlsingle"
-        description="Generates the single-page HTML documentation only for a language (set lang)">
+    <target name="lang.dochtmlsingle" depends="xinclude"
+            description="Generates the single-page HTML documentation only for a language (set lang)">
 
         <mkdir dir="${build.dir}/${lang}/html_single/"/>
 
@@ -158,7 +152,7 @@
             <classpath refid="lib.classpath"/>
             <arg value="-o"/>
             <arg value="${build.dir}/${lang}/html_single/index.html"/>
-            <arg value="${basedir}/${lang}/master.xml"/>
+            <arg value="${build.dir}/${lang}/master.xml"/>
             <arg value="${basedir}/${lang}/styles/${db.style.htmlsingle}"/>
         </java>
     </target>
@@ -180,28 +174,28 @@
 
     </target>
 
-    <target name="lang.revdiff"
+    <target name="lang.revdiff" depends="xinclude"
             description="Reports difference between English and translation (set lang)">
 
-		<mkdir dir="${build.dir}"/>
+        <mkdir dir="${build.dir}"/>
 
         <taskdef name="revdiff"
-            classname="org.hibernate.docproc.revdiff.RevDiffReportTask"
-            classpathref="lib.classpath">
+                 classname="org.hibernate.docproc.revdiff.RevDiffReportTask"
+                 classpathref="lib.classpath">
 
         </taskdef>
 
-        <revdiff original="${basedir}/en/master.xml"
-                 copy="${basedir}/${lang}/master.xml"
+        <revdiff original="${build.dir}/en/master.xml"
+                 copy="${build.dir}/${lang}/master.xml"
                  report="${build.dir}/status_${lang}.html"/>
 
     </target>
 
-    <target name="lang.section-check" depends="lang.dochtml"
+    <target name="lang.section-check" depends="xinclude,lang.dochtml"
             description="Reports missing unique chapter/section identifiers (set lang)">
         <java classname="com.icl.saxon.StyleSheet" fork="true" dir="${build.dir}/${lang}/html">
             <classpath refid="lib.classpath"/>
-            <arg value="${basedir}/${lang}/master.xml"/>
+            <arg value="${build.dir}/${lang}/master.xml"/>
             <arg value="${support.dir}/section-check.xsl"/>
         </java>
     </target>

Modified: search/trunk/doc/reference/en/master.xml
===================================================================
--- search/trunk/doc/reference/en/master.xml	2008-10-13 15:29:23 UTC (rev 15343)
+++ search/trunk/doc/reference/en/master.xml	2008-10-13 19:06:38 UTC (rev 15344)
@@ -1,16 +1,34 @@
 <?xml version="1.0" encoding="UTF-8"?>
 <!--  $Id$ -->
-<!DOCTYPE book PUBLIC "-//OASIS//DTD DocBook XML V4.3CR3//EN"
-"../support/docbook-dtd/docbookx.dtd" [
-<!ENTITY getting-started SYSTEM "modules/getting-started.xml">
-<!ENTITY architecture SYSTEM "modules/architecture.xml">
-<!ENTITY configuration SYSTEM "modules/configuration.xml">
-<!ENTITY mapping SYSTEM "modules/mapping.xml">
-<!ENTITY query SYSTEM "modules/query.xml">
-<!ENTITY batchindex SYSTEM "modules/batchindex.xml">
-<!ENTITY optimize SYSTEM "modules/optimize.xml">
-<!ENTITY lucene-native SYSTEM "modules/lucene-native.xml">
+<!--
+  ~ 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
+  -->
+<!DOCTYPE book PUBLIC "-//OASIS//DTD DocBook XML V4.5//EN" "http://www.oasis-open.org/docbook/xml/4.5/docbookx.dtd" [
+        <!ENTITY versionNumber "3.1.0.Beta1">
+        <!ENTITY copyrightYear "2004">
+        <!ENTITY copyrightHolder "Red Hat Middleware, LLC.">
 ]>
+
 <book lang="en">
   <bookinfo>
     <title>Hibernate Search</title>
@@ -19,7 +37,7 @@
 
     <subtitle>Reference Guide</subtitle>
 
-    <releaseinfo>3.1.0.Beta1</releaseinfo>
+    <releaseinfo>&versionNumber;</releaseinfo>
 
     <mediaobject>
       <imageobject>
@@ -50,19 +68,13 @@
 
   </preface>
 
-  &getting-started; 
+  <xi:include href="modules/getting-started.xml" xmlns:xi="http://www.w3.org/2001/XInclude" />
+  <xi:include href="modules/architecture.xml" xmlns:xi="http://www.w3.org/2001/XInclude" />
+  <xi:include href="modules/configuration.xml" xmlns:xi="http://www.w3.org/2001/XInclude" />
+  <xi:include href="modules/mapping.xml" xmlns:xi="http://www.w3.org/2001/XInclude" />
+  <xi:include href="modules/query.xml" xmlns:xi="http://www.w3.org/2001/XInclude" />
+  <xi:include href="modules/batchindex.xml" xmlns:xi="http://www.w3.org/2001/XInclude" />
+  <xi:include href="modules/optimize.xml" xmlns:xi="http://www.w3.org/2001/XInclude" />
+  <xi:include href="modules/lucene-native.xml" xmlns:xi="http://www.w3.org/2001/XInclude" />
 
-  &architecture;
-
-  &configuration;
-
-  &mapping;
-
-  &query;
-
-  &batchindex;
-
-  &optimize;
-
-  &lucene-native;
 </book>
\ No newline at end of file

Modified: search/trunk/doc/reference/en/modules/architecture.xml
===================================================================
--- search/trunk/doc/reference/en/modules/architecture.xml	2008-10-13 15:29:23 UTC (rev 15343)
+++ search/trunk/doc/reference/en/modules/architecture.xml	2008-10-13 19:06:38 UTC (rev 15344)
@@ -1,4 +1,29 @@
 <?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
+  -->
+
+<!DOCTYPE chapter PUBLIC "-//OASIS//DTD DocBook XML V4.5//EN" "http://www.oasis-open.org/docbook/xml/4.5/docbookx.dtd"> 
 <chapter id="search-architecture">
   <!--  $Id$ -->
 

Modified: search/trunk/doc/reference/en/modules/batchindex.xml
===================================================================
--- search/trunk/doc/reference/en/modules/batchindex.xml	2008-10-13 15:29:23 UTC (rev 15343)
+++ search/trunk/doc/reference/en/modules/batchindex.xml	2008-10-13 19:06:38 UTC (rev 15344)
@@ -1,4 +1,29 @@
 <?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
+  -->
+
+<!DOCTYPE chapter PUBLIC "-//OASIS//DTD DocBook XML V4.5//EN" "http://www.oasis-open.org/docbook/xml/4.5/docbookx.dtd"> 
 <chapter id="search-batchindex">
   <!--  $Id$ -->
 

Modified: search/trunk/doc/reference/en/modules/configuration.xml
===================================================================
--- search/trunk/doc/reference/en/modules/configuration.xml	2008-10-13 15:29:23 UTC (rev 15343)
+++ search/trunk/doc/reference/en/modules/configuration.xml	2008-10-13 19:06:38 UTC (rev 15344)
@@ -1,4 +1,29 @@
 <?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
+  -->
+
+<!DOCTYPE chapter PUBLIC "-//OASIS//DTD DocBook XML V4.5//EN" "http://www.oasis-open.org/docbook/xml/4.5/docbookx.dtd"> 
 <chapter id="search-configuration">
   <!--  $Id$ -->
 

Modified: search/trunk/doc/reference/en/modules/getting-started.xml
===================================================================
--- search/trunk/doc/reference/en/modules/getting-started.xml	2008-10-13 15:29:23 UTC (rev 15343)
+++ search/trunk/doc/reference/en/modules/getting-started.xml	2008-10-13 19:06:38 UTC (rev 15344)
@@ -1,4 +1,29 @@
 <?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
+  -->
+
+<!DOCTYPE chapter PUBLIC "-//OASIS//DTD DocBook XML V4.5//EN" "http://www.oasis-open.org/docbook/xml/4.5/docbookx.dtd">        
 <chapter id="getting-started">
   <!--  $Id$ -->
 

Modified: search/trunk/doc/reference/en/modules/lucene-native.xml
===================================================================
--- search/trunk/doc/reference/en/modules/lucene-native.xml	2008-10-13 15:29:23 UTC (rev 15343)
+++ search/trunk/doc/reference/en/modules/lucene-native.xml	2008-10-13 19:06:38 UTC (rev 15344)
@@ -1,4 +1,29 @@
 <?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
+  -->
+
+<!DOCTYPE chapter PUBLIC "-//OASIS//DTD DocBook XML V4.5//EN" "http://www.oasis-open.org/docbook/xml/4.5/docbookx.dtd"> 
 <chapter id="search-lucene-native">
   <!--  $Id$ -->
 

Modified: search/trunk/doc/reference/en/modules/mapping.xml
===================================================================
--- search/trunk/doc/reference/en/modules/mapping.xml	2008-10-13 15:29:23 UTC (rev 15343)
+++ search/trunk/doc/reference/en/modules/mapping.xml	2008-10-13 19:06:38 UTC (rev 15344)
@@ -1,4 +1,29 @@
 <?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
+  -->
+
+<!DOCTYPE chapter PUBLIC "-//OASIS//DTD DocBook XML V4.5//EN" "http://www.oasis-open.org/docbook/xml/4.5/docbookx.dtd"> 
 <chapter id="search-mapping" revision="3">
   <!--  $Id$ -->
 

Modified: search/trunk/doc/reference/en/modules/optimize.xml
===================================================================
--- search/trunk/doc/reference/en/modules/optimize.xml	2008-10-13 15:29:23 UTC (rev 15343)
+++ search/trunk/doc/reference/en/modules/optimize.xml	2008-10-13 19:06:38 UTC (rev 15344)
@@ -1,4 +1,29 @@
 <?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
+  -->
+
+<!DOCTYPE chapter PUBLIC "-//OASIS//DTD DocBook XML V4.5//EN" "http://www.oasis-open.org/docbook/xml/4.5/docbookx.dtd"> 
 <chapter id="search-optimize">
   <!--  $Id$ -->
 

Modified: search/trunk/doc/reference/en/modules/query.xml
===================================================================
--- search/trunk/doc/reference/en/modules/query.xml	2008-10-13 15:29:23 UTC (rev 15343)
+++ search/trunk/doc/reference/en/modules/query.xml	2008-10-13 19:06:38 UTC (rev 15344)
@@ -1,4 +1,29 @@
 <?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
+  -->
+
+<!DOCTYPE chapter PUBLIC "-//OASIS//DTD DocBook XML V4.5//EN" "http://www.oasis-open.org/docbook/xml/4.5/docbookx.dtd"> 
 <chapter id="search-query" xreflabel="Querying">
   <!--  $Id$ -->
 

Added: search/trunk/doc/reference/support/lib/xinclude-task-0.2.jar
===================================================================
(Binary files differ)


Property changes on: search/trunk/doc/reference/support/lib/xinclude-task-0.2.jar
___________________________________________________________________
Name: svn:mime-type
   + application/octet-stream

Added: search/trunk/doc/reference/support/lib/xincluder.jar
===================================================================
(Binary files differ)


Property changes on: search/trunk/doc/reference/support/lib/xincluder.jar
___________________________________________________________________
Name: svn:mime-type
   + application/octet-stream




More information about the hibernate-commits mailing list