blob: 53bcadfcbb0216d5e25c6b24347bebfe885503b5 [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'
#*****************************************************************************
#
# install.php
#
# Author: BPEL Team
#
# Description: Installation instructions.
#
#
#****************************************************************************
#
# Begin: page-specific settings. Change these.
$pageTitle = "BPEL Project FAQ";
$pageKeywords = "BPEL, process, designer, FAQ";
$pageAuthor = "BPEL Team";
# 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">
<div align="center"><h1>BPEL Project</h1></div>
<h2>FAQ</h2>
<p></p>
<div class="homeitem3col">
<h3>Questions</h3>
<ul>
<li><a href="#1">1) Why aren't our users asking questions?</a></li>
<li><a href="#2">2) Can I ask you a question?</a></li>
</ul>
</div>
<div class="homeitem3col">
<h3>Answers</h3>
<ul>
<li><a name="1">1) Why are you so worried?</a></li>
<li><a name="2">2) Definitely!</a></li>
</ul>
</div>
<hr class="clearer" />
</div>
<div id="rightcolumn">
<div class="sideitem">
<h6>Links</h6>
<ul>
</ul>
</div>
</div>
</div>
EOHTML;
# Generate the web page
$App->generatePage($theme, $Menu, $Nav, $pageAuthor, $pageKeywords, $pageTitle, $html);
?>