0

Where can i find xml-schema definition for ZPT attribute language?

Martijn Pieters
  • 1,048,767
  • 296
  • 4,058
  • 3,343
Odomontois
  • 15,918
  • 2
  • 36
  • 71

1 Answers1

1

AFAIK ZPT doesn't use an XML Schema definition. Why do you want the XSD of ZPT? If you want to get an overview of ZPT you can have a look to the documentation for the chameleon implementation of ZPT. It's quite comprehensive.

Danny Navarro
  • 2,733
  • 1
  • 18
  • 22
  • I need ZPT XML-schema for validating and code-completing in Intellij IDEA. – Odomontois Nov 08 '10 at 08:11
  • 1
    ZPT is valid XML, you should make sure your IDE treats it as XML and you'll get basic XML validation. However you won't have validation for the specifics of ZPT. In my case I don't miss ZPT auto-completion because it's quite concise. – Danny Navarro Nov 12 '10 at 09:51