[
Lists Home |
Date Index |
Thread Index
]
- From: "John E. Simpson" <simpson@polaris.net>
- To: "Wang, Dapeng" <Dapeng.Wang@Dresdner-Bank.com>
- Date: Fri, 13 Aug 1999 09:13:00 -0400
At 02:45 PM 8/13/1999 +0200, Wang, Dapeng wrote:
>I'm testing lotusxsl to apply transform XML to HTML. I used entities like
>ö for german umlauts, which lotusxsl complains that it is undefined. I
>think there must be some file containing the standard entity definitions.
>Can anybody tell where I can find it and how to include it.
Check James Tauber's schema.net site, particularly:
http://www.schema.net/entities/
Lots and lots of entity definitions there, all of them (I believe) prepared
by Rick Jelliffe. There are also instructions there on including them in
your own DTDs, although the instructions focus on SGML rather than XML
(i.e. on using public rather than system identifiers).
Basically, in an XML DTD the idea is to define an external parameter entity
for each entity set you want to use, then refer to that parameter entity in
the DTD. Something like this:
<!ENTITY % addedlatin1
SYSTEM "http://www.schema.net/public-text/ISOlat1.pen">
%addedlatin1;
=============================================================
John E. Simpson | It's no disgrace t'be poor,
simpson@polaris.net | but it might as well be.
| -- "Kin" Hubbard
xml-dev: A list for W3C XML Developers. To post, mailto:xml-dev@ic.ac.uk
Archived as: http://www.lists.ic.ac.uk/hypermail/xml-dev/ and on CD-ROM/ISBN 981-02-3594-1
To (un)subscribe, mailto:majordomo@ic.ac.uk the following message;
(un)subscribe xml-dev
To subscribe to the digests, mailto:majordomo@ic.ac.uk the following message;
subscribe xml-dev-digest
List coordinator, Henry Rzepa (mailto:rzepa@ic.ac.uk)
- References:
- No Subject
- From: "Wang, Dapeng" <Dapeng.Wang@Dresdner-Bank.com>
|