Skip to content

Commit c135921

Browse files
committed
Use more HTTPS links
1 parent fbbfacb commit c135921

8 files changed

Lines changed: 47 additions & 47 deletions

File tree

demo/index.php

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -34,12 +34,12 @@ function checkCodeLength() {
3434
<div class="wrap">
3535
<ul>
3636
<li><a href="/">Home</a></li>
37-
<li><a href="http://sourceforge.net/p/cppcheck/wiki/">Wiki</a></li>
38-
<li><a href="http://sourceforge.net/p/cppcheck/discussion/">Forum</a></li>
39-
<li><a href="http://trac.cppcheck.net">Issues</a></li>
37+
<li><a href="https://sourceforge.net/p/cppcheck/wiki/">Wiki</a></li>
38+
<li><a href="https://sourceforge.net/p/cppcheck/discussion/">Forum</a></li>
39+
<li><a href="https://trac.cppcheck.net">Issues</a></li>
4040
<li><a href="/devinfo/" title="Developer Information">Developer Info</a></li>
4141
<li><strong><a href="/demo/">Online Demo</a></strong></li>
42-
<li><a href="http://sourceforge.net/projects/cppcheck/">Project page</a></li>
42+
<li><a href="https://sourceforge.net/projects/cppcheck/">Project page</a></li>
4343
</ul>
4444
</div> <!-- .wrap -->
4545
</div> <!-- #tabs -->

demo/report/index.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -89,10 +89,10 @@ function cut_string($string, $length = 1024) {
8989
<div class="wrap">
9090
<ul>
9191
<li><a href="/">Home</a></li>
92-
<li><a href="http://trac.cppcheck.net/trac-cppcheck/">Issues</a></li>
92+
<li><a href="https://trac.cppcheck.net/trac-cppcheck/">Issues</a></li>
9393
<li><a href="/devinfo/" title="Developer Information">Developer Info</a></li>
9494
<li><em><a href="/demo/">Online Demo</a></em></li>
95-
<li><a href="http://sourceforge.net/projects/cppcheck/">Project page</a></li>
95+
<li><a href="https://sourceforge.net/projects/cppcheck/">Project page</a></li>
9696
</ul>
9797
</div> <!-- .wrap -->
9898
</div> <!-- #tabs -->

devinfo/index.php

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -9,9 +9,9 @@
99
<link rel="alternate" type="application/atom+xml" title="Recent Commits to cppcheck:main"
1010
href="https://github.com/cppcheck-opensource/cppcheck/commits/main.atom" />
1111
<link rel="alternate" type="application/atom+xml" title="Trac Timeline"
12-
href="http://trac.cppcheck.net/timeline?changeset=on&amp;ticket=on&amp;milestone=on&amp;wiki=on&amp;max=50&amp;daysback=90&amp;format=rss" />
12+
href="https://trac.cppcheck.net/timeline?changeset=on&amp;ticket=on&amp;milestone=on&amp;wiki=on&amp;max=50&amp;daysback=90&amp;format=rss" />
1313
<link rel="alternate" type="application/atom+xml" title="Latest Forum Posts"
14-
href="http://sourceforge.net/p/cppcheck/discussion/feed" />
14+
href="https://sourceforge.net/p/cppcheck/discussion/feed" />
1515
<script src="//ajax.googleapis.com/ajax/libs/jquery/1.11.0/jquery.min.js" type="text/javascript"></script>
1616
<script type="text/javascript">
1717
//<![CDATA[
@@ -36,20 +36,20 @@
3636
<div class="wrap">
3737
<ul>
3838
<li><a href="/">Home</a></li>
39-
<li><a href="http://sourceforge.net/p/cppcheck/wiki/">Wiki</a></li>
40-
<li><a href="http://sourceforge.net/p/cppcheck/discussion/">Forum</a></li>
41-
<li><a href="http://trac.cppcheck.net">Issues</a></li>
39+
<li><a href="https://sourceforge.net/p/cppcheck/wiki/">Wiki</a></li>
40+
<li><a href="https://sourceforge.net/p/cppcheck/discussion/">Forum</a></li>
41+
<li><a href="https://trac.cppcheck.net">Issues</a></li>
4242
<li><strong><a href="/devinfo/" title="Developer Information">Developer Info</a></strong></li>
4343
<li><a href="/demo/">Online Demo</a></li>
44-
<li><a href="http://sourceforge.net/projects/cppcheck/">Project page</a></li>
44+
<li><a href="https://sourceforge.net/projects/cppcheck/">Project page</a></li>
4545
</ul>
4646
</div> <!-- .wrap -->
4747
</div> <!-- #tabs -->
4848
<div id="anchors">
4949
<div class="wrap">
5050
<ul>
5151
<li><a href="#source-code">Source Code</a></li>
52-
<li><a href="http://trac.cppcheck.net/timeline">Trac Timeline</a></li>
52+
<li><a href="https://trac.cppcheck.net/timeline">Trac Timeline</a></li>
5353
<li><a href="#latest-forum-posts">Latest Forum Posts</a></li>
5454
<li><a href="#doxygen">Doxygen</a></li>
5555
<li><a href="#scan">Scan</a></li>
@@ -76,7 +76,7 @@
7676
require '../site/simplepie/simplepie.php';
7777

7878
$feed = new SimplePie();
79-
$feed->set_feed_url('http://sourceforge.net/p/cppcheck/discussion/feed');
79+
$feed->set_feed_url('https://sourceforge.net/p/cppcheck/discussion/feed');
8080
$feed->set_cache_location('../site/simplepie/cache');
8181
$feed->init();
8282
print("<ul class=\"rssfeeditems\">\n");
@@ -90,7 +90,7 @@
9090
}
9191
print("</ul>\n");
9292
?>
93-
<p><a href="http://sourceforge.net/p/cppcheck/discussion/">View forum&hellip;</a></p>
93+
<p><a href="https://sourceforge.net/p/cppcheck/discussion/">View forum&hellip;</a></p>
9494
<h2 id="doxygen">Doxygen</h2>
9595
<ul>
9696
<li><a href="doxyoutput/">Output</a></li>

gsoc2014.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323
<li><a href="http://5.150.254.56:443/trac-cppcheck/">Issues</a></li>
2424
<li><a href="/devinfo/" title="Developer Information">Developer Info</a></li>
2525
<li><a href="/demo/">Online Demo</a></li>
26-
<li><a href="http://sourceforge.net/projects/cppcheck/">Project page</a></li>
26+
<li><a href="https://sourceforge.net/projects/cppcheck/">Project page</a></li>
2727
</ul>
2828
</div> <!-- .wrap -->
2929
</div> <!-- #tabs -->
@@ -73,7 +73,7 @@
7373
etc) the interpreter shall bailout. You will interpret the loop expressions until : the loop finish , or
7474
there is a timeout , or the variables are unchanged. During the interpretation, the variable values will be
7575
recorded and saved as ValueFlow values. You can read an overview of the Cppcheck syntax tree and ValueFlow
76-
analysis in the <a href="http://sourceforge.net/projects/cppcheck/files/Articles/cppcheck-design.pdf">cppcheck
76+
analysis in the <a href="https://sourceforge.net/projects/cppcheck/files/Articles/cppcheck-design.pdf">cppcheck
7777
design</a> document.
7878
</p>
7979

