You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@uima.apache.org by sc...@apache.org on 2006/12/03 22:42:30 UTC

svn commit: r481925 - in /incubator/uima/uimaj/trunk/uima-docbooks/src/styles: html.xsl html/custom.xsl htmlsingle.xsl pdf.xsl pdf/custom.xsl

Author: schor
Date: Sun Dec  3 13:42:28 2006
New Revision: 481925

URL: http://svn.apache.org/viewvc?view=rev&rev=481925
Log:
UIMA-5 reorg of docbook

Modified:
    incubator/uima/uimaj/trunk/uima-docbooks/src/styles/html.xsl
    incubator/uima/uimaj/trunk/uima-docbooks/src/styles/html/custom.xsl
    incubator/uima/uimaj/trunk/uima-docbooks/src/styles/htmlsingle.xsl
    incubator/uima/uimaj/trunk/uima-docbooks/src/styles/pdf.xsl
    incubator/uima/uimaj/trunk/uima-docbooks/src/styles/pdf/custom.xsl

Modified: incubator/uima/uimaj/trunk/uima-docbooks/src/styles/html.xsl
URL: http://svn.apache.org/viewvc/incubator/uima/uimaj/trunk/uima-docbooks/src/styles/html.xsl?view=diff&rev=481925&r1=481924&r2=481925
==============================================================================
--- incubator/uima/uimaj/trunk/uima-docbooks/src/styles/html.xsl (original)
+++ incubator/uima/uimaj/trunk/uima-docbooks/src/styles/html.xsl Sun Dec  3 13:42:28 2006
@@ -23,7 +23,14 @@
   <xsl:import href="@file.prefix@@src.dir@/styles/html/custom.xsl" />
   <xsl:include href="@file.prefix@@tmp.dir@/html-titlepage.xsl" />
 
+  <!-- where the olink output goes -->  
+  <xsl:param name="targets.filename">@src.dir@/olink/@file@/@type@-target.db</xsl:param>
+  
+  <!-- where to find the css stylesheet -->
+  <xsl:param name="html.stylesheet">css/stylesheet.css</xsl:param>
+
   <!-- Do not use the file.prefix and make sure that you keep the trailing slash! -->
   <xsl:param name="base.dir">@html.target.dir@/</xsl:param>
+  <xsl:param name="chunk.fast" select="1"/>
 </xsl:stylesheet>
 

Modified: incubator/uima/uimaj/trunk/uima-docbooks/src/styles/html/custom.xsl
URL: http://svn.apache.org/viewvc/incubator/uima/uimaj/trunk/uima-docbooks/src/styles/html/custom.xsl?view=diff&rev=481925&r1=481924&r2=481925
==============================================================================
--- incubator/uima/uimaj/trunk/uima-docbooks/src/styles/html/custom.xsl (original)
+++ incubator/uima/uimaj/trunk/uima-docbooks/src/styles/html/custom.xsl Sun Dec  3 13:42:28 2006
@@ -18,6 +18,7 @@
 
 <xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
                 version='1.0'>
+  <xsl:param name="collect.xref.targets" select="'yes'"/>
   <!-- next 3 cause the role="xxx" to be propagated as class="xxx" in the output html -->
   <xsl:param name="para.propagates.style" select="1"/>
   <xsl:param name="emphasis.propagates.style" select="1"/>
@@ -32,14 +33,13 @@
   <xsl:param name="table.cell.border.color"  select="'black'"/>
 <!-- Activate Graphics -->
   <xsl:param name="admon.graphics" select="1"/>
-  <xsl:param name="admon.graphics.path">images/</xsl:param>
+  <xsl:param name="admon.graphics.path">../images/</xsl:param>
   <xsl:param name="admon.graphics.extension">.gif</xsl:param>
   <xsl:param name="callout.graphics" select="1" />
-  <xsl:param name="callout.graphics.path">images/callouts/</xsl:param>
+  <xsl:param name="callout.graphics.path">../images/callouts/</xsl:param>
   <xsl:param name="callout.graphics.extension">.gif</xsl:param>
 
   <xsl:param name="table.borders.with.css" select="1"/>
