Skip to content

Commit b6b3c4b

Browse files
authored
Improve responsivity of design (#330)
* Made links multi-line * Made all figure images not cut off page * Made all long URLs wrap lines * Replaced code diagram with image to retain visual relationships * Made table responsive to different zooms
1 parent c4d0dc4 commit b6b3c4b

File tree

5 files changed

+391
-373
lines changed

5 files changed

+391
-373
lines changed

assets/exampleURIsComponents.png

Lines changed: 3 additions & 0 deletions
Loading

pages/documentation/atom-format-v3.html

Lines changed: 20 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -50,13 +50,15 @@ <h2 id="xml:baseattribute">3. xml:base Attribute</h2>
5050
<h2 id="primitivetypesinatom">4. Primitive Types in Atom</h2>
5151
<p>OData Atom and XML payloads serialize primitive types as shown in the table below.</p>
5252
<p>For full syntax rules, see <a href="../abnf">OData:ABNF</a>:</p>
53-
<table border="1" cellspacing="0" cellpadding="0" aria-label="Primitive Types in Atom">
54-
<tbody>
53+
<table border="1" cellspacing="0" cellpadding="0" aria-label="Primitive Types in Atom" style="width:100%; table-layout:fixed">
54+
<thead>
5555
<tr>
5656
<th>Primitive Type</th>
5757
<th>Literal Form</th>
5858
<th>Example</th>
5959
</tr>
60+
</thead>
61+
<tbody>
6062
<tr>
6163
<td><strong>Null</strong><br />
6264
Represents the absence of a value</td>
@@ -154,13 +156,13 @@ <h2 id="primitivetypesinatom">4. Primitive Types in Atom</h2>
154156
<tr>
155157
<td><strong>Edm.Time</strong><br />
156158
Represents the time of day with values ranging from 0:00:00.x to 23:59:59.y, where x and y depend upon the precision</td>
157-
<td>Defined by the lexical representation for time at <a href="http://www.w3.org/TR/xmlschema-2">http://www.w3.org/TR/xmlschema-2</a></td>
159+
<td>Defined by the lexical representation for time at <a href="http://www.w3.org/TR/xmlschema-2">XML Schema Datatypes</a></td>
158160
<td>13:20:00</td>
159161
</tr>
160162
<tr>
161163
<td><strong>Edm.DateTimeOffset</strong><br />
162164
Represents date and time as an Offset in minutes from GMT, with values ranging from 12:00:00 midnight, January 1, 1753 A.D. through 11:59:59 P.M, December 9999 A.D</td>
163-
<td>Defined by the lexical representation for datetime (including timezone offset) at <a href="http://www.w3.org/TR/xmlschema-2"> http://www.w3.org/TR/xmlschema-2</a></td>
165+
<td>Defined by the lexical representation for datetime (including timezone offset) at <a href="http://www.w3.org/TR/xmlschema-2">XML Schema Datatypes</a></td>
164166
<td>2002-10-10T17:00:00Z</td>
165167
</tr>
166168
<tr>
@@ -186,7 +188,8 @@ <h2 id="primitivetypesinatom">4. Primitive Types in Atom</h2>
186188
<td>SRID=123435;Linestring(33.84 -117.91,48.87 2.78)</td>
187189
</tr>
188190
<tr>
189-
<td><strong>Edm.GeographyPolygon</strong>Represents a polygon in a round-earth coordinate system.</td>
191+
<td><strong>Edm.GeographyPolygon</strong><br />
192+
Represents a polygon in a round-earth coordinate system.</td>
190193
<td>srid "Polygon(" polygon ")"<br />
191194
<i>polygon=</i> ring "," [ring ","]*<br />
192195
<i>ring=</i> "(" firstpoint "," [point ","]* firstpoint ")" ]* ")"<br />
@@ -208,19 +211,22 @@ <h2 id="primitivetypesinatom">4. Primitive Types in Atom</h2>
208211
<td>SRID=123435;GeographyCollection(Point(33.84 -117.91),Point(48.87 2.78))</td>
209212
</tr>
210213
<tr>
211-
<td><strong>Edm.GeographyMultiPoint</strong>Represents a collection of points in a round-earth coordinate system</td>
214+
<td><strong>Edm.GeographyMultiPoint</strong><br />
215+
Represents a collection of points in a round-earth coordinate system</td>
212216
<td>srid "MultiPoint(" multipoint ")"<br />
213217
<i>multipoint=</i> point ["," point]*</td>
214218
<td>SRID=123435;MultiPoint((33.84 -117.91),(48.87 2.78))</td>
215219
</tr>
216220
<tr>
217-
<td><strong>Edm.GeographyMultiLineString</strong>Represents a collection of linestrings in a round-earth coordinate system.</td>
221+
<td><strong>Edm.GeographyMultiLineString</strong><br />
222+
Represents a collection of linestrings in a round-earth coordinate system.</td>
218223
<td>srid "MultiLineString(" multilinestring ")"<br />
219224
<i>multilinestring=</i> "(" linestring ")" [",(" linestring ")" ]*</td>
220225
<td>SRID=123435;MultiLineString((33.84 -117.91,48.87 2.78),(33.84 -117.91, 28.36 -81.56))</td>
221226
</tr>
222227
<tr>
223-
<td><strong>Edm.GeographyMultiPolygon</strong>Represents a collection of polygons in a round-earth coordinate system.</td>
228+
<td><strong>Edm.GeographyMultiPolygon</strong>
229+
<br />Represents a collection of polygons in a round-earth coordinate system.</td>
224230
<td>srid "MultiPolygon(" multipolygon ")"<br />
225231
<i>multipolygon=</i> "(" polygon ")" [",(" polygon ")"]*</td>
226232
<td>SRID=123435;MultiPolygon(((33.84 -117.91,(33.84 -117.91,28.36 -81.56,33.84 -117.91)))</td>
@@ -263,17 +269,20 @@ <h2 id="primitivetypesinatom">4. Primitive Types in Atom</h2>
263269
<td>SRID=123435;GeometryCollection(Point(33.84 -117.91),Point(48.87 2.78))</td>
264270
</tr>
265271
<tr>
266-
<td><strong>Edm.GeometryMultiPoint</strong>Represents a collection of points in a flat-earth coordinate system.</td>
272+
<td><strong>Edm.GeometryMultiPoint</strong><br />
273+
Represents a collection of points in a flat-earth coordinate system.</td>
267274
<td>srid "MultiPoint(" multipoint ")"</td>
268275
<td>SRID=123435;MultiPoint((33.84 -117.91),(48.87 2.78))</td>
269276
</tr>
270277
<tr>
271-
<td><strong>Edm.GeographyMultiLineString</strong>Represents a collection of linestrings in a flat-earth coordinate system.</td>
278+
<td><strong>Edm.GeographyMultiLineString</strong><br />
279+
Represents a collection of linestrings in a flat-earth coordinate system.</td>
272280
<td>srid "MultiLineString(" multilinestring ")"</td>
273281
<td>SRID=123435;MultiLineString((33.84 -117.91,48.87 2.78),(33.84 -117.91, 28.36 -81.56))</td>
274282
</tr>
275283
<tr>
276-
<td><strong>Edm.GeographyMultiPolygon</strong>Represents a collection of polygons in a flat-earth coordinate system.</td>
284+
<td><strong>Edm.GeographyMultiPolygon</strong><br />
285+
Represents a collection of polygons in a flat-earth coordinate system.</td>
277286
<td>srid "MultiPolygon(" multipolygon ")"</td>
278287
<td>SRID=123435;MultiPolygon(((33.84 -117.91,(33.84 -117.91,28.36 -81.56,33.84 -117.91)))</td>
279288
</tr>

0 commit comments

Comments
 (0)