blob: 6d2cd273c13e73740636e21add69310b5e2dcb6f [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'
#*****************************************************************************
#
# index.php
#
# Author: Dave Russo
# Date: 2008-July-8
#
# Description: RTSC main page (cloned from TM)
#
#
#****************************************************************************
#
# Begin: page-specific settings. Change these.
$pageTitle = "RTSC Home page";
$pageKeywords = "device, target, component";
$pageAuthor = "Dave Russo";
# 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="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 id="maincontent">
<div id="midcolumn">
<h1>$pageTitle</h1>
The <b>Real-Time Software Components (RTSC)</b> project provides
foundational tools and low-level runtime content to enable
component-based development using the C language targeting all
embedded platforms.
<p>
While other component technologies exist for embedded systems, RTSC
is unique in that it scales down to highly resource constrained embedded
systems including DSPs and 16-bit micro-controllers. In addition, RTSC
components have a "dual existance": in addition to embedded
target code, they include code that executes on a rich client platform
to help manage the component's <I>entire</I> lifecycle - from building the
component to monitoring the real-time operation of the component within
a deployed application. This dual existance enables RTSC components to
fully leverage Eclipse infrastructure without incurring overhead on the
embedded platform.
<p>
<ul>
<li><a href="http://www.eclipse.org/proposals/rtsc">Project Proposal (archived)</a></li>
</ul>
<p>
</div>
</div>
EOHTML;
# Generate the web page
$App->generatePage($theme, $Menu, $Nav, $pageAuthor, $pageKeywords, $pageTitle, $html);
?>