-  <xsl:param name="html.stylesheet">css/stylesheet.css</xsl:param>
   <xsl:param name="html.stylesheet.type">text/css</xsl:param>         
   <xsl:param name="generate.toc">book toc,title</xsl:param>         
 
@@ -52,6 +52,8 @@
 
   <xsl:param name="section.label.includes.component.label" select="1"/>
   <xsl:param name="table.footnote.number.format" select="'1'"/>
+  
+  <xsl:param name="navig.graphics.path" select="'../images/'"/>
 
 <!-- Remove "Chapter" from the Chapter titles... -->
   <xsl:param name="local.l10n.xml" select="document('')"/>

Modified: incubator/uima/uimaj/trunk/uima-docbooks/src/styles/htmlsingle.xsl
URL: http://svn.apache.org/viewvc/incubator/uima/uimaj/trunk/uima-docbooks/src/styles/htmlsingle.xsl?view=diff&rev=481925&r1=481924&r2=481925
==============================================================================
--- incubator/uima/uimaj/trunk/uima-docbooks/src/styles/htmlsingle.xsl (original)
+++ incubator/uima/uimaj/trunk/uima-docbooks/src/styles/htmlsingle.xsl Sun Dec  3 13:42:28 2006
@@ -23,5 +23,11 @@
   <xsl:import href="@file.prefix@@src.dir@/styles/html/custom.xsl" />
   <xsl:include href="@file.prefix@@tmp.dir@/html-titlepage.xsl" />
 
+  <!-- where the olink output goes -->  
+  <xsl:param name="targets.filename">@src.dir@/olink/@file@/@type@-target.db</xsl:param>
+  
+  <!-- where to find the css stylesheet -->
+  <xsl:param name="html.stylesheet">css/stylesheet.css</xsl:param>
+
 </xsl:stylesheet>
 

Modified: incubator/uima/uimaj/trunk/uima-docbooks/src/styles/pdf.xsl
URL: http://svn.apache.org/viewvc/incubator/uima/uimaj/trunk/uima-docbooks/src/styles/pdf.xsl?view=diff&rev=481925&r1=481924&r2=481925
==============================================================================
--- incubator/uima/uimaj/trunk/uima-docbooks/src/styles/pdf.xsl (original)
+++ incubator/uima/uimaj/trunk/uima-docbooks/src/styles/pdf.xsl Sun Dec  3 13:42:28 2006
@@ -33,5 +33,8 @@
   <xsl:param name="draft.watermark.image" select="'@file.prefix@@docbook.xsl@/images/draft.png'"/>
   <xsl:param name="paper.type" select="'@paper.type@'"/>
 
+  <!-- where the olink output goes -->  
+  <xsl:param name="targets.filename">@src.dir@/olink/@file@/@type@-target.db</xsl:param>
+  
 </xsl:stylesheet>
 

Modified: incubator/uima/uimaj/trunk/uima-docbooks/src/styles/pdf/custom.xsl
URL: http://svn.apache.org/viewvc/incubator/uima/uimaj/trunk/uima-docbooks/src/styles/pdf/custom.xsl?view=diff&rev=481925&r1=481924&r2=481925
==============================================================================
--- incubator/uima/uimaj/trunk/uima-docbooks/src/styles/pdf/custom.xsl (original)
+++ incubator/uima/uimaj/trunk/uima-docbooks/src/styles/pdf/custom.xsl Sun Dec  3 13:42:28 2006
@@ -19,7 +19,14 @@
 <xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
                 xmlns:fo="http://www.w3.org/1999/XSL/Format"
                 version='1.0'>
+  
+  <xsl:param name="admon.graphics.path" select="'../images/'"/>
+  <xsl:param name="navig.graphics.path" select="'../images/'"/>
+  <xsl:param name="callout.graphics.path" select="'../images/callouts/'"/>
 
+  <!-- enable olinking -->
+  <xsl:param name="collect.xref.targets" select="'yes'"/>
+  
   <xsl:param name="body.font.family"  select="'Palatino'"/>
   <xsl:param name="body.font.master"    select="'10.5'"/>
   <xsl:attribute-set name="root.properties">