<?php | |
set_include_path($_SERVER['DOCUMENT_ROOT'] . "/eclipse.org-common" . PATH_SEPARATOR . $_SERVER['DOCUMENT_ROOT'] . "/projects" . PATH_SEPARATOR . get_include_path()); | |
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()); | |
$App->AddExtraHtmlHeader('<link rel="stylesheet" type="text/css" href="/subversive/css/root-page.css"/>'); | |
$localVersion = false; | |
# No left navigation | |
$Nav = null; | |
# Define these here, or in _projectCommon.php for site-wide values | |
$pageTitle = "Eclipse Subversive - Subversion (SVN) Team Provider"; | |
$pageKeywords = "Subversive, Subversion, SVN, Team Provider"; | |
$pageAuthor = "Igor Vinnykov"; | |
// # Paste your HTML content between the EOHTML markers! | |
$html = <<<EOHTML | |
<div id="bigbuttons"> | |
<h3>Primary Links</h3> | |
<ul> | |
<li><a id="buttonDownload" href="downloads.php"></a></li> | |
<li><a id="buttonDocumentation" href="midcolumn_example.php"></a></li> | |
<li><a id="buttonSupport" href="midcolumn_example.php"></a></li> | |
<li><a id="buttonInvolved" href="midcolumn_example.php"></a></li> | |
</ul> | |
</div> | |
<div id="midcolumn"> | |
<h1>Eclipse Subversive - Subversion (SVN) Team Provider</h1> | |
<span>The Subversive project aims to provide Subversion (SVN) integration for Eclipse. The Subversive plug-in gives you the ability to work with this CVS successor version control system from the Eclipse workbench. You can work with Subversion repositories in almost exactly the same way you can now work with CVS repositories using the CVS plug-in bundled in the standard Eclipse distribution. | |
<br/><br/> | |
General features of the Subversive plug-in are quite similar to the CVS plug-in's features: | |
</span> | |
<ul> | |
<li>Browse remote repository</li> | |
<li>Share project to the repository and checkout projects from the repository</li> | |
<li>Synchronize project to see incoming and outgoing changes</li> | |
<li>Commit, update and revert changes</li> | |
<li>See resource change history</li> | |
<li>Merge changes</li> | |
</ul> | |
<span>Similarity to the CVS plug-in is one of the most important project principles. It ensures that both plug-ins use similar concepts, semantics, and interface for similar things. At the same time Subversive was created specially for Subversion and using it, you can benefit from all Subversion's features including those features which differ from, or are not present in CVS.</span> | |
</div> | |
<div id="rightcolumn"> | |
<div class="sideitem"> | |
<h6>Support Subversive</h6> | |
<p> | |
<a href="http://marketplace.eclipse.org/content/subversive-svn-team-provider"><img src="/subversive/images/star.png" border="0"> Vote for Subversive on Marketplace</a> | |
</p> | |
</div> | |
<div class="sideitem"> | |
<h6>Project News</h6> | |
<ul> | |
<li><b>Subversive 1.0 release</b> - Subversive project graduated from the Eclipse Incubation phase. Subversive 1.0 release will be included into Eclipse Juno Simultaneous release.</li> | |
<li><b>Subversion 1.7 support</b> - The current Early Access build for Juno release supports latest SVN 1.7 versions.</li> | |
</ul> | |
</div> | |
<div class="sideitem"> | |
<h6>Project Contributors</h6> | |
<ul> | |
<li><a href="http://www.polarion.com?utm_source=eclipse.org&utm_medium=link&utm_campaign=subversive">Polarion</a></li> | |
</ul> | |
</div> | |
</div> | |
EOHTML; | |
# Generate the web page | |
$App->generatePage($theme, $Menu, $Nav, $pageAuthor, $pageKeywords, $pageTitle, $html); | |
?> |