blob: 34dd0b57db2ecccb6369cfe39ca10a921af8540b [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'
#*****************************************************************************
#
# 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 = "E4 Feedback Contest";
$pageKeywords = "Eclipse, e4, feedback, contest, release, review, blog, blogathon";
$pageAuthor = "Lynn Gayowski";
# 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>
<p>
The Eclipse Foundation wants to hear what you think of <a href="http://www.eclipse.org/e4/"
target="blank">e4</a>, the next generation of the Eclipse platform. Version 0.9 was released in
July and is <a href="http://download.eclipse.org/e4/downloads/drops/R-0.9-200907291930/index.html"
target="blank">available now for download</a>. As an added bonus, 5 reviewers will win an Eclipse
shirt. Entries must be received by <b>August&nbsp;31</b>, 2009 at 4:00 pm EST and all reviews will
be posted at <a href="http://www.eclipse.org/community/e4contest/reviews.php"
target="blank">http://www.eclipse.org/community/e4contest/reviews.php</a>.
</p>
<h3>Prizes</h3>
<p>
Five entries will be selected at random to win an Eclipse polo shirt.
Individuals are allowed to submit multiple entries, but only one prize per person will be
awarded.
</p>
<h3>Review Guidelines</h3>
<ul>
<li>A review will be eligible for the contest if it conveys some technical content.</li>
<li>Three points of what you like or don't like about e4 is sufficient.</li>
<li>Eclipse is a global community, so feel free to write a review in your native language.</li>
</ul>
<h3>Entry Instructions</h3>
<ul>
<li>Publish your review on your blog, a newsgroup, or portal such as <a href="http://www.eclipsezone.com"
target="blank">EclipseZone</a>, <a href="http://www.javalobby.com" target="blank">Javalobby</a>,
<a href="http://www.theserverside.com" target="blank">The ServerSide</a>, <a href="http://www.infoq.com"
target="blank">InfoQ</a> or other technology portal</li>
<li>Send your name and the link to your review to <a href="mailto:e4-reviews@eclipse.org">e4-reviews@eclipse.org</a></li>
</ul>
<h3>Questions?</h3>
<p>
<a href="mailto:e4-reviews@eclipse.org">e4-reviews@eclipse.org</a>
</p>
<br><br>
</div>
<!-- remove the entire <div> tag to omit the right column! -->
<div id="rightcolumn">
<div class="sideitem">
<h6>Related Links</h6>
<ul>
<li><a href="reviews.php">Submitted Reviews</a></li>
</ul>
</div>
</div>
</div>
EOHTML;
# Generate the web page
$App->generatePage("Nova", $Menu, $Nav, $pageAuthor, $pageKeywords, $pageTitle, $html);
?>