[EMAIL PROTECTED] wrote:

> Well, I did import the snapshot file first, but afterwards imported
> version 141, so that should be replaced.

I don't really know about the nadmin release schedule. There's nothing to
download from www.hklc.com, so I picked up
nadmin-data-1.4.1-2.hklc_RH71.src.rpm from www.nadminstudio.com. When I
unpacked it with alien, the files were named SNAPSHOT.

Anyhow, since you have expat installed you most likely also have xmlwf.
It can't hurt to let it run on the ungzipped nadmin xml file to see if
it's well-formed.

Alexander, repligard doesn't properly quote ']]>' in cdata sections,
which is why nadmin is not well-formed. I can fix the nadmin xml file
(see attachment) but I don't know if the fixed file will be properly
unquoted when read back in.

Emile
%x CDATA

%%

<INITIAL>"<![CDATA[" { BEGIN(CDATA); }
<CDATA>"]]>"/"<" { BEGIN(INITIAL); }
<CDATA>"&" { printf("&amp;"); }
<CDATA>"<" { printf("&lt;"); }
<CDATA>">" { printf("&gt;"); }
<CDATA>"'" { printf("&apos;"); }
<CDATA>["] { printf("&quot;"); }
. { putchar(yytext[0]); }
---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to