gsoc2016.php

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -20,12 +20,12 @@
2020
<div class="wrap">
2121
<ul>
2222
<li><strong><a href="/">Home</a></strong></li>
23-
<li><a href="http://sourceforge.net/p/cppcheck/wiki/">Wiki</a></li>
24-
<li><a href="http://sourceforge.net/p/cppcheck/discussion/">Forum</a></li>
25-
<li><a href="http://trac.cppcheck.net">Issues</a></li>
23+
<li><a href="https://sourceforge.net/p/cppcheck/wiki/">Wiki</a></li>
24+
<li><a href="https://sourceforge.net/p/cppcheck/discussion/">Forum</a></li>
25+
<li><a href="https://trac.cppcheck.net">Issues</a></li>
2626
<li><a href="/devinfo/" title="Developer Information">Developer Info</a></li>
2727
<li><a href="/demo/">Online Demo</a></li>
28-
<li><a href="http://sourceforge.net/projects/cppcheck/">Project page</a></li>
28+
<li><a href="https://sourceforge.net/projects/cppcheck/">Project page</a></li>
2929
</ul>
3030
</div> <!-- .wrap -->
3131
</div> <!-- #tabs -->

index.php

Lines changed: 20 additions & 20 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
<link rel="stylesheet" type="text/css" href="/site/css/pack.css" />
1414
<link rel="shortcut icon" type="image/x-icon" href="/favicon.ico" />
1515
<link rel="alternate" type="application/rss+xml" title="Project News"
16-
href="http://sourceforge.net/p/cppcheck/news/feed" />
16+
href="https://sourceforge.net/p/cppcheck/news/feed" />
1717
</head>
1818
<body>
1919
<div id="header">
@@ -26,12 +26,12 @@
2626
<div class="wrap">
2727
<ul>
2828
<li><strong><a href="/">Home</a></strong></li>
29-
<li><a href="http://sourceforge.net/p/cppcheck/wiki/">Wiki</a></li>
30-
<li><a href="http://sourceforge.net/p/cppcheck/discussion/">Forum</a></li>
31-
<li><a href="http://trac.cppcheck.net">Issues</a></li>
29+
<li><a href="https://sourceforge.net/p/cppcheck/wiki/">Wiki</a></li>
30+
<li><a href="https://sourceforge.net/p/cppcheck/discussion/">Forum</a></li>
31+
<li><a href="https://trac.cppcheck.net">Issues</a></li>
3232
<li><a href="/devinfo/" title="Developer Information">Developer Info</a></li>
3333
<li><a href="/demo/">Online Demo</a></li>
34-
<li><a href="http://sourceforge.net/projects/cppcheck/">Project page</a></li>
34+
<li><a href="https://sourceforge.net/projects/cppcheck/">Project page</a></li>
3535
</ul>
3636
</div> <!-- .wrap -->
3737
</div> <!-- #tabs -->
@@ -50,7 +50,7 @@
5050
<div id="content">
5151
<div class="wrap">
5252
<p>
53-
<strong>Cppcheck</strong> is a <a href="http://en.wikipedia.org/wiki/Static_analysis_tool">static analysis tool</a>
53+
<strong>Cppcheck</strong> is a <a href="https://en.wikipedia.org/wiki/Static_analysis_tool">static analysis tool</a>
5454
for C/C++ code. It provides <a href="#unique">unique code analysis</a> to detect bugs and focuses on detecting undefined behaviour and
5555
dangerous coding constructs. The goal is to have very few false positives.
5656
Cppcheck is designed to be able to analyze your C/C++ code even if it has non-standard syntax (common in embedded projects).
@@ -205,26 +205,26 @@
205205

