blob: 3fdda33e9ef2134ff7c3419df5f4db09180cbb11 [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'
#
# Begin: page-specific settings. Change these.
$pageTitle = "Tigerstripe Update Site";
$pageKeywords = "Type, page, keywords, here";
$pageAuthor = "Eric Dillon";
# End: page-specific settings
#
# Paste your HTML content between the EOHTML markers!
$html = <<<EOHTML
<div id="maincontent">
<div id="midcolumn">
<h1>$pageTitle</h1>
<div class="homeitem3col">
<h3>Tigerstripe Update Site</h3>
<p>To install Tigerstripe plugins, point your Eclipse Update Manager at this following site.</p>
<ul>
<li>Help
<ul>
<li>Software Updates
<ul>
<li>Find and Install...
<ul>
<li>Search for new feature to install...
<ul>
<li>New Remote Site<br/>
Name: <strong>Tigerstripe Update Site</strong><br/>
URL: <a href="http://download.eclipse.org/technology/tigerstripe/updates/site.xml">http://download.eclipse.org/technology/tigerstripe/updates/site.xml</a><small> (Releases)</small><br/>
(or) <a href="http://download.eclipse.org/technology/tigerstripe/updates/site-interim.xml">http://download.eclipse.org/technology/tigerstripe/updates/site-interim.xml</a><small> (Interim Builds)</small><br/>
</li>
</ul>
</li>
</ul>
</li>
</ul>
</li>
</ul>
</li>
</ul>
</div>
</div>
<div id="rightcolumn">
<div class="sideitem">
<h6>Incubation</h6>
<div align="center">
<a href="/projects/what-is-incubation.php">
<img align="center" src="/images/egg-incubation.png" border="0" alt="Incubation" />
</a>
</div>
</div>
</div>
</div>
EOHTML;
# Generate the web page
$App->generatePage($theme, $Menu, $Nav, $pageAuthor, $pageKeywords, $pageTitle, $html);
?>