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.rnc next >
Encoding:
Text File  |  2006-11-29  |  697 b   |  37 lines

  1. default namespace = "http://linux.duke.edu/metadata/filelists"
  2.  
  3. element filelists {
  4.   attribute packages { xsd:nonNegativeInteger },
  5.   element package {
  6.     attribute pkgid { text },
  7.     attribute name { text },
  8.     attribute arch {
  9.       "noarch"
  10.       | "athlon"
  11.       | "i386"
  12.       | "i486"
  13.       | "i586"
  14.       | "i686"
  15.       | "ia64"
  16.       | "ppc"
  17.       | "ppc64"
  18.       | "s390"
  19.       | "s390x"
  20.       | "x86_64"
  21.       | "src"
  22.     },
  23.     element version {
  24.       attribute epoch { xsd:nonNegativeInteger },
  25.       attribute ver { text },
  26.       attribute rel { text },
  27.       empty
  28.     },
  29.     element file {
  30.       attribute type { "dir" | "ghost" }?,
  31.       text
  32.     }*,
  33.     empty
  34.   }+,
  35.   empty
  36. }
  37.