206206

207207
<h3>All checks</h3>
208-
<p>For a list of all checks in Cppcheck see: <a href="http://sourceforge.net/p/cppcheck/wiki/ListOfChecks">http://sourceforge.net/p/cppcheck/wiki/ListOfChecks</a>.</p>
208+
<p>For a list of all checks in Cppcheck see: <a href="https://sourceforge.net/p/cppcheck/wiki/ListOfChecks">https://sourceforge.net/p/cppcheck/wiki/ListOfChecks</a>.</p>
209209

210210
<h2>Clients and plugins</h2>
211211
<p>Cppcheck is integrated with many popular development tools. For instance:</p>
212212
<ul>
213213
<li><strong>Buildbot</strong> - <a href="https://docs.buildbot.net/latest/manual/configuration/steps/cppcheck.html">integrated</a></li>
214214
<li><strong>CLion</strong> - <a href="https://plugins.jetbrains.com/plugin/8143">Cppcheck plugin</a></li>
215215
<li><strong>Code::Blocks</strong> - <em>integrated</em></li>
216-
<li><strong>CodeDX</strong> (software assurance tool) - <a href="http://codedx.com/code-dx-standard/">integrated</a></li>
216+
<li><strong>CodeDX</strong> (software assurance tool) - <a href="https://codedx.com/code-dx-standard/">integrated</a></li>
217217
<li><strong>CodeLite</strong> - <em>integrated</em></li>
218-
<li><strong>CppDepend 5</strong> - <a href="http://www.cppdepend.com/CppDependV5.aspx">integrated</a></li>
218+
<li><strong>CppDepend 5</strong> - <a href="https://www.cppdepend.com/CppDependV5.aspx">integrated</a></li>
219219
<li><strong>Eclipse</strong> - <a href="https://github.com/cppchecksolutions/cppcheclipse/wiki/Installation">Cppcheclipse</a></li>
220-
<li><strong>gedit</strong> - <a href="http://github.com/odamite/gedit-cppcheck">gedit plugin</a></li>
221-
<li><strong>github</strong> - <a href="https://www.codacy.com/">Codacy</a>, <a href="https://www.codety.io/">Codety</a> and <a href="http://www.softacheck.com/">SoftaCheck</a></li>
222-
<li><strong>Hudson</strong> - <a href="http://wiki.hudson-ci.org/display/HUDSON/Cppcheck+Plugin">Cppcheck Plugin</a></li>
223-
<li><strong>Jenkins</strong> - <a href="http://wiki.jenkins-ci.org/display/JENKINS/Cppcheck+Plugin">Cppcheck Plugin</a></li>
220+
<li><strong>gedit</strong> - <a href="https://github.com/odamite/gedit-cppcheck">gedit plugin</a></li>
221+
<li><strong>github</strong> - <a href="https://www.codacy.com/">Codacy</a>, <a href="https://www.codety.io/">Codety</a> and <a href="https://www.softacheck.com/">SoftaCheck</a></li>
222+
<li><strong>Hudson</strong> - <a href="https://wiki.hudson-ci.org/display/HUDSON/Cppcheck+Plugin">Cppcheck Plugin</a></li>
223+
<li><strong>Jenkins</strong> - <a href="https://wiki.jenkins-ci.org/display/JENKINS/Cppcheck+Plugin">Cppcheck Plugin</a></li>
224224
<li><strong>KDevelop</strong> - <a href="https://kdevelop.org/">integrated since v5.1</a></li>
225-
<li><strong>Mercurial (Linux)</strong> - <a href="http://sourceforge.net/p/cppcheck/wiki/mercurialhook/">pre-commit hook</a> - Check for new errors on commit (requires interactive terminal)</li>
225+
<li><strong>Mercurial (Linux)</strong> - <a href="https://sourceforge.net/p/cppcheck/wiki/mercurialhook/">pre-commit hook</a> - Check for new errors on commit (requires interactive terminal)</li>
226226
<li><strong>QtCreator</strong> - <a href="https://sourceforge.net/projects/qtprojecttool/files">Qt Project Tool (qpt)</a></li>
227-
<li><strong>Tortoise SVN</strong> - <a href="http://omerez.com/automatic-static-code-analysis/">Adding a pre-commit hook script</a></li>
227+
<li><strong>Tortoise SVN</strong> - <a href="https://omerez.com/automatic-static-code-analysis/">Adding a pre-commit hook script</a></li>
228228
<li><strong>Vim</strong> - <a href="https://vimhelp.org/quickfix.txt.html#compiler-cppcheck">Vim Compiler</a></li>
229229
<li><strong>Visual Studio</strong> - <a href="https://github.com/VioletGiraffe/cppcheck-vs-addin/releases/latest">Visual Studio plugin</a></li>
230230
<li><strong>VScode</strong> - <a href="https://marketplace.visualstudio.com/items?itemName=NathanJ.cppcheck-plugin">VScode plugin</a></li>
@@ -258,11 +258,11 @@
258258

