You are viewing a plain text version of this content. The canonical link for it is here.
Posted to slide-dev@jakarta.apache.org by Richard Emberson <re...@edgedynamics.com> on 2003/06/25 00:45:10 UTC

Domain.xsd

Included is an attempt at formalizing the definition of a Domain.xml
file - a Domain.xsd file. To use it one has to add the following
attribute to your Domain.xml 'slide' element:

     xmlns="http://www.apache.org/slide"

as in:

<?xml version="1.0"?>
<slide
     xmlns="http://www.apache.org/slide"
     logger="org.apache.slide.util.logger.SimpleLogger"
     logger-level="6" default="slide">
....
</slide>

and then use some xml validating parser (e.g., xerces).
One could have added uniqueness contraints, but I will leave that
to another day.

please give me any corrections.

RME