-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
#218 and some other changes in passing
- Loading branch information
Showing
12 changed files
with
176 additions
and
69 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,29 @@ | ||
<?xml version="1.0" encoding="UTF-8"?> | ||
|
||
<!-- | ||
Document : communication2HTML.xsl | ||
Created on : 19 December 2024, 14:17 | ||
Author : bernd | ||
Description: | ||
Purpose of transformation follows. | ||
--> | ||
|
||
<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" version="2.0"> | ||
<xsl:output method="html"/> | ||
|
||
<xsl:template match="/"> | ||
<table class="table table-striped"> | ||
<xsl:apply-templates select="//Communication/Description/Key"> | ||
<xsl:sort select="@Name"/> | ||
</xsl:apply-templates> | ||
</table> | ||
</xsl:template> | ||
|
||
<xsl:template match="Key"> | ||
<tr> | ||
<td class="metadatakey"><xsl:value-of select="@Name"/></td> | ||
<td class="metadatavalue"><xsl:value-of select="text()"/></td> | ||
</tr> | ||
</xsl:template> | ||
|
||
</xsl:stylesheet> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,29 @@ | ||
<?xml version="1.0" encoding="UTF-8"?> | ||
|
||
<!-- | ||
Document : communication2HTML.xsl | ||
Created on : 19 December 2024, 14:17 | ||
Author : bernd | ||
Description: | ||
Purpose of transformation follows. | ||
--> | ||
|
||
<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" version="2.0"> | ||
<xsl:output method="html"/> | ||
|
||
<xsl:template match="/"> | ||
<table class="table table-striped"> | ||
<xsl:apply-templates select="//Speaker/Description/Key"> | ||
<xsl:sort select="@Name"/> | ||
</xsl:apply-templates> | ||
</table> | ||
</xsl:template> | ||
|
||
<xsl:template match="Key"> | ||
<tr> | ||
<td class="metadatakey"><xsl:value-of select="@Name"/></td> | ||
<td class="metadatavalue"><xsl:value-of select="text()"/></td> | ||
</tr> | ||
</xsl:template> | ||
|
||
</xsl:stylesheet> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.