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 / image.xsd < prev    next >
Encoding:
Extensible Markup Language  |  2005-10-14  |  1.3 KB  |  32 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/image.locales.xml"
  6.  targetNamespace="http://www.limewire.com/schemas/image.xsd">
  7.  
  8.   <element name="images" maxOccurs="1">
  9.     <complexType>
  10.       <element name="image" minOccurs="1" maxOccurs="unbounded" type="imageType"/>
  11.     </complexType>
  12.   </element>
  13.  
  14. <complexType name="imageType">
  15.   <all>
  16.       <attribute name="title" editable="true"/>
  17.       <attribute name="description" editable="true"/>
  18.       <attribute name="artist" 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="Artistic" value="http://www.opensource.org/licenses/artistic-license.php"/>
  25.       <enumeration name="Public Domain" value="http://www.public-domain.org"/>
  26.         </simpleType>
  27.       </attribute>
  28.       <attribute name="license" type="string" hidden="true"/>
  29.   </all>
  30. </complexType>
  31. </schema>
  32.