2011-01-07 15:36:34 +01:00
<! DOCTYPE html PUBLIC " -//W3C//DTD XHTML 1.1//EN " " http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd " >
< html xmlns = " http://www.w3.org/1999/xhtml " xml : lang = " en " >
< head >
< meta http - equiv = " Content-Type " content = " text/html; charset=UTF-8 " />
2011-01-09 12:29:54 +01:00
< title > Developer Information - Cppcheck </ title >
2011-06-23 11:10:42 +02:00
< link rel = " stylesheet " type = " text/css " href = " http://fonts.googleapis.com/css?family=Orbitron&text=Cppcheck " />
2011-01-07 15:36:34 +01:00
< link rel = " stylesheet " type = " text/css " href = " /site/css/all.css " />
< link rel = " shortcut icon " type = " image/x-icon " href = " /favicon.ico " />
2011-01-11 18:36:17 +01:00
< link rel = " alternate " type = " application/atom+xml " title = " Recent Commits to cppcheck:master "
href = " https://github.com/danmar/cppcheck/commits/master.atom " />
2011-02-03 20:25:55 +01:00
< link rel = " alternate " type = " application/atom+xml " title = " Trac Timeline "
href = " http://sourceforge.net/apps/trac/cppcheck/timeline?changeset=on&ticket=on&milestone=on&wiki=on&max=50&daysback=90&format=rss " />
2011-01-16 14:55:32 +01:00
< script src = " https://ajax.googleapis.com/ajax/libs/jquery/1.4.4/jquery.min.js " type = " text/javascript " ></ script >
< script src = " /site/js/github.js " type = " text/javascript " ></ script >
< script type = " text/javascript " >
$ ( function () {
$ ( " #github-commits " ) . listCommits ( " danmar " , " cppcheck " , " master " );
});
</ script >
2011-01-07 15:36:34 +01:00
</ head >
< body >
< div id = " header " >
< div class = " wrap " >
< h1 > Cppcheck </ h1 >
< p > A tool for static C / C ++ code analysis </ p >
</ div > <!-- . wrap -->
</ div > <!-- #header -->
< div id = " tabs " >
< div class = " wrap " >
< ul >
< li >< a href = " / " > Home </ a ></ li >
< li >< a href = " http://sourceforge.net/apps/mediawiki/cppcheck/ " > Wiki </ a ></ li >
< li >< a href = " http://sourceforge.net/apps/phpbb/cppcheck/ " > Forum </ a ></ li >
< li >< a href = " http://sourceforge.net/apps/trac/cppcheck/ " > Trac </ a ></ li >
< li >< strong >< a href = " /devinfo/ " title = " Developer Information " > Developer Info </ a ></ strong ></ li >
< li >< a href = " http://sourceforge.net/projects/cppcheck/ " > Project page </ a ></ li >
</ ul >
</ div > <!-- . wrap -->
</ div > <!-- #tabs -->
< div id = " content " >
< div class = " wrap " >
2011-01-08 15:20:39 +01:00
< h2 > Source Code </ h2 >
< p > Latest version can be found in the < a href = " https://github.com/danmar/cppcheck/ " >
cppcheck git repository </ a >. To download it , run the following command :</ p >
< pre > git clone git :// github . com / danmar / cppcheck . git </ pre >
< p > You can also < a href = " https://github.com/danmar/cppcheck/downloads " > download
the latest sources in a zip or tgz archive </ a > from the github website .</ p >
2011-01-16 14:55:32 +01:00
< h3 > Recent Commits </ h3 >
< div id = " github-commits " >< a href = " https://github.com/danmar/cppcheck/commits/master " > View recent commits & hellip ; </ a ></ div >
2011-02-03 21:08:01 +01:00
< p >< a href = " https://github.com/danmar/cppcheck/commits/master " > View all commits & hellip ; </ a ></ p >
2011-02-03 20:55:15 +01:00
< h2 > Trac Timeline </ h2 >
< ? php
require '../site/simplepie/simplepie.inc' ;
$feed = new SimplePie ();
$feed -> set_feed_url ( 'http://sourceforge.net/apps/trac/cppcheck/timeline?changeset=on&ticket=on&milestone=on&wiki=on&max=10&daysback=90&format=rss' );
$feed -> set_cache_location ( './site/simplepie/cache' );
$feed -> init ();
print ( " <ul class= \" rssfeeditems \" > \n " );
foreach ( $feed -> get_items () as $item ) { //for the last timeline items...
$author = $item -> get_author ();
print ( " <li><a href= \" " . $item -> get_link () . " \" > " . $item -> get_title () . " </a> by <strong> " . $author -> get_name () . " </strong><em> " . $item -> get_date ( 'Y-m-d' ) . " </em></li> \n " );
}
print ( " </ul> \n " );
?>
< p >< a href = " http://sourceforge.net/apps/trac/cppcheck/timeline " > View complete Trac timeline & hellip ; </ a ></ p >
2011-06-24 18:34:48 +02:00
< h2 > Active Forum Topics </ h2 >
< ? php
require '../site/activetopics.php' ;
$activetopics = new Forum_ActiveTopics ( 'http://sourceforge.net/apps/phpbb/cppcheck/' );
print ( " <ul class= \" rssfeeditems \" > \n " );
foreach ( $activetopics -> getTopics ( 0 , 10 ) as $topic ) { //for all active topics...
print ( " <li><a href= \" " . $topic -> getLink () . " \" > " . $topic -> getTitle () . " </a><em>last post by <strong> " . $topic -> getLastPostUser () . " </strong></em></li> \n " );
}
print ( " </ul> \n " );
?>
< p >< a href = " http://sourceforge.net/apps/phpbb/cppcheck/search.php?st=0&search_id=active_topics " > View all active topics & hellip ; </ a ></ p >
2011-01-07 15:36:34 +01:00
< h2 > Doxygen </ h2 >
< ul >
< li >< a href = " /doxyoutput/ " > Output </ a ></ li >
< li >< a href = " /doxygen-errors.txt " > Errors </ a ></ li >
</ ul >
< h2 > Other </ h2 >
< ul >
< li >< a href = " /coverage_report/ " > Coverage report </ a ></ li >
< li >< a href = " /cpd.txt " > CPD report ( duplicate code ) </ a ></ li >
</ ul >
</ div > <!-- . wrap -->
</ div > <!-- #content -->
</ body >
</ html >