~thopiekar/zypper/libzypp-manual-import

« back to all changes in this revision

Viewing changes to zypp/parser/yum/schema/other.rng

  • Committer: Thomas-Karl Pietrowski
  • Date: 2014-01-29 22:44:28 UTC
  • Revision ID: thopiekar@googlemail.com-20140129224428-gpcqnsdakby362n8
firstĀ import

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
<?xml version="1.0" encoding="UTF-8"?>
 
2
<grammar ns="http://linux.duke.edu/metadata/other" xmlns="http://relaxng.org/ns/structure/1.0">
 
3
  <include href="common-inc.rng"/>
 
4
  <start>
 
5
    <element name="otherdata">
 
6
      <attribute name="packages">
 
7
        <ref name="private.nonnegative"/>
 
8
      </attribute>
 
9
      <zeroOrMore>
 
10
        <element name="package">
 
11
          <attribute name="pkgid"/>
 
12
          <attribute name="name"/>
 
13
          <attribute name="arch">
 
14
            <ref name="private.archenum"/>
 
15
          </attribute>
 
16
          <element name="version">
 
17
            <ref name="private.evr"/>
 
18
          </element>
 
19
          <zeroOrMore>
 
20
            <element name="changelog">
 
21
              <attribute name="author"/>
 
22
              <attribute name="date">
 
23
                <ref name="private.unixts"/>
 
24
              </attribute>
 
25
              <text/>
 
26
            </element>
 
27
          </zeroOrMore>
 
28
        </element>
 
29
      </zeroOrMore>
 
30
    </element>
 
31
  </start>
 
32
</grammar>