Skip to content

Commit 54d5faf

Browse files
Use TLS/SSL for all SRFI URLs.
1 parent b0b88d0 commit 54d5faf

File tree

1 file changed

+12
-12
lines changed

1 file changed

+12
-12
lines changed

srfi-64.html

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -29,21 +29,21 @@ <H1>Status</H1>
2929

3030
This SRFI is currently in ``final'' status. To see an explanation of each
3131
status that a SRFI can hold, see
32-
<a href="http://srfi.schemers.org/srfi-process.html">here</a>.
32+
<a href="https://srfi.schemers.org/srfi-process.html">here</a>.
3333
It will remain in draft status until 2005-03-17, or as amended. To
3434
provide input on this SRFI, please <code>
3535
<a href="mailto:srfi minus 64 at srfi dot schemers dot org">mailto:srfi minus 64 at srfi dot schemers dot org</a></code>.
36-
See <a href="http://srfi.schemers.org/srfi-list-subscribe.html">instructions
36+
See <a href="https://srfi.schemers.org/srfi-list-subscribe.html">instructions
3737
here</a> to subscribe to the list. You can access previous messages via
38-
<a href="http://srfi.schemers.org/srfi-64/mail-archive/maillist.html">the
38+
<a href="https://srfi.schemers.org/srfi-64/mail-archive/maillist.html">the
3939
archive of the mailing list</a>.
4040
<p>
4141
<ul>
4242
<li>Received: 2005-01-07</li>
4343
<li>Draft: 2005-01-28--2005-03-28</li>
44-
<li>Revised: <a href="http://srfi.schemers.org/srfi-64/srfi-64-1.3.html">2005-10-18</a>
45-
<li>Revised: <a href="http://srfi.schemers.org/srfi-64/srfi-64-1.5.html">2006-02-24</a>
46-
<li>Final: <a href="http://srfi.schemers.org/srfi-64/srfi-64-1.6.html">2006-06-18</a></li>
44+
<li>Revised: <a href="https://srfi.schemers.org/srfi-64/srfi-64-1.3.html">2005-10-18</a>
45+
<li>Revised: <a href="https://srfi.schemers.org/srfi-64/srfi-64-1.5.html">2006-02-24</a>
46+
<li>Final: <a href="https://srfi.schemers.org/srfi-64/srfi-64-1.6.html">2006-06-18</a></li>
4747
<li>Revised to fix errata: 2016-08-11</li>
4848
</ul>
4949
</p>
@@ -220,9 +220,9 @@ <h3>Tests for catching errors</h3>
220220
specification) what form <code><var>test-error</var></code> may take,
221221
though all implementations must allow <code>#t</code>.
222222
Some implementations may support
223-
<a href="http://srfi.schemers.org/srfi-35/srfi-35.html">SRFI-35's conditions</a>,
223+
<a href="https://srfi.schemers.org/srfi-35/srfi-35.html">SRFI-35's conditions</a>,
224224
but these are only standardized for
225-
<a href="http://srfi.schemers.org/srfi-36/srfi-36.html">SRFI-36's I/O conditions</a>, which are seldom useful in test suites.
225+
<a href="https://srfi.schemers.org/srfi-36/srfi-36.html">SRFI-36's I/O conditions</a>, which are seldom useful in test suites.
226226
An implementation may also allow implementation-specific
227227
<q>exception types</q>.
228228
For example Java-based implementations may allow
@@ -505,7 +505,7 @@ <h2>Test-runner</h2>
505505
<code>(<b>test-runner-current</b> <var>runner</var>)</code><br />
506506
Get or set the current test-runner.
507507
If an implementation supports parameter objects
508-
(as in <a href="http://srfi.schemers.org/srfi-39/srfi-39.html">SRFI-39</a>),
508+
(as in <a href="https://srfi.schemers.org/srfi-39/srfi-39.html">SRFI-39</a>),
509509
then <code>test-runner-current</code> can be a parameter object.
510510
Alternatively, <code>test-runner-current</code> may be implemented
511511
as a macro or function
@@ -822,7 +822,7 @@ <h3>Example</h3>
822822
<h1>Implementation</h1>
823823
<p>
824824
The test implementation uses <code>cond-expand</code>
825-
(<a href="http://srfi.schemers.org/srfi-0/srfi-0.html">SRFI-0</a>)
825+
(<a href="https://srfi.schemers.org/srfi-0/srfi-0.html">SRFI-0</a>)
826826
to select different code depending on certain SRFI names (<code>srfi-9</code>,
827827
<code>srfi-34</code>, <code>srfi-35</code>, <code>srfi-39</code>),
828828
or implementations (<code>kawa</code>).
@@ -833,8 +833,8 @@ <h1>Implementation</h1>
833833
<h2>Examples</h2>
834834
<p>Here is <a href="srfi-25-test.scm"><code>srfi-25-test.scm</code></a>,
835835
based converted from Jussi Piitulainen's
836-
<a href="http://srfi.schemers.org/srfi-25/test.scm"><code>test.scm</code></a>
837-
for <a href="http://srfi.schemers.org/srfi-25/srfi-25.html">SRFI-25</a>.</p>
836+
<a href="https://srfi.schemers.org/srfi-25/test.scm"><code>test.scm</code></a>
837+
for <a href="https://srfi.schemers.org/srfi-25/srfi-25.html">SRFI-25</a>.</p>
838838

839839
<h2>Test suite</h2>
840840
<p>

0 commit comments

Comments
 (0)