259259
<h2 id="documentation">Documentation</h2>
260260
<p>You can read the <a href="manual.pdf">manual</a> or download some
261-
<a href="http://sourceforge.net/projects/cppcheck/files/Articles/">articles</a>.</p>
261+
<a href="https://sourceforge.net/projects/cppcheck/files/Articles/">articles</a>.</p>
262262

263263
<h2 id="support">Support</h2>
264264
<ul>
265-
<li>Use <a href="http://trac.cppcheck.net">Trac</a> to report bugs and feature requests</li>
265+
<li>Use <a href="https://trac.cppcheck.net">Trac</a> to report bugs and feature requests</li>
266266
<li>Ask questions at the IRC channel <a href="irc://irc.libera.chat/#cppcheck">#cppcheck</a></li>
267267
</ul>
268268

@@ -281,10 +281,10 @@
281281
<dl>
282282
<dt>Testing</dt>
283283
<dd>Pick a project and test its source with the latest version of Cppcheck.
284-
Submit tickets to <a href="http://trac.cppcheck.net">Trac</a> about the
284+
Submit tickets to <a href="https://trac.cppcheck.net">Trac</a> about the
285285
issues you find in Cppcheck.</dd>
286286
<dt>Developing</dt>
287-
<dd>Pick a ticket from <a href="http://trac.cppcheck.net">Trac</a>,
287+
<dd>Pick a ticket from <a href="https://trac.cppcheck.net">Trac</a>,
288288
write a test case for it (and write a comment to the ticket for which that
289289
test case has been created). Alternatively, pick a test case that fails and
290290
try to fix it. Make a patch and submit it to Trac either inline, if it is
@@ -294,7 +294,7 @@
294294
have, the more people we have testing and the better we can become.</dd>
295295
<dt>Design</dt>
296296
<dd>Come up with some new good checks, and create tickets in
297-
<a href="http://trac.cppcheck.net">the Trac instance</a>
297+
<a href="https://trac.cppcheck.net">the Trac instance</a>
298298
about them.</dd>
299299
<dt>Integration</dt>
300300
<dd>Write a plugin for your favorite IDE or create a package for your

