Add installation instructions
diff --git a/_projectCommon.php b/_projectCommon.php
index d797969..7e4564b 100644
--- a/_projectCommon.php
+++ b/_projectCommon.php
@@ -48,7 +48,7 @@
# To override and replace the navigation with your own, uncomment the line below.
$Menu->setMenuItemList(array());
$Menu->addMenuItem("Subversive Home", "/subversive/index.php", "_self");
- $Menu->addMenuItem("Downloads", "/subversive/latest-releases.php", "_self");
+ $Menu->addMenuItem("Downloads", "/subversive/downloads.php", "_self");
$Menu->addMenuItem("Documentation", "/subversive/documentation.php", "_self");
$Menu->addMenuItem("Support", "/subversive/support.php", "_self");
$Menu->addMenuItem("Getting Involved", "/subversive/getting-involved.php", "_self");
diff --git a/index.php b/index.php
index cff0dc1..93e05ee 100644
--- a/index.php
+++ b/index.php
@@ -26,7 +26,7 @@
<div id="bigbuttons">
<h3>Primary Links</h3>
<ul>
- <li><a id="buttonDownload" href="/subversive/latest-releases.php"></a></li>
+ <li><a id="buttonDownload" href="/subversive/downloads.php"></a></li>
<li><a id="buttonDocumentation" href="/subversive/documentation.php"></a></li>
<li><a id="buttonSupport" href="/subversive/support.php"></a></li>
<li><a id="buttonInvolved" href="/subversive/getting-involved.php"></a></li>
diff --git a/installation-instructions.php b/installation-instructions.php
new file mode 100644
index 0000000..79601b0
--- /dev/null
+++ b/installation-instructions.php
@@ -0,0 +1,46 @@
+<?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());
+
+ $localVersion = false;
+
+ # Define these here, or in _projectCommon.php for site-wide values
+ $pageTitle = "Installation Instructions - Eclipse Subversive";
+ $pageKeywords = "subversive, installation, svn, subversion";
+ $pageAuthor = "Igor Vinnykov";
+
+ // # Paste your HTML content between the EOHTML markers!
+$html = <<<EOHTML
+
+ <div id="midcolumn">
+ <h1>Installation Instructions</h1>
+ <p>
+ Here you can find instructions about Subversive installation using different types of Subversive distributions.
+ </p>
+ <h2>Introduction</h2>
+ <p>
+ Subversive installation consists of Subversive plug-in and Subversive SVN Connectors. Subversive plug-in is developed as an Eclipse official project with EPL license and is distributed from Eclipse website. Subversive SVN Connectors are SVN libraries used by Subversive to communicate with SVN repositories. These libraries are developed as open-source projects, but they have EPL-incompatible licenses, so they have to be distributed from an external website.
+ </p>
+ <p>
+ In order use Subversive, you have to install Subversive plug-in and at least one Subversive SVN Connector that is compatible with your OS and used SVN version. Subversive plug-in includes references to available Subversive SVN Connectors, so after Subversive plug-in installation you are automatically prompted to install one or multiple connectors.
+ </p>
+ <h2>Phase 1 - Subversive Plug-In Installation</h2>
+ <h2>Phase 2 - Subversive SVN Connectors Installation</h2>
+ </div>
+
+ <div id="rightcolumn">
+ $sidebar
+ </div>
+
+EOHTML;
+
+
+ # Generate the web page
+ $App->generatePage($theme, $Menu, $Nav, $pageAuthor, $pageKeywords, $pageTitle, $html);
+?>
\ No newline at end of file