| <?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: Stephane Drapeau |
| # Date: 2008-09-19 |
| # |
| # Description: SCA Tools project description page |
| # |
| # |
| #**************************************************************************** |
| |
| # |
| # Begin: page-specific settings. Change these. |
| $pageTitle = "SCA-Tools Description"; |
| $pageKeywords = "SCA,service component architecture,SCA designer,SCA modeler,SCA editor,Open SOA,composite,EMF,GMF,component"; |
| $pageAuthor = "Stephane Drapeau"; |
| |
| # 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="maincontent"> |
| <div id="midcolumn"> |
| <h1>$pageTitle</h1> |
| <p>The <b>SCA sub project</b> provides a set of tools for the <a href="http://www.osoa.org/display/Main/Service+Component+Architecture+Home">Service Component Architecture (SCA)</a> |
| set of standards: |
| <ul> |
| <li>The SCA Meta Model, an EMF meta model based on the SCA specifications version 1.0 proposed by the <a href="http://www.osoa.org/display/Main/Home">Open SOA consortium</a>.</li> |
| <li>The SCA Composite Designer, a graphical (GMF) development environment for the construction of composite applications (see figure below).</li> |
| <li>The SCA Samples, a set of ready to use SCA projects to discover SCA and the SCA tools.</li> |
| </ul> |
| <p>Coming soon: |
| <ul> |
| <li>The SCA Composite Editors, an XML editor and a Form editor to construct SCA assembly file.</li> |
| <li>The SCA Composite Introspector, a component to introspect existing applications and to produce a graphical representation (bottom-up approach).</li> |
| </ul> |
| |
| <p>For more complete information on the SCA sub project please have a look at our <a href="http://wiki.eclipse.org/STP/SCA_Component">wiki page</a>.</p> |
| |
| </div> |
| </div> |
| |
| |
| EOHTML; |
| |
| |
| # Generate the web page |
| $App->generatePage($theme, $Menu, $Nav, $pageAuthor, $pageKeywords, $pageTitle, $html); |
| ?> |