Re: [xsl] Adding entity declarations to DOCTYPE in xml output

Subject: Re: [xsl] Adding entity declarations to DOCTYPE in xml output
From: "Michele R Combs mrrothen@xxxxxxx" <xsl-list-service@xxxxxxxxxxxxxxxxxxxxxx>
Date: Tue, 26 Feb 2019 21:08:02 -0000
Ah, wait, I see what you're suggesting: not *changing* it to a local version,
but referencing it *along with* our local additions.  Even better!

Sorry for being dense there.  End of the day, my brain is tired.

Michele

-----Original Message-----
From: Michele R Combs
Sent: Tuesday, February 26, 2019 4:05 PM
To: 'xsl-list@xxxxxxxxxxxxxxxxxxxxxx' <xsl-list@xxxxxxxxxxxxxxxxxxxxxx>
Subject: RE: [xsl] Adding entity declarations to DOCTYPE in xml output

Now there's a thought.  I've been hesitant in the past to have a local version
of an international standard, since any release of a new version would then
require re-doing our local customizations, but it's worth considering --
especially since we're using an older (and therefore fixed) version of EAD at
this point anyway.  Thanks for the idea!

Michele

-----Original Message-----
From: David Carlisle d.p.carlisle@xxxxxxxxx
<xsl-list-service@xxxxxxxxxxxxxxxxxxxxxx>
Sent: Tuesday, February 26, 2019 3:23 PM
To: xsl-list@xxxxxxxxxxxxxxxxxxxxxx
Subject: Re: [xsl] Adding entity declarations to DOCTYPE in xml output

Do you have to have it as

<!DOCTYPE ead PUBLIC "+//ISBN 1-931666-00-8//DTD ead.dtd (Encoded Archival
Description (EAD) Version 2002)//EN" "../ead_dtd/ead.dtd" [ <!ENTITY sua_name
SYSTEM "sua_name.txt"> <!ENTITY sua_address SYSTEM "sua_address.txt"> <!ENTITY
subjindex SYSTEM "sua_index.txt"> <!ENTITY summitref SYSTEM "summit_ref.txt">
]>

or can you re-arrange to

<!DOCTYPE ead SYSTEM "ead-local.dtd">


where ead-local.dtd is something like

<!ENTITY % ead PUBLIC "+//ISBN 1-931666-00-8//DTD ead.dtd (Encoded Archival
Description (EAD) Version 2002)//EN" "../ead_dtd/ead.dtd" > <!ENTITY sua_name
SYSTEM "sua_name.txt"> <!ENTITY sua_address SYSTEM "sua_address.txt"> <!ENTITY
subjindex SYSTEM "sua_index.txt"> <!ENTITY summitref SYSTEM "summit_ref.txt">
%ead;



That way you just need to specify ead-local.dtd  to xslt via doctype-system.

David

Current Thread