diff options
| author | Igor Sysoev <igor@sysoev.ru> | 2011-08-05 09:25:34 +0000 |
|---|---|---|
| committer | Igor Sysoev <igor@sysoev.ru> | 2011-08-05 09:25:34 +0000 |
| commit | a6c91b11bf77264badc714e53e710803cf181a73 (patch) | |
| tree | b4576ab20a25dda2044d3ef64ab98af86d23f9bc /docs/xsls/module.xsls | |
| parent | f549c03524626bde4ed52c6a009ac769079f5fb4 (diff) | |
| download | nginx-a6c91b11bf77264badc714e53e710803cf181a73.tar.gz nginx-a6c91b11bf77264badc714e53e710803cf181a73.tar.bz2 | |
skeleton for documentation processing
Diffstat (limited to 'docs/xsls/module.xsls')
| -rw-r--r-- | docs/xsls/module.xsls | 33 |
1 files changed, 33 insertions, 0 deletions
diff --git a/docs/xsls/module.xsls b/docs/xsls/module.xsls new file mode 100644 index 000000000..17b28ebe3 --- /dev/null +++ b/docs/xsls/module.xsls @@ -0,0 +1,33 @@ +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 LINK = "/module/@link"; + +X:include href = "directive.xslt"; +X:include href = "content.xslt"; + + +X:template = "/module" { + <html><head> + + <title> !{@title} </title> + + </head> + <body> + + !!; + + </body> + </html> +} + +} |
