summaryrefslogtreecommitdiff
path: root/docs-xml/xslt
diff options
context:
space:
mode:
authorJelmer Vernooij <jelmer@samba.org>2009-05-01 20:36:56 +0200
committerJelmer Vernooij <jelmer@samba.org>2009-05-01 22:49:12 +0200
commit04071251b126b37203821cc3b29a81b1dade823e (patch)
tree772a0f701eb0d98273270a3a6edabb3cbfc5e54d /docs-xml/xslt
parent38030958edba8bff1134624d8661ede4e618ad07 (diff)
downloadsamba-04071251b126b37203821cc3b29a81b1dade823e.tar.gz
samba-04071251b126b37203821cc3b29a81b1dade823e.tar.bz2
samba-04071251b126b37203821cc3b29a81b1dade823e.zip
Explicitly mention licenses in all stylesheets
Diffstat (limited to 'docs-xml/xslt')
-rw-r--r--docs-xml/xslt/expand-sambadoc.xsl6
-rw-r--r--docs-xml/xslt/expand-smbconfdoc.xsl2
-rw-r--r--docs-xml/xslt/extract-examples.xsl5
-rw-r--r--docs-xml/xslt/generate-attributions.xsl4
-rw-r--r--docs-xml/xslt/generate-dependencies.xsl4
-rw-r--r--docs-xml/xslt/html-chunk.xsl2
-rw-r--r--docs-xml/xslt/html-common.xsl2
-rw-r--r--docs-xml/xslt/html.xsl2
-rw-r--r--docs-xml/xslt/latex.xsl4
-rw-r--r--docs-xml/xslt/manpage-summary.xsl6
-rw-r--r--docs-xml/xslt/sambadoc2pearson.xsl2
-rw-r--r--docs-xml/xslt/smb.conf-html.xsl2
-rw-r--r--docs-xml/xslt/yodl.xsl1
13 files changed, 26 insertions, 16 deletions
diff --git a/docs-xml/xslt/expand-sambadoc.xsl b/docs-xml/xslt/expand-sambadoc.xsl
index 2b881490f4..97aaafbb02 100644
--- a/docs-xml/xslt/expand-sambadoc.xsl
+++ b/docs-xml/xslt/expand-sambadoc.xsl
@@ -1,7 +1,9 @@
<?xml version='1.0'?>
<!--
- Samba-documentation specific stylesheets
- Published under the GNU GPL
+ Samba-documentation specific stylesheets.
+ This stylesheet eliminates Samba-specific XML elements and replaces them with
+ DocBook-only elements.
+ Published under the GNU GPLv3 or later
(C) Jelmer Vernooij 2002-2004
-->
diff --git a/docs-xml/xslt/expand-smbconfdoc.xsl b/docs-xml/xslt/expand-smbconfdoc.xsl
index 617d490ce9..778b80c0cc 100644
--- a/docs-xml/xslt/expand-smbconfdoc.xsl
+++ b/docs-xml/xslt/expand-smbconfdoc.xsl
@@ -1,7 +1,7 @@
<?xml version='1.0'?>
<!--
smb.conf-documentation specific stylesheets
- Published under the GNU GPL
+ Published under the GNU GPLv3 or later
(C) Jelmer Vernooij 2002-2004
(C) Alexander Bokovoy 2002-2004
diff --git a/docs-xml/xslt/extract-examples.xsl b/docs-xml/xslt/extract-examples.xsl
index fc90addecc..2f3d5f4bc0 100644
--- a/docs-xml/xslt/extract-examples.xsl
+++ b/docs-xml/xslt/extract-examples.xsl
@@ -1,7 +1,9 @@
<?xml version='1.0'?>
<!--
-Extract examples out of DocBook/XML file
+ Extract examples out of a DocBook/XML file into separate files.
(C) Jelmer Vernooij 2003
+
+ Published under the GNU GPLv3 or later
-->
<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
xmlns:exsl="http://exslt.org/common"
@@ -47,4 +49,3 @@ Extract examples out of DocBook/XML file
</xsl:template>
</xsl:stylesheet>
-
diff --git a/docs-xml/xslt/generate-attributions.xsl b/docs-xml/xslt/generate-attributions.xsl
index 90e3e17568..427a740830 100644
--- a/docs-xml/xslt/generate-attributions.xsl
+++ b/docs-xml/xslt/generate-attributions.xsl
@@ -2,11 +2,13 @@
<!--
Generate Docbook/XML file with attributions based on chapter/author tags
(C) Jelmer Vernooij 2003
+
+ Published under the GNU GPLv3 or later
-->
<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
version="1.1">
- <xsl:output method="xml" doctype-public="-//Samba-Team//DTD DocBook V4.2-Based Variant V1.0//EN" doctype-system="http://www.samba.org/samba/DTD/samba-doc" indent="yes"/>
+<xsl:output method="xml" doctype-public="-//Samba-Team//DTD DocBook V4.2-Based Variant V1.0//EN" doctype-system="http://www.samba.org/samba/DTD/samba-doc" indent="yes"/>
<!-- Remove all character data -->
<xsl:template match="@*|node()">
diff --git a/docs-xml/xslt/generate-dependencies.xsl b/docs-xml/xslt/generate-dependencies.xsl
index e47ec6c698..cf4e4206f9 100644
--- a/docs-xml/xslt/generate-dependencies.xsl
+++ b/docs-xml/xslt/generate-dependencies.xsl
@@ -3,11 +3,13 @@
Find the image dependencies of a certain XML file
Generates (part of) a Makefile
- - $(FNAME)-images-latex-{png,dvi} for role=latex
+ - $(FNAME)-images-latex-{png,eps,pdf} for role=latex
- $(FNAME)-images-role for all other roles
- $(TXTDIR)/$(FNAME)-text
(C) Jelmer Vernooij 2004-2005
+
+ Published under the GNU GPLv3 or later
-->
<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" version="1.1">
<xsl:output method="text"/>
diff --git a/docs-xml/xslt/html-chunk.xsl b/docs-xml/xslt/html-chunk.xsl
index 00b310610a..9598398b62 100644
--- a/docs-xml/xslt/html-chunk.xsl
+++ b/docs-xml/xslt/html-chunk.xsl
@@ -1,6 +1,4 @@
<?xml version="1.0" encoding="utf-8"?>
-<!-- This file is generated from param.xweb; do not edit this file! -->
-
<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" version="1.0">
<xsl:import href="http://docbook.sourceforge.net/release/xsl/current/html/chunk.xsl"/>
diff --git a/docs-xml/xslt/html-common.xsl b/docs-xml/xslt/html-common.xsl
index d2609d5c5b..86d31a508e 100644
--- a/docs-xml/xslt/html-common.xsl
+++ b/docs-xml/xslt/html-common.xsl
@@ -1,6 +1,4 @@
<?xml version="1.0" encoding="utf-8"?>
-<!-- This file is generated from param.xweb; do not edit this file! -->
-
<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
xmlns:xlink='http://www.w3.org/1999/xlink'
exclude-result-prefixes="xlink"
diff --git a/docs-xml/xslt/html.xsl b/docs-xml/xslt/html.xsl
index 8481a86d24..b597b29e90 100644
--- a/docs-xml/xslt/html.xsl
+++ b/docs-xml/xslt/html.xsl
@@ -1,6 +1,4 @@
<?xml version="1.0" encoding="utf-8"?>
-<!-- This file is generated from param.xweb; do not edit this file! -->
-
<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" version="1.0">
<xsl:import href="http://docbook.sourceforge.net/release/xsl/current/html/docbook.xsl"/>
diff --git a/docs-xml/xslt/latex.xsl b/docs-xml/xslt/latex.xsl
index 2891ee1feb..9f6abdb1ac 100644
--- a/docs-xml/xslt/latex.xsl
+++ b/docs-xml/xslt/latex.xsl
@@ -1,8 +1,8 @@
<?xml version="1.0" encoding="ISO-8859-1"?>
<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" version='1.0'
xmlns:samba="http://www.samba.org/samba/DTD/samba-doc">
-
-<!-- Remove bits from the manual pages that are not relevant for the book -->
+ <!-- Remove bits from the manual pages that are not relevant for the HOWTO Collection,
+ such as author info, etc -->
<xsl:import href="strip-references.xsl"/>
<xsl:param name="latex.mapping.xml" select="document('latex.overrides.xml')"/>
diff --git a/docs-xml/xslt/manpage-summary.xsl b/docs-xml/xslt/manpage-summary.xsl
index 295cf85749..59bf6dc965 100644
--- a/docs-xml/xslt/manpage-summary.xsl
+++ b/docs-xml/xslt/manpage-summary.xsl
@@ -1,4 +1,10 @@
<?xml version='1.0'?>
+<!--
+ Generate a summary page with a list of links to all manual pages
+
+ Copyright (C) 2004 Jelmer Vernooij <jelmer@samba.org>
+ Published under the GNU GPLv3 or later
+-->
<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
xmlns:exsl="http://exslt.org/common"
version="1.1">
diff --git a/docs-xml/xslt/sambadoc2pearson.xsl b/docs-xml/xslt/sambadoc2pearson.xsl
index d712419375..61008890ee 100644
--- a/docs-xml/xslt/sambadoc2pearson.xsl
+++ b/docs-xml/xslt/sambadoc2pearson.xsl
@@ -3,6 +3,8 @@
Convert DocBook to XML validating against the Pearson DTD
(C) Jelmer Vernooij <jelmer@samba.org> 2004
+
+ Released under the GNU GPLv3 or later
-->
<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
xmlns:doc="http://nwalsh.com/xsl/documentation/1.0"
diff --git a/docs-xml/xslt/smb.conf-html.xsl b/docs-xml/xslt/smb.conf-html.xsl
index ebf07d9161..fe1a1ccf4e 100644
--- a/docs-xml/xslt/smb.conf-html.xsl
+++ b/docs-xml/xslt/smb.conf-html.xsl
@@ -1,7 +1,7 @@
<?xml version='1.0'?>
<!--
Samba-documentation specific stylesheets
- Published under the GNU GPL
+ Published under the GNU GPLv3 or later
(C) Jelmer Vernooij 2005
-->
diff --git a/docs-xml/xslt/yodl.xsl b/docs-xml/xslt/yodl.xsl
index bac86c826c..d33cdd6b19 100644
--- a/docs-xml/xslt/yodl.xsl
+++ b/docs-xml/xslt/yodl.xsl
@@ -6,6 +6,7 @@
yodl macros are used
(C) Jelmer Vernooij 2004
+ Published under the GNU GPLv3 or later
-->
<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
xmlns:exsl="http://exslt.org/common"