blob: 82a64241507667df5aa2c6ec5bb16ba28f5039d5 [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="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 entire 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
easily leverage the Eclipse infrastructure without any overhead on the
embedded platform.
<p>
<ul>
<li><a href="http://wiki.eclipse.org/DSDP/RTSC">Project Wiki</a></li>
<li><a href="http://www.eclipse.org/proposals/rtsc">Project Proposal (archived)</a></li>
</ul>
</div>
</div>
EOHTML;
# Generate the web page
$App->generatePage($theme, $Menu, $Nav, $pageAuthor, $pageKeywords, $pageTitle, $html);
?>