Entity References (trivial question)

Richard Tobin richard at cogsci.ed.ac.uk
Tue Oct 20 16:56:50 BST 1998


> > <!ENTITY % DocumentBase SYSTEM "../">
> > <!ENTITY % DtdBase SYSTEM "%DocumentBase;config/">
> > <!ENTITY % SpecificDocumentType SYSTEM
> > "%DtdBase;specific_document_type.dtd">

> Parameter entity references aren't interpreted inside system literals.

Also you didn't want the SYSTEM keywords in at least the first two
declarations.

You can achieve the effect you want by having a parameter entity
expand to the whole entity declaration:

<!ENTITY % DocumentBase "../">
<!ENTITY % DtdBase "%DocumentBase;config/">

<!ENTITY % SpecificDocumentTypeDecl
  "<!ENTITY &#37; SpecificDocumentType SYSTEM '%DtdBase;spec_doc_type.dtd'>">
%SpecificDocumentTypeDecl;     <!--  this defines SpecificDocumentType -->

%SpecificDocumentType;

-- Richard

xml-dev: A list for W3C XML Developers. To post, mailto:xml-dev at ic.ac.uk
Archived as: http://www.lists.ic.ac.uk/hypermail/xml-dev/
To (un)subscribe, mailto:majordomo at ic.ac.uk the following message;
(un)subscribe xml-dev
To subscribe to the digests, mailto:majordomo at ic.ac.uk the following message;
subscribe xml-dev-digest
List coordinator, Henry Rzepa (mailto:rzepa at ic.ac.uk)




More information about the Xml-dev mailing list