home *** CD-ROM | disk | FTP | other *** search
/ PCNET 2006 August - Disc 1 / PCNET_CD_2006_08_1.iso / shareware / SafeFiles-Win.exe / resource / xml.war / xml / schemas / document.xsd < prev    next >
Encoding:
Extensible Markup Language  |  2005-10-14  |  1.2 KB  |  31 lines

  1. <?xml version="1.0" encoding="iso-8859-1"?>
  2. <schema xml:lang="en"
  3.  xmlns="http://www.w3.org/2001/XMLSchema"
  4.  xmlns:i18n="http://www.limewire.com/schemas/i18n"
  5.  i18n:locales="http://www.limewire.com/schemas/i18n/document.locales.xml"
  6.  targetNamespace="http://www.limewire.com/schemas/document.xsd">
  7.  
  8.   <element name="documents" maxOccurs="1">
  9.     <complexType>
  10.       <element name="document" minOccurs="1" maxOccurs="unbounded" type="documentType"/>
  11.     </complexType>
  12.   </element>
  13.  
  14. <complexType name="documentType">
  15.   <all>
  16.       <attribute name="title" editable="true"/>
  17.       <attribute name="topic" editable="true"/>
  18.       <attribute name="author" editable="true"/>
  19.       <attribute name="licensetype" editable="true">
  20.         <simpleType base="string">
  21.           <enumeration name="Creative Commons" value="creativecommons.org/licenses/"/>
  22.       <enumeration name="FDL" value="http://www.gnu.org/copyleft/fdl.html"/>
  23.       <enumeration name="GPL" value="http://www.gnu.org/copyleft/gpl.html"/>
  24.       <enumeration name="Public Domain" value="http://www.public-domain.org"/>
  25.         </simpleType>
  26.       </attribute>
  27.       <attribute name="license" type="string" hidden="true"/>
  28.   </all>
  29. </complexType>
  30. </schema>
  31.