summaryrefslogtreecommitdiffhomepage
path: root/docs/xsls/module.xsls
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--docs/xsls/module.xsls34
1 files changed, 0 insertions, 34 deletions
diff --git a/docs/xsls/module.xsls b/docs/xsls/module.xsls
deleted file mode 100644
index 4743700bd..000000000
--- a/docs/xsls/module.xsls
+++ /dev/null
@@ -1,34 +0,0 @@
-X:stylesheet {
-
-X:output method="html" indent="no" encoding="utf-8";
-
-X:strip-space elements = "*";
-
-<!--
- -- a current directory of a XSLT script is where the script is stored,
- -- but not where XSLT processor has been started to run the script
- -->
-X:param XML = "'../xml'";
-
-X:var ID = "/module/@id";
-
-X:include href = "directive.xslt";
-X:include href = "content.xslt";
-
-
-X:template = "/module" {
- <html><head>
-
- <title> !{@name} </title>
-
- </head>
- <body>
-
- <center><h3> !{@name} </h3></center>
- !!;
-
- </body>
- </html>
-}
-
-}