blob: b8a7679f6402d35cae183b6ccf6fd4f618c840dd [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 Project - Gcov Support";
$pageKeywords = "linux, eclipse, downloads";
$pageAuthor = "Xavier Raynaud";
# Add page-specific Nav bars here
# Format is Link text, link URL (can be http://www.someothersite.com/), target (_self, _blank), level (1, 2 or 3)
# $Nav->addNavSeparator("My Page Links", "downloads.php");
# $Nav->addCustomNav("My Link", "mypage.php", "_self", 3);
# $Nav->addCustomNav("Google", "http://www.google.com/", "_blank", 3);
# End: page-specific settings
#
# 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);
?>