blob: ddbafde6570f73924d44799e12c8b24506625199 [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'
#*****************************************************************************
#
# template.php
#
# Author: Igor Vinnykov
# Date: 2008-07-01
#
# Description: Autogenerated for eclipse.org site pages from Eclipse IDE help
#
#
#****************************************************************************
#
# Begin: page-specific settings. Change these.
$pageTitle = "Eclipse Subversive - Documentation";
$pageKeywords = "Subversive, Subversion, SVN, Team Provider, documentation, user guid";
$pageAuthor = "Igor Vinnykov";
# Paste your HTML content between the EOHTML markers!
$html = <<<EOHTML
<div id="midcolumn" style="width:95%">
<h3>Migration instructions (Polarion.org version installed)</h3>
<p>To migrate from Polarion.org Subversive version to Eclipse one firstly you should install Eclipse version into your environment. For the instructions on Subversive installation please refer the <a href="install.php">'Subversive installation instructions'</a> topic.</p>
<p>Please note that if you want to save your workspace settings related to SVN you shouldn't uninstall Polarion.org version before updating to the Eclipse one.</p>
<p>After the installation is compleate and Eclipse has restarted you should click on <i>'Help > Subversive > Migrate Projects and Settings'</i> menu item for all workspaces which SVN settings should be saved. Then you are able to start using the updated version of Subversive.</p>
<img border="0" src="../../images/migrate.png" alt="Migrate Projects and Settings"/><br/><br/>
<p><u><i>Please note, that it is highly recommended to uninstall the Polarion.org version of Subversive <b>only after</b> performing the steps described above to avoid feather compatibility problems.</i></u></p>
<br/>
<br/>
</div>
EOHTML;
# Generate the web page
$App->generatePage($theme, $Menu, $Nav, $pageAuthor, $pageKeywords, $pageTitle, $html);
?>