Emiliano wrote:

> 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.

Ah, new attachment will _probably_ fix the nadmin XML file in a more
repligard-friendly way. It does a small bit of guessing here aided with
some knowledge about how repligard writes its files. For nadmin snapshot
it inserted a single space in a safe location that made the file
well-formed again. Repligard still needs fixing, though.

Emile
%x CDATA

%%

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

Reply via email to