summaryrefslogtreecommitdiff
path: root/doc/mallard/C/mal_page.xml
blob: f6b4c16971e4aeada27ce6f215741c98ac86cca0 (plain)
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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
<page xmlns="http://www.gnome.org/~shaunm/mallard"
      type="topic"
      id="mal_page">

<info>
  <version number="0.1" date="2008-02-21" status="stub"/>
</info>

<title>Pages</title>

<synopsis><code mime="application/relax-ng-compact-syntax">
namespace local = ""
default namespace mal = "http://www.gnome.org/~shaunm/mallard"
start = mal_page
mal_page = (mal_page_guide | mal_page_topic)
mal_page_guide = element page {
  attribute id { xsd:ID },
  attribute type { "guide" },
  attribute style { xsd:NMTOKENS } ?,
  attribute * - (mal:* | local:*) { text } *,
  <link xref="mal_info">mal_info</link>,
  <link xref="mal_block_title">mal_block_title</link>,
  <link xref="mal_block">mal_block</link> *,
  <link xref="mal_section">mal_section</link> *
}
mal_page_topic = element page {
  attribute id { xsd:ID },
  attribute type { "topic" },
  attribute style { xsd:NMTOKENS } ?,
  attribute * - (mal:* | local:*) { text } *,
  <link xref="mal_info">mal_info</link>,
  <link xref="mal_block_title">mal_block_title</link>,
  <link xref="mal_block">mal_block</link> *,
  <link xref="mal_section">mal_section</link> *
}
</code></synopsis>


<!-- BEGIN notes -->
<section id="notes">
  <title>Notes</title>
  <list>
    <item><p>The <code>type</code> attribute takes the values <code>"guide"</code> and
    <code>"topic"</code>.  <link xref="#guide">Guide pages</link> and <link xref="#topic">topic
    pages</link> are discussed below.</p></item>
  </list>
</section>
<!-- END notes -->


<!-- BEGIN guide -->
<section id="guide">
  <title>Guide Pages</title>
</section>
<!-- END topic -->


<!-- BEGIN topic -->
<section id="topic">
  <title>Topic Pages</title>
</section>
<!-- END topic -->




<!-- BEGIN processing -->
<section id="processing">
  <title>Processing Expectations</title>
</section>
<!-- END processing -->

</page>