summaryrefslogtreecommitdiff
path: root/readlicense_oo
diff options
context:
space:
mode:
authorKurt Zenker <kz@openoffice.org>2007-05-10 12:07:41 +0000
committerKurt Zenker <kz@openoffice.org>2007-05-10 12:07:41 +0000
commit28bce0b95f3b79a53246aced761390088d6501a6 (patch)
tree86691c3a12141f7eaae6bc94d01de764bd82d7f8 /readlicense_oo
parent904704ac646eb54b0bfe0af8809ce09d73556f38 (diff)
INTEGRATION: CWS libxslt02 (1.4.98); FILE MERGED
2006/12/27 14:17:28 cmc 1.4.98.2: #i30380# integrate libxslt 2006/12/24 09:35:52 cmc 1.4.98.1: #i30380 enable xslt usage by default
Diffstat (limited to 'readlicense_oo')
-rwxr-xr-xreadlicense_oo/docs/readme.xsl11
1 files changed, 2 insertions, 9 deletions
diff --git a/readlicense_oo/docs/readme.xsl b/readlicense_oo/docs/readme.xsl
index 5ca75ba932e7..2c98b011c315 100755
--- a/readlicense_oo/docs/readme.xsl
+++ b/readlicense_oo/docs/readme.xsl
@@ -1,10 +1,7 @@
<?xml version="1.0" encoding="ISO-8859-1"?>
-<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
- xmlns:xt="http://www.jclark.com/xt"
- extension-element-prefixes="xt" version="1.0">
-
- <xsl:output method = "HTML" doctype-public = "-//W3C//DTD HTML 3.2//EN" />
+<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" version="1.0">
+ <xsl:output method="html" doctype-public="-//W3C//DTD HTML 3.2//EN" />
<!-- inputvariable declaration -->
<xsl:param name="os1"/>
@@ -20,7 +17,6 @@
<!-- creates the HTML-output-->
<xsl:if test="$type='html'">
<!-- the outputname for htlm-files-->
- <xt:document method="html" href="{$file}">
<html>
<!-- HTML utf-8 encoding enable -->
<head>
@@ -31,14 +27,11 @@
</body>
</html>
- </xt:document>
</xsl:if>
<!-- creates the Textoutput -->
<xsl:if test="$type='text'">
<!-- the outputfilename for Textfiles -->
- <xt:document method="text" href="{$file}">
<xsl:apply-templates/>
- </xt:document>
</xsl:if>
</xsl:template>