misra.php

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
<link rel="stylesheet" type="text/css" href="//fonts.googleapis.com/css?family=Orbitron&amp;text=Cppcheck" />
99
<link rel="stylesheet" type="text/css" href="/site/css/pack.css" />
1010
<link rel="shortcut icon" type="image/x-icon" href="/favicon.ico" />
11-
<link rel="alternate" type="application/rss+xml" title="Project News" href="http://sourceforge.net/p/cppcheck/news/feed" />
11+
<link rel="alternate" type="application/rss+xml" title="Project News" href="https://sourceforge.net/p/cppcheck/news/feed" />
1212
</head>
1313
<body>
1414
<div id="header">
@@ -21,12 +21,12 @@
2121
<div class="wrap">
2222
<ul>
2323
<li><a href="/">Home</a></li>
24-
<li><a href="http://sourceforge.net/p/cppcheck/wiki/">Wiki</a></li>
25-
<li><a href="http://sourceforge.net/p/cppcheck/discussion/">Forum</a></li>
26-
<li><a href="http://trac.cppcheck.net">Issues</a></li>
24+
<li><a href="https://sourceforge.net/p/cppcheck/wiki/">Wiki</a></li>
25+
<li><a href="https://sourceforge.net/p/cppcheck/discussion/">Forum</a></li>
26+
<li><a href="https://trac.cppcheck.net">Issues</a></li>
2727
<li><a href="/devinfo/" title="Developer Information">Developer Info</a></li>
2828
<li><a href="/demo/">Online Demo</a></li>
29-
<li><a href="http://sourceforge.net/projects/cppcheck/">Project page</a></li>
29+
<li><a href="https://sourceforge.net/projects/cppcheck/">Project page</a></li>
3030
</ul>
3131
</div> <!-- .wrap -->
3232
</div> <!-- #tabs -->

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
"url": "https://github.com/cppcheck-opensource/cppcheck.git"
1010
},
1111
"bugs": {
12-
"url": "http://sourceforge.net/apps/trac/cppcheck/wiki"
12+
"url": "https://sourceforge.net/apps/trac/cppcheck/wiki"
1313
},
1414
"license": "GPLv3",
1515
"main": "make.js",

0 commit comments

Comments
 (0)