Skip to content

Commit f998573

Browse files
committed
[bugfix] Use HTTPS instead of HTTP in the RESTXQ 1.0 spec
1 parent 4bcd76e commit f998573

File tree

2 files changed

+26
-26
lines changed

2 files changed

+26
-26
lines changed

exquery-restxq-specification/restxq-1.0-specification.html

Lines changed: 15 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@
3838
// specification status (e.g. WD, LCWD, NOTE, etc.). If in doubt use ED.
3939
specStatus: "unofficial",
4040

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/
4242
shortName: "restxq",
4343

4444
// if your specification has a subtitle that goes below the main
@@ -58,28 +58,28 @@
5858
// previousMaturity: "WD",
5959

6060
// 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",
6363

6464
// if this is a LCWD, uncomment and set the end of its review period
6565
// lcEnd: "2009-08-05",
6666

6767
// editors, add as many as you like
6868
// only "name" is required
6969
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/" }
7272
],
7373

7474
// authors, add as many as you like.
7575
// This is optional, uncomment if you have authors as well as editors.
7676
// only "name" is required. Same format as editors.
7777

7878
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/" }
8383
],
8484

8585
// name of the WG
@@ -105,7 +105,7 @@
105105

106106
localBiblio: {
107107
"IANA-MEDIA-TYPES" : {
108-
"href": "http://www.iana.org/assignments/media-types/",
108+
"href": "https://www.iana.org/assignments/media-types/",
109109
"title": "Media Types",
110110
"publisher": "IANA"
111111
}
@@ -209,7 +209,7 @@ <h3>Goals</h3>
209209
</dd>
210210
<dt>Technical improvement</dt>
211211
<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>.
213213
</dd>
214214
</dl>
215215
</p>
@@ -600,7 +600,7 @@ <h3>Serialization</h3>
600600
</ol>
601601

602602
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>
604604
how the result of a query is serialized. Serialization may be controlled by
605605
the use of Output Declarations. In RESTXQ, the following rules are applied:
606606

@@ -932,19 +932,19 @@ <h2>Resources for Implementers</h2>
932932
If you plan to implement RESTXQ, there is already a set of common abstraction libraries written in Java
933933
which should significantly reduce the amount of effort involved and avoid re-inventing more wheels. You need
934934
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>.
936936
</p>
937937
</section>
938938

939939
<section class="appendix" id="template-grammar">
940940
<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>
942942
<table>
943943
<tr>
944944
<td>[1]</td>
945945
<td>Template</td>
946946
<td>::=</td>
947-
<td>&quot;{&quot; &quot;$&quot; <a href="http://www.w3.org/TR/xquery-30/#prod-xquery30-EQName" title="EQName">EQName</a> &quot;}&quot;</td>
947+
<td>&quot;{&quot; &quot;$&quot; <a href="https://www.w3.org/TR/xquery-30/#prod-xquery30-EQName" title="EQName">EQName</a> &quot;}&quot;</td>
948948
</tr>
949949
</table>
950950
</section>

exquery-restxq-specification/restxq-2.0-specification.html

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@
3838
// specification status (e.g. WD, LCWD, NOTE, etc.). If in doubt use ED.
3939
specStatus: "unofficial",
4040

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/
4242
shortName: "restxq-20",
4343

4444
// if your specification has a subtitle that goes below the main
@@ -58,16 +58,16 @@
5858
// previousMaturity: "WD",
5959

6060
// 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-2.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-2.0-specification.html",
6363

6464
// if this is a LCWD, uncomment and set the end of its review period
6565
// lcEnd: "2009-08-05",
6666

6767
// editors, add as many as you like
6868
// only "name" is required
6969
editors: [
70-
{ name: "Adam Retter", url: "http://adamretter.org.uk/",
70+
{ name: "Adam Retter", url: "https://adamretter.org.uk/",
7171
company: "Evolved Binary", companyURL: "https://www.evolvedbinary.com/" }
7272
],
7373

@@ -76,7 +76,7 @@
7676
// only "name" is required. Same format as editors.
7777

7878
authors: [
79-
{ name: "Adam Retter", url: "http://adamretter.org.uk/",
79+
{ name: "Adam Retter", url: "https://adamretter.org.uk/",
8080
company: "Evolved Binary", companyURL: "https://www.evolvedbinary.com/" },
8181
{ name: "Tomos Hillman", company: "Evolved Binary", companyURL: "https://www.evolvedbinary.com/" }
8282
],
@@ -104,7 +104,7 @@
104104

105105
localBiblio: {
106106
"IANA-MEDIA-TYPES" : {
107-
"href": "http://www.iana.org/assignments/media-types/",
107+
"href": "https://www.iana.org/assignments/media-types/",
108108
"title": "Media Types",
109109
"publisher": "IANA"
110110
}
@@ -208,7 +208,7 @@ <h3>Goals</h3>
208208
</dd>
209209
<dt>Technical improvement</dt>
210210
<dd>RESTXQ MUST improve on the current approaches, a comprehensive review was undertaken
211-
<a href="http://www.adamretter.org.uk/papers/restful-xquery_january-2012.pdf" title="RESTful XQuery, Standardised XQuery Annotations for REST">here</a>.
211+
<a href="https://www.adamretter.org.uk/papers/restful-xquery_january-2012.pdf" title="RESTful XQuery, Standardised XQuery Annotations for REST">here</a>.
212212
</dd>
213213
</dl>
214214
</p>
@@ -599,7 +599,7 @@ <h3>Serialization</h3>
599599
</ol>
600600

601601
The XQuery Specification states in
602-
<a href="http://www.w3.org/TR/xquery-30/#id-serialization">Section 2.2.4</a>
602+
<a href="https://www.w3.org/TR/xquery-30/#id-serialization">Section 2.2.4</a>
603603
how the result of a query is serialized. Serialization may be controlled by
604604
the use of Output Declarations. In RESTXQ, the following rules are applied:
605605

@@ -931,19 +931,19 @@ <h2>Resources for Implementers</h2>
931931
If you plan to implement RESTXQ, there is already a set of common abstraction libraries written in Java
932932
which should significantly reduce the amount of effort involved and avoid re-inventing more wheels. You need
933933
just implement a few interfaces and adapters. For more information see the
934-
<a href="http://www.github.com/exquery/exquery" title="EXQuery GitHub">EXQuery GitHub page</a>.
934+
<a href="https://www.github.com/exquery/exquery" title="EXQuery GitHub">EXQuery GitHub page</a>.
935935
</p>
936936
</section>
937937

938938
<section class="appendix" id="template-grammar">
939939
<h2>Annotation Template Grammar</h2>
940-
<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>
940+
<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>
941941
<table>
942942
<tr>
943943
<td>[1]</td>
944944
<td>Template</td>
945945
<td>::=</td>
946-
<td>&quot;{&quot; &quot;$&quot; <a href="http://www.w3.org/TR/xquery-30/#prod-xquery30-EQName" title="EQName">EQName</a> &quot;}&quot;</td>
946+
<td>&quot;{&quot; &quot;$&quot; <a href="https://www.w3.org/TR/xquery-30/#prod-xquery30-EQName" title="EQName">EQName</a> &quot;}&quot;</td>
947947
</tr>
948948
</table>
949949
</section>

0 commit comments

Comments
 (0)