blob: dea83b2c5dc6b517af368a4d846703089649c34e [file] [log] [blame]
<?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());
# All on the same line to unclutter the user's desktop'
#*****************************************************************************
#
# template.php
#
# Author: Igor Vinnykov
# Date: 2007-11-16
#
# Description: Main project page
#
#
#****************************************************************************
#
# Begin: page-specific settings. Change these.
$pageTitle = "Eclipse Subversive - SVN Team Provider Project";
$pageKeywords = "Subversive, Subversion, SVN, Team Provider";
$pageAuthor = "Igor Vinnykov";
include("_projectCommon.php"); # All on the same line to unclutter the user's desktop'
# Paste your HTML content between the EOHTML markers!
$html = <<<EOHTML
<div id="midcolumn">
<table style="width: 100%;" border="0" cellpadding="2">
<tbody>
<tr>
<td>
<img src="images/Subversive.png" />
</td>
<td align="left">
<h1>Subversive - SVN Team Provider</h1>
</td>
<td align="right">
<a href="downloads.php"> <img src="images/download.png" /></a>
<p align="right"><a href="downloads.php">Release is available on 23 October 2009!</a></p>
</td>
</tr>
</tbody>
</table>
<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>
<br/>
<div class="homeitem3col">
<h3>Current State</h3>
In November 2007 project was migrated under Eclipse umbrella and started Incubation as Technology Project according to Eclipse requirements for new projects. At the same time project is stable and had a long history on the previous location at the the <a href="http://www.polarion.org/index.php?page=overview&project=subversive">Polarion.org</a>.
</div>
</div>
<div id="rightcolumn">
$sidebar
</div>
EOHTML;
# Generate the web page
$App->generatePage($theme, $Menu, $Nav, $pageAuthor, $pageKeywords, $pageTitle, $html);
?>