Entwurf 1 -- Beiträge fehlen

This commit is contained in:
Simon Martens
2024-05-07 18:25:53 +02:00
parent f118cc540b
commit 738a717993
26 changed files with 306 additions and 114 deletions

9
XSLT_Merge/kgpz.xml Normal file
View File

@@ -0,0 +1,9 @@
<?xml version="1.0"?>
<kgpz xmlns:xi="http://www.w3.org/2001/XInclude">
<xi:include href="../kategorien.xml" />
<xi:include href="../orte.xml" />
<xi:include href="../akteure.xml" />
<xi:include href="../stuecke.xml" />
<xi:include href="../werke.xml" />
<xi:include href="../beitraege.xml" />
</kgpz>

3
XSLT_Merge/merge.sh Executable file
View File

@@ -0,0 +1,3 @@
#!/bin/bash
xmlstarlet tr --xinclude merge.xsl kgpz.xml

11
XSLT_Merge/merge.xsl Normal file
View File

@@ -0,0 +1,11 @@
<?xml version="1.0" encoding="UTF-8"?>
<xsl:transform version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
<xsl:output method="xml" />
<xsl:template match="/">
<xsl:copy-of select="."/>
</xsl:template>
</xsl:transform>