home *** CD-ROM | disk | FTP | other *** search
/ Chip 2007 January, February, March & April / Chip-Cover-CD-2007-02.iso / boot / i386 / root / usr / share / zypp / schema / yum / filelists.rng < prev    next >
Encoding:
Extensible Markup Language  |  2006-11-29  |  1.5 KB  |  53 lines

  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <element name="filelists" ns="http://linux.duke.edu/metadata/filelists" xmlns="http://relaxng.org/ns/structure/1.0" datatypeLibrary="http://www.w3.org/2001/XMLSchema-datatypes">
  3.   <attribute name="packages">
  4.     <data type="nonNegativeInteger"/>
  5.   </attribute>
  6.   <oneOrMore>
  7.     <element name="package">
  8.       <attribute name="pkgid"/>
  9.       <attribute name="name"/>
  10.       <attribute name="arch">
  11.         <choice>
  12.           <value>noarch</value>
  13.           <value>athlon</value>
  14.           <value>i386</value>
  15.           <value>i486</value>
  16.           <value>i586</value>
  17.           <value>i686</value>
  18.           <value>ia64</value>
  19.           <value>ppc</value>
  20.           <value>ppc64</value>
  21.           <value>s390</value>
  22.           <value>s390x</value>
  23.           <value>x86_64</value>
  24.           <value>src</value>
  25.         </choice>
  26.       </attribute>
  27.       <element name="version">
  28.         <attribute name="epoch">
  29.           <data type="nonNegativeInteger"/>
  30.         </attribute>
  31.         <attribute name="ver"/>
  32.         <attribute name="rel"/>
  33.         <empty/>
  34.       </element>
  35.       <zeroOrMore>
  36.         <element name="file">
  37.           <optional>
  38.             <attribute name="type">
  39.               <choice>
  40.                 <value>dir</value>
  41.                 <value>ghost</value>
  42.               </choice>
  43.             </attribute>
  44.           </optional>
  45.           <text/>
  46.         </element>
  47.       </zeroOrMore>
  48.       <empty/>
  49.     </element>
  50.   </oneOrMore>
  51.   <empty/>
  52. </element>
  53.