This repository has been archived by the owner on Dec 18, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsupporting_data.html
194 lines (188 loc) · 6.87 KB
/
supporting_data.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
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
<!doctype html>
<html>
<head>
<title>Open Mobile Alliance - Supporting Data</title>
<meta charset="utf-8">
<script src="https://code.jquery.com/jquery-3.1.0.min.js"></script>
<!-- Normalize CSS -->
<link rel="stylesheet" href="CSS/Normalize.css" />
<!-- Latest compiled and minified CSS -->
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.2/css/bootstrap.min.css">
<!-- Optional theme -->
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.2/css/bootstrap-theme.min.css">
<link rel="stylesheet" href="CSS/Site.css">
<link rel="shortcut icon" href="https://www.omaspecworks.org/wp-content/uploads/2018/01/favicon-1.png" type="image/x-icon">
<script>
$(function () {
$('#header').load("header.html");
$('#footer').load("footer.html");
});
</script>
<script src="./Scripts/googleanalytics.js"></script>
</head>
<body>
<!-- This gets populated with the header.html using Javascript -->
<div id="header"></div>
<div class="container">
<div>
<h1>
Supporting Data
</h1>
</div>
<div>
<p>
The supporting data consists of non-specification materials needed to support the releases.
The supporting data includes DTDs, XML schemas, WSDL packages, JSD and WebIDL files. When a release is published
supporting data files may be placed in the directories listed below. For the list of published releases see
<a href="index.html">http://www.openmobilealliance.org/wp</a> .
</p>
</div>
<!-- Start of supporting data table -->
<table id="supporting-data-table" class="table-bordered">
<thead>
<tr>
<th>Supporting Data</th>
<th>Description</th>
</tr>
</thead>
<tbody>
<tr>
<td>
<a href="https://www.openmobilealliance.org/tech/dtd">DTDs</a>
</td>
<td>
Provides the storage area for the Document Type Definitions (DTDs). A DTD is a set of markup declarations that define a document type.
</td>
</tr>
<tr>
<td>
<a href="https://www.openmobilealliance.org/tech/profiles">Profile Data (Schemas, UAProf)</a>
</td>
<td>
Provides access to specified schema (and other related files). XML Schemas describe the structure and the constraints on the content of XML documents.
</td>
</tr>
<tr>
<td>
<a href="https://www.openmobilealliance.org/tech/wsdl">WSDL Packages</a>
</td>
<td>
Provides access to the available Web Services Description Language (WSDL) Packages that describe the functionality offered by web services.
</td>
</tr>
<tr>
<td>
<a href="https://www.openmobilealliance.org/tech/profiles/JSD">JSD Files</a>
</td>
<td>
Provides access to the available JSON Schema Definition (JSD) packages that define the structure of JSON data using a JSON based format.
</td>
</tr>
<tr>
<td>
<a href="https://www.openmobilealliance.org/tech/profiles/widl">Web IDL Files</a>
</td>
<td>
Provides access to the available Web IDL Packages that are used to describe interfaces implemented in web browsers.
</td>
</tr>
</tbody>
</table>
<div>
<h2>
File Extensions
</h2>
</div>
<div>
<p>The file extensions used for the supporting data files are listed in the following table.</p>
</div>
<!-- Start of file extensions table -->
<table id="fileextensions-table" class="table-bordered">
<thead>
<tr>
<th>File Extensions</th>
<th>Name</th>
</tr>
</thead>
<tbody>
<tr>
<td>
cat
</td>
<td>
OASIS catalogue
</td>
</tr>
<tr>
<td>
ddf
</td>
<td>
Device Description Framework
</td>
</tr>
<tr>
<td>
dtd
</td>
<td>
Document Type Definition
</td>
</tr>
<tr>
<td>
mod
</td>
<td>
DTD module
</td>
</tr>
<tr>
<td>
txt
</td>
<td>
Text
</td>
</tr>
<tr>
<td>
wsdl
</td>
<td>
Web Services Description Language
</td>
</tr>
<tr>
<td>
xml
</td>
<td>
Extensible Markup Language
</td>
</tr>
<tr>
<td>
xsd
</td>
<td>
XML Schema Document
</td>
</tr>
<tr>
<td>
zip
</td>
<td>
ZIP archive
</td>
</tr>
</tbody>
</table>
<p></p>
<p>Note the files on each of the Supporting Data web pages are listed in alphabetic order.</p>
</div>
<!-- This gets populated with the footer.html using Javascript -->
<div id="footer"></div>
</body>
</html>