blob: 0a3e5d379593217ab3355b479feaf1d3401ddd72 [file] [log] [blame]
<?php require_once($_SERVER['DOCUMENT_ROOT'] . "/eclipse.org-common/system/app.class.php"); require_once($_SERVER['DOCUMENT_ROOT'] . "/eclipse.org-common/system/nav.class.php"); require_once($_SERVER['DOCUMENT_ROOT'] . "/eclipse.org-common/system/menu.class.php"); $App = new App(); $Nav = new Nav(); $Menu = new Menu(); include($App->getProjectCommon()); # All on the same line to unclutter the user's desktop'
$pageTitle = "Linux Tools - Gcov Support";
$pageKeywords = "linux, eclipse, downloads";
$pageAuthor = "Xavier Raynaud";
# Paste your HTML content between the EOHTML markers!
$html = <<<EOHTML
<div id="midcolumn">
<h1>$pageTitle</h1>
<h2>Overview</h2>
<p>
The Linux Tools Gcov plugin aims to bring the coverage
capabilities of Gcov to Eclipse, in a manner that is easy to use for developers
of any level of experience.
</p>
<h2>Current Status</h2>
<p>
The plugin can parse and display in eclipse <b>gcda</b> and <b>gcno</b> files generated by gcov intrumentation.
</p>
<p>
Plugin architecture was designed to be compatible with cross-devlopment tools (some additional work may be needed in this case).
</p>
<h2>Future Plans</h2>
<ul>
<li> Support coverage on libraries </li>
<li> Enhance online documentation </li>
</ul>
<h2>Help and screenshots</h2>
<p>
Help and screenshots are available in the <a href="http://wiki.eclipse.org/Linux_Tools_Project/GCov/User_Guide">GCov user guide wiki</a>
</p>
<h2>Try it out</h2>
<p>
You can download the plugin from our <a href="http://www.eclipse.org/linuxtools/downloads.php">update site</a>, or
check the project plugins out of Git directly from eclipse.org at git://git.eclipse.org/gitroot/linuxtools/org.eclipse.linuxtools.git.
<br/><br/>
</p>
<br/><br/><br/>
</div>
<div id="rightcolumn">
</div>
EOHTML;
# Generate the web page
$App->generatePage($theme, $Menu, $Nav, $pageAuthor, $pageKeywords, $pageTitle, $html);
?>