Skip to content

Commit d4b9ef3

Browse files
StephanTLavavejshintaro-iwasaki
authored andcommitted
[www] Change URLs to HTTPS.
This changes most URLs in llvm's html files to HTTPS. Most changes were search-and-replace with manual verification; some changes were manual. For a few URLs, the websites were performing redirects or had changed their anchors; I fixed those up manually. This consistently uses the official https://wg21.link redirector. This also strips trailing whitespace and fixes a couple of typos. Fixes D69363. There are a very small number of dead links for which I don't know any replacements (they are equally dead as HTTP or HTTPS): https://llvm.org/cmds/llvm2cpp.html https://llvm.org/devmtg/2010-11/videos/Grosser_Polly-desktop.mp4 https://llvm.org/devmtg/2010-11/videos/Grosser_Polly-mobile.mp4 https://llvm.org/devmtg/2011-11/videos/Grosser_PollyOptimizations-desktop.mov https://llvm.org/devmtg/2011-11/videos/Grosser_PollyOptimizations-mobile.mp4 https://llvm.org/perf/db_default/v4/nts/22463 https://polly.llvm.org/documentation/memaccess.html cherry-pick: 2e4f1e112dfee1d16c138d42f2bc7ee639f9ae05 llvm/llvm-project@2e4f1e1
1 parent 56d941a commit d4b9ef3

File tree

1 file changed

+12
-12
lines changed

1 file changed

+12
-12
lines changed

www/index.html

+12-12
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
<body>
1313
<div id="menu">
1414
<div>
15-
<a href="http://llvm.org/">LLVM Home</a>
15+
<a href="https://llvm.org/">LLVM Home</a>
1616
</div>
1717

1818
<div class="submenu">
@@ -22,9 +22,9 @@
2222

2323
<div class="submenu">
2424
<label>Quick Links</label>
25-
<a href="http://lists.llvm.org/mailman/listinfo/openmp-dev">openmp-dev</a>
26-
<a href="http://lists.llvm.org/mailman/listinfo/openmp-commits">openmp-commits</a>
27-
<a href="http://llvm.org/bugs/">Bug Reports</a>
25+
<a href="https://lists.llvm.org/mailman/listinfo/openmp-dev">openmp-dev</a>
26+
<a href="https://lists.llvm.org/mailman/listinfo/openmp-commits">openmp-commits</a>
27+
<a href="https://bugs.llvm.org/">Bug Reports</a>
2828
<a href="https://github.com/llvm/llvm-project/tree/master/openmp">Browse Sources</a>
2929
</div>
3030
</div>
@@ -60,7 +60,7 @@ <h1>OpenMP&reg;: Support for the OpenMP language</h1>
6060
</p>
6161

6262
<p>All of the code here is <a
63-
href="http://llvm.org/docs/DeveloperPolicy.html#license">dual licensed</a>
63+
href="https://llvm.org/docs/DeveloperPolicy.html#copyright-license-and-patents">dual licensed</a>
6464
under the MIT license and the UIUC License (a BSD-like license).
6565
The LICENSE.txt file at the top of the OpenMP project contains
6666
the license text and associated patent grants.
@@ -83,19 +83,19 @@ <h2 id="goals">Features and Goals</h2>
8383
<!--=====================================================================-->
8484

8585
<ul>
86-
<li>Support for the <a href="http://www.openmp.org/mp-documents/OpenMP3.1.pdf">OpenMP
86+
<li>Support for the <a href="https://www.openmp.org/wp-content/uploads/OpenMP3.1.pdf">OpenMP
8787
3.1 standard (PDF)</a> has been achieved in the Clang 3.8.0
8888
release.
8989
</li>
9090

9191
<li>Support for the
92-
<a href="http://www.openmp.org/mp-documents/OpenMP4.0.0.pdf">OpenMP
93-
4.0 standard (PDF)</a> and <a href="http://www.openmp.org/mp-documents/OpenMP4.5.pdf">OpenMP
92+
<a href="https://www.openmp.org/wp-content/uploads/OpenMP4.0.0.pdf">OpenMP
93+
4.0 standard (PDF)</a> and <a href="https://www.openmp.org/wp-content/uploads/openmp-4.5.pdf">OpenMP
9494
4.5 standard (PDF)</a> is now being implemented. (Some OpenMP 4.0
9595
and 4.5 features are already available).
9696
<li>High performance.</li>
97-
<li>ABI compatibility with <a href="http://gcc.gnu.org">Gcc</a> and
98-
<a href="http://software.intel.com/en-us/intel-compilers">Intel's
97+
<li>ABI compatibility with <a href="https://gcc.gnu.org">Gcc</a> and
98+
<a href="https://software.intel.com/en-us/compilers">Intel's
9999
existing OpenMP compilers.</a>
100100
We currently have binary compatibility with OpenMP
101101
3.1 code compiled by gcc 4.9, however we do not have support
@@ -149,7 +149,7 @@ <h2>Get it and get involved!</h2>
149149
<!--=====================================================================-->
150150

151151
<p>First please review our
152-
<a href="http://llvm.org/docs/DeveloperPolicy.html">Developer's Policy</a>.
152+
<a href="https://llvm.org/docs/DeveloperPolicy.html">Developer's Policy</a>.
153153

154154
<p>To check out the code, use:</p>
155155

@@ -186,7 +186,7 @@ <h3>Notes</h3>
186186
</p>
187187

188188
<p>Send discussions to the
189-
(<a href="http://lists.llvm.org/mailman/listinfo/openmp-dev">OpenMP mailing list</a>).</p>
189+
(<a href="https://lists.llvm.org/mailman/listinfo/openmp-dev">OpenMP mailing list</a>).</p>
190190

191191

192192
<!--=====================================================================-->

0 commit comments

Comments
 (0)