-
Notifications
You must be signed in to change notification settings - Fork 1
/
syntax.html
94 lines (65 loc) · 2.31 KB
/
syntax.html
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
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>RackML Syntax</title>
</head>
<body>
<h1>RackML Syntax</h1>
<p>A <em>RackML</em> document must have an outer <tt><racks></tt> element.</p>
<h2><tt><racks></tt></h2>
<p>A <tt><racks></tt> element may contain any of the following attributes:</p>
<dl>
<dt><tt>base</tt></dt>
<dd>The base URL to use for links</dd>
</dl>
<p>The <tt><racks></tt> element contains zero or more <tt><racks></tt> elements.</p>
<h2><tt><rack></tt></h2>
<p>A <tt><rack></tt> element may contain the following attributes:</p>
<dl>
<dt><tt>height</tt></dt>
<dd>The height, in rack units, of this rack</dd>
<dt><tt>name</tt></dt>
<dd>The name of the rack. Displayed above the rack.</dd>
</dl>
<h2><tt><rack></tt> children</h2>
<p>A <tt><rack> element may contain any of the following elements:</p>
<dl>
<dt><cables></dt>
<dd>Represents a cable management system</dd>
<dt><firewall></dt>
<dd>Represents a firewall</dd>
<dt><gap></dt>
<dd>Empty space</dd>
<dt><keyboard></dt>
<dd>Represents a keyboard</dd>
<dt><kvm></dt>
<dd>Represents a KVM-switch</dd>
<dt><monitor></dt>
<dd>Represents a VDU</dd>
<dt><patch></dt>
<dd>Represents a patch panel</dd>
<dt><pdu></dt>
<dd>Represents a power distribution unit</dd>
<dt><san></dt>
<dd>Represents a SAN server</dd>
<dt><server></dt>
<dd>Represents a compute server</dd>
<dt><switch></dt>
<dd>Represents a networking switch</dd>
<dt><tape></dt>
<dd>Represents a tape drive</dd>
<dt><ups></dt>
<dd>Represents an uninterruptable power supply</dd>
</dl>
Each of these elements may include the following attributes:
<dl>
<dt><tt>at</tt></dt>
<dd>The lowest rack unit the device occupies.</dd>
<dt><tt>height</tt></dt>
<dd>The height, in rack units, of the device</dd>
<dt><tt>href</tt></dt>
<dd>A URL for additional information. The rack element will be clickable in the renderable SVG.</dd>
</dl>
</body>
</html>