[
Lists Home |
Date Index |
Thread Index
]
- From: "Joshua E. Smith" <jesmith@kaon.com>
- To: "XML Developers' List" <xml-dev@ic.ac.uk>
- Date: Thu, 06 May 1999 16:07:47 -0400
FYI (stuff for that FAQ I'll never get around to writing):
1) It's trivial to link expat statically in a Windows environment. Just do
the obvious and it just works. (James Clark is clearly a programmer who
knows what he's doing.) Also, expat *can* read external general entities,
you just have to help it a little.
2) There *are* already XML editors which look at the DTD and do very smart
things. More than validating, they *prompt* you for stuff. The xeena
editor at alphaworks (mentioned by someone earlier) is a bit slow (read: UI
in Java) but very clever. On a really fast machine (faster than my P266
laptop), it'd be a terrific tool.
3) Looks like it's OK to trust an editor not to dump all your default
values out into output files, so it's OK to put your default values in the
DTD. Xeena does the right thing with them, so I presume others will follow
suit.
4) Again, just judging from Xeena, I'm going to have to find a way to make
my XML-Conformant programming lanugage valid, as well as well-formed. As I
feared, it's hard for a validating editor to deal with invalid stuff. And
xeena deals with valid stuff in very cool ways.
Question still pending: Why should I use an external unparsed entity for
URL attributes, when CDATA seems to be just fine?
Oh, and a small amusement for you...
LISP:
(defun factorial (x)
(if (= x 1)
1
(* x (- x 1))))
XML-LISP:
<defun name="factorial">
<args><var name="x"/></args>
<body>
<if> <eq><var name="x"/><integer value="1"/></eq>
<integer value="1"/>
<times>
<var name="x"/>
<minus><var name="x"/><integer value="1"/></minus>
</times>
</if>
</body>
</defun>
The latter is a little more bloated in emacs, but it looks really nice in
an XML editor. Q.E.D. ;)
-Joshua Smith
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)
|