You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@openjpa.apache.org by mp...@apache.org on 2006/07/26 09:36:40 UTC

svn commit: r425652 [1/3] - in /incubator/openjpa/trunk: openjpa-project/ openjpa-project/src/doc/manual/ openjpa-project/src/site/ openjpa-project/src/site/resources/ openjpa-project/src/site/resources/css/ openjpa-project/src/site/resources/img/ src/...

Author: mprudhom
Date: Wed Jul 26 00:36:39 2006
New Revision: 425652

URL: http://svn.apache.org/viewvc?rev=425652&view=rev
Log:
Documentation images and style sheets

Added:
    incubator/openjpa/trunk/openjpa-project/src/site/
    incubator/openjpa/trunk/openjpa-project/src/site/resources/
    incubator/openjpa/trunk/openjpa-project/src/site/resources/css/
    incubator/openjpa/trunk/openjpa-project/src/site/resources/css/docbook.css
    incubator/openjpa/trunk/openjpa-project/src/site/resources/img/
    incubator/openjpa/trunk/openjpa-project/src/site/resources/img/appid-hierarchy.png   (with props)
    incubator/openjpa/trunk/openjpa-project/src/site/resources/img/basic-coll.png   (with props)
    incubator/openjpa/trunk/openjpa-project/src/site/resources/img/ejb3-arch.png   (with props)
    incubator/openjpa/trunk/openjpa-project/src/site/resources/img/ejb3-assoc-table.png   (with props)
    incubator/openjpa/trunk/openjpa-project/src/site/resources/img/ejb3-basic-field.png   (with props)
    incubator/openjpa/trunk/openjpa-project/src/site/resources/img/ejb3-data-model.png   (with props)
    incubator/openjpa/trunk/openjpa-project/src/site/resources/img/ejb3-direct-relation.png   (with props)
    incubator/openjpa/trunk/openjpa-project/src/site/resources/img/ejb3-discrim-all.png   (with props)
    incubator/openjpa/trunk/openjpa-project/src/site/resources/img/ejb3-embedded.png   (with props)
    incubator/openjpa/trunk/openjpa-project/src/site/resources/img/ejb3-exceptions.png   (with props)
    incubator/openjpa/trunk/openjpa-project/src/site/resources/img/ejb3-inher-all.png   (with props)
    incubator/openjpa/trunk/openjpa-project/src/site/resources/img/ejb3-inher-joined.png   (with props)
    incubator/openjpa/trunk/openjpa-project/src/site/resources/img/ejb3-map.png   (with props)
    incubator/openjpa/trunk/openjpa-project/src/site/resources/img/ejb3-mapping-identity.png   (with props)
    incubator/openjpa/trunk/openjpa-project/src/site/resources/img/ejb3-meta-model.png   (with props)
    incubator/openjpa/trunk/openjpa-project/src/site/resources/img/ejb3-query.png   (with props)
    incubator/openjpa/trunk/openjpa-project/src/site/resources/img/ejb3-state-transitions.png   (with props)
    incubator/openjpa/trunk/openjpa-project/src/site/resources/img/ejb3-transaction.png   (with props)
    incubator/openjpa/trunk/openjpa-project/src/site/resources/img/embedded-coll.png   (with props)
    incubator/openjpa/trunk/openjpa-project/src/site/resources/img/enhancement.png   (with props)
    incubator/openjpa/trunk/openjpa-project/src/site/resources/img/entitymanager.png   (with props)
    incubator/openjpa/trunk/openjpa-project/src/site/resources/img/entitymanagerfactory.png   (with props)
    incubator/openjpa/trunk/openjpa-project/src/site/resources/img/inher-superclass-table.png   (with props)
    incubator/openjpa/trunk/openjpa-project/src/site/resources/img/inher-tpc.png   (with props)
    incubator/openjpa/trunk/openjpa-project/src/site/resources/img/inv-key-coll.png   (with props)
    incubator/openjpa/trunk/openjpa-project/src/site/resources/img/joins-constant.png   (with props)
    incubator/openjpa/trunk/openjpa-project/src/site/resources/img/persistence.png   (with props)
    incubator/openjpa/trunk/openjpa-project/src/site/resources/img/secondary-table.png   (with props)
    incubator/openjpa/trunk/openjpa-project/src/site/resources/img/sqlquery-model.png   (with props)
    incubator/openjpa/trunk/openjpa-project/src/site/resources/img/string-rel-map.png   (with props)
Removed:
    incubator/openjpa/trunk/openjpa-project/src/doc/manual/style.css
Modified:
    incubator/openjpa/trunk/openjpa-project/pom.xml
    incubator/openjpa/trunk/openjpa-project/src/doc/manual/manual-xhtml-chunk.xsl
    incubator/openjpa/trunk/openjpa-project/src/doc/manual/manual.xml
    incubator/openjpa/trunk/src/site/site.xml

Modified: incubator/openjpa/trunk/openjpa-project/pom.xml
URL: http://svn.apache.org/viewvc/incubator/openjpa/trunk/openjpa-project/pom.xml?rev=425652&r1=425651&r2=425652&view=diff
==============================================================================
--- incubator/openjpa/trunk/openjpa-project/pom.xml (original)
+++ incubator/openjpa/trunk/openjpa-project/pom.xml Wed Jul 26 00:36:39 2006
@@ -45,11 +45,13 @@
                             <tasks>
                             <echo>Building docbook manual</echo>
                             <style includes="**/manual.xml"
+                                force="true"
                                 basedir="${project.basedir}/src/doc/manual"
                                 destdir="${project.basedir}/target/filtered-site/resources/manual"
                                 style="manual-xhtml.xsl"
                                 classpathref="maven.runtime.classpath"/>
                             <style includes="**/manual.xml"
+                                force="true"
                                 basedir="${project.basedir}/src/doc/manual"
                                 destdir="${project.basedir}/target/filtered-site/resources/manual"
                                 style="manual-xhtml-chunk.xsl"

Modified: incubator/openjpa/trunk/openjpa-project/src/doc/manual/manual-xhtml-chunk.xsl
URL: http://svn.apache.org/viewvc/incubator/openjpa/trunk/openjpa-project/src/doc/manual/manual-xhtml-chunk.xsl?rev=425652&r1=425651&r2=425652&view=diff
==============================================================================
--- incubator/openjpa/trunk/openjpa-project/src/doc/manual/manual-xhtml-chunk.xsl (original)
+++ incubator/openjpa/trunk/openjpa-project/src/doc/manual/manual-xhtml-chunk.xsl Wed Jul 26 00:36:39 2006
@@ -3,9 +3,7 @@
     <!-- docbook stylesheet customizations for openjpa manual -->
 	<xsl:import href="http://docbook.sourceforge.net/release/xsl/1.69.1/xhtml/chunk.xsl"/>
 
-    <!--
-	<xsl:param name="html.stylesheet">../css/maven-base.css ../css/maven-theme.css ../css/site.css</xsl:param>
-    -->
+	<xsl:param name="html.stylesheet">../css/docbook.css</xsl:param>
 
 	<xsl:param name="html.cleanup" select="1"/>
 	<xsl:param name="label.from.part" select="1"/>