blob: 4d9a27314fe089d8b09befd208516d33e102ec81 [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 - Changelog Plug-in";
$pageKeywords = "linux, eclipse, downloads";
$pageAuthor = "Jeff Johnston";
# Paste your HTML content between the EOHTML markers!
$html = <<<EOHTML
<div id="midcolumn">
<h1>$pageTitle</h1>
<h2>Overview</h2>
<p>
The Linux Tools ChangeLog plugins add automatic ChangeLog entry creation support to Eclipse for projects checked out from a Team repository (CVS and SVN). Method and function indication is provided for C, C++, and Java language files. The RPM .spec %changelog format is also supported. A ChangeLog entry can be created for a single file or an entire project. In addition, a ChangeLog editor is provided which makes it easy to format the file consistently and to put the latest entry into the clipboard buffer for usage in a repository commit operation.
</p>
<h2>Current Status</h2>
In conjunction with Eclipse SDK and CDT, the plugin supports:
<ul>
<li>C, C++, and Java language support for modified functions/methods</li>
<li>Preference page to set name, e-mail address, and desired entry style</li>
<li>Automatic new and removed file entries</li>
<li>Support in Team synchronize view as well as C View and Project Views, C Editor, and Java Editor</li>
<li>Single ChangeLog entry for current file</li>
<li>Full entry for entire project</li>
<li>Tested with CVS and SVN repositories</li>
<li>Colorized ChangeLog editor with support for diffing to clipboard</li>
<li>Short-cut key sequences CTL+ALT+P for project entry and CTL+ALT+C for single entry</li>
</ul>
<h2>Future Plans</h2>
<ul>
<li>git and mercurial support </li>
</ul>
<h2>Screenshots</h2>
<p>
Changelog sample
<img src="images/changelog.png" alt="Sample screenshot"/>
</p>
<h2>Demos</h2>
<p>
<a href="http://www.eclipse.org/downloads/download.php?file=/linuxtools/videos/changelogdemo.ogg">ChangeLog demo in ogg format</a>
</p>
<h2>Try it out</h2>
Please use our update site as described <a href="http://wiki.eclipse.org/Linux_Tools_Project/PluginInstallHelp">here</a>. <br/>
You can also check the project plugins out of Git
directly from eclipse.org at git://git.eclipse.org/gitroot/linuxtools/org.eclipse.linuxtools.git.
You will need to check out the following from the changelog subdirectory:
<pre> org.eclipse.linuxtools.changelog.core
org.eclipes.linuxtools.changelog-feature
org.eclipse.linuxtools.changelog.cparser
org.eclipse.linuxtools.changelog.doc
org.eclipse.linuxtools.changelog.javaparser
</pre>
From there, run the plugins as an Eclipse Application.
</div>
EOHTML;
# Generate the web page
$App->generatePage($theme, $Menu, $Nav, $pageAuthor, $pageKeywords, $pageTitle, $html);
?>