6 |
--> |
--> |
7 |
<xsl:output indent="yes" method="html" encoding="UTF-8"/> |
<xsl:output indent="yes" method="html" encoding="UTF-8"/> |
8 |
<xsl:template match="/"> |
<xsl:template match="/"> |
9 |
<html> |
<xsl:text disable-output-escaping="yes"> |
10 |
<head> |
<![CDATA[ |
11 |
<title> Formularfelder Auflistung </title> |
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd"> |
12 |
</head> |
]]> |
13 |
<body> |
</xsl:text> |
14 |
<table> |
<html> |
15 |
<tr> |
<head> |
16 |
<th>Formular Bezeichnung</th> |
<title> Formularfelder Auflistung </title> |
17 |
<th>Typ</th> |
</head> |
18 |
<th>Datenbank Id</th> |
<body> |
19 |
<th>Textfeld Laenge</th> |
<table> |
20 |
<th>Textfeld max. Laenge</th> |
<tr> |
21 |
<th>Int min. Wert</th> |
<th>Formular Bezeichnung</th> |
22 |
<th>Int max. Wert</th> |
<th>Typ</th> |
23 |
<th>Textbereich anz. Reihen</th> |
<th>Datenbank Id</th> |
24 |
<th>Textbereich anz. Spalten</th> |
<th>Textfeld Laenge</th> |
25 |
</tr> |
<th>Textfeld max. Laenge</th> |
26 |
<xsl:apply-templates/> |
<th>Int min. Wert</th> |
27 |
</table> |
<th>Int max. Wert</th> |
28 |
</body> |
<th>Textbereich anz. Reihen</th> |
29 |
</html> |
<th>Textbereich anz. Spalten</th> |
30 |
|
</tr> |
31 |
|
<xsl:apply-templates/> |
32 |
|
</table> |
33 |
|
</body> |
34 |
|
</html> |
35 |
</xsl:template> |
</xsl:template> |
36 |
|
|
37 |
<xsl:template match="group"> |
<xsl:template match="group"> |