| <?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: Denis Roy | |
| # Date: 2005-06-16 | |
| # | |
| # Description: Type your page comments here - these are not sent to the browser | |
| # | |
| # | |
| #**************************************************************************** | |
| # | |
| # Begin: page-specific settings. Change these. | |
| $pageTitle = "Eclipse Callisto Ecosystem Page"; | |
| $pageKeywords = "eclipse callisto release download what is"; | |
| $pageAuthor = "Donald Smith"; | |
| # 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", 1); | |
| # $Nav->addCustomNav("Google", "http://www.google.com/", "_blank", 1); | |
| # End: page-specific settings | |
| # | |
| // This file is linked to from lots of different places. | |
| // Use absolute paths to make sure that we can actually test | |
| // that the file renders properly (i.e. testing using) "/index.php", | |
| // and "/home/index.php" both work. | |
| # Paste your HTML content between the EOHTML markers! | |
| $html = <<<EOHTML | |
| <div id="maincontent"> | |
| <div id="midcolumn"> | |
| <h1>$pageTitle</h1> | |
| <img src="../callisto_slice.jpg"> | |
| <h2>Callisto Ecosystem</h2> | |
| <p>This page is a landing page for the Eclipse Ecosystem to share information about the | |
| upcoming release of Callisto. If you have any Ecosystem related questions about the | |
| Callisto release, please me sure to contact | |
| <a href="mailto:callisto.feedback@eclipse.org">callisto.feedback@eclipse.org</a>. | |
| </p> | |
| <p>Here are some important links to find out more information regarding the Callisto Release: | |
| <ul> | |
| <li> <a href="../index.php"> Eclipse Callisto Discovery Site</a> </li> | |
| <li> <a href="/projects/callisto.php"> Callisto Project Page</a> </li> | |
| <li> <a href="/projects/callisto-files/callisto-bug-contest.php">Callisto Bug Finding Contest</a> </li> | |
| <li> <a href="callistoecosystemnews.php"> Callisto Ecosystem News</a></li> | |
| </ul> | |
| </p> | |
| <h2>Why is the Callisto release important to the Ecosystem?</h2> | |
| <p> | |
| Callisto represents the synchronous release of ten different Eclipse projects - | |
| Business Intelligence and Reporting Tools (BIRT), | |
| C/C++ Development Tools (CDT), | |
| Data Tools Platform (DTP), | |
| Eclipse Modeling Framework (EMF), | |
| Graphical Editor Framework (GEF), | |
| Graphical Modeling Framework (GMF), | |
| Eclipse Project (Platform, Equinox, Java development tools (JDT), Plug-in development environment (PDE)), | |
| Test and Performance Tools Platform (TPTP), | |
| Web Tools Platform (WTP), | |
| Visual Editor (VE). | |
| </p> | |
| <p> | |
| Synchronizing the releases helps eliminate uncertainty about versions and compatbility | |
| thus allowing the ecyosystem to start their own integration, cross-project and | |
| cross-product development and testing efforts sooner. Callisto is about improving | |
| the productivity of developers working with Eclipse frameworks by providing a transparent | |
| and predictable development cycle. Hopefully Callisto will be the first of many annual | |
| simultaneous releases that demonstrate Eclipse as the predicable platform upon which | |
| to develop tools and applications. | |
| </p> | |
| <h2>We need YOU!</h2> | |
| <p> | |
| Announce your plans for Callisto and | |
| <a href="mailto:callisto.feedback@eclipse.org?subject=Callisto Ecosystem News">send us a link</a> | |
| for the | |
| <a href="callistoecosystemnews.php">Callisto Ecosystem News</a> page. Have you spotted | |
| a great BLOG entry or news article about Callisto? | |
| <a href="mailto:callisto.feedback@eclipse.org?subject=Callisto Ecosystem News">Send it our way!</a> | |
| </p> | |
| </div> | |
| </div> | |
| EOHTML; | |
| # Generate the web page | |
| $App->generatePage($theme, $Menu, $Nav, $pageAuthor, $pageKeywords, $pageTitle, $html); | |
| ?> |