blob: 2d67d952ddd91f69dfa9311fa6b0543692cdea6c [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: 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";
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">
<h3>Migration instructions (Polarion.com version installed)</h3>
<p>To migrate from Polarion.com 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.com 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.com 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);
?>