<?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' | |
#***************************************************************************** | |
# | |
# template.php | |
# | |
# Author: Denis Roy | |
# Date: 2005-06-16 | |
# | |
# Description: Type your page comments here - these are not sent to the browser | |
# | |
# | |
#**************************************************************************** | |
# | |
# Begin: page-specific settings. Change these. | |
$pageTitle = "Subversive - SVN Team Client"; | |
$pageKeywords = "Subversive, Subversion, SVN, Team Provider"; | |
$pageAuthor = "Igor Vinnykov"; | |
# 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>Subversive - SVN Team Client</h1> | |
<img align="left" src="images/logo.gif" style="padding-right: 10px;" alt="Subversive logo" /> | |
<p>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.</p> | |
<p>General features of the Subversive plug-in are quite similar to the CVS plug-in's features:</p> | |
<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> | |
<p>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.</p> | |
<div class="homeitem3col"> | |
<h3>Current State</h3> | |
<p style="padding-left:10px;padding-right:10px;"> | |
In December 2006 project passed Creation Review and was accepted as Eclipse Technology project. After that we began the progress of moving project here from the <a href="http://www.polarion.org/index.php?page=overview&project=subversive">current location</a> at the Polarion.org. According to Eclipse process, in order to start Incubation phase on Eclipse, the project should pass <a href="http://www.eclipse.org/legal/EclipseLegalProcessPoster.pdf">Due Diligence process</a>, which includes intellectual property check for correspondent IPZilla item <a href="http://dev.eclipse.org/ipzilla/show_bug.cgi?id=1542">CQ 1542</a>. Usually IP process takes some time, during which project source code and used libraries are checked by the Eclipse legal team. Until the project obtains a permit from the legal team to finalize a transfer, it will stay at the <a href="http://www.polarion.org/index.php?page=overview&project=subversive">Polarion.org</a>. It allows us to make the project progress and publish scheduled releases. | |
</p> | |
</div> | |
</div> | |
<div id="rightcolumn"> | |
<div class="sideitem"> | |
<h6>Project Status: Incubation</h6> | |
<div align="center"><a href="/projects/gazoo.php"><img align="center" src="/images/egg-incubation.png" border="0"/></a></div> | |
</div> | |
<div class="sideitem"> | |
<h6>Quick Links</h6> | |
<ul> | |
<li><a href="http://www.eclipse.org/proposals/subversive/">Project Proposal</a></li> | |
<li><a href="http://www.polarion.org">Polarion.org</a></li> | |
</ul> | |
</div> | |
<div class="sideitem"> | |
<h6>Meet with us</h6> | |
<br/> | |
<div align="center"><a href="http://www.eclipsecon.org/summiteurope2007/index.php?page=detail/&id=56"><img border="0" src="images/EclipseSummit2007.gif" height="72" width="125" alt="Eclipse Summit Europe 2007"/></a></div> | |
<br/> | |
<div align="center"><a href="http://2007.subconf.de/technologievortraege/deiotariana-llc-auf-der-subconf/"><img border="0" src="images/banner-subconf-2007.jpg" width="164" height="102" alt="Subconf 2007"/></a></div> | |
</div> | |
</div> | |
EOHTML; | |
# Generate the web page | |
$App->generatePage($theme, $Menu, $Nav, $pageAuthor, $pageKeywords, $pageTitle, $html); | |
?> |