Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update cppcheck branch to 'main' on the devinfo page #22

Merged
merged 1 commit into from
Jun 17, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 6 additions & 8 deletions devinfo/index.php
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,8 @@
<link rel="stylesheet" type="text/css" href="//fonts.googleapis.com/css?family=Orbitron&amp;text=Cppcheck" />
<link rel="stylesheet" type="text/css" href="/site/css/pack.css" />
<link rel="shortcut icon" type="image/x-icon" href="/favicon.ico" />
<link rel="alternate" type="application/atom+xml" title="Recent Commits to cppcheck:master"
href="https://github.com/danmar/cppcheck/commits/master.atom" />
<link rel="alternate" type="application/atom+xml" title="Recent Commits to cppcheck:main"
href="https://github.com/danmar/cppcheck/commits/main.atom" />
<link rel="alternate" type="application/atom+xml" title="Trac Timeline"
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" />
<link rel="alternate" type="application/atom+xml" title="Latest Forum Posts"
Expand All @@ -21,7 +21,7 @@
<script src="/site/js/pack.js" type="text/javascript"></script>
<script type="text/javascript">
$(function() {
$("#github-commits").listCommits("danmar", "cppcheck", "master");
$("#github-commits").listCommits("danmar", "cppcheck", "main");
});
</script>
</head>
Expand Down Expand Up @@ -63,16 +63,14 @@
<p>Latest version can be found in the <a href="https://github.com/danmar/cppcheck/">
cppcheck git repository</a>.</p>
<p>To get the source code using git:</p>
<pre class="cmd">git clone git://github.com/danmar/cppcheck.git</pre>
<p>To get the source code using subversion:</p>
<pre class="cmd">svn checkout https://github.com/danmar/cppcheck/trunk</pre>
<pre class="cmd">git clone https://github.com/danmar/cppcheck.git</pre>
<p>You can also <a href="https://github.com/danmar/cppcheck/releases">download
the latest sources in a zip or tgz archive</a> from the github website.</p>
<h3>Formatting</h3>
<p>We use <a href="https://github.com/uncrustify/uncrustify/releases/tag/uncrustify-0.72.0">uncrustify-0.72</a> to format Cppcheck source code.</p>
<h3>Recent Commits</h3>
<div id="github-commits"><a href="https://github.com/danmar/cppcheck/commits/master">View recent commits&hellip;</a></div>
<p><a href="https://github.com/danmar/cppcheck/commits/master">View all commits&hellip;</a></p>
<div id="github-commits"><a href="https://github.com/danmar/cppcheck/commits/main">View recent commits&hellip;</a></div>
<p><a href="https://github.com/danmar/cppcheck/commits/main">View all commits&hellip;</a></p>
<h2 id="latest-forum-posts">Latest Forum Posts</h2>
<?php
require '../site/simplepie/simplepie.php';
Expand Down
Loading