|
38 | 38 | // specification status (e.g. WD, LCWD, NOTE, etc.). If in doubt use ED.
|
39 | 39 | specStatus: "unofficial",
|
40 | 40 |
|
41 |
| - // the specification's short name, as in http://www.w3.org/TR/short-name/ |
| 41 | + // the specification's short name, as in https://www.w3.org/TR/short-name/ |
42 | 42 | shortName: "restxq",
|
43 | 43 |
|
44 | 44 | // if your specification has a subtitle that goes below the main
|
|
58 | 58 | // previousMaturity: "WD",
|
59 | 59 |
|
60 | 60 | // if there a publicly available Editor's Draft, this is the link
|
61 |
| - // edDraftURI: "http://dev.w3.org/2009/dap/ReSpec.js/documentation.html", |
62 |
| - edDraftURI: "http://exquery.github.com/exquery/exquery-restxq-specification/restxq-1.0-specification.html", |
| 61 | + // edDraftURI: "https://dev.w3.org/2009/dap/ReSpec.js/documentation.html", |
| 62 | + edDraftURI: "https://exquery.github.io/exquery/exquery-restxq-specification/restxq-1.0-specification.html", |
63 | 63 |
|
64 | 64 | // if this is a LCWD, uncomment and set the end of its review period
|
65 | 65 | // lcEnd: "2009-08-05",
|
66 | 66 |
|
67 | 67 | // editors, add as many as you like
|
68 | 68 | // only "name" is required
|
69 | 69 | editors: [
|
70 |
| - { name: "Adam Retter", url: "http://adamretter.org.uk/", |
71 |
| - company: "Evolved Binary", companyURL: "http://adamretter.org.uk/" } |
| 70 | + { name: "Adam Retter", url: "https://adamretter.org.uk/", |
| 71 | + company: "Evolved Binary", companyURL: "https://evolvedbinary.com/" } |
72 | 72 | ],
|
73 | 73 |
|
74 | 74 | // authors, add as many as you like.
|
75 | 75 | // This is optional, uncomment if you have authors as well as editors.
|
76 | 76 | // only "name" is required. Same format as editors.
|
77 | 77 |
|
78 | 78 | authors: [
|
79 |
| - { name: "Adam Retter", url: "http://adamretter.org.uk/", |
80 |
| - company: "Evolved Binary", companyURL: "http://adamretter.org.uk/" }, |
81 |
| - { name: "Christian Grün", url: "http://christian-gruen.de/", |
82 |
| - company: "BaseX GmbH", companyURL: "http://basex.org/" } |
| 79 | + { name: "Adam Retter", url: "https://adamretter.org.uk/", |
| 80 | + company: "Evolved Binary", companyURL: "https://evolvedbinary.com/" }, |
| 81 | + { name: "Christian Grün", url: "https://christian-gruen.de/", |
| 82 | + company: "BaseX GmbH", companyURL: "https://basex.org/" } |
83 | 83 | ],
|
84 | 84 |
|
85 | 85 | // name of the WG
|
|
105 | 105 |
|
106 | 106 | localBiblio: {
|
107 | 107 | "IANA-MEDIA-TYPES" : {
|
108 |
| - "href": "http://www.iana.org/assignments/media-types/", |
| 108 | + "href": "https://www.iana.org/assignments/media-types/", |
109 | 109 | "title": "Media Types",
|
110 | 110 | "publisher": "IANA"
|
111 | 111 | }
|
@@ -209,7 +209,7 @@ <h3>Goals</h3>
|
209 | 209 | </dd>
|
210 | 210 | <dt>Technical improvement</dt>
|
211 | 211 | <dd>RESTXQ MUST improve on the current approaches, a comprehensive review was undertaken
|
212 |
| - <a href="http://www.adamretter.org.uk/papers/restful-xquery_january-2012.pdf" title="RESTful XQuery, Standardised XQuery Annotations for REST">here</a>. |
| 212 | + <a href="https://www.adamretter.org.uk/papers/restful-xquery_january-2012.pdf" title="RESTful XQuery, Standardised XQuery Annotations for REST">here</a>. |
213 | 213 | </dd>
|
214 | 214 | </dl>
|
215 | 215 | </p>
|
@@ -600,7 +600,7 @@ <h3>Serialization</h3>
|
600 | 600 | </ol>
|
601 | 601 |
|
602 | 602 | The XQuery Specification states in
|
603 |
| - <a href="http://www.w3.org/TR/xquery-30/#id-serialization">Section 2.2.4</a> |
| 603 | + <a href="https://www.w3.org/TR/xquery-30/#id-serialization">Section 2.2.4</a> |
604 | 604 | how the result of a query is serialized. Serialization may be controlled by
|
605 | 605 | the use of Output Declarations. In RESTXQ, the following rules are applied:
|
606 | 606 |
|
@@ -932,19 +932,19 @@ <h2>Resources for Implementers</h2>
|
932 | 932 | If you plan to implement RESTXQ, there is already a set of common abstraction libraries written in Java
|
933 | 933 | which should significantly reduce the amount of effort involved and avoid re-inventing more wheels. You need
|
934 | 934 | just implement a few interfaces and adapters. For more information see the
|
935 |
| - <a href="http://www.github.com/exquery/exquery" title="EXQuery GitHub">EXQuery GitHub page</a>. |
| 935 | + <a href="https://www.github.com/exquery/exquery" title="EXQuery GitHub">EXQuery GitHub page</a>. |
936 | 936 | </p>
|
937 | 937 | </section>
|
938 | 938 |
|
939 | 939 | <section class="appendix" id="template-grammar">
|
940 | 940 | <h2>Annotation Template Grammar</h2>
|
941 |
| - <p>The grammar used for RESTXQ Templates is expressed in EBNF and re-uses the <a href="http://www.w3.org/TR/xquery-30/#prod-xquery30-EQName" title="EQName">EQName</a> from the XQuery grammar</p> |
| 941 | + <p>The grammar used for RESTXQ Templates is expressed in EBNF and re-uses the <a href="https://www.w3.org/TR/xquery-30/#prod-xquery30-EQName" title="EQName">EQName</a> from the XQuery grammar</p> |
942 | 942 | <table>
|
943 | 943 | <tr>
|
944 | 944 | <td>[1]</td>
|
945 | 945 | <td>Template</td>
|
946 | 946 | <td>::=</td>
|
947 |
| - <td>"{" "$" <a href="http://www.w3.org/TR/xquery-30/#prod-xquery30-EQName" title="EQName">EQName</a> "}"</td> |
| 947 | + <td>"{" "$" <a href="https://www.w3.org/TR/xquery-30/#prod-xquery30-EQName" title="EQName">EQName</a> "}"</td> |
948 | 948 | </tr>
|
949 | 949 | </table>
|
950 | 950 | </section>
|
|
0 commit comments