Ajusting xdoc templates css styles appropriately, these are just used for testing/preview in xml/xslt enabled browsers.

git-svn-id: https://svn.apache.org/repos/asf/jakarta/commons/proper/math/trunk@141087 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Mark R. Diggory 2004-01-30 19:58:37 +00:00
parent 98c9b07450
commit 450ff9aa92
2 changed files with 20 additions and 4 deletions

View File

@ -6,8 +6,9 @@
<xsl:apply-templates select="/document/properties/title"/>
<xsl:apply-templates select="/document/meta"/>
<style type="text/css">
@import url("../stylesheets/tigris.css");
@import url("../stylesheets/maven.css");
@import url("../style/tigris.css");
@import url("../style/maven.css");
@import url("../style/project.css");
</style>
<link rel="stylesheet" href="../style/print.css" type="text/css" media="print"></link>
</head>
@ -33,6 +34,13 @@
<xsl:apply-templates/>
</div>
</xsl:template>
<xsl:template match="source">
<div id="source">
<pre>
<xsl:apply-templates/>
</pre>
</div>
</xsl:template>
<xsl:template match="node()|@*">
<xsl:copy>
<xsl:apply-templates select="@*"/>

View File

@ -6,8 +6,9 @@
<xsl:apply-templates select="/document/properties/title"/>
<xsl:apply-templates select="/document/meta"/>
<style type="text/css">
@import url("./stylesheets/tigris.css");
@import url("./stylesheets/maven.css");
@import url("./style/tigris.css");
@import url("./style/maven.css");
@import url("./style/project.css");
</style>
<link rel="stylesheet" href="./style/print.css" type="text/css" media="print"></link>
</head>
@ -33,6 +34,13 @@
<xsl:apply-templates/>
</div>
</xsl:template>
<xsl:template match="source">
<div id="source">
<pre>
<xsl:apply-templates/>
</pre>
</div>
</xsl:template>
<xsl:template match="node()|@*">
<xsl:copy>
<xsl:apply-templates select="@*"/>