Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

metsHdr used instead of fileSec in dfg-viewer.xsl #5861

Open
pontus-osterdahl opened this issue Dec 21, 2023 · 0 comments
Open

metsHdr used instead of fileSec in dfg-viewer.xsl #5861

pontus-osterdahl opened this issue Dec 21, 2023 · 0 comments
Labels

Comments

@pontus-osterdahl
Copy link
Contributor

Describe the bug
In the very useful new dfg-viewer.xsl there appears to be a small typo.
I believe in:

<!-- mets:fileSec -->
<xsl:template match="mets:fileSec">
<mets:metsHdr>
<xsl:copy-of select="@*"/>
<xsl:copy-of select="node()"/>
</mets:metsHdr>
</xsl:template>

We should have:

<!-- mets:fileSec -->  
<xsl:template match="mets:fileSec">
  <mets:fileSec>   
    <xsl:copy-of select="@*"/>   
    <xsl:copy-of select="node()"/>  
  </mets:fileSec>  
</xsl:template>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
Projects
None yet
Development

No branches or pull requests

1 participant