forked from MichielCM/xsd2html2xml
-
Notifications
You must be signed in to change notification settings - Fork 0
/
init.xsl
49 lines (38 loc) · 1.73 KB
/
init.xsl
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
<?xml version="1.0"?>
<xsl:stylesheet
version="3.0"
xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
xmlns:xs="http://www.w3.org/2001/XMLSchema">
<xsl:template name="init">
<xsl:call-template name="inform">
<xsl:with-param name="message">---</xsl:with-param>
</xsl:call-template>
<xsl:call-template name="inform">
<xsl:with-param name="message">Running XSD2HTML2XML version 3</xsl:with-param>
</xsl:call-template>
<xsl:call-template name="inform">
<xsl:with-param name="message">Michiel Meulendijk (mail@michielmeulendijk.nl) / Leiden University Medical Center</xsl:with-param>
</xsl:call-template>
<xsl:call-template name="inform">
<xsl:with-param name="message">MIT License</xsl:with-param>
</xsl:call-template>
<xsl:call-template name="inform">
<xsl:with-param name="message">https://github.com/MichielCM/xsd2html2xml</xsl:with-param>
</xsl:call-template>
<xsl:call-template name="inform">
<xsl:with-param name="message">---</xsl:with-param>
</xsl:call-template>
<xsl:call-template name="inform">
<xsl:with-param name="message">XSLT Processor: <xsl:value-of select="system-property('xsl:vendor')" /></xsl:with-param>
</xsl:call-template>
<xsl:call-template name="inform">
<xsl:with-param name="message">XSLT Version: <xsl:value-of select="system-property('xsl:version')" /></xsl:with-param>
</xsl:call-template>
<xsl:call-template name="inform">
<xsl:with-param name="message">Debug Options: <xsl:value-of select="$config-debug" /></xsl:with-param>
</xsl:call-template>
<xsl:call-template name="inform">
<xsl:with-param name="message">---</xsl:with-param>
</xsl:call-template>
</xsl:template>
</xsl:stylesheet>