unofficial mirror of emacs-devel@gnu.org 
 help / color / mirror / code / Atom feed
blob 26b77e47527353b846f6edf13bdf0454caccee51 1552 bytes (raw)
name: etc/schema/dotnet-resx.rnc 	 # note: path name is non-authoritative(*)

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
 
default namespace = ""
namespace msdata = "urn:schemas-microsoft-com:xml-msdata"
namespace xsd = "http://www.w3.org/2001/XMLSchema"

start =
  element root {
    element xsd:schema {
      attribute id { xsd:NCName },
      element xsd:import {
        attribute namespace { xsd:anyURI }
      }?,
      xsd.element
    },
    element resheader {
      attribute name { xsd:NCName },
      value
    }+,
    (element assembly {
       attribute alias { xsd:NCName },
       attribute name { text }
     }
     | element data {
         attribute mimetype { text }?,
         attribute name { text },
         attribute type { text }?,
         attribute xml:space { xsd:NCName }?,
         value
       }
     | element metadata {
         attribute name { xsd:NCName },
         attribute type { text },
         value
       })*
  }
xsd.element =
  element xsd:element {
    attribute minOccurs { xsd:integer }?,
    attribute name { xsd:NCName },
    attribute type { xsd:NMTOKEN }?,
    attribute msdata:IsDataSet { xsd:boolean }?,
    attribute msdata:Ordinal { xsd:integer }?,
    element xsd:complexType {
      element xsd:choice {
        attribute maxOccurs { xsd:NCName },
        xsd.element+
      }?,
      element xsd:sequence { xsd.element+ }?,
      element xsd:attribute {
        attribute name { xsd:NCName }?,
        attribute ref { xsd:NMTOKEN }?,
        attribute type { xsd:NMTOKEN }?,
        attribute use { xsd:NCName }?,
        attribute msdata:Ordinal { xsd:integer }?
      }*
    }*
  }
value = element value { text }

debug log:

solving 26b77e47527 ...
found 26b77e47527 in https://git.savannah.gnu.org/cgit/emacs.git

(*) Git path names are given by the tree(s) the blob belongs to.
    Blobs themselves have no identifier aside from the hash of its contents.^

Code repositories for project(s) associated with this public inbox

	https://git.savannah.gnu.org/cgit/emacs.git

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).