PDA

View Full Version : LZX DTD or Schema?


dteare
10-08-2004, 03:54 PM
Is there a dtd or schema available for LZX files? This would make content assist available in eclipse...

Thanks!
--Dave.

demilio
10-08-2004, 06:54 PM
Try this...

http://www.laszlosystems.com/lps/tools/lzx.dtd

dteare
10-08-2004, 07:35 PM
Originally posted by demilio
Try this...

http://www.laszlosystems.com/lps/tools/lzx.dtd

Thanks! I didn't see it hiding there.

Valentin-
10-12-2004, 11:50 AM
Why isn't it possible to have
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE SYSTEM "http://www.laszlosystems.com/lps/tools/lzx.dtd">

in a laszlo-file without getting compile errors?

Are there any reasons?

dteare
10-12-2004, 05:42 PM
Try this instead:
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE LZX PUBLIC "Laszlo 2.2" "http://www.laszlosystems.com/lps/tools/lzx.dtd">

I prefer to put the DTD directly in my war/ear s.t. it doesn't have to be downloaded. Esp. since the laszlo guys didn't version the DTD file. What happens to your prodction code when http://www.laszlosystems.com/lps/tools/lzx.dtd is replaced with version 3.0?

--Dave.