|  | <?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' | 
|  |  | 
|  | #***************************************************************************** | 
|  | # | 
|  | # downloads.php | 
|  | # | 
|  | # Author: 		Beth Tibbitts | 
|  | # Date:			2007-09-06, updated 2016-08-19 | 
|  | # | 
|  | #**************************************************************************** | 
|  |  | 
|  | # | 
|  | # Begin: page-specific settings.  Change these. | 
|  | $pageTitle 		= "PTP Downloads"; | 
|  | $pageKeywords	= "Type, page, keywords, here"; | 
|  | $pageAuthor		= "Greg Watson"; | 
|  |  | 
|  | # 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>$pageTitle</h1> | 
|  | <p>Welcome to the downloads page for the Parallel Tools Platform (including Photran). | 
|  |  | 
|  | <p>The latest release of PTP is <b><font size=+1>9.1.0</font></b>, released June 22, 2016 which works with <b>Eclipse Neon (4.6)</b>. | 
|  | </p> | 
|  | <p>Please see the <font size=+1><a href="http://wiki.eclipse.org/PTP/release_notes"> | 
|  | release notes and installation instructions</a></font> for prerequisite information | 
|  | and instructions on installing PTP Release 9.1. | 
|  | </p> | 
|  | <h3>Stand-alone Installation</h2> | 
|  | <p> | 
|  | The easiest way to  install PTP is the <b>Eclipse for Parallel Application Developers</b> on the | 
|  | <a href="http://eclipse.org/downloads">Eclipse downloads</a> this now contains  <font size=+1>PTP 9.1</font> | 
|  | and is the Neon-based  release. | 
|  | If you have an earlier version of <b>Eclipse for Parallel Application Developers</b>, you can update to PTP 9.1 via <b>Help > Check for Updates</b>. | 
|  | Or to get just the PTP/Photran | 
|  | changes, you can install from | 
|  | <a href="http://download.eclipse.org/tools/ptp/updates/neon"> | 
|  | http://download.eclipse.org/tools/ptp/updates/neon</a> | 
|  |  | 
|  | </p> | 
|  |  | 
|  |  | 
|  | <p>Other PTP builds are also available from the <a href="http://wiki.eclipse.org/PTP/builds">PTP builds page</a>. | 
|  |  | 
|  | <div class="homeitem3col"> | 
|  | <h3>File Downloads</h2> | 
|  | <p>Available from the same URL as the update site: <a href="http://download.eclipse.org/tools/ptp/updates/9.1.0/">PTP 9.1 file downloads</a>: | 
|  | <ul> | 
|  | <li>Archived update site (ptp-master) | 
|  | <li>Sysmon, Stand-alone System Monitoring for PTP | 
|  | <li>Updated all-in-one <b>Parallel Package</b> builds with the latest release of PTP pre-installed | 
|  | <li>...and other items | 
|  | </ul> | 
|  |  | 
|  | </div> | 
|  |  | 
|  | <div class="homeitem3col"> | 
|  | <h3>Fortran Development Tools (Photran)</h3> | 
|  | <p>Photran is  part of PTP, is included in the  <b>Eclipse for Parallel Application Developers</b> package,  and  can be installed using the PTP update site.</p> | 
|  | </div> | 
|  |  | 
|  |  | 
|  | </div> | 
|  |  | 
|  | <!-- remove the entire <div> tag to omit the right column!  --> | 
|  | <div id="rightcolumn"> | 
|  | <div class="sideitem"> | 
|  | <h6>Other useful sites</h6> | 
|  | <ul> | 
|  | <li><a href="http://www.open-mpi.org/">OpenMPI</a></li> | 
|  | <li><a href="http://www-unix.mcs.anl.gov/mpi/">MPI</a></li> | 
|  | <li><a href="http://eclipse.org/photran">Photran</a></li> | 
|  |  | 
|  | </ul> | 
|  | </div> | 
|  |  | 
|  | </div> | 
|  |  | 
|  | EOHTML; | 
|  |  | 
|  |  | 
|  | # Generate the web page | 
|  | $App->generatePage($theme, $Menu, $Nav, $pageAuthor, $pageKeywords, $pageTitle, $html); | 
|  | ?> |