-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathprogram
39 lines (32 loc) · 1.12 KB
/
program
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
<?xml version="1.0" encoding="UTF-8"?>
<rdf:RDF
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:rdfs="http://www.w3.org/2000/01/rdf-schema#"
xmlns:rdfe="http://redfoot.net/3.0/rdf#
xmlns:program="http://redfoot.net/3.0/program#"
>
<!-- deprecated... use commands instead. -->
<redfoot:Namespace rdf:about="#">
<rdfs:label>Program</rdfs:label>
<rdfs:comment>The Redfoot program namespce (deprecated).</rdfs:comment>
</redfoot:Namespace>
<rdf:Property rdf:ID="config">
<rdfs:label>config</rdfs:label>
<rdfs:comment></rdfs:comment>
<rdfs:domain rdf:resource="http://redfoot.net/3.0/redfoot#Main"/>
<rdfs:range rdf:resource="#Config"/>
</rdf:Property>
<rdf:Property rdf:ID="command">
<rdfs:label>command</rdfs:label>
<rdfs:comment></rdfs:comment>
<rdfs:domain rdf:resource="#Config"/>
<rdfs:range rdf:resource="#Command"/>
</rdf:Property>
<rdfs:Class rdf:ID="Command">
<rdfs:label>Command</rdfs:label>
<rdfs:subClassOf rdf:resource="http://redfoot.net/3.0/redfoot#Resource"/>
</rdfs:Class>
<!--
Command has label and redfoot:code
-->
</rdf:RDF>