Clean up helios for default theme
Change-Id: I521bd2d1dc00a97aaa351ceb667d3599c26ba157
Signed-off-by: Eric Poirier <eric.poirier@eclipse-foundation.org>
diff --git a/_projectCommon.php b/_projectCommon.php
index 55da74b..91f7020 100644
--- a/_projectCommon.php
+++ b/_projectCommon.php
@@ -1,21 +1,29 @@
<?php
-/*******************************************************************************
- * Copyright(c) 2015 Eclipse Foundation and others.
- * All rights reserved. This program and the accompanying materials
- * are made available under the terms of the Eclipse Public License v1.0
- * which accompanies this distribution, and is available at
- * http://eclipse.org/legal/epl-v10.html
+/**
+ * Copyright (c) 2015, 2018 Eclipse Foundation.
+ *
+ * This program and the accompanying materials are made
+ * available under the terms of the Eclipse Public License 2.0
+ * which is available at https://www.eclipse.org/legal/epl-2.0/
*
* Contributors:
- * Nathan Gervais (Eclipse Foundation) - Initial implementation
- * Eric Poirier (Eclipse Foundation)
- *******************************************************************************/
+ * Nathan Gervais (Eclipse Foundation) - Initial implementation
+ * Eric Poirier (Eclipse Foundation)
+ *
+ * SPDX-License-Identifier: EPL-2.0
+ */
-// Set the theme for your project's web pages.
-// See the Committer Tools "How Do I" for list of themes
-// https://dev.eclipse.org/committers/
-// Optional: defaults to system theme
-$theme = "Nova";
+require_once($_SERVER['DOCUMENT_ROOT'] . "/eclipse.org-common/system/nav.class.php");
+
+$Nav = new Nav();
+$Nav->addNavSeparator("Helios", "");
+$Nav->addCustomNav("Download Now", "/downloads/packages/release/helios/sr2", "_self", 1);
+$Nav->addCustomNav("Helios Projects", "/projects/releases/releases.php?release=helios", "_self", 1);
+$Nav->addCustomNav("Blogathon", "/helios/blogathon/reviews.php", "_self", 1);
+$Nav->addCustomNav("Virtual Conference", "/helios/heliosinaction.php", "_self", 1);
+$Nav->addCustomNav("Friends of Helios", "/helios/friends.php", "_self", 1);
+$Theme->setNav($Nav);
+
$App->Promotion = TRUE;
$App->setOutDated ( '2011-11-11', '<a href="https://projects.eclipse.org/releases/helios">Helios</a> is a past version of Eclipse. Please visit our <a href="/downloads/">download</a> page for the latest version of Eclipse. ' );
diff --git a/allfriends.php b/allfriends.php
index 9546440..99b851a 100644
--- a/allfriends.php
+++ b/allfriends.php
@@ -1,34 +1,32 @@
<?php
-/*******************************************************************************
- * Copyright(c) 2015 Eclipse Foundation and others.
- * All rights reserved. This program and the accompanying materials
- * are made available under the terms of the Eclipse Public License v1.0
- * which accompanies this distribution, and is available at
- * http://eclipse.org/legal/epl-v10.html
+/**
+ * Copyright (c) 2015, 2018 Eclipse Foundation.
+ *
+ * This program and the accompanying materials are made
+ * available under the terms of the Eclipse Public License 2.0
+ * which is available at https://www.eclipse.org/legal/epl-2.0/
*
* Contributors:
- * Nathan Gervais (Eclipse Foundation) - Initial implementation
- * Eric Poirier (Eclipse Foundation)
- *******************************************************************************/
-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");
+ * Nathan Gervais (Eclipse Foundation) - Initial implementation
+ * Eric Poirier (Eclipse Foundation)
+ *
+ * SPDX-License-Identifier: EPL-2.0
+ */
+require_once ($_SERVER['DOCUMENT_ROOT'] . "/eclipse.org-common/system/app.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'
+$Theme = $App->getThemeClass();
+include ($App->getProjectCommon());
-// Begin: page-specific settings. Change these.
-$pageTitle = "Friends of Eclipse";
-$pageKeywords = "Friends of Eclipse, Helios";
-$pageAuthor = "Nathan Gervais";
+$pageTitle = "Friends of Eclipse";
+$Theme->setPageTitle($pageTitle);
+$Theme->setPageKeywords("Friends of Eclipse, Helios");
+$Theme->setPageAuthor("Nathan Gervais");
-// Place your html content in a file called content/en_pagename.php
ob_start();
-include("content/en_" . $App->getScriptName());
+include ("content/en_" . $App->getScriptName());
$html = ob_get_clean();
-# Generate the web page
-$App->generatePage(NULL, $Menu, NULL, $pageAuthor, $pageKeywords, $pageTitle, $html);
\ No newline at end of file
+$Theme->setHtml($html);
+$Theme->generatePage();
\ No newline at end of file
diff --git a/blogathon/2009reviews.php b/blogathon/2009reviews.php
index dc446af..893437f 100644
--- a/blogathon/2009reviews.php
+++ b/blogathon/2009reviews.php
@@ -1,33 +1,33 @@
<?php
-/*******************************************************************************
- * Copyright(c) 2015 Eclipse Foundation and others.
- * All rights reserved. This program and the accompanying materials
- * are made available under the terms of the Eclipse Public License v1.0
- * which accompanies this distribution, and is available at
- * http://eclipse.org/legal/epl-v10.html
+/**
+ * Copyright (c) 2015, 2018 Eclipse Foundation.
+ *
+ * This program and the accompanying materials are made
+ * available under the terms of the Eclipse Public License 2.0
+ * which is available at https://www.eclipse.org/legal/epl-2.0/
*
* Contributors:
- * Nathan Gervais (Eclipse Foundation) - Initial implementation
- * Eric Poirier (Eclipse Foundation)
- *******************************************************************************/
+ * Nathan Gervais (Eclipse Foundation) - Initial implementation
+ * Eric Poirier (Eclipse Foundation)
+ *
+ * SPDX-License-Identifier: EPL-2.0
+ */
+
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'
+$Theme = $App->getThemeClass();
-// Begin: page-specific settings. Change these.
+include ($App->getProjectCommon ());
+
$pageTitle = "Top Reviews for Galileo in 2009";
-$pageKeywords = "eclipse, helios, release, review, contest";
-$pageAuthor = "Lynn Gayowski";
+$Theme->setPageTitle($pageTitle);
+$Theme->setPageKeywords("eclipse, helios, release, review, contest");
+$Theme->setPageAuthor("Lynn Gayowski");
-// Place your html content in a file called content/en_pagename.php
-ob_start ();
-include ("content/en_" . $App->getScriptName ());
-$html = ob_get_clean ();
+ob_start();
+include ("content/en_" . $App->getScriptName());
+$html = ob_get_clean();
-// Generate the web page
-$App->generatePage ( NULL, $Menu, NULL, $pageAuthor, $pageKeywords, $pageTitle, $html );
\ No newline at end of file
+$Theme->setHtml($html);
+$Theme->generatePage();
\ No newline at end of file
diff --git a/blogathon/2010reviews.php b/blogathon/2010reviews.php
index 235bf10..d036470 100644
--- a/blogathon/2010reviews.php
+++ b/blogathon/2010reviews.php
@@ -1,33 +1,32 @@
<?php
-/*******************************************************************************
- * Copyright(c) 2015 Eclipse Foundation and others.
- * All rights reserved. This program and the accompanying materials
- * are made available under the terms of the Eclipse Public License v1.0
- * which accompanies this distribution, and is available at
- * http://eclipse.org/legal/epl-v10.html
+/**
+ * Copyright (c) 2015, 2018 Eclipse Foundation.
+ *
+ * This program and the accompanying materials are made
+ * available under the terms of the Eclipse Public License 2.0
+ * which is available at https://www.eclipse.org/legal/epl-2.0/
*
* Contributors:
- * Nathan Gervais (Eclipse Foundation) - Initial implementation
- * Eric Poirier (Eclipse Foundation)
- *******************************************************************************/
-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");
+ * Nathan Gervais (Eclipse Foundation) - Initial implementation
+ * Eric Poirier (Eclipse Foundation)
+ *
+ * SPDX-License-Identifier: EPL-2.0
+ */
+require_once ($_SERVER['DOCUMENT_ROOT'] . "/eclipse.org-common/system/app.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'
+$App = new App();
+$Theme = $App->getThemeClass();
-// Begin: page-specific settings. Change these.
+include ($App->getProjectCommon());
+
$pageTitle = "Top Reviews for Helios in 2010";
-$pageKeywords = "eclipse, helios, release, review, contest";
-$pageAuthor = "Lynn Gayowski";
+$Theme->setPageTitle($pageTitle);
+$Theme->setPageKeywords("eclipse, helios, release, review, contest");
+$Theme->setPageAuthor("Lynn Gayowski");
-// Place your html content in a file called content/en_pagename.php
-ob_start ();
-include ("content/en_" . $App->getScriptName ());
-$html = ob_get_clean ();
+ob_start();
+include ("content/en_" . $App->getScriptName());
+$html = ob_get_clean();
-// Generate the web page
-$App->generatePage ( NULL, $Menu, NULL, $pageAuthor, $pageKeywords, $pageTitle, $html );
\ No newline at end of file
+$Theme->setHtml($html);
+$Theme->generatePage();
\ No newline at end of file
diff --git a/blogathon/content/en_2009reviews.php b/blogathon/content/en_2009reviews.php
index 79f6802..c273ff3 100644
--- a/blogathon/content/en_2009reviews.php
+++ b/blogathon/content/en_2009reviews.php
@@ -1,60 +1,44 @@
<?php
-/*******************************************************************************
- * Copyright(c) 2015 Eclipse Foundation and others.
- * All rights reserved. This program and the accompanying materials
- * are made available under the terms of the Eclipse Public License v1.0
- * which accompanies this distribution, and is available at
- * http://eclipse.org/legal/epl-v10.html
+/**
+ * Copyright (c) 2015, 2018 Eclipse Foundation.
+ *
+ * This program and the accompanying materials are made
+ * available under the terms of the Eclipse Public License 2.0
+ * which is available at https://www.eclipse.org/legal/epl-2.0/
*
* Contributors:
- * Nathan Gervais (Eclipse Foundation) - Initial implementation
- * Eric Poirier (Eclipse Foundation)
- *******************************************************************************/
- ?>
+ * Nathan Gervais (Eclipse Foundation) - Initial implementation
+ * Eric Poirier (Eclipse Foundation)
+ *
+ * SPDX-License-Identifier: EPL-2.0
+ */
+?>
<div id="midcolumn">
<h1>Top Reviews for Galileo in 2009</h1>
-
- <p>For those considering participation in the Helios blogathon, here
- are the 2009 award-winning reviews of Galileo to give you an idea of
- what we're looking for:</p>
-
+ <p>For those considering participation in the Helios blogathon, here are the
+ 2009 award-winning reviews of Galileo to give you an idea of what we're
+ looking for:</p>
<ul>
<li><a
href="http://eclipsesource.com/blogs/2009/06/24/eclipse-galileo-feature-top-10-list-number-1/"
- target="blank">Eclipse Galileo Feature Top 10 List</a> - Ian Bull</li>
+ target="blank"
+ >Eclipse Galileo Feature Top 10 List</a> - Ian Bull</li>
<li><a
href="http://blog.zvikico.com/2009/07/eclipse-35-hidden-treasures.html"
- target="blank">Eclipse 3.5 Hidden Treasures</a> - Zviki Cohen</li>
+ target="blank"
+ >Eclipse 3.5 Hidden Treasures</a> - Zviki Cohen</li>
<li><a
href="http://ekkescorner.wordpress.com/blog-series/pde-and-targetplatform/"
- target="blank">pde + target</a> - Ekke Gentz</li>
+ target="blank"
+ >pde + target</a> - Ekke Gentz</li>
<li><a
href="http://blog.miracki.net/2009/07/24/eclipse-w-nowej-odslonie-galileo/"
- target="blank">The New Version of Eclipse - Galileo</a> - Mateusz
- Miracki</li>
+ target="blank"
+ >The New Version of Eclipse - Galileo</a> - Mateusz Miracki</li>
</ul>
- <br>
- <br>
-
</div>
-
-<!-- remove the entire <div> tag to omit the right column! -->
<div id="rightcolumn">
<div class="sideitem">
- <h6>Helios</h6>
- <ul id="leftnav">
- <li><a href="/downloads/packages/release/helios/sr2" target="_self">Download
- Now</a></li>
- <li><a href="https://projects.eclipse.org/releases/helios" target="_self">Helios Projects</a></li>
- <li><a href="/helios/blogathon/reviews.php" target="_self">Blogathon</a></li>
- <li><a href="/helios/demos.php" target="_self">Demos</a></li>
- <li><a href="/helios/heliosinaction.php" target="_self">Virtual
- Conference</a></li>
- <li><a href="/helios/friends.php" target="_self">Friends of Helios</a></li>
- </ul>
-
- </div>
- <div class="sideitem">
<h6>Related Links</h6>
<ul>
<li><a href="guidelines.php">Blogathon Guidelines</a></li>
@@ -62,5 +46,3 @@
</ul>
</div>
</div>
-
-</div>
diff --git a/blogathon/content/en_2010reviews.php b/blogathon/content/en_2010reviews.php
index 24c5b51..3a1e9ea 100644
--- a/blogathon/content/en_2010reviews.php
+++ b/blogathon/content/en_2010reviews.php
@@ -1,58 +1,41 @@
<?php
-/*******************************************************************************
- * Copyright(c) 2015 Eclipse Foundation and others.
- * All rights reserved. This program and the accompanying materials
- * are made available under the terms of the Eclipse Public License v1.0
- * which accompanies this distribution, and is available at
- * http://eclipse.org/legal/epl-v10.html
+/**
+ * Copyright (c) 2015, 2018 Eclipse Foundation.
+ *
+ * This program and the accompanying materials are made
+ * available under the terms of the Eclipse Public License 2.0
+ * which is available at https://www.eclipse.org/legal/epl-2.0/
*
* Contributors:
- * Nathan Gervais (Eclipse Foundation) - Initial implementation
- * Eric Poirier (Eclipse Foundation)
- *******************************************************************************/
- ?>
+ * Nathan Gervais (Eclipse Foundation) - Initial implementation
+ * Eric Poirier (Eclipse Foundation)
+ *
+ * SPDX-License-Identifier: EPL-2.0
+ */
+?>
<div id="midcolumn">
<h1>Top Reviews for Helios in 2010</h1>
-
<p>Here are the 2010 award-winning reviews of Helios:</p>
-
<ul>
<li><a
href="http://tux2323.blogspot.com/2010/06/review-eclipse-helios-rc4.html"
- target="blank">Review Eclipse Helios RC4</a> - Christian
- Baranowski</li>
- <li><a
- href="http://www.dzone.com/links/r/enter_the_new_eclipse_helios.html"
- target="blank">Enter the New Eclipse - Helios</a> - Ian Elliot</li>
+ target="blank"
+ >Review Eclipse Helios RC4</a> - Christian Baranowski</li>
+ <li><a href="http://www.dzone.com/links/r/enter_the_new_eclipse_helios.html"
+ target="blank"
+ >Enter the New Eclipse - Helios</a> - Ian Elliot</li>
<li><a
href="http://www.techsagar.com/2010/07/10-new-features-which-i-liked-the-most-in-eclipse-helios-3-6-2/"
- target="blank">10 New Features which I Liked the Most in Eclipse
- Helios</a> - Prasanna LM</li>
+ target="blank"
+ >10 New Features which I Liked the Most in Eclipse Helios</a> - Prasanna LM</li>
<li><a
href="http://delaltctrl.blogspot.com/2010/06/awesomeness-in-helios.html"
- target="blank">Awesomeness in Helios</a> - Del Myers</li>
+ target="blank"
+ >Awesomeness in Helios</a> - Del Myers</li>
</ul>
- <br>
- <br>
-
</div>
-
<!-- remove the entire <div> tag to omit the right column! -->
<div id="rightcolumn">
-<div class="sideitem">
- <h6>Helios</h6>
- <ul id="leftnav">
- <li><a href="/downloads/packages/release/helios/sr2" target="_self">Download
- Now</a></li>
- <li><a href="https://projects.eclipse.org/releases/helios" target="_self">Helios Projects</a></li>
- <li><a href="/helios/blogathon/reviews.php" target="_self">Blogathon</a></li>
- <li><a href="/helios/demos.php" target="_self">Demos</a></li>
- <li><a href="/helios/heliosinaction.php" target="_self">Virtual
- Conference</a></li>
- <li><a href="/helios/friends.php" target="_self">Friends of Helios</a></li>
- </ul>
-
- </div>
<div class="sideitem">
<h6>Related Links</h6>
<ul>
@@ -62,4 +45,3 @@
</div>
</div>
-</div>
diff --git a/blogathon/content/en_guidelines.php b/blogathon/content/en_guidelines.php
index f9fc76d..b613b9d 100644
--- a/blogathon/content/en_guidelines.php
+++ b/blogathon/content/en_guidelines.php
@@ -1,71 +1,65 @@
<?php
-/*******************************************************************************
- * Copyright(c) 2015 Eclipse Foundation and others.
- * All rights reserved. This program and the accompanying materials
- * are made available under the terms of the Eclipse Public License v1.0
- * which accompanies this distribution, and is available at
- * http://eclipse.org/legal/epl-v10.html
+/**
+ * Copyright (c) 2015, 2018 Eclipse Foundation.
+ *
+ * This program and the accompanying materials are made
+ * available under the terms of the Eclipse Public License 2.0
+ * which is available at https://www.eclipse.org/legal/epl-2.0/
*
* Contributors:
- * Nathan Gervais (Eclipse Foundation) - Initial implementation
- * Eric Poirier (Eclipse Foundation)
- *******************************************************************************/
- ?>
- <div id="midcolumn">
- <h1>Review the Eclipse Helios Release</h1>
-
+ * Nathan Gervais (Eclipse Foundation) - Initial implementation
+ * Eric Poirier (Eclipse Foundation)
+ *
+ * SPDX-License-Identifier: EPL-2.0
+ */
+?>
+<div id="midcolumn">
+ <h1><?php print $pageTitle;?></h1>
<p>
The Eclipse Foundation wants to hear what you think of the <a
- href="https://projects.eclipse.org/releases/helios">Eclipse projects</a>
- that are being released as part of Helios. As an added bonus, all
- qualified reviewers will receive an Eclipse t-shirt. One lucky
- winner will also win a pass to <a
- href="http://www.eclipsecon.org/2011/">EclipseCon 2011</a> or <a
- href="http://www.eclipsecon.org/summiteurope2010/">Eclipse Summit
- Europe 2010</a>! Entries must be received by July 31, 2010 at 4:00
+ href="https://projects.eclipse.org/releases/helios"
+ >Eclipse projects</a> that are being released as part of Helios. As an added
+ bonus, all qualified reviewers will receive an Eclipse t-shirt. One lucky
+ winner will also win a pass to <a href="http://www.eclipsecon.org/2011/">EclipseCon
+ 2011</a> or <a href="http://www.eclipsecon.org/summiteurope2010/">Eclipse
+ Summit Europe 2010</a>! Entries must be received by July 31, 2010 at 4:00
pm EST.
</p>
-
<h3>Entry Instructions</h3>
<ul>
<li>Write a review or record a video review or demo of Helios.</li>
- <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.infoq.com" target="blank">InfoQ</a>, <a
- href="http://www.javalobby.com" target="blank">Javalobby</a>, <a
- href="http://www.jaxenter.com" target="blank">Jaxenter</a>, <a
- href="http://www.theserverside.com" target="blank">The ServerSide</a>
+ <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.infoq.com" target="blank">InfoQ</a>, <a
+ href="http://www.javalobby.com" target="blank"
+ >Javalobby</a>, <a href="http://www.jaxenter.com" target="blank">Jaxenter</a>,
+ <a href="http://www.theserverside.com" target="blank">The ServerSide</a>
or other technology portal
</li>
<li>Send your name and the link to your review to <a
- href="mailto:helios.reviews@eclipse.org">helios.reviews@eclipse.org</a></li>
+ href="mailto:helios.reviews@eclipse.org"
+ >helios.reviews@eclipse.org</a></li>
</ul>
-
- <p>Individuals are allowed to submit multiple entries, but only one
- prize per person will be awarded.</p>
-
+ <p>Individuals are allowed to submit multiple entries, but only one prize per
+ person will be awarded.</p>
<img src="blogcollage.png" width="500">
-
<h3>Review Guidelines</h3>
<ul>
- <li>A review will be eligible for a prize if it conveys sufficient
- technical content.</li>
- <li>Three to five points of what you like or don't like about one or
- more Helios projects should be enough. Long essays aren't
- necessary.</li>
- <li>Eclipse is a global community, so feel free to write or record a
- review in your native language.</li>
- <li>You can see last year's <a href="2009reviews.php">winning
- reviews</a> for examples of what we're looking for
+ <li>A review will be eligible for a prize if it conveys sufficient technical
+ content.</li>
+ <li>Three to five points of what you like or don't like about one or more
+ Helios projects should be enough. Long essays aren't necessary.</li>
+ <li>Eclipse is a global community, so feel free to write or record a review
+ in your native language.</li>
+ <li>You can see last year's <a href="2009reviews.php">winning reviews</a>
+ for examples of what we're looking for
</li>
</ul>
-
<h3>Receive a Thank You</h3>
<ul>
- <li>Best review: Full pass to <a
- href="http://www.eclipsecon.org/2011/">EclipseCon 2011</a> or <a
- href="http://www.eclipsecon.org/summiteurope2010/">Eclipse Summit
- Europe 2010</a></li>
+ <li>Best review: Full pass to <a href="http://www.eclipsecon.org/2011/">EclipseCon
+ 2011</a> or <a href="http://www.eclipsecon.org/summiteurope2010/">Eclipse
+ Summit Europe 2010</a></li>
<li>3 top reviews: Eclipse jacket</li>
<li>All other qualified reviews get a choice of:
<ul>
@@ -75,49 +69,27 @@
</ul>
</li>
</ul>
-
<a href="http://www.zazzle.com/eclipseide" target="blank"><img
- src="ZazzleShirt.png" height="160"></a> <a href="tshirt.jpg"
- target="blank"><img src="tshirt.jpg" height="160"></a>
-
- <p>The best and top reviews will be selected by a panel of judges from
- the Eclipse community.</p>
-
+ src="ZazzleShirt.png" height="160"
+ ></a> <a href="tshirt.jpg" target="blank"><img src="tshirt.jpg" height="160"></a>
+ <p>The best and top reviews will be selected by a panel of judges from the
+ Eclipse community.</p>
<p style="font-size: 10px">
- Prizes have no cash value and quantities are limited. The full pass
- to EclipseCon or Eclipse Summit Europe only covers conference
- registration and does not include travel expenses. The pass is
- non-transferable and non-refundable, so if you can't go to either
- conference or you receive a free pass some other way (as a speaker,
- for example), you won't be able to take advantage of the prize.</font>
+ Prizes have no cash value and quantities are limited. The full pass to
+ EclipseCon or Eclipse Summit Europe only covers conference registration and
+ does not include travel expenses. The pass is non-transferable and
+ non-refundable, so if you can't go to either conference or you receive a
+ free pass some other way (as a speaker, for example), you won't be able to
+ take advantage of the prize.</font>
</p>
-
<h3>Questions?</h3>
<p>
<a href="mailto:helios.reviews@eclipse.org">helios.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>Helios</h6>
- <ul id="leftnav">
- <li><a href="/downloads/packages/release/helios/sr2" target="_self">Download
- Now</a></li>
- <li><a href="https://projects.eclipse.org/releases/helios" target="_self">Helios Projects</a></li>
- <li><a href="/helios/blogathon/reviews.php" target="_self">Blogathon</a></li>
- <li><a href="/helios/demos.php" target="_self">Demos</a></li>
- <li><a href="/helios/heliosinaction.php" target="_self">Virtual
- Conference</a></li>
- <li><a href="/helios/friends.php" target="_self">Friends of Helios</a></li>
- </ul>
-
- </div>
- <div class="sideitem">
<h6>Related Links</h6>
<ul>
<li><a href="reviews.php">2010 Helios Reviews</a></li>
diff --git a/blogathon/content/en_reviews.php b/blogathon/content/en_reviews.php
index 7d11d28..5961892 100644
--- a/blogathon/content/en_reviews.php
+++ b/blogathon/content/en_reviews.php
@@ -1,50 +1,46 @@
<?php
-/*******************************************************************************
- * Copyright(c) 2015 Eclipse Foundation and others.
- * All rights reserved. This program and the accompanying materials
- * are made available under the terms of the Eclipse Public License v1.0
- * which accompanies this distribution, and is available at
- * http://eclipse.org/legal/epl-v10.html
+/**
+ * Copyright (c) 2015, 2018 Eclipse Foundation.
+ *
+ * This program and the accompanying materials are made
+ * available under the terms of the Eclipse Public License 2.0
+ * which is available at https://www.eclipse.org/legal/epl-2.0/
*
* Contributors:
- * Nathan Gervais (Eclipse Foundation) - Initial implementation
- * Eric Poirier (Eclipse Foundation)
- *******************************************************************************/
- ?>
-
-
+ * Nathan Gervais (Eclipse Foundation) - Initial implementation
+ * Eric Poirier (Eclipse Foundation)
+ *
+ * SPDX-License-Identifier: EPL-2.0
+ */
+?>
<div id="midcolumn">
-
- <h1>Helios Reviews</h1>
-
+ <h1><?php print $pageTitle; ?></h1>
<p>
- Members of the Eclipse community are invited to write a review of
- the <a href="https://projects.eclipse.org/releases/helios">Eclipse
- projects</a> being released as part of Helios and to publish the
- review on a blog, newsgroup or portal. Following is a list of links
- to the reviews that have been submitted to the blogathon.
+ Members of the Eclipse community are invited to write a review of the <a
+ href="https://projects.eclipse.org/releases/helios"
+ >Eclipse projects</a> being released as part of Helios and to publish the
+ review on a blog, newsgroup or portal. Following is a list of links to the
+ reviews that have been submitted to the blogathon.
</p>
-
<p>
<a href="guidelines.php">See details on the Helios Blogathon</a>
</p>
-
- <table cellpadding="3" cellspacing="0" width="100%">
- <tr bgcolor=#b599e4>
- <td><font color="#ffffff"><strong>Link</strong></font></td>
- <td><font color="#ffffff"><strong>Author</strong></font></td>
- <td><font color="#ffffff"><strong>Date</strong></font></td>
- <td><font color="#ffffff"><strong>Language</strong></font></td>
+ <table class="table table-striped">
+ <tr>
+ <th><strong>Link</strong></th>
+ <th><strong>Author</strong></th>
+ <th><strong>Date</strong></th>
+ <th><strong>Language</strong></th>
</tr>
-
<tr>
<td>
<div id="Eclipse Helios">
<a name="Eclipse Helios" class="norgie"
- onClick="t('Eclipse Helios','Eclipse Heliosa')"></a> <a
- target="_blank"
+ onClick="t('Eclipse Helios','Eclipse Heliosa')"
+ ></a> <a target="_blank"
href="http://thecoderlounge.blogspot.com/2010/07/eclipse-helios.html
- ">Eclipse Helios</a>
+"
+ >Eclipse Helios</a>
</div>
</td>
<td>Deepak Azad</td>
@@ -54,24 +50,22 @@
<tr class="bottomBorder">
<td colspan="4">
<div id="Eclipse Heliosa">
- <div class="item_contents">Going through the Helios Reviews I
- see that a number of bloggers have said good things about
- the new features in JDT :) If you have not yet seen the new
- features of JDT then check out the 10 minute demo I recorded
- last month.</div>
+ <div class="item_contents">Going through the Helios Reviews I see that
+ a number of bloggers have said good things about the new features in
+ JDT :) If you have not yet seen the new features of JDT then check
+ out the 10 minute demo I recorded last month.</div>
</div>
</td>
</tr>
-
-
<tr>
<td>
<div id="Helios 2010">
<a name="Helios 2010" class="norgie"
- onClick="t('Helios 2010','Helios 2010a')"></a> <a
- target="_blank"
+ onClick="t('Helios 2010','Helios 2010a')"
+ ></a> <a target="_blank"
href="http://forums.dzone.com/eclipse/2713-helios-2010-a.html#post5709
- ">Helios 2010</a>
+"
+ >Helios 2010</a>
</div>
</td>
<td>Shrikanth NC</td>
@@ -82,25 +76,22 @@
<td colspan="4">
<div id="Helios 2010a">
<div class="item_contents">First of all bravo! for the effort
- especially when i read these lines... from IBM site..
- "Helios is the simultaneous release of 39 Eclipse projects.
- In terms of statistics, the Helios release includes 33
- million lines of code developed by about 500 Eclipse.org
- committers from 44 companies."</div>
+ especially when i read these lines... from IBM site.. "Helios is the
+ simultaneous release of 39 Eclipse projects. In terms of statistics,
+ the Helios release includes 33 million lines of code developed by
+ about 500 Eclipse.org committers from 44 companies."</div>
</div>
</td>
</tr>
-
-
<tr>
<td>
<div id="Eclipse (Helios) Rocks and a Few Critiques">
- <a name="Eclipse (Helios) Rocks and a Few Critiques"
- class="norgie"
- onClick="t('Eclipse (Helios) Rocks and a Few Critiques','Eclipse (Helios) Rocks and a Few Critiquesa')"></a>
- <a target="_blank"
+ <a name="Eclipse (Helios) Rocks and a Few Critiques" class="norgie"
+ onClick="t('Eclipse (Helios) Rocks and a Few Critiques','Eclipse (Helios) Rocks and a Few Critiquesa')"
+ ></a> <a target="_blank"
href="http://blog.architexa.com/2010/07/eclipse-rocks-and-a-few-critiques/
- ">Eclipse (Helios) Rocks and a Few Critiques</a>
+"
+ >Eclipse (Helios) Rocks and a Few Critiques</a>
</div>
</td>
<td>Vineet Sinha</td>
@@ -110,25 +101,24 @@
<tr class="bottomBorder">
<td colspan="4">
<div id="Eclipse (Helios) Rocks and a Few Critiquesa">
- <div class="item_contents">Helios has been out for over a
- month – and we have been using it. Yes, we are a
- little biased, but when you are working with and leading
- teams of 10+ developers you need to be practical. There are
- a number of things that Eclipse does really well, but there
- are a few things that we would like to see better.</div>
+ <div class="item_contents">Helios has been out for over a month
+ – and we have been using it. Yes, we are a little biased, but
+ when you are working with and leading teams of 10+ developers you
+ need to be practical. There are a number of things that Eclipse does
+ really well, but there are a few things that we would like to see
+ better.</div>
</div>
</td>
</tr>
-
-
<tr>
<td>
<div id="Eclipse Helios Mostly Works">
<a name="Eclipse Helios Mostly Works" class="norgie"
- onClick="t('Eclipse Helios Mostly Works','Eclipse Helios Mostly Worksa')"></a>
- <a target="_blank"
+ onClick="t('Eclipse Helios Mostly Works','Eclipse Helios Mostly Worksa')"
+ ></a> <a target="_blank"
href="http://datacute.wordpress.com/2010/07/30/eclipse-helios-mostly-works/
- ">Eclipse Helios Mostly Works</a>
+"
+ >Eclipse Helios Mostly Works</a>
</div>
</td>
<td>Stephen Denne</td>
@@ -138,28 +128,24 @@
<tr class="bottomBorder">
<td colspan="4">
<div id="Eclipse Helios Mostly Worksa">
- <div class="item_contents">For development at work, I
- downloaded and started using Eclipse Helios packaged for
- J2EE development, wanting to see what I could stumble upon
- as new or different, and whether I could recommend it to the
- rest of my team yet without having to describe a whole lot
- of changes to our practices.</div>
+ <div class="item_contents">For development at work, I downloaded and
+ started using Eclipse Helios packaged for J2EE development, wanting
+ to see what I could stumble upon as new or different, and whether I
+ could recommend it to the rest of my team yet without having to
+ describe a whole lot of changes to our practices.</div>
</div>
</td>
</tr>
-
-
<tr>
<td>
- <div
- id="Eclipse MarketPlace Another New Part of Eclipse Helios 3.6">
- <a
- name="Eclipse MarketPlace Another New Part of Eclipse Helios 3.6"
+ <div id="Eclipse MarketPlace Another New Part of Eclipse Helios 3.6">
+ <a name="Eclipse MarketPlace Another New Part of Eclipse Helios 3.6"
class="norgie"
- onClick="t('Eclipse MarketPlace Another New Part of Eclipse Helios 3.6','Eclipse MarketPlace Another New Part of Eclipse Helios 3.6a')"></a>
- <a target="_blank"
+ onClick="t('Eclipse MarketPlace Another New Part of Eclipse Helios 3.6','Eclipse MarketPlace Another New Part of Eclipse Helios 3.6a')"
+ ></a> <a target="_blank"
href="http://sysdent.net23.net/2010/07/28/eclipse-marketplace-otra-de-las-novedades-de-eclipse-helios-3-6/
- ">Eclipse MarketPlace Another New Part of Eclipse Helios 3.6</a>
+"
+ >Eclipse MarketPlace Another New Part of Eclipse Helios 3.6</a>
</div>
</td>
<td>Miguel Antonio Casallas Tarazona</td>
@@ -168,25 +154,22 @@
</tr>
<tr class="bottomBorder">
<td colspan="4">
- <div
- id="Eclipse MarketPlace Another New Part of Eclipse Helios 3.6a">
- <div class="item_contents">It is no secret that when we need a
- full server option we have many in the open source world,
- but it is generally tends to be one of two: JBoss and
- Glassfish.</div>
+ <div id="Eclipse MarketPlace Another New Part of Eclipse Helios 3.6a">
+ <div class="item_contents">It is no secret that when we need a full
+ server option we have many in the open source world, but it is
+ generally tends to be one of two: JBoss and Glassfish.</div>
</div>
</td>
</tr>
-
-
<tr>
<td>
<div id="Eclipse Helios Review">
<a name="Eclipse Helios Review" class="norgie"
- onClick="t('Eclipse Helios Review','Eclipse Helios Reviewa')"></a>
- <a target="_blank"
+ onClick="t('Eclipse Helios Review','Eclipse Helios Reviewa')"
+ ></a> <a target="_blank"
href="http://patrickspokemonpalace.wordpress.com/2010/07/27/eclipse-helios-review/
- ">Eclipse Helios Review</a>
+"
+ >Eclipse Helios Review</a>
</div>
</td>
<td>Patrick Poon</td>
@@ -196,22 +179,21 @@
<tr class="bottomBorder">
<td colspan="4">
<div id="Eclipse Helios Reviewa">
- <div class="item_contents">The Eclipse Helios release train
- has been out for a few weeks now and it’s looking
- pretty good. Here are some initial thoughts about it.</div>
+ <div class="item_contents">The Eclipse Helios release train has been
+ out for a few weeks now and it’s looking pretty good. Here are
+ some initial thoughts about it.</div>
</div>
</td>
</tr>
-
-
<tr>
<td>
<div id="Eclipse Helios Rocks!">
<a name="Eclipse Helios Rocks!" class="norgie"
- onClick="t('Eclipse Helios Rocks!','Eclipse Helios Rocks!a')"></a>
- <a target="_blank"
+ onClick="t('Eclipse Helios Rocks!','Eclipse Helios Rocks!a')"
+ ></a> <a target="_blank"
href="http://technovergence.blogspot.com/2010/07/eclipse-helios-rocks.html
- ">Eclipse Helios Rocks!</a>
+"
+ >Eclipse Helios Rocks!</a>
</div>
</td>
<td>Reda Abdi</td>
@@ -221,23 +203,21 @@
<tr class="bottomBorder">
<td colspan="4">
<div id="Eclipse Helios Rocks!a">
- <div class="item_contents">As you know the latest eclipse
- version has been released on June 23, 2010. And for someone
- like me, who was using Ganymede (Eclipse 3.4), improvements
- are striking.</div>
+ <div class="item_contents">As you know the latest eclipse version has
+ been released on June 23, 2010. And for someone like me, who was
+ using Ganymede (Eclipse 3.4), improvements are striking.</div>
</div>
</td>
</tr>
-
-
<tr>
<td>
<div id="What’s New in Helios?">
<a name="What’s New in Helios?" class="norgie"
- onClick="t('What’s New in Helios?','What’s New in Helios?a')"></a>
- <a target="_blank"
+ onClick="t('What’s New in Helios?','What’s New in Helios?a')"
+ ></a> <a target="_blank"
href="http://olivier-eclipse.blogspot.com/2010/07/quoi-de-neuf-dans-helios.html
- ">What’s New in Helios?</a>
+"
+ >What’s New in Helios?</a>
</div>
</td>
<td>Olivier Thomann</td>
@@ -247,24 +227,22 @@
<tr class="bottomBorder">
<td colspan="4">
<div id="What’s New in Helios?a">
- <div class="item_contents">The Eclipse Foundation released its
- new annual version in late June. This year, its name is
- Helios. As usual, the delivery was made on the day it was
- planned for the 10th consecutive year.</div>
+ <div class="item_contents">The Eclipse Foundation released its new
+ annual version in late June. This year, its name is Helios. As
+ usual, the delivery was made on the day it was planned for the 10th
+ consecutive year.</div>
</div>
</td>
</tr>
-
-
<tr>
<td>
<div id="Eclipse Helios - a Whole Year of Goodness">
- <a name="Eclipse Helios - a Whole Year of Goodness"
- class="norgie"
- onClick="t('Eclipse Helios - a Whole Year of Goodness','Eclipse Helios - a Whole Year of Goodnessa')"></a>
- <a target="_blank"
+ <a name="Eclipse Helios - a Whole Year of Goodness" class="norgie"
+ onClick="t('Eclipse Helios - a Whole Year of Goodness','Eclipse Helios - a Whole Year of Goodnessa')"
+ ></a> <a target="_blank"
href="http://model-driven-blogging.blogspot.com/2010/07/eclipse-helios-whole-year-of-goodness.html
- ">Eclipse Helios - a Whole Year of Goodness</a>
+"
+ >Eclipse Helios - a Whole Year of Goodness</a>
</div>
</td>
<td>Cedric Brun</td>
@@ -274,28 +252,25 @@
<tr class="bottomBorder">
<td colspan="4">
<div id="Eclipse Helios - a Whole Year of Goodnessa">
- <div class="item_contents">Eclipse Helios is a release, but
- it's also a complete development cycle in a global and
- distributed team of commiters. Since I choose 3 features I
- especially liked in Helios this kept bugging me: what is
- Helios to me? Helios will have its place in my memory, not
- the bits themselves but good things we had as a community.</div>
+ <div class="item_contents">Eclipse Helios is a release, but it's also
+ a complete development cycle in a global and distributed team of
+ commiters. Since I choose 3 features I especially liked in Helios
+ this kept bugging me: what is Helios to me? Helios will have its
+ place in my memory, not the bits themselves but good things we had
+ as a community.</div>
</div>
</td>
</tr>
-
-
<tr>
<td>
- <div
- id="What Does the Eclipse of a Summer God Mean a Developer?">
- <a
- name="What Does the Eclipse of a Summer God Mean a Developer?"
+ <div id="What Does the Eclipse of a Summer God Mean a Developer?">
+ <a name="What Does the Eclipse of a Summer God Mean a Developer?"
class="norgie"
- onClick="t('What Does the Eclipse of a Summer God Mean a Developer?','What Does the Eclipse of a Summer God Mean a Developer?a')"></a>
- <a target="_blank"
+ onClick="t('What Does the Eclipse of a Summer God Mean a Developer?','What Does the Eclipse of a Summer God Mean a Developer?a')"
+ ></a> <a target="_blank"
href="http://cubussapiens.hu/en/2010/07/what-does-the-eclipse-of-a-summer-god-mean-to-me/
- ">What Does the Eclipse of a Summer God Mean a Developer?</a>
+"
+ >What Does the Eclipse of a Summer God Mean a Developer?</a>
</div>
</td>
<td>Zoltan Ujhelyi</td>
@@ -304,29 +279,26 @@
</tr>
<tr class="bottomBorder">
<td colspan="4">
- <div
- id="What Does the Eclipse of a Summer God Mean a Developer?a">
- <div class="item_contents">A month ago the Eclipse 3.6 shipped
- – again on time. This is another evolutionary release
- – most components are binary compatible with the older
- ones, so the time of the migration was roughly equal to the
- download. All old favorites, such as Mylyn, EMF, etc. are
- updated, a lot of features were added, that makes
- development much easier. Some new components are also added,
- making a strong basis of the Eclipse eco-system.</div>
+ <div id="What Does the Eclipse of a Summer God Mean a Developer?a">
+ <div class="item_contents">A month ago the Eclipse 3.6 shipped –
+ again on time. This is another evolutionary release – most
+ components are binary compatible with the older ones, so the time of
+ the migration was roughly equal to the download. All old favorites,
+ such as Mylyn, EMF, etc. are updated, a lot of features were added,
+ that makes development much easier. Some new components are also
+ added, making a strong basis of the Eclipse eco-system.</div>
</div>
</td>
</tr>
-
-
<tr>
<td>
<div id="Eclipse 3.6 Hidden Treasures">
<a name="Eclipse 3.6 Hidden Treasures" class="norgie"
- onClick="t('Eclipse 3.6 Hidden Treasures','Eclipse 3.6 Hidden Treasuresa')"></a>
- <a target="_blank"
+ onClick="t('Eclipse 3.6 Hidden Treasures','Eclipse 3.6 Hidden Treasuresa')"
+ ></a> <a target="_blank"
href="http://blog.zvikico.com/2010/07/eclipse-36-hidden-treasures.html
- ">Eclipse 3.6 Hidden Treasures</a>
+"
+ >Eclipse 3.6 Hidden Treasures</a>
</div>
</td>
<td>Zviki Cohen</td>
@@ -336,26 +308,24 @@
<tr class="bottomBorder">
<td colspan="4">
<div id="Eclipse 3.6 Hidden Treasuresa">
- <div class="item_contents">Eclipse 3.6, aka Helios, was
- released about a month ago. It has become a tradition: this
- is the time I highlight some of my favorite hidden features
- in the new release. I focus my article on features which are
- less obvious, off the beaten path. Features you might not be
- familiar with if you didn't take the time to read the "new
- and noteworthy" for this release.</div>
+ <div class="item_contents">Eclipse 3.6, aka Helios, was released about
+ a month ago. It has become a tradition: this is the time I highlight
+ some of my favorite hidden features in the new release. I focus my
+ article on features which are less obvious, off the beaten path.
+ Features you might not be familiar with if you didn't take the time
+ to read the "new and noteworthy" for this release.</div>
</div>
</td>
</tr>
-
-
<tr>
<td>
<div id="Latest Eclipse release">
<a name="Latest Eclipse release" class="norgie"
- onClick="t('Latest Eclipse release','Latest Eclipse releasea')"></a>
- <a target="_blank"
+ onClick="t('Latest Eclipse release','Latest Eclipse releasea')"
+ ></a> <a target="_blank"
href="http://suppressingfire.livejournal.com/46558.html
- ">Latest Eclipse release</a>
+"
+ >Latest Eclipse release</a>
</div>
</td>
<td>Michael R. Head</td>
@@ -365,27 +335,26 @@
<tr class="bottomBorder">
<td colspan="4">
<div id="Latest Eclipse releasea">
- <div class="item_contents">The latest Eclipse came out on June
- 23, 2010, and per usual, I'm writing a review to collect a
- T-shirt in this year's blogathon. The first thing to notice,
- before even downloading it, there are a couple more packages
- available.</div>
+ <div class="item_contents">The latest Eclipse came out on June 23,
+ 2010, and per usual, I'm writing a review to collect a T-shirt in
+ this year's blogathon. The first thing to notice, before even
+ downloading it, there are a couple more packages available.</div>
</div>
</td>
</tr>
-
-
<tr>
<td>
<div
- id="Moving a RCP application from Galileo to Helios: Feedback and Tips">
+ id="Moving a RCP application from Galileo to Helios: Feedback and Tips"
+ >
<a
name="Moving a RCP application from Galileo to Helios: Feedback and Tips"
class="norgie"
- onClick="t('Moving a RCP application from Galileo to Helios: Feedback and Tips','Moving a RCP application from Galileo to Helios: Feedback and Tipsa')"></a>
- <a target="_blank"
+ onClick="t('Moving a RCP application from Galileo to Helios: Feedback and Tips','Moving a RCP application from Galileo to Helios: Feedback and Tipsa')"
+ ></a> <a target="_blank"
href="http://www.bonitasoft.org/blog/eclipse/moving-a-rcp-application-from-galileo-to-helios-feedback-and-tips/
- ">Moving a RCP application from Galileo to Helios: Feedback and Tips</a>
+"
+ >Moving a RCP application from Galileo to Helios: Feedback and Tips</a>
</div>
</td>
<td>Aurelien Pupier</td>
@@ -395,27 +364,25 @@
<tr class="bottomBorder">
<td colspan="4">
<div
- id="Moving a RCP application from Galileo to Helios: Feedback and Tipsa">
- <div class="item_contents">In this post I’m going to
- share our experience migrating our RCP product Bonita Open
- Solution from an Eclipse 3.5.1 to 3.6.0 based platform.
- There were some issues but we were successful. I will also
- offer some tips so you can avoid some mistakes and save
- migration time.</div>
+ id="Moving a RCP application from Galileo to Helios: Feedback and Tipsa"
+ >
+ <div class="item_contents">In this post I’m going to share our
+ experience migrating our RCP product Bonita Open Solution from an
+ Eclipse 3.5.1 to 3.6.0 based platform. There were some issues but we
+ were successful. I will also offer some tips so you can avoid some
+ mistakes and save migration time.</div>
</div>
</td>
</tr>
-
-
<tr>
<td>
<div id="Eclipse Helios - New Apply Patch Features">
- <a name="Eclipse Helios - New Apply Patch Features"
- class="norgie"
- onClick="t('Eclipse Helios - New Apply Patch Features','Eclipse Helios - New Apply Patch Featuresa')"></a>
- <a target="_blank"
+ <a name="Eclipse Helios - New Apply Patch Features" class="norgie"
+ onClick="t('Eclipse Helios - New Apply Patch Features','Eclipse Helios - New Apply Patch Featuresa')"
+ ></a> <a target="_blank"
href="http://blog.max.berger.name/2010/07/eclipse-helios-new-apply-patch-features.html
- ">Eclipse Helios - New Apply Patch Features</a>
+"
+ >Eclipse Helios - New Apply Patch Features</a>
</div>
</td>
<td>Max Berger</td>
@@ -425,23 +392,21 @@
<tr class="bottomBorder">
<td colspan="4">
<div id="Eclipse Helios - New Apply Patch Featuresa">
- <div class="item_contents">Eclipse Helios has a few nice new
- features for applying patches. In this post I would like to
- point some of them out.</div>
+ <div class="item_contents">Eclipse Helios has a few nice new features
+ for applying patches. In this post I would like to point some of
+ them out.</div>
</div>
</td>
</tr>
-
-
<tr>
<td>
<div id="Eclipse Helios and Sun/Oracle Update 21">
- <a name="Eclipse Helios and Sun/Oracle Update 21"
- class="norgie"
- onClick="t('Eclipse Helios and Sun/Oracle Update 21','Eclipse Helios and Sun/Oracle Update 21a')"></a>
- <a target="_blank"
+ <a name="Eclipse Helios and Sun/Oracle Update 21" class="norgie"
+ onClick="t('Eclipse Helios and Sun/Oracle Update 21','Eclipse Helios and Sun/Oracle Update 21a')"
+ ></a> <a target="_blank"
href="http://blogs.infosupport.com/blogs/peterhe/archive/2010/07/18/eclipse-helios-and-sun-oracle-update-21.aspx
- ">Eclipse Helios and Sun/Oracle Update 21</a>
+"
+ >Eclipse Helios and Sun/Oracle Update 21</a>
</div>
</td>
<td>Peter Hendriks</td>
@@ -451,26 +416,24 @@
<tr class="bottomBorder">
<td colspan="4">
<div id="Eclipse Helios and Sun/Oracle Update 21a">
- <div class="item_contents">First of all, if you are using any
- version of Eclipse (3.1-3.6) and are migrating to Sun/Oracle
- JDK update 21, be wary of this bug: 319514. Basically,
- Eclipse checks if the VM is Sun to add a "PermSize" flag,
- but now it is renamed to Oracle and the check no longer
- works.</div>
+ <div class="item_contents">First of all, if you are using any version
+ of Eclipse (3.1-3.6) and are migrating to Sun/Oracle JDK update 21,
+ be wary of this bug: 319514. Basically, Eclipse checks if the VM is
+ Sun to add a "PermSize" flag, but now it is renamed to Oracle and
+ the check no longer works.</div>
</div>
</td>
</tr>
-
-
<tr>
<td>
<div id="Eclipse Helios Released: What It Doesn’t Have">
<a name="Eclipse Helios Released: What It Doesn’t Have"
class="norgie"
- onClick="t('Eclipse Helios Released: What It Doesn’t Have','Eclipse Helios Released: What It Doesn’t Havea')"></a>
- <a target="_blank"
+ onClick="t('Eclipse Helios Released: What It Doesn’t Have','Eclipse Helios Released: What It Doesn’t Havea')"
+ ></a> <a target="_blank"
href="http://misto.ch/eclipse-helios-released-what-it-doesnt-have/
- ">Eclipse Helios Released: What It Doesn’t Have</a>
+"
+ >Eclipse Helios Released: What It Doesn’t Have</a>
</div>
</td>
<td>Mirko Stocker</td>
@@ -480,26 +443,23 @@
<tr class="bottomBorder">
<td colspan="4">
<div id="Eclipse Helios Released: What It Doesn’t Havea">
- <div class="item_contents">Many good reviews already cover all
- the nice new features that are in Eclipse Helios, so
- I’m going to show you a three annoyances that have
- been bothering me for years and are still not fixed in
- Helios. And these aren’t things like the high memory
- consumption or the sluggish interface.</div>
+ <div class="item_contents">Many good reviews already cover all the
+ nice new features that are in Eclipse Helios, so I’m going to
+ show you a three annoyances that have been bothering me for years
+ and are still not fixed in Helios. And these aren’t things
+ like the high memory consumption or the sluggish interface.</div>
</div>
</td>
</tr>
-
-
<tr>
<td>
<div id="Eclipse Helios and Java 1.6u21 Deadlocks">
- <a name="Eclipse Helios and Java 1.6u21 Deadlocks"
- class="norgie"
- onClick="t('Eclipse Helios and Java 1.6u21 Deadlocks','Eclipse Helios and Java 1.6u21 Deadlocksa')"></a>
- <a target="_blank"
+ <a name="Eclipse Helios and Java 1.6u21 Deadlocks" class="norgie"
+ onClick="t('Eclipse Helios and Java 1.6u21 Deadlocks','Eclipse Helios and Java 1.6u21 Deadlocksa')"
+ ></a> <a target="_blank"
href="http://blog.max.berger.name/2010/07/eclipse-helios-and-java-16u21-deadlocks.html
- ">Eclipse Helios and Java 1.6u21 Deadlocks</a>
+"
+ >Eclipse Helios and Java 1.6u21 Deadlocks</a>
</div>
</td>
<td>Max Berger</td>
@@ -509,25 +469,23 @@
<tr class="bottomBorder">
<td colspan="4">
<div id="Eclipse Helios and Java 1.6u21 Deadlocksa">
- <div class="item_contents">I wanted to write a post about the
- new Eclipse Helios, which was just released to participate
- in the Helios Blogathon. So, on my personal machine, I
- installed the newest JDK (1.6u21), the new eclipse, started
- it up, tried to work with it and after a few seconds.... It
- just hangs!</div>
+ <div class="item_contents">I wanted to write a post about the new
+ Eclipse Helios, which was just released to participate in the Helios
+ Blogathon. So, on my personal machine, I installed the newest JDK
+ (1.6u21), the new eclipse, started it up, tried to work with it and
+ after a few seconds.... It just hangs!</div>
</div>
</td>
</tr>
-
-
<tr>
<td>
<div id="Eclipse Helios">
<a name="Eclipse Helios" class="norgie"
- onClick="t('Eclipse Helios','Eclipse Heliosa')"></a> <a
- target="_blank"
+ onClick="t('Eclipse Helios','Eclipse Heliosa')"
+ ></a> <a target="_blank"
href="http://www.netgautam.com/wordpress/2010/07/16/eclipse-helios/
- ">Eclipse Helios</a>
+"
+ >Eclipse Helios</a>
</div>
</td>
<td>Nitesh Gautam</td>
@@ -537,25 +495,23 @@
<tr class="bottomBorder">
<td colspan="4">
<div id="Eclipse Heliosa">
- <div class="item_contents">Eclipse has always been my
- preferred IDE for application design and development. There
- have always been my interest in new developments going
- behind the scenes on eclipse evolution. The latest version
- of Eclipse, named as Helios, has been released this year on
- June 23, named as Eclipse Helios.</div>
+ <div class="item_contents">Eclipse has always been my preferred IDE
+ for application design and development. There have always been my
+ interest in new developments going behind the scenes on eclipse
+ evolution. The latest version of Eclipse, named as Helios, has been
+ released this year on June 23, named as Eclipse Helios.</div>
</div>
</td>
</tr>
-
-
<tr>
<td>
<div id="The Helios Year in Retrospect">
<a name="The Helios Year in Retrospect" class="norgie"
- onClick="t('The Helios Year in Retrospect','The Helios Year in Retrospecta')"></a>
- <a target="_blank"
+ onClick="t('The Helios Year in Retrospect','The Helios Year in Retrospecta')"
+ ></a> <a target="_blank"
href="http://eclipsehowl.wordpress.com/2010/07/14/the-helios-year-in-retrospect/
- ">The Helios Year in Retrospect</a>
+"
+ >The Helios Year in Retrospect</a>
</div>
</td>
<td>Holger Voorman</td>
@@ -565,29 +521,26 @@
<tr class="bottomBorder">
<td colspan="4">
<div id="The Helios Year in Retrospecta">
- <div class="item_contents">My neighbor should have been back
- from Malaysia this summer, but the IT project that's behind
- his sojourn in these exotic spheres is delayed. The still
- indefinitely vacant apartment reminds me of how nice my life
- is. And I’m not referring to the silence next-door,
- but to the fact that I, as an Eclipse developer, can rely on
- the 5th Eclipse Release Train arriving on time. For trains,
- and especially for software projects, this is not yet
- self-evident even in the year 2010.</div>
+ <div class="item_contents">My neighbor should have been back from
+ Malaysia this summer, but the IT project that's behind his sojourn
+ in these exotic spheres is delayed. The still indefinitely vacant
+ apartment reminds me of how nice my life is. And I’m not
+ referring to the silence next-door, but to the fact that I, as an
+ Eclipse developer, can rely on the 5th Eclipse Release Train
+ arriving on time. For trains, and especially for software projects,
+ this is not yet self-evident even in the year 2010.</div>
</div>
</td>
</tr>
-
-
<tr>
<td>
<div id="The Juggernaut of Eclipse Helios Arrives">
- <a name="The Juggernaut of Eclipse Helios Arrives"
- class="norgie"
- onClick="t('The Juggernaut of Eclipse Helios Arrives','The Juggernaut of Eclipse Helios Arrivesa')"></a>
- <a target="_blank"
+ <a name="The Juggernaut of Eclipse Helios Arrives" class="norgie"
+ onClick="t('The Juggernaut of Eclipse Helios Arrives','The Juggernaut of Eclipse Helios Arrivesa')"
+ ></a> <a target="_blank"
href="http://codifyit.blogspot.com/2010/07/juggernaut-of-eclipse-helios-arrives.html
- ">The Juggernaut of Eclipse Helios Arrives</a>
+"
+ >The Juggernaut of Eclipse Helios Arrives</a>
</div>
</td>
<td>Saurav Sarkar</td>
@@ -597,26 +550,26 @@
<tr class="bottomBorder">
<td colspan="4">
<div id="The Juggernaut of Eclipse Helios Arrivesa">
- <div class="item_contents">This is that time of year, when the
- Eclipse community comes up with its brand new release. Last
- year i wrote about Galileo, this time much awaited Helios
- comes into the limelight.</div>
+ <div class="item_contents">This is that time of year, when the Eclipse
+ community comes up with its brand new release. Last year i wrote
+ about Galileo, this time much awaited Helios comes into the
+ limelight.</div>
</div>
</td>
</tr>
-
-
<tr>
<td>
<div
- id="Eclipse Helios - Install all your Eclipse Plugins from Eclipse MarketPlace">
+ id="Eclipse Helios - Install all your Eclipse Plugins from Eclipse MarketPlace"
+ >
<a
name="Eclipse Helios - Install all your Eclipse Plugins from Eclipse MarketPlace"
class="norgie"
- onClick="t('Eclipse Helios - Install all your Eclipse Plugins from Eclipse MarketPlace','Eclipse Helios - Install all your Eclipse Plugins from Eclipse MarketPlacea')"></a>
- <a target="_blank"
+ onClick="t('Eclipse Helios - Install all your Eclipse Plugins from Eclipse MarketPlace','Eclipse Helios - Install all your Eclipse Plugins from Eclipse MarketPlacea')"
+ ></a> <a target="_blank"
href="http://techsymphony.wordpress.com/2010/07/11/eclipse-helios-install-all-your-eclipse-plugins-from-eclipse-marketplace/
- ">Eclipse Helios - Install all your Eclipse Plugins from Eclipse
+"
+ >Eclipse Helios - Install all your Eclipse Plugins from Eclipse
MarketPlace</a>
</div>
</td>
@@ -627,27 +580,26 @@
<tr class="bottomBorder">
<td colspan="4">
<div
- id="Eclipse Helios - Install all your Eclipse Plugins from Eclipse MarketPlacea">
- <div class="item_contents">No more remembering eclipse
- plugins' url. I know how difficult it is to find the url of
- each eclipse plugin and install it via ‘Install New
- Software’. Especially if you are behind office
- firewall you cannot install those plugins. Eclipse Helios
- has resolved those problems introducing ‘Eclipse
+ id="Eclipse Helios - Install all your Eclipse Plugins from Eclipse MarketPlacea"
+ >
+ <div class="item_contents">No more remembering eclipse plugins' url. I
+ know how difficult it is to find the url of each eclipse plugin and
+ install it via ‘Install New Software’. Especially if you
+ are behind office firewall you cannot install those plugins. Eclipse
+ Helios has resolved those problems introducing ‘Eclipse
MarketPlace’.</div>
</div>
</td>
</tr>
-
-
<tr>
<td>
<div id="Eclipse Helios Gets Cozy with Your OS">
<a name="Eclipse Helios Gets Cozy with Your OS" class="norgie"
- onClick="t('Eclipse Helios Gets Cozy with Your OS','Eclipse Helios Gets Cozy with Your OSa')"></a>
- <a target="_blank"
+ onClick="t('Eclipse Helios Gets Cozy with Your OS','Eclipse Helios Gets Cozy with Your OSa')"
+ ></a> <a target="_blank"
href="http://blog.zvikico.com/2010/07/eclipse-helios-gets-cozy-with-your-os.html
- ">Eclipse Helios Gets Cozy with Your OS</a>
+"
+ >Eclipse Helios Gets Cozy with Your OS</a>
</div>
</td>
<td>Zviki Cohen</td>
@@ -657,23 +609,20 @@
<tr class="bottomBorder">
<td colspan="4">
<div id="Eclipse Helios Gets Cozy with Your OSa">
- <div class="item_contents">Let's start with two, non trivial,
- claims: (a) native apps are not dead yet (OS native, as
- opposed to web apps), (b) people prefer the native apps.</div>
+ <div class="item_contents">Let's start with two, non trivial, claims:
+ (a) native apps are not dead yet (OS native, as opposed to web
+ apps), (b) people prefer the native apps.</div>
</div>
</td>
</tr>
-
-
<tr>
<td>
<div id="Riena 2.0 on Board the Eclipse Helios Release Train">
<a name="Riena 2.0 on Board the Eclipse Helios Release Train"
class="norgie"
- onClick="t('Riena 2.0 on Board the Eclipse Helios Release Train','Riena 2.0 on Board the Eclipse Helios Release Traina')"></a>
- <a target="_blank"
- href="http://www.compeople.eu/blog/?p=216
- ">Riena 2.0 on Board the Eclipse Helios Release Train</a>
+ onClick="t('Riena 2.0 on Board the Eclipse Helios Release Train','Riena 2.0 on Board the Eclipse Helios Release Traina')"
+ ></a> <a target="_blank" href="http://www.compeople.eu/blog/?p=216
+">Riena 2.0 on Board the Eclipse Helios Release Train</a>
</div>
</td>
<td>Michael Bordach</td>
@@ -683,27 +632,25 @@
<tr class="bottomBorder">
<td colspan="4">
<div id="Riena 2.0 on Board the Eclipse Helios Release Traina">
- <div class="item_contents">The Riena project team has just
- released the Riena platform 2.0 as part of Eclipse Helios.
- Thanks and congratulations to everyone who helped manage
- this Eclipse Release out the door in high quality and on
- time again! To dive into Riena’s detailed technical
- release notes, you may hop to Riena New And Noteworthy. With
- this post I present a rough overview of new and optimized
- features.</div>
+ <div class="item_contents">The Riena project team has just released
+ the Riena platform 2.0 as part of Eclipse Helios. Thanks and
+ congratulations to everyone who helped manage this Eclipse Release
+ out the door in high quality and on time again! To dive into
+ Riena’s detailed technical release notes, you may hop to Riena
+ New And Noteworthy. With this post I present a rough overview of new
+ and optimized features.</div>
</div>
</td>
</tr>
-
-
<tr>
<td>
<div id="Discovery and AMP">
<a name="Discovery and AMP" class="norgie"
- onClick="t('Discovery and AMP','Discovery and AMPa')"></a> <a
- target="_blank"
+ onClick="t('Discovery and AMP','Discovery and AMPa')"
+ ></a> <a target="_blank"
href="http://milesparker.blogspot.com/2010/07/discovery-and-amp.html?utm_source=feedbur
- ">Discovery and AMP</a>
+"
+ >Discovery and AMP</a>
</div>
</td>
<td>Miles Parker</td>
@@ -713,23 +660,22 @@
<tr class="bottomBorder">
<td colspan="4">
<div id="Discovery and AMPa">
- <div class="item_contents">One of my favorite new features in
- Eclipse Helios is not really about the Eclipse tools at all
- but how users get those tools.</div>
+ <div class="item_contents">One of my favorite new features in Eclipse
+ Helios is not really about the Eclipse tools at all but how users
+ get those tools.</div>
</div>
</td>
</tr>
-
-
<tr>
<td>
<div id="3 Good Reasons to use the Helios Modeling Package">
<a name="3 Good Reasons to use the Helios Modeling Package"
class="norgie"
- onClick="t('3 Good Reasons to use the Helios Modeling Package','3 Good Reasons to use the Helios Modeling Packagea')"></a>
- <a target="_blank"
+ onClick="t('3 Good Reasons to use the Helios Modeling Package','3 Good Reasons to use the Helios Modeling Packagea')"
+ ></a> <a target="_blank"
href="http://model-driven-blogging.blogspot.com/2010/06/helios-review-in-pictures.html
- ">3 Good Reasons to use the Helios Modeling Package</a>
+"
+ >3 Good Reasons to use the Helios Modeling Package</a>
</div>
</td>
<td>Cedric Brun</td>
@@ -739,25 +685,24 @@
<tr class="bottomBorder">
<td colspan="4">
<div id="3 Good Reasons to use the Helios Modeling Packagea">
- <div class="item_contents">Now that the entire world noticed
- that I don't know even one thing about soccer and I'm even
- trying to cheat, I should get back in sharing what I
- understand instead of those silly forecasts. Helios has been
- out for a little while now, the mediatic storm is pretty
- much gone and it's a good time for me to have a look back.</div>
+ <div class="item_contents">Now that the entire world noticed that I
+ don't know even one thing about soccer and I'm even trying to cheat,
+ I should get back in sharing what I understand instead of those
+ silly forecasts. Helios has been out for a little while now, the
+ mediatic storm is pretty much gone and it's a good time for me to
+ have a look back.</div>
</div>
</td>
</tr>
-
-
<tr>
<td>
<div id="Helios - Eclipse 3.6">
<a name="Helios - Eclipse 3.6" class="norgie"
- onClick="t('Helios - Eclipse 3.6','Helios - Eclipse 3.6a')"></a>
- <a target="_blank"
+ onClick="t('Helios - Eclipse 3.6','Helios - Eclipse 3.6a')"
+ ></a> <a target="_blank"
href="http://maruhgar.blogspot.com/2010/07/helios-eclipse-36.html
- ">Helios - Eclipse 3.6</a>
+"
+ >Helios - Eclipse 3.6</a>
</div>
</td>
<td>Raghuram Bharathan</td>
@@ -767,25 +712,23 @@
<tr class="bottomBorder">
<td colspan="4">
<div id="Helios - Eclipse 3.6a">
- <div class="item_contents">Helios is the God of the Sun. It is
- also the codename for the 2010 release of Eclipse, arguably
- the most popular development environment for java
- programming language. As a user of Eclipse for the last six
- years of so, I did not lose time downloading Helios once it
- became publicly available.</div>
+ <div class="item_contents">Helios is the God of the Sun. It is also
+ the codename for the 2010 release of Eclipse, arguably the most
+ popular development environment for java programming language. As a
+ user of Eclipse for the last six years of so, I did not lose time
+ downloading Helios once it became publicly available.</div>
</div>
</td>
</tr>
-
-
<tr>
<td>
<div id="Eclipse Helios: 5 JDT Improvements">
<a name="Eclipse Helios: 5 JDT Improvements" class="norgie"
- onClick="t('Eclipse Helios: 5 JDT Improvements','Eclipse Helios: 5 JDT Improvementsa')"></a>
- <a target="_blank"
+ onClick="t('Eclipse Helios: 5 JDT Improvements','Eclipse Helios: 5 JDT Improvementsa')"
+ ></a> <a target="_blank"
href="http://blog.firdau.si/2010/07/02/eclipse-helios-5-jdt-improvements/
- ">Eclipse Helios: 5 JDT Improvements</a>
+"
+ >Eclipse Helios: 5 JDT Improvements</a>
</div>
</td>
<td>Nanda Firdausi</td>
@@ -795,27 +738,23 @@
<tr class="bottomBorder">
<td colspan="4">
<div id="Eclipse Helios: 5 JDT Improvementsa">
- <div class="item_contents">Helios has been released. This
- simultaneous release includes more projects but many people
- still regard Eclipse as Java IDE. So in this post, I want to
- share the most important JDT improvements that I think will
- be loved by most Java developers.</div>
+ <div class="item_contents">Helios has been released. This simultaneous
+ release includes more projects but many people still regard Eclipse
+ as Java IDE. So in this post, I want to share the most important JDT
+ improvements that I think will be loved by most Java developers.</div>
</div>
</td>
</tr>
-
-
<tr>
<td>
- <div
- id="10 New Features which I Liked the Most in Eclipse Helios">
- <a
- name="10 New Features which I Liked the Most in Eclipse Helios"
+ <div id="10 New Features which I Liked the Most in Eclipse Helios">
+ <a name="10 New Features which I Liked the Most in Eclipse Helios"
class="norgie"
- onClick="t('10 New Features which I Liked the Most in Eclipse Helios','10 New Features which I Liked the Most in Eclipse Heliosa')"></a>
- <a target="_blank"
+ onClick="t('10 New Features which I Liked the Most in Eclipse Helios','10 New Features which I Liked the Most in Eclipse Heliosa')"
+ ></a> <a target="_blank"
href="http://www.techsagar.com/2010/07/10-new-features-which-i-liked-the-most-in-eclipse-helios-3-6-2/
- ">10 New Features which I Liked the Most in Eclipse Helios</a>
+"
+ >10 New Features which I Liked the Most in Eclipse Helios</a>
</div>
</td>
<td>Prasanna LM</td>
@@ -824,32 +763,30 @@
</tr>
<tr class="bottomBorder">
<td colspan="4">
- <div
- id="10 New Features which I Liked the Most in Eclipse Heliosa">
- <div class="item_contents">Last week Eclipse foundation
- delivered their 2010 installment i.e., the 3.6 version of
- Eclipse code named Helios. It was the largest release from
- Eclipse community so far as it involved 39 different project
- teams & 33 million lines of code (as per the data available
- in the official Eclipse web page). Helios comes with lots of
- new & interesting features and caters to the varying needs
- of the Software Development community.</div>
+ <div id="10 New Features which I Liked the Most in Eclipse Heliosa">
+ <div class="item_contents">Last week Eclipse foundation delivered
+ their 2010 installment i.e., the 3.6 version of Eclipse code named
+ Helios. It was the largest release from Eclipse community so far as
+ it involved 39 different project teams & 33 million lines of code
+ (as per the data available in the official Eclipse web page). Helios
+ comes with lots of new & interesting features and caters to the
+ varying needs of the Software Development community.</div>
</div>
</td>
</tr>
-
-
<tr>
<td>
<div
- id="OSGi Console in Helios, Monkey See/Monkey Do and a Strange Loop">
+ id="OSGi Console in Helios, Monkey See/Monkey Do and a Strange Loop"
+ >
<a
name="OSGi Console in Helios, Monkey See/Monkey Do and a Strange Loop"
class="norgie"
- onClick="t('OSGi Console in Helios, Monkey See/Monkey Do and a Strange Loop','OSGi Console in Helios, Monkey See/Monkey Do and a Strange Loopa')"></a>
- <a target="_blank"
+ onClick="t('OSGi Console in Helios, Monkey See/Monkey Do and a Strange Loop','OSGi Console in Helios, Monkey See/Monkey Do and a Strange Loopa')"
+ ></a> <a target="_blank"
href="http://blog.wolfgang-werner.net/osgi-console-in-helios-monkey-see-monkey-do-and-a-strange-loop/
- ">OSGi Console in Helios, Monkey See/Monkey Do and a Strange Loop</a>
+"
+ >OSGi Console in Helios, Monkey See/Monkey Do and a Strange Loop</a>
</div>
</td>
<td>Wolfgang Werner</td>
@@ -859,25 +796,25 @@
<tr class="bottomBorder">
<td colspan="4">
<div
- id="OSGi Console in Helios, Monkey See/Monkey Do and a Strange Loopa">
- <div class="item_contents">Helios comes with an OSGi console
- that is accessible from the GUI directly. This reminded me
- of the existence of an API to add custom commands to the
- console. I found this to be a simple and powerful concept;
- yet I perceive this feature to be rarely used in practice.</div>
+ id="OSGi Console in Helios, Monkey See/Monkey Do and a Strange Loopa"
+ >
+ <div class="item_contents">Helios comes with an OSGi console that is
+ accessible from the GUI directly. This reminded me of the existence
+ of an API to add custom commands to the console. I found this to be
+ a simple and powerful concept; yet I perceive this feature to be
+ rarely used in practice.</div>
</div>
</td>
</tr>
-
-
<tr>
<td>
<div id="Acceleo 3.0.0 is released!">
<a name="Acceleo 3.0.0 is released!" class="norgie"
- onClick="t('Acceleo 3.0.0 is released!','Acceleo 3.0.0 is released!a')"></a>
- <a target="_blank"
+ onClick="t('Acceleo 3.0.0 is released!','Acceleo 3.0.0 is released!a')"
+ ></a> <a target="_blank"
href="http://freddyallilaire.blogspot.com/2010/06/acceleo-300-is-released.html
- ">Acceleo 3.0.0 is released!</a>
+"
+ >Acceleo 3.0.0 is released!</a>
</div>
</td>
<td>Freddy Allilaire</td>
@@ -887,23 +824,22 @@
<tr class="bottomBorder">
<td colspan="4">
<div id="Acceleo 3.0.0 is released!a">
- <div class="item_contents">Acceleo 3.0 has just been released
- and it comes with compatibility with Eclipse 3.4, 3.5 and
- the latest 3.6 versions. Acceleo 3.0 is a pragmatic
- implementation of the OMG Model-to-text specification.</div>
+ <div class="item_contents">Acceleo 3.0 has just been released and it
+ comes with compatibility with Eclipse 3.4, 3.5 and the latest 3.6
+ versions. Acceleo 3.0 is a pragmatic implementation of the OMG
+ Model-to-text specification.</div>
</div>
</td>
</tr>
-
-
<tr>
<td>
<div id="RAP and Eclipse Helios in a Minute">
<a name="RAP and Eclipse Helios in a Minute" class="norgie"
- onClick="t('RAP and Eclipse Helios in a Minute','RAP and Eclipse Helios in a Minutea')"></a>
- <a target="_blank"
+ onClick="t('RAP and Eclipse Helios in a Minute','RAP and Eclipse Helios in a Minutea')"
+ ></a> <a target="_blank"
href="http://eclipsesource.com/blogs/2010/06/28/rap-and-eclipse-helios-in-a-minute/
- ">RAP and Eclipse Helios in a Minute</a>
+"
+ >RAP and Eclipse Helios in a Minute</a>
</div>
</td>
<td>Holger Staudacher</td>
@@ -913,23 +849,21 @@
<tr class="bottomBorder">
<td colspan="4">
<div id="RAP and Eclipse Helios in a Minutea">
- <div class="item_contents">As part of the new Eclipse Helios,
- the Rich Ajax Platform project released version 1.3. If
- you’d like to know what is new in RAP 1.3,
- here’s a short screencast.</div>
+ <div class="item_contents">As part of the new Eclipse Helios, the Rich
+ Ajax Platform project released version 1.3. If you’d like to
+ know what is new in RAP 1.3, here’s a short screencast.</div>
</div>
</td>
</tr>
-
-
<tr>
<td>
<div id="Eclipse 3.6 - Helios">
<a name="Eclipse 3.6 - Helios" class="norgie"
- onClick="t('Eclipse 3.6 - Helios','Eclipse 3.6 - Heliosa')"></a>
- <a target="_blank"
+ onClick="t('Eclipse 3.6 - Helios','Eclipse 3.6 - Heliosa')"
+ ></a> <a target="_blank"
href="http://www.programmez.com/actualites.php?titre_actu=Eclipse-36---Helios&id_actu=7778
- ">Eclipse 3.6 - Helios</a>
+"
+ >Eclipse 3.6 - Helios</a>
</div>
</td>
<td>Frederic Mazue</td>
@@ -939,28 +873,27 @@
<tr class="bottomBorder">
<td colspan="4">
<div id="Eclipse 3.6 - Heliosa">
- <div class="item_contents">Eclipse 3.6, codenamed Helios has
- just arrived. 490 Eclipse contributors have worked on this
- release, which includes more than 100 that are independent
- (as opposed to 900 active contributors) and 44 companies
- that were involved and collaborate on this open source
- project.</div>
+ <div class="item_contents">Eclipse 3.6, codenamed Helios has just
+ arrived. 490 Eclipse contributors have worked on this release, which
+ includes more than 100 that are independent (as opposed to 900
+ active contributors) and 44 companies that were involved and
+ collaborate on this open source project.</div>
</div>
</td>
</tr>
-
-
<tr>
<td>
<div
- id="Eclipse Helios Release Leaves Java Developers Spoilt for Choice">
+ id="Eclipse Helios Release Leaves Java Developers Spoilt for Choice"
+ >
<a
name="Eclipse Helios Release Leaves Java Developers Spoilt for Choice"
class="norgie"
- onClick="t('Eclipse Helios Release Leaves Java Developers Spoilt for Choice','Eclipse Helios Release Leaves Java Developers Spoilt for Choicea')"></a>
- <a target="_blank"
+ onClick="t('Eclipse Helios Release Leaves Java Developers Spoilt for Choice','Eclipse Helios Release Leaves Java Developers Spoilt for Choicea')"
+ ></a> <a target="_blank"
href="http://eclipse.dzone.com/articles/eclipse-helio-release-leaves
- ">Eclipse Helios Release Leaves Java Developers Spoilt for Choice</a>
+"
+ >Eclipse Helios Release Leaves Java Developers Spoilt for Choice</a>
</div>
</td>
<td>James Sugrue</td>
@@ -970,29 +903,29 @@
<tr class="bottomBorder">
<td colspan="4">
<div
- id="Eclipse Helios Release Leaves Java Developers Spoilt for Choicea">
- <div class="item_contents">Yesterday's release of Helios shows
- how Java developers are now truly spoilt for choice when it
- comes to IDEs. Following on the NetBeans 6.9 release last
- week, Eclipse 3.6 is the most complete release so far,
- incorporating 39 projects.</div>
+ id="Eclipse Helios Release Leaves Java Developers Spoilt for Choicea"
+ >
+ <div class="item_contents">Yesterday's release of Helios shows how
+ Java developers are now truly spoilt for choice when it comes to
+ IDEs. Following on the NetBeans 6.9 release last week, Eclipse 3.6
+ is the most complete release so far, incorporating 39 projects.</div>
</div>
</td>
</tr>
-
-
<tr>
<td>
<div
- id="Getting Acquainted: Eclipse Marketplace - All Popular Plug-ins in One Place">
+ id="Getting Acquainted: Eclipse Marketplace - All Popular Plug-ins in One Place"
+ >
<a
name="Getting Acquainted: Eclipse Marketplace - All Popular Plug-ins in One Place"
class="norgie"
- onClick="t('Getting Acquainted: Eclipse Marketplace - All Popular Plug-ins in One Place','Getting Acquainted: Eclipse Marketplace - All Popular Plug-ins in One Placea')"></a>
- <a target="_blank"
+ onClick="t('Getting Acquainted: Eclipse Marketplace - All Popular Plug-ins in One Place','Getting Acquainted: Eclipse Marketplace - All Popular Plug-ins in One Placea')"
+ ></a> <a target="_blank"
href="http://samolisov.blogspot.com/2010/06/eclipse-marketplace.html
- ">Getting Acquainted: Eclipse Marketplace - All Popular Plug-ins in
- One Place</a>
+"
+ >Getting Acquainted: Eclipse Marketplace - All Popular Plug-ins in One
+ Place</a>
</div>
</td>
<td>Pavel Samolisov</td>
@@ -1002,27 +935,26 @@
<tr class="bottomBorder">
<td colspan="4">
<div
- id="Getting Acquainted: Eclipse Marketplace - All Popular Plug-ins in One Placea">
- <div class="item_contents">As part of the Eclipse Helios
- release, a single repository of plugins as well as
- applications built on the Eclipse RCP platform and services
- provided by the platform, was launched.</div>
+ id="Getting Acquainted: Eclipse Marketplace - All Popular Plug-ins in One Placea"
+ >
+ <div class="item_contents">As part of the Eclipse Helios release, a
+ single repository of plugins as well as applications built on the
+ Eclipse RCP platform and services provided by the platform, was
+ launched.</div>
</div>
</td>
</tr>
-
-
<tr>
<td>
- <div
- id="Eclipse Helios: Where Programming and Modeling Merge Even More">
+ <div id="Eclipse Helios: Where Programming and Modeling Merge Even More">
<a
name="Eclipse Helios: Where Programming and Modeling Merge Even More"
class="norgie"
- onClick="t('Eclipse Helios: Where Programming and Modeling Merge Even More','Eclipse Helios: Where Programming and Modeling Merge Even Morea')"></a>
- <a target="_blank"
+ onClick="t('Eclipse Helios: Where Programming and Modeling Merge Even More','Eclipse Helios: Where Programming and Modeling Merge Even Morea')"
+ ></a> <a target="_blank"
href="http://it-republik.de/jaxenter/artikel/Eclipse-Helios-Wie-Programmierung-und-Modellierung-immer-mehr-verschmelzen-3166.html
- ">Eclipse Helios: Where Programming and Modeling Merge Even More</a>
+"
+ >Eclipse Helios: Where Programming and Modeling Merge Even More</a>
</div>
</td>
<td>Jan Koehnlein</td>
@@ -1032,28 +964,26 @@
<tr class="bottomBorder">
<td colspan="4">
<div
- id="Eclipse Helios: Where Programming and Modeling Merge Even Morea">
- <div class="item_contents">The fact that e4, the next
- generation of Eclipse, is substantially based on EMF shows
- the importance of modeling within the Eclipse project.
- Therefore, it is not surprising that the majority of the 39
- participating projects in Helios come from the Eclipse
- Modeling Top-Level-Project. Let´s take a closer look
- at some of the more important new features.</div>
+ id="Eclipse Helios: Where Programming and Modeling Merge Even Morea"
+ >
+ <div class="item_contents">The fact that e4, the next generation of
+ Eclipse, is substantially based on EMF shows the importance of
+ modeling within the Eclipse project. Therefore, it is not surprising
+ that the majority of the 39 participating projects in Helios come
+ from the Eclipse Modeling Top-Level-Project. Let´s take a
+ closer look at some of the more important new features.</div>
</div>
</td>
</tr>
-
-
<tr>
<td>
<div id="Eclise Helios - A Few Interesting Features!">
- <a name="Eclise Helios - A Few Interesting Features!"
- class="norgie"
- onClick="t('Eclise Helios - A Few Interesting Features!','Eclise Helios - A Few Interesting Features!a')"></a>
- <a target="_blank"
+ <a name="Eclise Helios - A Few Interesting Features!" class="norgie"
+ onClick="t('Eclise Helios - A Few Interesting Features!','Eclise Helios - A Few Interesting Features!a')"
+ ></a> <a target="_blank"
href="http://eclipse-info.blogspot.com/2010/06/eclipse-helios-few-interesting-features.html
- ">Eclise Helios - A Few Interesting Features!</a>
+"
+ >Eclise Helios - A Few Interesting Features!</a>
</div>
</td>
<td>Madhu Samuel</td>
@@ -1063,24 +993,23 @@
<tr class="bottomBorder">
<td colspan="4">
<div id="Eclise Helios - A Few Interesting Features!a">
- <div class="item_contents">A year old wait is over. Helios is
- out in the wild. Today morning, I downloaded Helios. Oops,
- my friend of eclipse download link got stuck. I went to the
- download link for the common public - eclipse.org/downloads.
- There goes the Helios Modeling Package.</div>
+ <div class="item_contents">A year old wait is over. Helios is out in
+ the wild. Today morning, I downloaded Helios. Oops, my friend of
+ eclipse download link got stuck. I went to the download link for the
+ common public - eclipse.org/downloads. There goes the Helios
+ Modeling Package.</div>
</div>
</td>
</tr>
-
-
<tr>
<td>
<div id="Eclipse 3.6 Release - Helios">
<a name="Eclipse 3.6 Release - Helios" class="norgie"
- onClick="t('Eclipse 3.6 Release - Helios','Eclipse 3.6 Release - Heliosa')"></a>
- <a target="_blank"
+ onClick="t('Eclipse 3.6 Release - Helios','Eclipse 3.6 Release - Heliosa')"
+ ></a> <a target="_blank"
href="http://linuxfr.org/2010/06/23/27041.html
- ">Eclipse 3.6 Release - Helios</a>
+"
+ >Eclipse 3.6 Release - Helios</a>
</div>
</td>
<td>Cedric Brun</td>
@@ -1090,21 +1019,20 @@
<tr class="bottomBorder">
<td colspan="4">
<div id="Eclipse 3.6 Release - Heliosa">
- <div class="item_contents">Eclipse Helios finally arrived
- after a year of expectation, on June 23.</div>
+ <div class="item_contents">Eclipse Helios finally arrived after a year
+ of expectation, on June 23.</div>
</div>
</td>
</tr>
-
-
<tr>
<td>
<div id="Enter the New Eclipse - Helios">
<a name="Enter the New Eclipse - Helios" class="norgie"
- onClick="t('Enter the New Eclipse - Helios','Enter the New Eclipse - Heliosa')"></a>
- <a target="_blank"
+ onClick="t('Enter the New Eclipse - Helios','Enter the New Eclipse - Heliosa')"
+ ></a> <a target="_blank"
href="http://www.dzone.com/links/r/enter_the_new_eclipse_helios.html
- ">Enter the New Eclipse - Helios</a>
+"
+ >Enter the New Eclipse - Helios</a>
</div>
</td>
<td>Ian Elliot</td>
@@ -1114,23 +1042,22 @@
<tr class="bottomBorder">
<td colspan="4">
<div id="Enter the New Eclipse - Heliosa">
- <div class="item_contents">The sun has just set on Galileo,
- the previous version of the Eclipse IDE, and risen on Helios
- the latest version. It promises to be more stable, but its
- help and documentation are a big disappointment.</div>
+ <div class="item_contents">The sun has just set on Galileo, the
+ previous version of the Eclipse IDE, and risen on Helios the latest
+ version. It promises to be more stable, but its help and
+ documentation are a big disappointment.</div>
</div>
</td>
</tr>
-
-
<tr>
<td>
<div id="Git in Eclipse">
<a name="Git in Eclipse" class="norgie"
- onClick="t('Git in Eclipse','Git in Eclipsea')"></a> <a
- target="_blank"
+ onClick="t('Git in Eclipse','Git in Eclipsea')"
+ ></a> <a target="_blank"
href="http://eclipse.dzone.com/articles/git-eclipse
- ">Git in Eclipse</a>
+"
+ >Git in Eclipse</a>
</div>
</td>
<td>Mitchell Pronschinske</td>
@@ -1140,26 +1067,24 @@
<tr class="bottomBorder">
<td colspan="4">
<div id="Git in Eclipsea">
- <div class="item_contents">With today's release of Helios
- (Eclipse 3.6), the developers of EGit and JGit have
- finalized (a week early) version 0.8.4 for the Eclipse
- platform update. The incubating Git support in Eclipse was
- ranked #2 among new 3.6 platform additions by developer Ian
- Bull.</div>
+ <div class="item_contents">With today's release of Helios (Eclipse
+ 3.6), the developers of EGit and JGit have finalized (a week early)
+ version 0.8.4 for the Eclipse platform update. The incubating Git
+ support in Eclipse was ranked #2 among new 3.6 platform additions by
+ developer Ian Bull.</div>
</div>
</td>
</tr>
-
-
<tr>
<td>
<div id="EclipseLink 2.1.0 Helios Release Now Available">
<a name="EclipseLink 2.1.0 Helios Release Now Available"
class="norgie"
- onClick="t('EclipseLink 2.1.0 Helios Release Now Available','EclipseLink 2.1.0 Helios Release Now Availablea')"></a>
- <a target="_blank"
+ onClick="t('EclipseLink 2.1.0 Helios Release Now Available','EclipseLink 2.1.0 Helios Release Now Availablea')"
+ ></a> <a target="_blank"
href="http://eclipselink.blogspot.com/2010/06/eclipselink-210-helios-release-now.html
- ">EclipseLink 2.1.0 Helios Release Now Available</a>
+"
+ >EclipseLink 2.1.0 Helios Release Now Available</a>
</div>
</td>
<td>Peter Krogh and Douglas Clarke</td>
@@ -1169,24 +1094,20 @@
<tr class="bottomBorder">
<td colspan="4">
<div id="EclipseLink 2.1.0 Helios Release Now Availablea">
- <div class="item_contents">It is with great pleasure that I
- would like to announce the release of EclipseLink 2.1.0
- (Helios). This release of brings a number of exciting
- features many of which were voted on, and chosen by the
- community.</div>
+ <div class="item_contents">It is with great pleasure that I would like
+ to announce the release of EclipseLink 2.1.0 (Helios). This release
+ of brings a number of exciting features many of which were voted on,
+ and chosen by the community.</div>
</div>
</td>
</tr>
-
-
<tr>
<td>
<div id="Linux Tools 0.6 Released as Part of Helios">
- <a name="Linux Tools 0.6 Released as Part of Helios"
- class="norgie"
- onClick="t('Linux Tools 0.6 Released as Part of Helios','Linux Tools 0.6 Released as Part of Heliosa')"></a>
- <a target="_blank" href="http://overholt.ca/wp/?p=177
- ">Linux Tools 0.6 Released as Part of Helios</a>
+ <a name="Linux Tools 0.6 Released as Part of Helios" class="norgie"
+ onClick="t('Linux Tools 0.6 Released as Part of Helios','Linux Tools 0.6 Released as Part of Heliosa')"
+ ></a> <a target="_blank" href="http://overholt.ca/wp/?p=177
+">Linux Tools 0.6 Released as Part of Helios</a>
</div>
</td>
<td>Andrew Overholt</td>
@@ -1196,22 +1117,21 @@
<tr class="bottomBorder">
<td colspan="4">
<div id="Linux Tools 0.6 Released as Part of Heliosa">
- <div class="item_contents">The Eclipse Linux Tools project is
- pleased to announce our 0.6 release which is a part of the
- Eclipse Simultaneous Release known this year as Helios.</div>
+ <div class="item_contents">The Eclipse Linux Tools project is pleased
+ to announce our 0.6 release which is a part of the Eclipse
+ Simultaneous Release known this year as Helios.</div>
</div>
</td>
</tr>
-
-
<tr>
<td>
<div id="WTP 3.2 Released">
<a name="WTP 3.2 Released" class="norgie"
- onClick="t('WTP 3.2 Released','WTP 3.2 Releaseda')"></a> <a
- target="_blank"
+ onClick="t('WTP 3.2 Released','WTP 3.2 Releaseda')"
+ ></a> <a target="_blank"
href="http://eclipse.org/webtools/releases/3.2.0/
- ">WTP 3.2 Released</a>
+"
+ >WTP 3.2 Released</a>
</div>
</td>
<td>Webtools News</td>
@@ -1221,25 +1141,23 @@
<tr class="bottomBorder">
<td colspan="4">
<div id="WTP 3.2 Releaseda">
- <div class="item_contents">The Web Tools Platform's 3.2
- release is now available!. WTP 3.2 adds support for
- creating, running, and debugging applications using Java EE
- 6, including Servlet 3.0, JPA 2.0, JSF 2.0, EJB 3.1, and
- JAX-RS 1.1 technologies, plus deployment to updated server
- runtimes, and support for XPath 2.0.</div>
+ <div class="item_contents">The Web Tools Platform's 3.2 release is now
+ available!. WTP 3.2 adds support for creating, running, and
+ debugging applications using Java EE 6, including Servlet 3.0, JPA
+ 2.0, JSF 2.0, EJB 3.1, and JAX-RS 1.1 technologies, plus deployment
+ to updated server runtimes, and support for XPath 2.0.</div>
</div>
</td>
</tr>
-
-
<tr>
<td>
<div id="BIRT 2.6 Released">
<a name="BIRT 2.6 Released" class="norgie"
- onClick="t('BIRT 2.6 Released','BIRT 2.6 Releaseda')"></a> <a
- target="_blank"
+ onClick="t('BIRT 2.6 Released','BIRT 2.6 Releaseda')"
+ ></a> <a target="_blank"
href="http://birtworld.blogspot.com/2010/06/birt-26-released.html
- ">BIRT 2.6 Released</a>
+"
+ >BIRT 2.6 Released</a>
</div>
</td>
<td>Jason Weathersby</td>
@@ -1249,24 +1167,23 @@
<tr class="bottomBorder">
<td colspan="4">
<div id="BIRT 2.6 Releaseda">
- <div class="item_contents">BIRT 2.6 is now available and with
- this release many improvements and new features are
- available. Charting with BIRT has been improved adding
- support for a Radar/Polar chart type, palette hash patterns,
- better JPG quality, and improved SVG to PDF support.</div>
+ <div class="item_contents">BIRT 2.6 is now available and with this
+ release many improvements and new features are available. Charting
+ with BIRT has been improved adding support for a Radar/Polar chart
+ type, palette hash patterns, better JPG quality, and improved SVG to
+ PDF support.</div>
</div>
</td>
</tr>
-
-
<tr>
<td>
<div id="Helios: The Train Has Arrived">
<a name="Helios: The Train Has Arrived" class="norgie"
- onClick="t('Helios: The Train Has Arrived','Helios: The Train Has Arriveda')"></a>
- <a target="_blank"
+ onClick="t('Helios: The Train Has Arrived','Helios: The Train Has Arriveda')"
+ ></a> <a target="_blank"
href="http://ianskerrett.wordpress.com/2010/06/23/helios-the-train-has-arrived/
- ">Helios: The Train Has Arrived</a>
+"
+ >Helios: The Train Has Arrived</a>
</div>
</td>
<td>Ian Skerrett</td>
@@ -1276,24 +1193,22 @@
<tr class="bottomBorder">
<td colspan="4">
<div id="Helios: The Train Has Arriveda">
- <div class="item_contents">The Eclipse Helios release is now
- available for download. Each year I am amazed how the
- Eclipse community is release on such a predictable schedule.
- Congratulations to all that help make it happen.</div>
+ <div class="item_contents">The Eclipse Helios release is now available
+ for download. Each year I am amazed how the Eclipse community is
+ release on such a predictable schedule. Congratulations to all that
+ help make it happen.</div>
</div>
</td>
</tr>
-
-
<tr>
<td>
<div id="Eclipse Helios: What’s New in JDT">
- <a name="Eclipse Helios: What’s New in JDT"
- class="norgie"
- onClick="t('Eclipse Helios: What’s New in JDT','Eclipse Helios: What’s New in JDTa')"></a>
- <a target="_blank"
+ <a name="Eclipse Helios: What’s New in JDT" class="norgie"
+ onClick="t('Eclipse Helios: What’s New in JDT','Eclipse Helios: What’s New in JDTa')"
+ ></a> <a target="_blank"
href="http://it-republik.de/jaxenter/artikel/Eclipse-Helios-Was-gibt%92s-Neues-in-JDT-3162.html
- ">Eclipse Helios: What’s New in JDT</a>
+"
+ >Eclipse Helios: What’s New in JDT</a>
</div>
</td>
<td>Marc Teufel</td>
@@ -1303,26 +1218,24 @@
<tr class="bottomBorder">
<td colspan="4">
<div id="Eclipse Helios: What’s New in JDTa">
- <div class="item_contents">Helios is the fifth so-called
- simultaneous release of the Eclipse Foundation. Following
- Callisto, Europa, Ganymede and Galileo, the Helios release
- comprises 39 different Eclipse projects – and like
- every year, both the Eclipse Platform and the Java
- Development Tools (JDT) are back in updated versions. Let's
- dive into and have a look at what's new in JDT.</div>
+ <div class="item_contents">Helios is the fifth so-called simultaneous
+ release of the Eclipse Foundation. Following Callisto, Europa,
+ Ganymede and Galileo, the Helios release comprises 39 different
+ Eclipse projects – and like every year, both the Eclipse
+ Platform and the Java Development Tools (JDT) are back in updated
+ versions. Let's dive into and have a look at what's new in JDT.</div>
</div>
</td>
</tr>
-
-
<tr>
<td>
<div id="Eclipse Helios Simultaneous Release">
<a name="Eclipse Helios Simultaneous Release" class="norgie"
- onClick="t('Eclipse Helios Simultaneous Release','Eclipse Helios Simultaneous Releasea')"></a>
- <a target="_blank"
+ onClick="t('Eclipse Helios Simultaneous Release','Eclipse Helios Simultaneous Releasea')"
+ ></a> <a target="_blank"
href="http://www.infoq.com/news/2010/06/eclipse-helios
- ">Eclipse Helios Simultaneous Release</a>
+"
+ >Eclipse Helios Simultaneous Release</a>
</div>
</td>
<td>Alex Blewitt</td>
@@ -1332,29 +1245,27 @@
<tr class="bottomBorder">
<td colspan="4">
<div id="Eclipse Helios Simultaneous Releasea">
- <div class="item_contents">The Eclipse foundation today
- announced the release of Eclipse Helios, bringing 39
- different projects to the same station for the seventh
- annual release train. The Eclipse projects are managed in an
- agile fashion, releasing seven milestone builds throughout
- the year and then a number of release candidates in the
- weeks leading up to June each year. Instead of varying the
- delivery dates, the Eclipse projects vary the content in
- each milestone whilst focussing on the quality and backward
+ <div class="item_contents">The Eclipse foundation today announced the
+ release of Eclipse Helios, bringing 39 different projects to the
+ same station for the seventh annual release train. The Eclipse
+ projects are managed in an agile fashion, releasing seven milestone
+ builds throughout the year and then a number of release candidates
+ in the weeks leading up to June each year. Instead of varying the
+ delivery dates, the Eclipse projects vary the content in each
+ milestone whilst focussing on the quality and backward
compatibility.</div>
</div>
</td>
</tr>
-
-
<tr>
<td>
<div id="Top 10 Eclipse Helios Features">
<a name="Top 10 Eclipse Helios Features" class="norgie"
- onClick="t('Top 10 Eclipse Helios Features','Top 10 Eclipse Helios Featuresa')"></a>
- <a target="_blank"
+ onClick="t('Top 10 Eclipse Helios Features','Top 10 Eclipse Helios Featuresa')"
+ ></a> <a target="_blank"
href="http://eclipsesource.com/blogs/2010/06/23/top-10-eclipse-helios-features/
- ">Top 10 Eclipse Helios Features</a>
+"
+ >Top 10 Eclipse Helios Features</a>
</div>
</td>
<td>Ian Bull</td>
@@ -1364,27 +1275,24 @@
<tr class="bottomBorder">
<td colspan="4">
<div id="Top 10 Eclipse Helios Featuresa">
- <div class="item_contents">Two weeks ago I asked you to think
- about high quality software that has been consistently
- delivered on-time. Think about software that is used by
- millions of people world-wide, built by hundreds of
- developers, free to use and open to everybody and anybody.
- Think about software that spans domains, runs on the
- smallest of devices and powers the worlds largest
- enterprises.</div>
+ <div class="item_contents">Two weeks ago I asked you to think about
+ high quality software that has been consistently delivered on-time.
+ Think about software that is used by millions of people world-wide,
+ built by hundreds of developers, free to use and open to everybody
+ and anybody. Think about software that spans domains, runs on the
+ smallest of devices and powers the worlds largest enterprises.</div>
</div>
</td>
</tr>
-
-
<tr>
<td>
<div id="Eclipse 3.6">
<a name="Eclipse 3.6" class="norgie"
- onClick="t('Eclipse 3.6','Eclipse 3.6a')"></a> <a
- target="_blank"
+ onClick="t('Eclipse 3.6','Eclipse 3.6a')"
+ ></a> <a target="_blank"
href="http://www.inforw.de/content/doku.php/blog/277
- ">Eclipse 3.6</a>
+"
+ >Eclipse 3.6</a>
</div>
</td>
<td>Rainer Weinhold</td>
@@ -1394,24 +1302,21 @@
<tr class="bottomBorder">
<td colspan="4">
<div id="Eclipse 3.6a">
- <div class="item_contents">Eclipse 3.6 is now released! I've
- worked for about a week now with the last RC and am very
- satisfied. So far everything is stable and above all, the
- features work on Windows 7.</div>
+ <div class="item_contents">Eclipse 3.6 is now released! I've worked
+ for about a week now with the last RC and am very satisfied. So far
+ everything is stable and above all, the features work on Windows 7.</div>
</div>
</td>
</tr>
-
-
<tr>
<td>
<div id="Let’s See What’s New in Eclipse 3.6">
- <a name="Let’s See What’s New in Eclipse 3.6"
- class="norgie"
- onClick="t('Let’s See What’s New in Eclipse 3.6','Let’s See What’s New in Eclipse 3.6a')"></a>
- <a target="_blank"
+ <a name="Let’s See What’s New in Eclipse 3.6" class="norgie"
+ onClick="t('Let’s See What’s New in Eclipse 3.6','Let’s See What’s New in Eclipse 3.6a')"
+ ></a> <a target="_blank"
href="http://samolisov.blogspot.com/2010/05/eclipse-36.html
- ">Let’s See What’s New in Eclipse 3.6</a>
+"
+ >Let’s See What’s New in Eclipse 3.6</a>
</div>
</td>
<td>Pavel Samolisov</td>
@@ -1421,25 +1326,23 @@
<tr class="bottomBorder">
<td colspan="4">
<div id="Let’s See What’s New in Eclipse 3.6a">
- <div class="item_contents">Today the Eclipse development team
- has promised to collect the first release candidate of the
- new version of this wonderful IDE and platform. Almost a
- year ago, I took the trouble to write about what's new in
- Eclipse Galileo, and now I'll tell you about the new version
- - Eclipse Helios.</div>
+ <div class="item_contents">Today the Eclipse development team has
+ promised to collect the first release candidate of the new version
+ of this wonderful IDE and platform. Almost a year ago, I took the
+ trouble to write about what's new in Eclipse Galileo, and now I'll
+ tell you about the new version - Eclipse Helios.</div>
</div>
</td>
</tr>
-
-
<tr>
<td>
<div id="Helios Adds New Fire to Eclipse">
<a name="Helios Adds New Fire to Eclipse" class="norgie"
- onClick="t('Helios Adds New Fire to Eclipse','Helios Adds New Fire to Eclipsea')"></a>
- <a target="_blank"
+ onClick="t('Helios Adds New Fire to Eclipse','Helios Adds New Fire to Eclipsea')"
+ ></a> <a target="_blank"
href="http://www.dzone.com/links/r/helios_adds_new_fire_to_eclipse.html
- ">Helios Adds New Fire to Eclipse</a>
+"
+ >Helios Adds New Fire to Eclipse</a>
</div>
</td>
<td>Mitchell Pronschinske</td>
@@ -1449,26 +1352,24 @@
<tr class="bottomBorder">
<td colspan="4">
<div id="Helios Adds New Fire to Eclipsea">
- <div class="item_contents">It's that time again! The annual
- updating of numerous Eclipse platform projects and the
- classic IDE that made it ubiquitous. Eclipse 3.6 "Helios" is
- more than just a new IDE release, this year it consists of
- 39 Eclipse projects from SOA tooling, to a 'marketplace'
- client for Eclipse plugins, to a platform for mobile
- development.</div>
+ <div class="item_contents">It's that time again! The annual updating
+ of numerous Eclipse platform projects and the classic IDE that made
+ it ubiquitous. Eclipse 3.6 "Helios" is more than just a new IDE
+ release, this year it consists of 39 Eclipse projects from SOA
+ tooling, to a 'marketplace' client for Eclipse plugins, to a
+ platform for mobile development.</div>
</div>
</td>
</tr>
-
-
<tr>
<td>
<div id="A Review of Eclipse Helios">
<a name="A Review of Eclipse Helios" class="norgie"
- onClick="t('A Review of Eclipse Helios','A Review of Eclipse Heliosa')"></a>
- <a target="_blank"
+ onClick="t('A Review of Eclipse Helios','A Review of Eclipse Heliosa')"
+ ></a> <a target="_blank"
href="http://willcode4beer.com/opinion.jsp?set=helios_review
- ">A Review of Eclipse Helios</a>
+"
+ >A Review of Eclipse Helios</a>
</div>
</td>
<td>Paul Davis</td>
@@ -1478,24 +1379,22 @@
<tr class="bottomBorder">
<td colspan="4">
<div id="A Review of Eclipse Heliosa">
- <div class="item_contents">As a Friends of Eclipse so, it
- turns out, I'm able to download the latest version, Helios,
- a day early. The first thing I decided to do was create a
- new workspace (just in case).</div>
+ <div class="item_contents">As a Friends of Eclipse so, it turns out,
+ I'm able to download the latest version, Helios, a day early. The
+ first thing I decided to do was create a new workspace (just in
+ case).</div>
</div>
</td>
</tr>
-
-
<tr>
<td>
<div id="Git Support, Top Eclipse Helios Feature #2">
- <a name="Git Support, Top Eclipse Helios Feature #2"
- class="norgie"
- onClick="t('Git Support, Top Eclipse Helios Feature #2','Git Support, Top Eclipse Helios Feature #2a')"></a>
- <a target="_blank"
+ <a name="Git Support, Top Eclipse Helios Feature #2" class="norgie"
+ onClick="t('Git Support, Top Eclipse Helios Feature #2','Git Support, Top Eclipse Helios Feature #2a')"
+ ></a> <a target="_blank"
href="http://eclipsesource.com/blogs/2010/06/22/git-support-eclipse-helios-feature-2/
- ">Git Support, Top Eclipse Helios Feature #2</a>
+"
+ >Git Support, Top Eclipse Helios Feature #2</a>
</div>
</td>
<td>Ian Bull</td>
@@ -1505,28 +1404,26 @@
<tr class="bottomBorder">
<td colspan="4">
<div id="Git Support, Top Eclipse Helios Feature #2a">
- <div class="item_contents">Only 1 more day until Eclipse
- Helios is release and we are down to my Top 2 features. Over
- the life of Eclipse (Jeff McAffer tells me that he’s
- been working on Eclipse since 1999) a lot has changed.
- Eclipse started its life inside OTI/IBM. In November 2001
- the Eclipse Consortium was announced and Eclipse was
- released as ‘Open Source’. For the next few
- years Eclipse grew, but was still mostly supported by a few
- large companies.</div>
+ <div class="item_contents">Only 1 more day until Eclipse Helios is
+ release and we are down to my Top 2 features. Over the life of
+ Eclipse (Jeff McAffer tells me that he’s been working on
+ Eclipse since 1999) a lot has changed. Eclipse started its life
+ inside OTI/IBM. In November 2001 the Eclipse Consortium was
+ announced and Eclipse was released as ‘Open Source’. For
+ the next few years Eclipse grew, but was still mostly supported by a
+ few large companies.</div>
</div>
</td>
</tr>
-
-
<tr>
<td>
<div id="Eclipse Helios RC4 Review">
<a name="Eclipse Helios RC4 Review" class="norgie"
- onClick="t('Eclipse Helios RC4 Review','Eclipse Helios RC4 Reviewa')"></a>
- <a target="_blank"
+ onClick="t('Eclipse Helios RC4 Review','Eclipse Helios RC4 Reviewa')"
+ ></a> <a target="_blank"
href="http://tarlogonjava.blogspot.com/2010/06/eclipse-helios-rc4-review.html
- ">Eclipse Helios RC4 Review</a>
+"
+ >Eclipse Helios RC4 Review</a>
</div>
</td>
<td>Michael Elman</td>
@@ -1536,28 +1433,25 @@
<tr class="bottomBorder">
<td colspan="4">
<div id="Eclipse Helios RC4 Reviewa">
- <div class="item_contents">Some time ago I have downloaded the
- JEE edition of the Eclipse Helios RC4. And here comes a
- review in order to win a Helios t-shirt. I'll start with
- bugs I found till now. I didn't find many. Continue with
- features I still miss, and try to end with some positive
- note about the features I liked.</div>
+ <div class="item_contents">Some time ago I have downloaded the JEE
+ edition of the Eclipse Helios RC4. And here comes a review in order
+ to win a Helios t-shirt. I'll start with bugs I found till now. I
+ didn't find many. Continue with features I still miss, and try to
+ end with some positive note about the features I liked.</div>
</div>
</td>
</tr>
-
-
<tr>
<td>
- <div
- id="EMF, Riena and RAP Integration, Top Eclipse Helios Feature #3">
+ <div id="EMF, Riena and RAP Integration, Top Eclipse Helios Feature #3">
<a
name="EMF, Riena and RAP Integration, Top Eclipse Helios Feature #3"
class="norgie"
- onClick="t('EMF, Riena and RAP Integration, Top Eclipse Helios Feature #3','EMF, Riena and RAP Integration, Top Eclipse Helios Feature #3a')"></a>
- <a target="_blank"
+ onClick="t('EMF, Riena and RAP Integration, Top Eclipse Helios Feature #3','EMF, Riena and RAP Integration, Top Eclipse Helios Feature #3a')"
+ ></a> <a target="_blank"
href="http://eclipsesource.com/blogs/2010/06/21/emf-riena-and-rap-integration-top-eclipse-helios-feature-3/
- ">EMF, Riena and RAP Integration, Top Eclipse Helios Feature #3</a>
+"
+ >EMF, Riena and RAP Integration, Top Eclipse Helios Feature #3</a>
</div>
</td>
<td>Ian Bull</td>
@@ -1566,27 +1460,24 @@
</tr>
<tr class="bottomBorder">
<td colspan="4">
- <div
- id="EMF, Riena and RAP Integration, Top Eclipse Helios Feature #3a">
- <div class="item_contents">Well here we are, it’s
- release week. Eclipse 3.6 — Helios — will be
- available on Wednesday June 23rd. It also means that
- I’m into my Top 3 features for this years release. For
- the past 7 days I’ve been presenting some of the New
- and Noteworthy features of this years release.</div>
+ <div id="EMF, Riena and RAP Integration, Top Eclipse Helios Feature #3a">
+ <div class="item_contents">Well here we are, it’s release week.
+ Eclipse 3.6 — Helios — will be available on Wednesday
+ June 23rd. It also means that I’m into my Top 3 features for
+ this years release. For the past 7 days I’ve been presenting
+ some of the New and Noteworthy features of this years release.</div>
</div>
</td>
</tr>
-
-
<tr>
<td>
<div id="Eclipse Mania is Back with Helios">
<a name="Eclipse Mania is Back with Helios" class="norgie"
- onClick="t('Eclipse Mania is Back with Helios','Eclipse Mania is Back with Heliosa')"></a>
- <a target="_blank"
+ onClick="t('Eclipse Mania is Back with Helios','Eclipse Mania is Back with Heliosa')"
+ ></a> <a target="_blank"
href="http://blog.suranaamit.com/2010/06/eclipse-mania-is-back-with-helios.html
- ">Eclipse Mania is Back with Helios</a>
+"
+ >Eclipse Mania is Back with Helios</a>
</div>
</td>
<td>Amit Surana</td>
@@ -1596,26 +1487,24 @@
<tr class="bottomBorder">
<td colspan="4">
<div id="Eclipse Mania is Back with Heliosa">
- <div class="item_contents">Last year around the same time I
- blogged about new upcoming release of Eclipse Galileo. An
- year has passed since then and Eclipse is back again with
- new version called Helios which will be released on June
- 23rd. Eclipse as Wayne Beaton says is more than just an IDE.
- Eclipse initially may have started off as an IDE, but today
- Eclipse has evolved into a platform.</div>
+ <div class="item_contents">Last year around the same time I blogged
+ about new upcoming release of Eclipse Galileo. An year has passed
+ since then and Eclipse is back again with new version called Helios
+ which will be released on June 23rd. Eclipse as Wayne Beaton says is
+ more than just an IDE. Eclipse initially may have started off as an
+ IDE, but today Eclipse has evolved into a platform.</div>
</div>
</td>
</tr>
-
-
<tr>
<td>
<div id="Eclipse 3.6 (Helios)">
<a name="Eclipse 3.6 (Helios)" class="norgie"
- onClick="t('Eclipse 3.6 (Helios)','Eclipse 3.6 (Helios)a')"></a>
- <a target="_blank"
+ onClick="t('Eclipse 3.6 (Helios)','Eclipse 3.6 (Helios)a')"
+ ></a> <a target="_blank"
href="http://cana.web.id/blog/eclipse-3-6-helios.CanA
- ">Eclipse 3.6 (Helios)</a>
+"
+ >Eclipse 3.6 (Helios)</a>
</div>
</td>
<td>Rencana Tarigan</td>
@@ -1625,24 +1514,22 @@
<tr class="bottomBorder">
<td colspan="4">
<div id="Eclipse 3.6 (Helios)a">
- <div class="item_contents">It's already been a year since the
- Eclipse Galileo was launched. The new version of Eclipse is
- Eclipse 3.6 with the name "Helios". It will be released on
- June 23, 2010.</div>
+ <div class="item_contents">It's already been a year since the Eclipse
+ Galileo was launched. The new version of Eclipse is Eclipse 3.6 with
+ the name "Helios". It will be released on June 23, 2010.</div>
</div>
</td>
</tr>
-
-
<tr>
<td>
<div id="MarketPlace Client, Top Eclipse Helios Feature #4">
<a name="MarketPlace Client, Top Eclipse Helios Feature #4"
class="norgie"
- onClick="t('MarketPlace Client, Top Eclipse Helios Feature #4','MarketPlace Client, Top Eclipse Helios Feature #4a')"></a>
- <a target="_blank"
+ onClick="t('MarketPlace Client, Top Eclipse Helios Feature #4','MarketPlace Client, Top Eclipse Helios Feature #4a')"
+ ></a> <a target="_blank"
href="http://eclipsesource.com/blogs/2010/06/18/mpc_eclipse_helios_feature_4/
- ">MarketPlace Client, Top Eclipse Helios Feature #4</a>
+"
+ >MarketPlace Client, Top Eclipse Helios Feature #4</a>
</div>
</td>
<td>Ian Bull</td>
@@ -1652,30 +1539,27 @@
<tr class="bottomBorder">
<td colspan="4">
<div id="MarketPlace Client, Top Eclipse Helios Feature #4a">
- <div class="item_contents">As most of you know, Eclipse Helios
- will be released next week. For regular readers of my blog
- (and PlanetEclipse.org), you know that I’ve been
- counting down some of the new features available in this
- release. During this series I have received comments (both
- in the comment fields, and on places like twitter) that
- essentially read: I really like Eclipse except it
- doesn’t have an editor for XYZ. Or, when I get the
- following package, it has feature ABC which I don’t
- want. Obviously we can’t please all the people all of
- the time.</div>
+ <div class="item_contents">As most of you know, Eclipse Helios will be
+ released next week. For regular readers of my blog (and
+ PlanetEclipse.org), you know that I’ve been counting down some
+ of the new features available in this release. During this series I
+ have received comments (both in the comment fields, and on places
+ like twitter) that essentially read: I really like Eclipse except it
+ doesn’t have an editor for XYZ. Or, when I get the following
+ package, it has feature ABC which I don’t want. Obviously we
+ can’t please all the people all of the time.</div>
</div>
</td>
</tr>
-
-
<tr>
<td>
<div id="Awesomeness in Helios">
<a name="Awesomeness in Helios" class="norgie"
- onClick="t('Awesomeness in Helios','Awesomeness in Heliosa')"></a>
- <a target="_blank"
+ onClick="t('Awesomeness in Helios','Awesomeness in Heliosa')"
+ ></a> <a target="_blank"
href="http://delaltctrl.blogspot.com/2010/06/awesomeness-in-helios.html
- ">Awesomeness in Helios</a>
+"
+ >Awesomeness in Helios</a>
</div>
</td>
<td>Del Myers</td>
@@ -1685,27 +1569,24 @@
<tr class="bottomBorder">
<td colspan="4">
<div id="Awesomeness in Heliosa">
- <div class="item_contents">There was a recent post by Wayne
- about how Eclipse is an IDE Platform. For all practical
- purposes, that is the way that I use it. But what is really
- awesome about Eclipse as an IDE platform is that it is an
- IDE platform that just keeps improving.</div>
+ <div class="item_contents">There was a recent post by Wayne about how
+ Eclipse is an IDE Platform. For all practical purposes, that is the
+ way that I use it. But what is really awesome about Eclipse as an
+ IDE platform is that it is an IDE platform that just keeps
+ improving.</div>
</div>
</td>
</tr>
-
-
<tr>
<td>
- <div
- id="p2 API and the b3 Aggregator, Top Eclipse Helios Feature #5">
- <a
- name="p2 API and the b3 Aggregator, Top Eclipse Helios Feature #5"
+ <div id="p2 API and the b3 Aggregator, Top Eclipse Helios Feature #5">
+ <a name="p2 API and the b3 Aggregator, Top Eclipse Helios Feature #5"
class="norgie"
- onClick="t('p2 API and the b3 Aggregator, Top Eclipse Helios Feature #5','p2 API and the b3 Aggregator, Top Eclipse Helios Feature #5a')"></a>
- <a target="_blank"
+ onClick="t('p2 API and the b3 Aggregator, Top Eclipse Helios Feature #5','p2 API and the b3 Aggregator, Top Eclipse Helios Feature #5a')"
+ ></a> <a target="_blank"
href="http://eclipsesource.com/blogs/2010/06/17/p2-api-and-the-b3-aggregator-top-eclipse-helios-feature-5/
- ">p2 API and the b3 Aggregator, Top Eclipse Helios Feature #5</a>
+"
+ >p2 API and the b3 Aggregator, Top Eclipse Helios Feature #5</a>
</div>
</td>
<td>Ian Bull</td>
@@ -1714,30 +1595,26 @@
</tr>
<tr class="bottomBorder">
<td colspan="4">
- <div
- id="p2 API and the b3 Aggregator, Top Eclipse Helios Feature #5a">
- <div class="item_contents">The official Helios release is less
- than 1 week away, and we are now into the Top 5 Features
- that I’m most excited about. Over the past week
- I’ve been highlighting some of upcoming features of
- the Eclipse Helios release. These features include:
- improvements to the Java Development Tools, Plug-in
- Development Environment, API Tools and the Eclipse Platform.
+ <div id="p2 API and the b3 Aggregator, Top Eclipse Helios Feature #5a">
+ <div class="item_contents">The official Helios release is less than 1
+ week away, and we are now into the Top 5 Features that I’m
+ most excited about. Over the past week I’ve been highlighting
+ some of upcoming features of the Eclipse Helios release. These
+ features include: improvements to the Java Development Tools,
+ Plug-in Development Environment, API Tools and the Eclipse Platform.
Number 5 on my Top 10 List is: p2 API and the b3 Aggregator.</div>
</div>
</td>
</tr>
-
-
<tr>
<td>
<div id="Customizing Error Messages in Xtext 1.0">
- <a name="Customizing Error Messages in Xtext 1.0"
- class="norgie"
- onClick="t('Customizing Error Messages in Xtext 1.0','Customizing Error Messages in Xtext 1.0a')"></a>
- <a target="_blank"
+ <a name="Customizing Error Messages in Xtext 1.0" class="norgie"
+ onClick="t('Customizing Error Messages in Xtext 1.0','Customizing Error Messages in Xtext 1.0a')"
+ ></a> <a target="_blank"
href="http://zarnekow.blogspot.com/2010/06/customizing-error-messages-in-xtext-10.html
- ">Customizing Error Messages in Xtext 1.0</a>
+"
+ >Customizing Error Messages in Xtext 1.0</a>
</div>
</td>
<td>Sebastian Zarenkow</td>
@@ -1747,26 +1624,24 @@
<tr class="bottomBorder">
<td colspan="4">
<div id="Customizing Error Messages in Xtext 1.0a">
- <div class="item_contents">As the Eclipse Helios Release is
- around the corner I'll use the chance to describe some nice
- odds and ends in Xtext 1.0. One of which is a newly
- introduced API that allows to customize the default messages
- for parse errors and linking diagnostics.</div>
+ <div class="item_contents">As the Eclipse Helios Release is around the
+ corner I'll use the chance to describe some nice odds and ends in
+ Xtext 1.0. One of which is a newly introduced API that allows to
+ customize the default messages for parse errors and linking
+ diagnostics.</div>
</div>
</td>
</tr>
-
-
<tr>
<td>
<div id="Points of Conditional Debugging in Eclipse Helios 3.6">
- <a
- name="Points of Conditional Debugging in Eclipse Helios 3.6"
+ <a name="Points of Conditional Debugging in Eclipse Helios 3.6"
class="norgie"
- onClick="t('Points of Conditional Debugging in Eclipse Helios 3.6','Points of Conditional Debugging in Eclipse Helios 3.6a')"></a>
- <a target="_blank"
+ onClick="t('Points of Conditional Debugging in Eclipse Helios 3.6','Points of Conditional Debugging in Eclipse Helios 3.6a')"
+ ></a> <a target="_blank"
href="http://sysdent.net23.net/2010/06/17/puntos-de-depuracion-condicionales-en-eclipse-helios-36/
- ">Points of Conditional Debugging in Eclipse Helios 3.6</a>
+"
+ >Points of Conditional Debugging in Eclipse Helios 3.6</a>
</div>
</td>
<td>Miguel Antonio Casallas Tarazona</td>
@@ -1777,25 +1652,22 @@
<td colspan="4">
<div id="Points of Conditional Debugging in Eclipse Helios 3.6a">
<div class="item_contents">Clearly, under perfect conditions a
- software application would never have unexpected behavior,
- and would always behave according to guidelines, would never
- fail and would never have any bugs.</div>
+ software application would never have unexpected behavior, and would
+ always behave according to guidelines, would never fail and would
+ never have any bugs.</div>
</div>
</td>
</tr>
-
-
<tr>
<td>
- <div
- id="Target Platform Improvements, Top Eclipse Helios Feature #6">
- <a
- name="Target Platform Improvements, Top Eclipse Helios Feature #6"
+ <div id="Target Platform Improvements, Top Eclipse Helios Feature #6">
+ <a name="Target Platform Improvements, Top Eclipse Helios Feature #6"
class="norgie"
- onClick="t('Target Platform Improvements, Top Eclipse Helios Feature #6','Target Platform Improvements, Top Eclipse Helios Feature #6a')"></a>
- <a target="_blank"
+ onClick="t('Target Platform Improvements, Top Eclipse Helios Feature #6','Target Platform Improvements, Top Eclipse Helios Feature #6a')"
+ ></a> <a target="_blank"
href="http://eclipsesource.com/blogs/2010/06/16/target-platform-improvements-top-eclipse-helios-feature-6/
- ">Target Platform Improvements, Top Eclipse Helios Feature #6</a>
+"
+ >Target Platform Improvements, Top Eclipse Helios Feature #6</a>
</div>
</td>
<td>Ian Bull</td>
@@ -1804,30 +1676,26 @@
</tr>
<tr class="bottomBorder">
<td colspan="4">
- <div
- id="Target Platform Improvements, Top Eclipse Helios Feature #6a">
- <div class="item_contents">There are three large groups of
- artifacts that play a key role while writing software. There
- are the tools you use, the code you write and the libraries
- you depend on. There is a large body of research studying
- the cognitive support provided by software development
- tools. There is also a number of tool centric development
- models. Facilities like Yoxos and the Eclipse Market Place
- help you manage these tool chains.</div>
+ <div id="Target Platform Improvements, Top Eclipse Helios Feature #6a">
+ <div class="item_contents">There are three large groups of artifacts
+ that play a key role while writing software. There are the tools you
+ use, the code you write and the libraries you depend on. There is a
+ large body of research studying the cognitive support provided by
+ software development tools. There is also a number of tool centric
+ development models. Facilities like Yoxos and the Eclipse Market
+ Place help you manage these tool chains.</div>
</div>
</td>
</tr>
-
-
<tr>
<td>
<div id="New and noteworthy in Helios (Eclipse 3.6)">
- <a name="New and noteworthy in Helios (Eclipse 3.6)"
- class="norgie"
- onClick="t('New and noteworthy in Helios (Eclipse 3.6)','New and noteworthy in Helios (Eclipse 3.6)a')"></a>
- <a target="_blank"
+ <a name="New and noteworthy in Helios (Eclipse 3.6)" class="norgie"
+ onClick="t('New and noteworthy in Helios (Eclipse 3.6)','New and noteworthy in Helios (Eclipse 3.6)a')"
+ ></a> <a target="_blank"
href="http://devdesignandstuff.blogspot.com/2010/06/new-and-noteworthy-in-helios-eclipse-36.html
- ">New and noteworthy in Helios (Eclipse 3.6)</a>
+"
+ >New and noteworthy in Helios (Eclipse 3.6)</a>
</div>
</td>
<td>Supriya Thengdi</td>
@@ -1837,25 +1705,23 @@
<tr class="bottomBorder">
<td colspan="4">
<div id="New and noteworthy in Helios (Eclipse 3.6)a">
- <div class="item_contents">I was just going through the latest
- build of Helios (eclipse 3.6) and thought a sharing of some
- new features is in order. For those who haven't heard what
- Helios is about, I suggest you go through the eclipse helios
- homepage.</div>
+ <div class="item_contents">I was just going through the latest build
+ of Helios (eclipse 3.6) and thought a sharing of some new features
+ is in order. For those who haven't heard what Helios is about, I
+ suggest you go through the eclipse helios homepage.</div>
</div>
</td>
</tr>
-
-
<tr>
<td>
<div id="Java IDE Improvements, Top Eclipse Helios Feature #7">
<a name="Java IDE Improvements, Top Eclipse Helios Feature #7"
class="norgie"
- onClick="t('Java IDE Improvements, Top Eclipse Helios Feature #7','Java IDE Improvements, Top Eclipse Helios Feature #7a')"></a>
- <a target="_blank"
+ onClick="t('Java IDE Improvements, Top Eclipse Helios Feature #7','Java IDE Improvements, Top Eclipse Helios Feature #7a')"
+ ></a> <a target="_blank"
href="http://eclipsesource.com/blogs/2010/06/15/java-ide-improvements-top-eclipse-helios-feature-7/
- ">Java IDE Improvements, Top Eclipse Helios Feature #7</a>
+"
+ >Java IDE Improvements, Top Eclipse Helios Feature #7</a>
</div>
</td>
<td>Ian Bull</td>
@@ -1865,25 +1731,24 @@
<tr class="bottomBorder">
<td colspan="4">
<div id="Java IDE Improvements, Top Eclipse Helios Feature #7a">
- <div class="item_contents">As Eclipse committers, we spend
- lots of time emphasizing that Eclipse is not just an
- Integrated Development Environment. Eclipse is a framework,
- a tooling platform, a collection of run-time technologies,
- an eco-system, etc… However, at the end of the day,
- an IDE is the primary use of Eclipse for many people.</div>
+ <div class="item_contents">As Eclipse committers, we spend lots of
+ time emphasizing that Eclipse is not just an Integrated Development
+ Environment. Eclipse is a framework, a tooling platform, a
+ collection of run-time technologies, an eco-system, etc…
+ However, at the end of the day, an IDE is the primary use of Eclipse
+ for many people.</div>
</div>
</td>
</tr>
-
-
<tr>
<td>
<div id="A Tour of Eclipse Helios">
<a name="A Tour of Eclipse Helios" class="norgie"
- onClick="t('A Tour of Eclipse Helios','A Tour of Eclipse Heliosa')"></a>
- <a target="_blank"
+ onClick="t('A Tour of Eclipse Helios','A Tour of Eclipse Heliosa')"
+ ></a> <a target="_blank"
href="https://www.ibm.com/developerworks/opensource/library/os-eclipse-helios/
- ">A Tour of Eclipse Helios</a>
+"
+ >A Tour of Eclipse Helios</a>
</div>
</td>
<td>Chris Aniszczyk</td>
@@ -1893,25 +1758,23 @@
<tr class="bottomBorder">
<td colspan="4">
<div id="A Tour of Eclipse Heliosa">
- <div class="item_contents">The Eclipse Helios simultaneous
- release of 39 Eclipse projects and 33 million lines of code
- showcases the diversity and innovation going on inside the
- Eclipse ecosystem. Get an overview of several projects,
- along with resources to find out more information.</div>
+ <div class="item_contents">The Eclipse Helios simultaneous release of
+ 39 Eclipse projects and 33 million lines of code showcases the
+ diversity and innovation going on inside the Eclipse ecosystem. Get
+ an overview of several projects, along with resources to find out
+ more information.</div>
</div>
</td>
</tr>
-
-
<tr>
<td>
<div id="Eclipse 3.6 (Helios) – A Quick Look">
- <a name="Eclipse 3.6 (Helios) – A Quick Look"
- class="norgie"
- onClick="t('Eclipse 3.6 (Helios) – A Quick Look','Eclipse 3.6 (Helios) – A Quick Looka')"></a>
- <a target="_blank"
+ <a name="Eclipse 3.6 (Helios) – A Quick Look" class="norgie"
+ onClick="t('Eclipse 3.6 (Helios) – A Quick Look','Eclipse 3.6 (Helios) – A Quick Looka')"
+ ></a> <a target="_blank"
href="http://aniruddhchitre.wordpress.com/2010/06/15/eclipse-3-6-helios-a-quick-look/
- ">Eclipse 3.6 (Helios) – A Quick Look</a>
+"
+ >Eclipse 3.6 (Helios) – A Quick Look</a>
</div>
</td>
<td>Aniruddh Chitre</td>
@@ -1921,27 +1784,24 @@
<tr class="bottomBorder">
<td colspan="4">
<div id="Eclipse 3.6 (Helios) – A Quick Looka">
- <div class="item_contents">The Eclipse 3.6 (Helios) release is
- nearing and as always its pretty exciting. The 3.x releases
- have all added a lot of features which make Java and J2EE
- development much more easier, exciting and fun. So I decided
- to try it out and write about some of the new features it
- has. I primarily use Eclipse for J2EE so my review is more
- focussed on JDT and Java related features.</div>
+ <div class="item_contents">The Eclipse 3.6 (Helios) release is nearing
+ and as always its pretty exciting. The 3.x releases have all added a
+ lot of features which make Java and J2EE development much more
+ easier, exciting and fun. So I decided to try it out and write about
+ some of the new features it has. I primarily use Eclipse for J2EE so
+ my review is more focussed on JDT and Java related features.</div>
</div>
</td>
</tr>
-
-
<tr>
<td>
<div id="Eclipse Helios Preview for Java Developers">
- <a name="Eclipse Helios Preview for Java Developers"
- class="norgie"
- onClick="t('Eclipse Helios Preview for Java Developers','Eclipse Helios Preview for Java Developersa')"></a>
- <a target="_blank"
+ <a name="Eclipse Helios Preview for Java Developers" class="norgie"
+ onClick="t('Eclipse Helios Preview for Java Developers','Eclipse Helios Preview for Java Developersa')"
+ ></a> <a target="_blank"
href="http://stronglytypedblog.blogspot.com/2010/06/eclipse-helios-preview-for-java.html
- ">Eclipse Helios Preview for Java Developers</a>
+"
+ >Eclipse Helios Preview for Java Developers</a>
</div>
</td>
<td>Nick Wiedenbrueck</td>
@@ -1951,23 +1811,21 @@
<tr class="bottomBorder">
<td colspan="4">
<div id="Eclipse Helios Preview for Java Developersa">
- <div class="item_contents">The final release of the new
- Eclipse 3.6 - Helios is coming close on June 23. Here is a
- short overview of some of the new features for Java
- developers.</div>
+ <div class="item_contents">The final release of the new Eclipse 3.6 -
+ Helios is coming close on June 23. Here is a short overview of some
+ of the new features for Java developers.</div>
</div>
</td>
</tr>
-
-
<tr>
<td>
<div id="Eclipse Helios (3.6 RC4)">
<a name="Eclipse Helios (3.6 RC4)" class="norgie"
- onClick="t('Eclipse Helios (3.6 RC4)','Eclipse Helios (3.6 RC4)a')"></a>
- <a target="_blank"
+ onClick="t('Eclipse Helios (3.6 RC4)','Eclipse Helios (3.6 RC4)a')"
+ ></a> <a target="_blank"
href="http://www.matthicks.com/2010/06/eclipse-helios-36-rc4.html
- ">Eclipse Helios (3.6 RC4)</a>
+"
+ >Eclipse Helios (3.6 RC4)</a>
</div>
</td>
<td>Matt Hicks</td>
@@ -1978,29 +1836,25 @@
<td colspan="4">
<div id="Eclipse Helios (3.6 RC4)a">
<div class="item_contents">
-
- I've been a user of Eclipse for many years now and when I
- saw there was a free t-shirt to be had by reviewing the
- newest release there was only one choice to make. :) <br> <br>The
- download is exactly the same as all previous releases but
- the first thing that struck me was the startup time.
+ I've been a user of Eclipse for many years now and when I saw there
+ was a free t-shirt to be had by reviewing the newest release there
+ was only one choice to make. :) <br> <br>The download is exactly the
+ same as all previous releases but the first thing that struck me was
+ the startup time.
</div>
</div>
</td>
</tr>
-
-
<tr>
<td>
- <div
- id="Improvements to API Tools, Top Eclipse Helios Feature #8">
- <a
- name="Improvements to API Tools, Top Eclipse Helios Feature #8"
+ <div id="Improvements to API Tools, Top Eclipse Helios Feature #8">
+ <a name="Improvements to API Tools, Top Eclipse Helios Feature #8"
class="norgie"
- onClick="t('Improvements to API Tools, Top Eclipse Helios Feature #8','Improvements to API Tools, Top Eclipse Helios Feature #8a')"></a>
- <a target="_blank"
+ onClick="t('Improvements to API Tools, Top Eclipse Helios Feature #8','Improvements to API Tools, Top Eclipse Helios Feature #8a')"
+ ></a> <a target="_blank"
href="http://eclipsesource.com/blogs/2010/06/14/api_tools_top_eclipse_helios_feature_8/
- ">Improvements to API Tools, Top Eclipse Helios Feature #8</a>
+"
+ >Improvements to API Tools, Top Eclipse Helios Feature #8</a>
</div>
</td>
<td>Ian Bull</td>
@@ -2009,26 +1863,23 @@
</tr>
<tr class="bottomBorder">
<td colspan="4">
- <div
- id="Improvements to API Tools, Top Eclipse Helios Feature #8a">
- <div class="item_contents">I’ve been thinking a lot
- lately about what defines an Eclipse project? Not in the
- literal sense (a project hosted at eclipse.org that follows
- the EDP), but rather, what technical qualities do all
- Eclipse projects share.</div>
+ <div id="Improvements to API Tools, Top Eclipse Helios Feature #8a">
+ <div class="item_contents">I’ve been thinking a lot lately about
+ what defines an Eclipse project? Not in the literal sense (a project
+ hosted at eclipse.org that follows the EDP), but rather, what
+ technical qualities do all Eclipse projects share.</div>
</div>
</td>
</tr>
-
-
<tr>
<td>
<div id="New Features in Eclipse 3.6 (Helios)">
<a name="New Features in Eclipse 3.6 (Helios)" class="norgie"
- onClick="t('New Features in Eclipse 3.6 (Helios)','New Features in Eclipse 3.6 (Helios)a')"></a>
- <a target="_blank"
+ onClick="t('New Features in Eclipse 3.6 (Helios)','New Features in Eclipse 3.6 (Helios)a')"
+ ></a> <a target="_blank"
href="http://rajakannappan.blogspot.com/2010/05/new-features-in-eclipse-36-helios.html
- ">New Features in Eclipse 3.6 (Helios)</a>
+"
+ >New Features in Eclipse 3.6 (Helios)</a>
</div>
</td>
<td>Raja Kannappan</td>
@@ -2038,23 +1889,21 @@
<tr class="bottomBorder">
<td colspan="4">
<div id="New Features in Eclipse 3.6 (Helios)a">
- <div class="item_contents">There are many interesting features
- coming up in Eclipse 3.6 code named as Helios . Below, I
- will discuss about some of these features which I came
- across.</div>
+ <div class="item_contents">There are many interesting features coming
+ up in Eclipse 3.6 code named as Helios . Below, I will discuss about
+ some of these features which I came across.</div>
</div>
</td>
</tr>
-
-
<tr>
<td>
<div id="Review Eclipse Helios RC4">
<a name="Review Eclipse Helios RC4" class="norgie"
- onClick="t('Review Eclipse Helios RC4','Review Eclipse Helios RC4a')"></a>
- <a target="_blank"
+ onClick="t('Review Eclipse Helios RC4','Review Eclipse Helios RC4a')"
+ ></a> <a target="_blank"
href="http://tux2323.blogspot.com/2010/06/review-eclipse-helios-rc4.html
- ">Review Eclipse Helios RC4</a>
+"
+ >Review Eclipse Helios RC4</a>
</div>
</td>
<td>Christian Baranowski</td>
@@ -2064,32 +1913,27 @@
<tr class="bottomBorder">
<td colspan="4">
<div id="Review Eclipse Helios RC4a">
- <div class="item_contents">Eclipse Helios is the annual
- release of Eclipse projects in 2010; this year 39 projects
- are part of the release. And here is my first contribution
- to the Helios Blogathon, more details on the Blogathon can
- be found here. Helios is the code name for this year
- collecting Eclipse release. The idea of such a release is to
- be simultaneously release a large quantity of eclipse sub
- projects at the same time. This gives the user an Eclipse
- platform with well-coordinated projects, which works
- together.</div>
+ <div class="item_contents">Eclipse Helios is the annual release of
+ Eclipse projects in 2010; this year 39 projects are part of the
+ release. And here is my first contribution to the Helios Blogathon,
+ more details on the Blogathon can be found here. Helios is the code
+ name for this year collecting Eclipse release. The idea of such a
+ release is to be simultaneously release a large quantity of eclipse
+ sub projects at the same time. This gives the user an Eclipse
+ platform with well-coordinated projects, which works together.</div>
</div>
</td>
</tr>
-
-
<tr>
<td>
- <div
- id="Feature Based Configurations, Top Eclipse Helios Feature #9">
- <a
- name="Feature Based Configurations, Top Eclipse Helios Feature #9"
+ <div id="Feature Based Configurations, Top Eclipse Helios Feature #9">
+ <a name="Feature Based Configurations, Top Eclipse Helios Feature #9"
class="norgie"
- onClick="t('Feature Based Configurations, Top Eclipse Helios Feature #9','Feature Based Configurations, Top Eclipse Helios Feature #9a')"></a>
- <a target="_blank"
+ onClick="t('Feature Based Configurations, Top Eclipse Helios Feature #9','Feature Based Configurations, Top Eclipse Helios Feature #9a')"
+ ></a> <a target="_blank"
href="http://eclipsesource.com/blogs/2010/06/11/feature-based-configurations-top-eclipse-helios-feature-9/
- ">Feature Based Configurations, Top Eclipse Helios Feature #9</a>
+"
+ >Feature Based Configurations, Top Eclipse Helios Feature #9</a>
</div>
</td>
<td>Ian Bull</td>
@@ -2098,26 +1942,23 @@
</tr>
<tr class="bottomBorder">
<td colspan="4">
- <div
- id="Feature Based Configurations, Top Eclipse Helios Feature #9a">
- <div class="item_contents">Yesterday I asked you to think
- about high-quality software that has been consistently
- delivered on-time for eight straight years. To make this
- quiz more challenging, this software should be installed on
- millions of users’ desktops.</div>
+ <div id="Feature Based Configurations, Top Eclipse Helios Feature #9a">
+ <div class="item_contents">Yesterday I asked you to think about
+ high-quality software that has been consistently delivered on-time
+ for eight straight years. To make this quiz more challenging, this
+ software should be installed on millions of users’ desktops.</div>
</div>
</td>
</tr>
-
-
<tr>
<td>
<div id="Helios By the Numbers">
<a name="Helios By the Numbers" class="norgie"
- onClick="t('Helios By the Numbers','Helios By the Numbersa')"></a>
- <a target="_blank"
+ onClick="t('Helios By the Numbers','Helios By the Numbersa')"
+ ></a> <a target="_blank"
href="http://dev.eclipse.org/blogs/wayne/2010/06/11/helios-by-the-numbers/
- ">Helios By the Numbers</a>
+"
+ >Helios By the Numbers</a>
</div>
</td>
<td>Wayne Beaton</td>
@@ -2128,27 +1969,24 @@
<td colspan="4">
<div id="Helios By the Numbersa">
<div class="item_contents">
-
- Here are some interesting numbers about Helios. At least I
- think they’re interesting.<br> <br>39 Projects are
- listed on the Helios Participating Projects wiki page (many
- entries in this table include one or more subprojects);
+ Here are some interesting numbers about Helios. At least I think
+ they’re interesting.<br> <br>39 Projects are listed on the
+ Helios Participating Projects wiki page (many entries in this table
+ include one or more subprojects);
</div>
</div>
</td>
</tr>
-
-
<tr>
<td>
<div id="Resource Improvements, Top Eclipse Helios Feature #10">
- <a
- name="Resource Improvements, Top Eclipse Helios Feature #10"
+ <a name="Resource Improvements, Top Eclipse Helios Feature #10"
class="norgie"
- onClick="t('Resource Improvements, Top Eclipse Helios Feature #10','Resource Improvements, Top Eclipse Helios Feature #10a')"></a>
- <a target="_blank"
+ onClick="t('Resource Improvements, Top Eclipse Helios Feature #10','Resource Improvements, Top Eclipse Helios Feature #10a')"
+ ></a> <a target="_blank"
href="http://eclipsesource.com/blogs/2010/06/10/resource-improvements-helios-feature-10/
- ">Resource Improvements, Top Eclipse Helios Feature #10</a>
+"
+ >Resource Improvements, Top Eclipse Helios Feature #10</a>
</div>
</td>
<td>Ian Bull</td>
@@ -2158,24 +1996,22 @@
<tr class="bottomBorder">
<td colspan="4">
<div id="Resource Improvements, Top Eclipse Helios Feature #10a">
- <div class="item_contents">Pop quiz: Can you name any
- ‘high quality‘ software that has been
- consistently delivered on-time, for 8 years in a row?</div>
+ <div class="item_contents">Pop quiz: Can you name any ‘high
+ quality‘ software that has been consistently delivered
+ on-time, for 8 years in a row?</div>
</div>
</td>
</tr>
-
-
<tr>
<td>
<div id="Helios Bloghaton: Fun with Eclipse Remote Services - 1">
- <a
- name="Helios Bloghaton: Fun with Eclipse Remote Services - 1"
+ <a name="Helios Bloghaton: Fun with Eclipse Remote Services - 1"
class="norgie"
- onClick="t('Helios Bloghaton: Fun with Eclipse Remote Services - 1','Helios Bloghaton: Fun with Eclipse Remote Services - 1a')"></a>
- <a target="_blank"
+ onClick="t('Helios Bloghaton: Fun with Eclipse Remote Services - 1','Helios Bloghaton: Fun with Eclipse Remote Services - 1a')"
+ ></a> <a target="_blank"
href="http://industrial-tsi-wim.blogspot.com/2010/06/helios-bloghaton-fun-with-remote.html
- ">Helios Bloghaton: Fun with Eclipse Remote Services - 1</a>
+"
+ >Helios Bloghaton: Fun with Eclipse Remote Services - 1</a>
</div>
</td>
<td>Wim Jongman</td>
@@ -2184,30 +2020,26 @@
</tr>
<tr class="bottomBorder">
<td colspan="4">
- <div
- id="Helios Bloghaton: Fun with Eclipse Remote Services - 1a">
- <div class="item_contents">In many hotels there is no 13th
- floor, let alone a room with number 13. Everyone knows that
- there are 13 steps leading up to the gallows and if you
- suffer from friggatriskaidekaphobia then you don't like
- Friday the 13th.</div>
+ <div id="Helios Bloghaton: Fun with Eclipse Remote Services - 1a">
+ <div class="item_contents">In many hotels there is no 13th floor, let
+ alone a room with number 13. Everyone knows that there are 13 steps
+ leading up to the gallows and if you suffer from
+ friggatriskaidekaphobia then you don't like Friday the 13th.</div>
</div>
</td>
</tr>
-
-
<tr>
<td>
<div
- id="[Helios] Target Platform - how to deal with optional RAP dependencies">
+ id="[Helios] Target Platform - how to deal with optional RAP dependencies"
+ >
<a
name="[Helios] Target Platform - how to deal with optional RAP dependencies"
class="norgie"
- onClick="t('[Helios] Target Platform - how to deal with optional RAP dependencies','[Helios] Target Platform - how to deal with optional RAP dependenciesa')"></a>
- <a target="_blank"
- href="http://ekkescorner.wordpress.com/2010/06/03/helios-target-platform-how-to-deal-with-optional-rap-dependencies/
- ">[Helios] Target Platform - how to deal with optional RAP
- dependencies</a>
+ onClick="t('[Helios] Target Platform - how to deal with optional RAP dependencies','[Helios] Target Platform - how to deal with optional RAP dependenciesa')"
+ ></a> <a target="_blank"
+ href="http://ekkescorner.wordpress.com/2010/06/03/helios-target-platform-how-to-deal-with-optional-rap-dependencies/"
+ >[Helios] Target Platform - how to deal with optional RAP dependencies</a>
</div>
</td>
<td>Ekke Gentz</td>
@@ -2217,34 +2049,13 @@
<tr class="bottomBorder">
<td colspan="4">
<div
- id="[Helios] Target Platform - how to deal with optional RAP dependenciesa">
- <div class="item_contents">If you read about my problems about
- RAP in the IDE from last months, please cool down: this time
- I’m talking about RAP in the Target Platform as a
- first Helios review.</div>
+ id="[Helios] Target Platform - how to deal with optional RAP dependenciesa"
+ >
+ <div class="item_contents">If you read about my problems about RAP in
+ the IDE from last months, please cool down: this time I’m
+ talking about RAP in the Target Platform as a first Helios review.</div>
</div>
</td>
</tr>
-
-
-
-
</table>
-
</div>
-<div id="rightcolumn">
- <div class="sideitem">
- <h6>Helios</h6>
- <ul id="leftnav">
- <li><a href="/downloads/packages/release/helios/sr2" target="_self">Download
- Now</a></li>
- <li><a href="https://projects.eclipse.org/releases/helios" target="_self">Helios Projects</a></li>
- <li><a href="/helios/blogathon/reviews.php" target="_self">Blogathon</a></li>
- <li><a href="/helios/demos.php" target="_self">Demos</a></li>
- <li><a href="/helios/heliosinaction.php" target="_self">Virtual
- Conference</a></li>
- <li><a href="/helios/friends.php" target="_self">Friends of Helios</a></li>
- </ul>
-
- </div>
-</div>
\ No newline at end of file
diff --git a/blogathon/guidelines.php b/blogathon/guidelines.php
index fbd6816..b2d0eb2 100644
--- a/blogathon/guidelines.php
+++ b/blogathon/guidelines.php
@@ -1,35 +1,33 @@
<?php
-/*******************************************************************************
- * Copyright(c) 2015 Eclipse Foundation and others.
- * All rights reserved. This program and the accompanying materials
- * are made available under the terms of the Eclipse Public License v1.0
- * which accompanies this distribution, and is available at
- * http://eclipse.org/legal/epl-v10.html
+/**
+ * Copyright (c) 2015, 2018 Eclipse Foundation.
+ *
+ * This program and the accompanying materials are made
+ * available under the terms of the Eclipse Public License 2.0
+ * which is available at https://www.eclipse.org/legal/epl-2.0/
*
* Contributors:
- * Nathan Gervais (Eclipse Foundation) - Initial implementation
- * Eric Poirier (Eclipse Foundation)
- *******************************************************************************/
-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");
+ * Nathan Gervais (Eclipse Foundation) - Initial implementation
+ * Eric Poirier (Eclipse Foundation)
+ *
+ * SPDX-License-Identifier: EPL-2.0
+ */
+require_once ($_SERVER['DOCUMENT_ROOT'] . "/eclipse.org-common/system/app.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'
+$Theme = $App->getThemeClass();
+include ($App->getProjectCommon());
// Begin: page-specific settings. Change these.
-$pageTitle = "Review the Eclipse Helios Release";
-$pageKeywords = "eclipse, helios, release, review, contest";
-$pageAuthor = "Lynn Gayowski";
+$pageTitle = "Review the Eclipse Helios Release";
+$Theme->setPageTitle($pageTitle);
+$Theme->setPageKeywords("eclipse, helios, release, review, contest");
+$Theme->setPageAuthor("Lynn Gayowski");
-// Place your html content in a file called content/en_pagename.php
ob_start();
-include("content/en_" . $App->getScriptName());
+include ("content/en_" . $App->getScriptName());
$html = ob_get_clean();
-# Generate the web page
-$App->AddExtraHtmlHeader('<link type="text/css" href="/helios/blogathon/layout.css" rel="stylesheet"/>');
-$App->generatePage(NULL, $Menu, NULL, $pageAuthor, $pageKeywords, $pageTitle, $html);
\ No newline at end of file
+$Theme->setHtml($html);
+$Theme->generatePage();
\ No newline at end of file
diff --git a/blogathon/layout.css b/blogathon/layout.css
deleted file mode 100644
index 451f107..0000000
--- a/blogathon/layout.css
+++ /dev/null
@@ -1,195 +0,0 @@
-.item_headline {
- padding: 3px;
-}
-
-.visible .item_contents {
- display: block;
-}
-
-.invisible .item_contents {
- display: none;
-}
-
-.visible .item_menu {
- display: block;
-}
-
-.invisible .item_menu {
- display: none;
-}
-
-.visible a.norgie {
- background: url('../../images/minus.gif') no-repeat;
- padding-right: 2px;
-}
-
-.invisible a.norgie {
- background: url('../../images/plus.gif') no-repeat;
- padding-right: 2px;
-}
-
-.item_menu {
- position: relative;
- left: 5px;;
- margin: 10px;
- margin-left: 15px;
- padding-left: 5px;
- padding-bottom: 5px;
- font-weight: bold;
-}
-
-.item_contents {
- margin: 0px;;
- background-color: #F8F8F8;;
- padding: 5px;
-}
-
-a.norgie {
- float: left;
- clear: all;;
- height: 20px;
- width: 10px;
- margin-top: 5px;
- margin-bottom: -5px;
-}
-
-body {
- color: #000;
-}
-
-
-.paddingLeft {
- padding-left: 7px;
-}
-
-.headerBar {
- height:120px;
- padding: 0px;
- width: 100%;
- border-top: 3px solid #FF6700;
-}
-
-.coming {
- background:#0B328B url(images/europaBanner.jpg) no-repeat scroll top left;
-}
-
-.release {
- background:#0B328B url(images/europaBannerHere.jpg) no-repeat scroll top left;
-}
-
-.headerBar td {
- //background-image: url('images/bar.jpg');
- font-size: 170%;
- color:#FFFFFF;
- vertical-align:top;
- padding:10px;
- font-weight: bold;
-}
-
-.headerBar span {
- font-size: 80%;
- font-weight: normal;
-}
-
-.projectTable {
- width: 100%;
- border-bottom: 1px solid #49457C;
-}
-
-.memberTable {
- width: 100%;
- border-bottom: 1px solid #49457C;
-}
-
-.tableHeader {
- background-image: url('images/bar.jpg');
- font-weight: bold;
- border-top: 2px solid #49457C;
- border-bottom: 1px solid #49457C;
- font-size: 100%;
-}
-
-.tableHeaderTitle {
- font-weight: bold;
- font-size: 125%;
- padding-top: 10px;
-}
-
-.tableRow td{
- border-bottom: 1px solid #CCC;
- padding-top:5px;
-}
-
-.members {
- float: left;
- width: 100%;
-}
-
-.box {
- width: 35%;
- float: right;
- clear: none;
-}
-
-.box ol {
- padding-left: 0px;
- margin: 0;
- margin-top: 10px;
-}
-
-.box ol li {
- list-style-type: none;
- padding-bottom: 10px;
-}
-
-.categoryLeft .box ol li,.categoryRight .box ol li {
- padding: 0px;
- padding-bottom: 10px;
-}
-
-.box ol li ul li {
- background: none;
-}
-
-.boxHeader {
- background-image: url(images/bar.jpg);
- background-position: top left;
- background-repeat: repeat-x;
- border-top: 1px solid #AAA;
- border-bottom: 1px solid #AAA;
- padding: 5px;
- color: #000;
- font-weight: bold;
- font-size: 110%;
-}
-
-.boxHeader a {
- color: #4F4F4F;
-}
-
-.boxBody {
- border: 1px solid #CCC;
- border-top: 0px;
- min-height: 30px;
- padding-left: 5px;
- padding-top: 5px;
- padding-bottom: 5px;
- margin-bottom: 3px;
-}
-
-#dateTab {
- margin:-10px;
- padding:0px;
-}
-
-#countdown {
- padding:4px;
- font-size:24px;
- font-weight:bold;
- text-align:center;
-}
-
-.bottomBorder td {
- border-bottom: 1px solid #DDD;
-}
-
diff --git a/blogathon/reviews.php b/blogathon/reviews.php
index f89c630..d14aa5e 100644
--- a/blogathon/reviews.php
+++ b/blogathon/reviews.php
@@ -1,34 +1,32 @@
<?php
-/*******************************************************************************
- * Copyright(c) 2015 Eclipse Foundation and others.
- * All rights reserved. This program and the accompanying materials
- * are made available under the terms of the Eclipse Public License v1.0
- * which accompanies this distribution, and is available at
- * http://eclipse.org/legal/epl-v10.html
+/**
+ * Copyright (c) 2015, 2018 Eclipse Foundation.
+ *
+ * This program and the accompanying materials are made
+ * available under the terms of the Eclipse Public License 2.0
+ * which is available at https://www.eclipse.org/legal/epl-2.0/
*
* Contributors:
- * Nathan Gervais (Eclipse Foundation) - Initial implementation
- * Eric Poirier (Eclipse Foundation)
- *******************************************************************************/
-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");
+ * Nathan Gervais (Eclipse Foundation) - Initial implementation
+ * Eric Poirier (Eclipse Foundation)
+ *
+ * SPDX-License-Identifier: EPL-2.0
+ */
+require_once ($_SERVER['DOCUMENT_ROOT'] . "/eclipse.org-common/system/app.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'
+$App = new App();
+$Theme = $App->getThemeClass();
-// Begin: page-specific settings. Change these.
+include ($App->getProjectCommon());
+
$pageTitle = "Helios Reviews";
-$pageKeywords = "eclipse, helios, review, blog, blogathon, contest";
-$pageAuthor = "Lynn Gayowski";
+$Theme->setPageTitle($pageTitle);
+$Theme->setPageKeywords("eclipse, helios, review, blog, blogathon, contest");
+$Theme->setPageAuthor("Lynn Gayowski");
-// Place your html content in a file called content/en_pagename.php
-ob_start ();
-include ("content/en_" . $App->getScriptName ());
-$html = ob_get_clean ();
+ob_start();
+include ("content/en_" . $App->getScriptName());
+$html = ob_get_clean();
-// Generate the web page
-$App->AddExtraHtmlHeader ( '<link type="text/css" href="/helios/blogathon/layout.css" rel="stylesheet"/>' );
-$App->generatePage ( NULL, $Menu, NULL, $pageAuthor, $pageKeywords, $pageTitle, $html );
\ No newline at end of file
+$Theme->setHtml($html);
+$Theme->generatePage();
\ No newline at end of file
diff --git a/content/en_allfriends.php b/content/en_allfriends.php
index 48e30bf..cd563f9 100644
--- a/content/en_allfriends.php
+++ b/content/en_allfriends.php
@@ -1,15 +1,17 @@
<?php
-/*******************************************************************************
- * Copyright(c) 2015 Eclipse Foundation and others.
- * All rights reserved. This program and the accompanying materials
- * are made available under the terms of the Eclipse Public License v1.0
- * which accompanies this distribution, and is available at
- * http://eclipse.org/legal/epl-v10.html
+/**
+ * Copyright (c) 2015, 2018 Eclipse Foundation.
+ *
+ * This program and the accompanying materials are made
+ * available under the terms of the Eclipse Public License 2.0
+ * which is available at https://www.eclipse.org/legal/epl-2.0/
*
* Contributors:
- * Nathan Gervais (Eclipse Foundation) - Initial implementation
- * Eric Poirier (Eclipse Foundation)
- *******************************************************************************/
+ * Nathan Gervais (Eclipse Foundation) - Initial implementation
+ * Eric Poirier (Eclipse Foundation)
+ *
+ * SPDX-License-Identifier: EPL-2.0
+ */
?>
<h1>Thank you Friends of Helios!</h1>
<p>
diff --git a/content/en_demos.php b/content/en_demos.php
index 0334fcc..1ce793d 100644
--- a/content/en_demos.php
+++ b/content/en_demos.php
@@ -1,143 +1,109 @@
<?php
-/*******************************************************************************
- * Copyright(c) 2015 Eclipse Foundation and others.
- * All rights reserved. This program and the accompanying materials
- * are made available under the terms of the Eclipse Public License v1.0
- * which accompanies this distribution, and is available at
- * http://eclipse.org/legal/epl-v10.html
+/**
+ * Copyright (c) 2015, 2018 Eclipse Foundation.
+ *
+ * This program and the accompanying materials are made
+ * available under the terms of the Eclipse Public License 2.0
+ * which is available at https://www.eclipse.org/legal/epl-2.0/
*
* Contributors:
- * Nathan Gervais (Eclipse Foundation) - Initial implementation
- * Eric Poirier (Eclipse Foundation)
- *******************************************************************************/
+ * Nathan Gervais (Eclipse Foundation) - Initial implementation
+ * Eric Poirier (Eclipse Foundation)
+ *
+ * SPDX-License-Identifier: EPL-2.0
+ */
?>
-
-<div id="midcolumn">
-
- <h1>Helios Demos</h1>
-
- <p>Some of the projects involved in the Helios release have created
- demos to show their new features. Click the titles below to see
- video highlights of what's new in Helios.</p>
-
- <h3>
- <a href="http://live.eclipse.org/node/932" target="blank">Dali Java
- Persistence Tools</a>
- </h3>
- <p>
- <b>Neil Hauge, Oracle</b><br> 18:19 minutes
- </p>
- <p>Dali Java Persistence Tools simplify the development of Java SE, EE
- and OSGi bundle applications that use the Java Persistence API (JPA)
- to interact with relational data. Dali has added comprehensive JPA
- 2.0 support to the existing JPA 1.0 support in Helios, as well as
- specific support for the EclipseLink 2.1 Helios release. This demo
- will show some highlights of the new features available now in the
- Helios release.</p>
-
- <h3>
- <a href="http://live.eclipse.org/node/912" target="blank">Eclipse
- Communication Framework (ECF)</a>
- </h3>
- <p>
- <b>Wim Jongman, Industrial TSI</b><br> 19:37 minutes
- </p>
- <p>The Eclipse Communication Framework (ECF) is a framework for
- supporting the development of distributed Eclipse-based tools and
- applications. It can be used to create other plugins, tools or full
- Eclipse RCP applications that require asynchronous point-to-point or
- publish-and-subscribe messaging. This demos hows what's new in ECF
- for Eclipse 3.6, the Helios release.</p>
-
- <h3>
- <a href="http://live.eclipse.org/node/908" target="blank">Java
- Devlopment Tools (JDT)</a>
- </h3>
- <p>
- <b>Deepak Azad, IBM</b><br> 09:29 minutes
- </p>
- <p>The Java Development Tools (JDT) project provides the tool plug-ins
- that implement a Java IDE supporting the development of any Java
- application, including Eclipse plug-ins. It adds a Java project
- nature and Java perspective to the Eclipse Workbench as well as a
- number of views, editors, wizards, builders and code merging and
- refactoring tools. The JDT project allows Eclipse to be a
- development environment for itself. This video shows just a part of
- all the new stuff within JDT for Helios.</p>
-
- <h3>
- <a href="http://live.eclipse.org/node/911" target="blank">Javaserver
- Faces (JSF) Tools</a>
- </h3>
- <p>
- <b>Cameron Bateman, Oracle</b><br> 20:53 minutes
- </p>
- <p>The Javaserver Faces (JSF) Tools project adds comprehensive support
- to the Eclipse Web Tools Platform project to simplify development
- and deployment of JSF applications. The project provides an
- extensible tooling infrastructure and exemplary tools for building
- JSF-based, web-enabled applications. This demo previews new features
- in the Eclipse 3.6 Helios release and shows how to use them to build
- a JSF application.</p>
-
- <h3>
- <a href="http://live.eclipse.org/node/909" target="blank">PHP
- Devlopment Tools (PDT)</a>
- </h3>
- <p>
- <b>Roy Ganor, Zend</b><br> 11:54 minutes
- </p>
- <p>Summarizing a great year for both the Eclipse and PHP communities,
- the Eclipse PHP Development Tools (PDT) project provides even more
- source editing features for the PHP developers such as new template
- content assist and advanced syntax coloring. Our focus on quality
- has proven to be immensely successful. With over 400 issues fixed
- and over 50 enhancements contributed by the community, PDT is more
- stable than ever.</p>
-
- <h3>
- <a href="http://live.eclipse.org/node/904" target="blank">Rich Ajax
- Platform (RAP)</a>
- </h3>
- <p>
- <b>RAP Team</b><br> 04:15 minutes
- </p>
- <p>
- This video shows what's new in RAP 1.3, which is shipped within the
- Eclipse Helios (3.6) release train. What's shown in the video is
- just a part of all the new stuff within RAP 1.3. Visit the project's
- website for more information: <a href="http://eclipse.org/rap"
- target="blank">http://eclipse.org/rap</a>.
- </p>
-
- <h3>
- <a href="http://live.eclipse.org/node/928" target="blank">Sequoyah</a>
- </h3>
- <p>
- <b>Marcel Gorri, Motorola</b><br> 07:57 minutes
- </p>
- <p>The purpose of the Sequoyah project is to be focused on the needs
- of all mobile developers. Inheriting components from the TmL, MTJ
- and Pulsar projects, Sequoyah intends to remove the artificial
- barriers of Linux and Java in order to provide a home for all
- Eclipse mobile developers. Join the Sequoyah team for an overview of
- the new features in the project for the Eclipse Helios release.</p>
-</div>
-<div id="rightcolumn">
- <div class="sideitem">
- <h6>Helios</h6>
- <ul id="leftnav">
- <li><a href="/downloads/packages/release/helios/sr2"
- target="_self">Download Now</a></li>
- <li><a
- href="http://www.eclipse.org/projects/releases/releases.php?release=helios"
- target="_self">Helios Projects</a></li>
- <li><a href="/helios/blogathon/reviews.php" target="_self">Blogathon</a></li>
- <li><a href="/helios/demos.php" target="_self">Demos</a></li>
- <li><a href="/helios/heliosinaction.php" target="_self">Virtual
- Conference</a></li>
- <li><a href="/helios/friends.php" target="_self">Friends of Helios</a></li>
- </ul>
-
- </div>
-</div>
+<h1><?php print $pageTitle; ?></h1>
+<p>Some of the projects involved in the Helios release have created demos to
+ show their new features. Click the titles below to see video highlights of
+ what's new in Helios.</p>
+<h3>
+ <a href="http://live.eclipse.org/node/932" target="blank">Dali Java
+ Persistence Tools</a>
+</h3>
+<p>
+ <b>Neil Hauge, Oracle</b><br> 18:19 minutes
+</p>
+<p>Dali Java Persistence Tools simplify the development of Java SE, EE and OSGi
+ bundle applications that use the Java Persistence API (JPA) to interact with
+ relational data. Dali has added comprehensive JPA 2.0 support to the existing
+ JPA 1.0 support in Helios, as well as specific support for the EclipseLink 2.1
+ Helios release. This demo will show some highlights of the new features
+ available now in the Helios release.</p>
+<h3>
+ <a href="http://live.eclipse.org/node/912" target="blank">Eclipse
+ Communication Framework (ECF)</a>
+</h3>
+<p>
+ <b>Wim Jongman, Industrial TSI</b><br> 19:37 minutes
+</p>
+<p>The Eclipse Communication Framework (ECF) is a framework for supporting the
+ development of distributed Eclipse-based tools and applications. It can be
+ used to create other plugins, tools or full Eclipse RCP applications that
+ require asynchronous point-to-point or publish-and-subscribe messaging. This
+ demos hows what's new in ECF for Eclipse 3.6, the Helios release.</p>
+<h3>
+ <a href="http://live.eclipse.org/node/908" target="blank">Java Devlopment
+ Tools (JDT)</a>
+</h3>
+<p>
+ <b>Deepak Azad, IBM</b><br> 09:29 minutes
+</p>
+<p>The Java Development Tools (JDT) project provides the tool plug-ins that
+ implement a Java IDE supporting the development of any Java application,
+ including Eclipse plug-ins. It adds a Java project nature and Java perspective
+ to the Eclipse Workbench as well as a number of views, editors, wizards,
+ builders and code merging and refactoring tools. The JDT project allows
+ Eclipse to be a development environment for itself. This video shows just a
+ part of all the new stuff within JDT for Helios.</p>
+<h3>
+ <a href="http://live.eclipse.org/node/911" target="blank">Javaserver Faces
+ (JSF) Tools</a>
+</h3>
+<p>
+ <b>Cameron Bateman, Oracle</b><br> 20:53 minutes
+</p>
+<p>The Javaserver Faces (JSF) Tools project adds comprehensive support to the
+ Eclipse Web Tools Platform project to simplify development and deployment of
+ JSF applications. The project provides an extensible tooling infrastructure
+ and exemplary tools for building JSF-based, web-enabled applications. This
+ demo previews new features in the Eclipse 3.6 Helios release and shows how to
+ use them to build a JSF application.</p>
+<h3>
+ <a href="http://live.eclipse.org/node/909" target="blank">PHP Devlopment Tools
+ (PDT)</a>
+</h3>
+<p>
+ <b>Roy Ganor, Zend</b><br> 11:54 minutes
+</p>
+<p>Summarizing a great year for both the Eclipse and PHP communities, the
+ Eclipse PHP Development Tools (PDT) project provides even more source editing
+ features for the PHP developers such as new template content assist and
+ advanced syntax coloring. Our focus on quality has proven to be immensely
+ successful. With over 400 issues fixed and over 50 enhancements contributed by
+ the community, PDT is more stable than ever.</p>
+<h3>
+ <a href="http://live.eclipse.org/node/904" target="blank">Rich Ajax Platform
+ (RAP)</a>
+</h3>
+<p>
+ <b>RAP Team</b><br> 04:15 minutes
+</p>
+<p>
+ This video shows what's new in RAP 1.3, which is shipped within the Eclipse
+ Helios (3.6) release train. What's shown in the video is just a part of all
+ the new stuff within RAP 1.3. Visit the project's website for more
+ information: <a href="http://eclipse.org/rap" target="blank">http://eclipse.org/rap</a>.
+</p>
+<h3>
+ <a href="http://live.eclipse.org/node/928" target="blank">Sequoyah</a>
+</h3>
+<p>
+ <b>Marcel Gorri, Motorola</b><br> 07:57 minutes
+</p>
+<p>The purpose of the Sequoyah project is to be focused on the needs of all
+ mobile developers. Inheriting components from the TmL, MTJ and Pulsar
+ projects, Sequoyah intends to remove the artificial barriers of Linux and Java
+ in order to provide a home for all Eclipse mobile developers. Join the
+ Sequoyah team for an overview of the new features in the project for the
+ Eclipse Helios release.</p>
diff --git a/content/en_friends.php b/content/en_friends.php
index 512e19b..5398b91 100644
--- a/content/en_friends.php
+++ b/content/en_friends.php
@@ -1,15 +1,17 @@
<?php
-/*******************************************************************************
- * Copyright(c) 2015 Eclipse Foundation and others.
- * All rights reserved. This program and the accompanying materials
- * are made available under the terms of the Eclipse Public License v1.0
- * which accompanies this distribution, and is available at
- * http://eclipse.org/legal/epl-v10.html
+/**
+ * Copyright (c) 2015, 2018 Eclipse Foundation.
+ *
+ * This program and the accompanying materials are made
+ * available under the terms of the Eclipse Public License 2.0
+ * which is available at https://www.eclipse.org/legal/epl-2.0/
*
* Contributors:
- * Nathan Gervais (Eclipse Foundation) - Initial implementation
- * Eric Poirier (Eclipse Foundation)
- *******************************************************************************/
+ * Nathan Gervais (Eclipse Foundation) - Initial implementation
+ * Eric Poirier (Eclipse Foundation)
+ *
+ * SPDX-License-Identifier: EPL-2.0
+ */
?>
<div class="col-sm-24">
<div id="fullcolumn" class="heliosBlank clearfix">
diff --git a/content/en_heliosinaction.php b/content/en_heliosinaction.php
index ff3551c..bdd7d68 100644
--- a/content/en_heliosinaction.php
+++ b/content/en_heliosinaction.php
@@ -1,313 +1,202 @@
<?php
-/*******************************************************************************
- * Copyright(c) 2015 Eclipse Foundation and others.
- * All rights reserved. This program and the accompanying materials
- * are made available under the terms of the Eclipse Public License v1.0
- * which accompanies this distribution, and is available at
- * http://eclipse.org/legal/epl-v10.html
+/**
+ * Copyright (c) 2015, 2018 Eclipse Foundation.
+ *
+ * This program and the accompanying materials are made
+ * available under the terms of the Eclipse Public License 2.0
+ * which is available at https://www.eclipse.org/legal/epl-2.0/
*
* Contributors:
- * Nathan Gervais (Eclipse Foundation) - Initial implementation
- * Eric Poirier (Eclipse Foundation)
- *******************************************************************************/
- ?>
-<div id="midcolumn">
-
- <h1>Helios In Action</h1>
-
- <p>On June 24 and June 28, the Eclipse Foundation presented Helios In
- Action - a virtual conference where attendees could interact with
- project leads involved in the release and see demos of the new
- features. The annual simultaneous release has now grown to 39
- projects with over 33 million lines of code, contributed by
- committers around the world. With such a large global community,
- this is our way of bringing Helios to you!</p>
-
- <h2>Part 1 - June 24</h2>
-
- <p>
- <a class="title" href="javascript:switchMenu('linux');"
- title="Description"> <img
- src="http://www.eclipse.org/newsgroups/images/plus.gif"
- alt="Description" title="Description"> Linux Tools
- </a><br> <a class="recordingtitle"
- href="http://live.eclipse.org/node/916" target="blank">Watch the
- recording</a><br> Andrew Overholt (Red Hat)
- </p>
- <p>
-
-
- <div id="linux" class="switchcontent">
- The Linux Tools project aims to bring a full-featured C and C++ IDE
- to Linux developers. It builds on the source editing and debugging
- features of the CDT and integrates popular native development tools
- such as the GNU Autotools, Valgrind, OProfile, RPM, SystemTap, GCov,
- GProf and LTTng. Current projects include Autotools build
- integration, a Valgrind heap usage analysis tool and an OProfile
- call profiling tool. It also has projects implementing LTTng trace
- viewers and analyzers. <br>
- <br> Linux Tools also provides a place for Linux distributions to
- collaboratively overcome issues surrounding distribution packaging
- of Eclipse technology. The project produces both best practices and
- tools related to packaging. Since the 0.3.0 release, one of the
- features is a source archive of the Eclipse SDK that can be used by
- all Linux distributions building and distributing it. <br>
- <br>
- </div>
- </p>
-
- <p>
-
- <a class="title" href="javascript:switchMenu('runtime');"
- title="Description"> <img
- src="http://www.eclipse.org/newsgroups/images/plus.gif"
- alt="Description" title="Description"> Eclipse Runtime (RT)
- </a><br> <a class="recordingtitle"
- href="http://live.eclipse.org/node/917" target="blank">Watch the
- recording</a><br> Jeff McAffer (EclipseSource)
- </p>
- <p>
-
-
- <div id="runtime" class="switchcontent">
- With the Eclipse community expanding its offerings in the Runtime
- space (EclipseRT), many developers are interested in figuring out
- what this means and how they can leverage EclipseRT projects like
- Equinox, Jetty and EclipseLink. Join Jeff McAffer, the RT PMC and
- Equinox co-lead, for a review of EclipseRT projects and the new
- features they bring to Helios. <br>
- <br>
- </div>
- </p>
-
- <p>
- <a class="title" href="javascript:switchMenu('egit');"
- title="Description"> <img
- src="http://www.eclipse.org/newsgroups/images/plus.gif"
- alt="Description" title="Description"> Eclipse Git Team Provider
- </a><br> <a class="recordingtitle"
- href="http://live.eclipse.org/node/918" target="blank">Watch the
- recording</a><br> Chris Aniszczyk (Red Hat)
- </p>
- <p>
-
-
- <div id="egit" class="switchcontent">
- EGit is an Eclipse Team provider for the Git version control system.
- Git is a distributed SCM, which means every developer has a full
- copy of all history of every revision of the code, making queries
- against the history very fast and versatile. <br>
- <br> The EGit project is implementing Eclipse tooling on top of the
- JGit Java implementation of Git. <br>
- <br>
- </div>
- </p>
-
- <p>
- <a class="title" href="javascript:switchMenu('jsdt');"
- title="Description"> <img
- src="http://www.eclipse.org/newsgroups/images/plus.gif"
- alt="Description" title="Description"> JavaScript Development
- Tools
- </a><br> <a class="recordingtitle"
- href="http://live.eclipse.org/node/919" target="blank">Watch the
- recording</a><br> Simon Kaegi (IBM)
-
-
- <p>
-
-
- <p>
-
-
- <div id="jsdt" class="switchcontent">
- With the advent of Web 2.0, JavaScript have become central in the
- creation of a richer user experience on the Web. Its use has shifted
- from the creation of simple functions and events handlers to the
- creation of complex Web Application frameworks. Such complexity made
- it crucial that a more sophisticated set of tools become available
- on Eclipse. <br>
- <br> JSDT's goal is to develop an IDE for JavaScript applications,
- with full support for editing, search, and refactoring. The
- functionality of the JavaScript Development Tools is heavily based
- on the functionality of the Java Development Tools, but since
- JavaScript is not a fully typed or class-based language, it is not
- possible to provide 100% of the JDT functionality. JSDT is
- extensible in that it can be (is) plugged into the HTML and JSP
- editors within WTP as well as being architected with pluggable type
- inference and completion proposals in mind. The inference engine is
- used to determine type and class structures from the JavaScript
- code, enabling as much of the JDT equivalent functionality as
- possible, while still allowing adopters to contribute to the process
- for atypical or extended scenarios. <br>
- <br>
- </div>
- </p>
-
- <p>
-
- <a class="title" href="javascript:switchMenu('javaee');"
- title="Description"> <img
- src="http://www.eclipse.org/newsgroups/images/plus.gif"
- alt="Description" title="Description"> Java EE Standards Support
- from Web Tools
- </a><br> <a class="recordingtitle"
- href="http://live.eclipse.org/node/920" target="blank">Watch the
- recording</a><br> Naci Dai (eteration)
- </p>
- <p>
-
-
- <div id="javaee" class="switchcontent">
- The Web Tool Platform (WTP) project provides extensible frameworks
- and exemplary tools to build Web and Java EE applications. For
- Helios, the Web Tools Platform will be up-to-date with supporting
- the latest Java EE 6 specification. Join this session to see what's
- newly available for Java EE development. <br>
- <br>
- </div>
- </p>
-
- <p>
- <a class="title" href="javascript:switchMenu('mpc');"
- title="Description"> <img
- src="http://www.eclipse.org/newsgroups/images/plus.gif"
- alt="Description" title="Description"> Marketplace Client & p2
- Discovery Connector
- </a><br> <a class="recordingtitle"
- href="http://live.eclipse.org/node/921" target="blank">Watch the
- recording</a><br> Ian Skerrett (Eclipse Foundation)
- </p>
- <p>
-
-
- <div id="mpc" class="switchcontent">
- The Eclipse community has hundreds, if not thousands, of third-party
- plugins that users can add to their Eclipse installation.
- Unfortunately, there is not easy way to discover and install these
- solutions from within Eclipse. <br>
- <br> The Eclipse Foundation has recently launched a new website,
- called Eclipse Marketplace, that provides a listing of Eclipse-based
- solutions. The listings allow each solution provider to specify a p2
- update site for their solution. MPC provides a tight install
- integration between the Eclipse workspace and Eclipse Marketplace,
- plus other third party solution listings. <br>
- <br>
- </div>
- </p>
-
- <h2>Part 2 - June 28</h2>
-
- <p>
- <a class="title" href="javascript:switchMenu('top10');"
- title="Description"> <img
- src="http://www.eclipse.org/newsgroups/images/plus.gif"
- alt="Description" title="Description"> 10 Reasons to Install
- Helios
- </a><br> <a class="recordingtitle"
- href="http://live.eclipse.org/node/924" target="blank">Watch the
- recording</a><br> Ian Bull (EclipseSource)
- </p>
- <p>
-
-
- <div id="top10" class="switchcontent">
- Ian Bull, component lead for Zest and the Eclipse Visualization
- Framework and committer on the Equinox p2 project, presents the top
- 10 features in Helios he is most excited about. <br>
- <br>
- </div>
- </p>
-
- <p>
- <a class="title" href="javascript:switchMenu('emf');"
- title="Description"> <img
- src="http://www.eclipse.org/newsgroups/images/plus.gif"
- alt="Description" title="Description"> EMF on the Web
- </a><br> <a class="recordingtitle"
- href="http://live.eclipse.org/node/925" target="blank">Watch the
- recording</a><br> Kenn Hussey (Cloudsmith)
- </p>
- <p>
-
-
- <div id="emf" class="switchcontent">
- The Eclipse Modeling Framework (EMF) has long provided a code
- generation facility capable of emitting everything needed to get
- started with building a complete application for EMF-based domain
- models. It includes a GUI from which options can be specified and
- code generators can be invoked, to produce a model API, edit
- support, unit tests and a sample editor. <br>
- <br> With the Helios release of Eclipse, this facility moves beyond
- the boundaries of the Eclipse platform, and desktop applications in
- general, by adding support for the Rich Ajax Platform (RAP) and
- Google Web Toolkit (GWT). This session will demonstrate EMF's
- support for these application runtime platforms and highlight
- differences in the code generated for each. <br>
- <br>
- </div>
- </p>
-
- <p>
- <a class="title" href="javascript:switchMenu('modeling');"
- title="Description"> <img
- src="http://www.eclipse.org/newsgroups/images/plus.gif"
- alt="Description" title="Description"> Modeling
- </a><br> <a class="recordingtitle"
- href="http://live.eclipse.org/node/926" target="blank">Watch the
- recording</a><br> Ed Merks, Cedric Brun (Obeo), Sebastian Zarnekow
- (itemis)
- </p>
- <p>
-
-
- <div id="modeling" class="switchcontent">
- The Eclipse Modeling Project is one of the most active projects
- within the Eclipse community. Ed Merks will give a quick overview of
- the Modeling projects in Helios. Then Cedric Brun will demo Acceleo
- and Sebastian Zarnekow will show Xtext. <br>
- <br>
- </div>
- </p>
-
- <h2>July 20</h2>
-
- <p>
- <a class="title" href="javascript:switchMenu('mylyn');"
- title="Description"> <img
- src="http://www.eclipse.org/newsgroups/images/plus.gif"
- alt="Description" title="Description"> Mylyn
- </a><br> <a class="recordingtitle"
- href="http://live.eclipse.org/node/927" target="blank">Watch the
- recording</a><br> Mik Kersten (Tasktop Technologies)
- </p>
- <p>
-
-
- <div id="mylyn" class="switchcontent">
- This session will demonstrate the most noteworthy features and
- enhancements for Mylyn in the Helios release, such as enhanced
- support for Agile development, code reviews, social technologies and
- continuous integration systems. Mik Kersten, lead of the Mylyn
- project will showcase the latest and greatest task-focused features
- and APIs. <br>
- <br>
- </div>
- </p>
+ * Nathan Gervais (Eclipse Foundation) - Initial implementation
+ * Eric Poirier (Eclipse Foundation)
+ *
+ * SPDX-License-Identifier: EPL-2.0
+ */
+?>
+<h1><?php print $pageTitle; ?></h1>
+<p>On June 24 and June 28, the Eclipse Foundation presented Helios In Action - a
+ virtual conference where attendees could interact with project leads involved
+ in the release and see demos of the new features. The annual simultaneous
+ release has now grown to 39 projects with over 33 million lines of code,
+ contributed by committers around the world. With such a large global
+ community, this is our way of bringing Helios to you!</p>
+<h2>Part 1 - June 24</h2>
+<p>
+ <a class="title" href="javascript:switchMenu('linux');" title="Description"> Linux Tools
+ </a><br> <a class="recordingtitle" href="http://live.eclipse.org/node/916"
+ target="blank"
+ >Watch the recording</a><br> Andrew Overholt (Red Hat)
+</p>
+<p>
+<div id="linux" class="switchcontent">
+ The Linux Tools project aims to bring a full-featured C and C++ IDE to Linux
+ developers. It builds on the source editing and debugging features of the CDT
+ and integrates popular native development tools such as the GNU Autotools,
+ Valgrind, OProfile, RPM, SystemTap, GCov, GProf and LTTng. Current projects
+ include Autotools build integration, a Valgrind heap usage analysis tool and
+ an OProfile call profiling tool. It also has projects implementing LTTng trace
+ viewers and analyzers. <br> <br> Linux Tools also provides a place for Linux
+ distributions to collaboratively overcome issues surrounding distribution
+ packaging of Eclipse technology. The project produces both best practices and
+ tools related to packaging. Since the 0.3.0 release, one of the features is a
+ source archive of the Eclipse SDK that can be used by all Linux distributions
+ building and distributing it. <br> <br>
</div>
-<div id="rightcolumn">
- <div class="sideitem">
- <h6>Helios</h6>
- <ul id="leftnav">
- <li><a href="/downloads/packages/release/helios/sr2" target="_self">Download
- Now</a></li>
- <li><a href="http://www.eclipse.org/projects/releases/releases.php?release=helios" target="_self">Helios Projects</a></li>
- <li><a href="/helios/blogathon/reviews.php" target="_self">Blogathon</a></li>
- <li><a href="/helios/demos.php" target="_self">Demos</a></li>
- <li><a href="/helios/heliosinaction.php" target="_self">Virtual
- Conference</a></li>
- <li><a href="/helios/friends.php" target="_self">Friends of Helios</a></li>
- </ul>
-
- </div>
-</div>
\ No newline at end of file
+</p>
+<p>
+ <a class="title" href="javascript:switchMenu('runtime');" title="Description">
+ Eclipse Runtime (RT)
+ </a><br> <a class="recordingtitle" href="http://live.eclipse.org/node/917"
+ target="blank"
+ >Watch the recording</a><br> Jeff McAffer (EclipseSource)
+</p>
+<p>
+<div id="runtime" class="switchcontent">
+ With the Eclipse community expanding its offerings in the Runtime space
+ (EclipseRT), many developers are interested in figuring out what this means
+ and how they can leverage EclipseRT projects like Equinox, Jetty and
+ EclipseLink. Join Jeff McAffer, the RT PMC and Equinox co-lead, for a review
+ of EclipseRT projects and the new features they bring to Helios. <br> <br>
+</div>
+</p>
+<p>
+ <a class="title" href="javascript:switchMenu('egit');" title="Description"> Eclipse Git Team Provider
+ </a><br> <a class="recordingtitle" href="http://live.eclipse.org/node/918"
+ target="blank"
+ >Watch the recording</a><br> Chris Aniszczyk (Red Hat)
+</p>
+<p>
+<div id="egit" class="switchcontent">
+ EGit is an Eclipse Team provider for the Git version control system. Git is a
+ distributed SCM, which means every developer has a full copy of all history of
+ every revision of the code, making queries against the history very fast and
+ versatile. <br> <br> The EGit project is implementing Eclipse tooling on top
+ of the JGit Java implementation of Git. <br> <br>
+</div>
+</p>
+<p>
+ <a class="title" href="javascript:switchMenu('jsdt');" title="Description"> JavaScript Development Tools
+ </a><br> <a class="recordingtitle" href="http://live.eclipse.org/node/919"
+ target="blank"
+ >Watch the recording</a><br> Simon Kaegi (IBM)
+<p>
+<p>
+<div id="jsdt" class="switchcontent">
+ With the advent of Web 2.0, JavaScript have become central in the creation of
+ a richer user experience on the Web. Its use has shifted from the creation of
+ simple functions and events handlers to the creation of complex Web
+ Application frameworks. Such complexity made it crucial that a more
+ sophisticated set of tools become available on Eclipse. <br> <br> JSDT's goal
+ is to develop an IDE for JavaScript applications, with full support for
+ editing, search, and refactoring. The functionality of the JavaScript
+ Development Tools is heavily based on the functionality of the Java
+ Development Tools, but since JavaScript is not a fully typed or class-based
+ language, it is not possible to provide 100% of the JDT functionality. JSDT is
+ extensible in that it can be (is) plugged into the HTML and JSP editors within
+ WTP as well as being architected with pluggable type inference and completion
+ proposals in mind. The inference engine is used to determine type and class
+ structures from the JavaScript code, enabling as much of the JDT equivalent
+ functionality as possible, while still allowing adopters to contribute to the
+ process for atypical or extended scenarios. <br> <br>
+</div>
+</p>
+<p>
+ <a class="title" href="javascript:switchMenu('javaee');" title="Description">
+ Java EE Standards Support from Web Tools
+ </a><br> <a class="recordingtitle" href="http://live.eclipse.org/node/920"
+ target="blank"
+ >Watch the recording</a><br> Naci Dai (eteration)
+</p>
+<p>
+<div id="javaee" class="switchcontent">
+ The Web Tool Platform (WTP) project provides extensible frameworks and
+ exemplary tools to build Web and Java EE applications. For Helios, the Web
+ Tools Platform will be up-to-date with supporting the latest Java EE 6
+ specification. Join this session to see what's newly available for Java EE
+ development. <br> <br>
+</div>
+</p>
+<p>
+ <a class="title" href="javascript:switchMenu('mpc');" title="Description"> Marketplace Client & p2 Discovery Connector
+ </a><br> <a class="recordingtitle" href="http://live.eclipse.org/node/921"
+ target="blank"
+ >Watch the recording</a><br> Ian Skerrett (Eclipse Foundation)
+</p>
+<p>
+<div id="mpc" class="switchcontent">
+ The Eclipse community has hundreds, if not thousands, of third-party plugins
+ that users can add to their Eclipse installation. Unfortunately, there is not
+ easy way to discover and install these solutions from within Eclipse. <br> <br>
+ The Eclipse Foundation has recently launched a new website, called Eclipse
+ Marketplace, that provides a listing of Eclipse-based solutions. The listings
+ allow each solution provider to specify a p2 update site for their solution.
+ MPC provides a tight install integration between the Eclipse workspace and
+ Eclipse Marketplace, plus other third party solution listings. <br> <br>
+</div>
+</p>
+<h2>Part 2 - June 28</h2>
+<p>
+ <a class="title" href="javascript:switchMenu('top10');" title="Description"> 10 Reasons to Install Helios
+ </a><br> <a class="recordingtitle" href="http://live.eclipse.org/node/924"
+ target="blank"
+ >Watch the recording</a><br> Ian Bull (EclipseSource)
+</p>
+<p>
+<div id="top10" class="switchcontent">
+ Ian Bull, component lead for Zest and the Eclipse Visualization Framework and
+ committer on the Equinox p2 project, presents the top 10 features in Helios he
+ is most excited about. <br> <br>
+</div>
+</p>
+<p>
+ <a class="title" href="javascript:switchMenu('emf');" title="Description"> EMF on the Web
+ </a><br> <a class="recordingtitle" href="http://live.eclipse.org/node/925"
+ target="blank"
+ >Watch the recording</a><br> Kenn Hussey (Cloudsmith)
+</p>
+<p>
+<div id="emf" class="switchcontent">
+ The Eclipse Modeling Framework (EMF) has long provided a code generation
+ facility capable of emitting everything needed to get started with building a
+ complete application for EMF-based domain models. It includes a GUI from which
+ options can be specified and code generators can be invoked, to produce a
+ model API, edit support, unit tests and a sample editor. <br> <br> With the
+ Helios release of Eclipse, this facility moves beyond the boundaries of the
+ Eclipse platform, and desktop applications in general, by adding support for
+ the Rich Ajax Platform (RAP) and Google Web Toolkit (GWT). This session will
+ demonstrate EMF's support for these application runtime platforms and
+ highlight differences in the code generated for each. <br> <br>
+</div>
+</p>
+<p>
+ <a class="title" href="javascript:switchMenu('modeling');" title="Description">
+ Modeling
+ </a><br> <a class="recordingtitle" href="http://live.eclipse.org/node/926"
+ target="blank"
+ >Watch the recording</a><br> Ed Merks, Cedric Brun (Obeo), Sebastian Zarnekow
+ (itemis)
+</p>
+<p>
+<div id="modeling" class="switchcontent">
+ The Eclipse Modeling Project is one of the most active projects within the
+ Eclipse community. Ed Merks will give a quick overview of the Modeling
+ projects in Helios. Then Cedric Brun will demo Acceleo and Sebastian Zarnekow
+ will show Xtext. <br> <br>
+</div>
+</p>
+<h2>July 20</h2>
+<p>
+ <a class="title" href="javascript:switchMenu('mylyn');" title="Description"> Mylyn
+ </a><br> <a class="recordingtitle" href="http://live.eclipse.org/node/927"
+ target="blank"
+ >Watch the recording</a><br> Mik Kersten (Tasktop Technologies)
+</p>
+<p>
+<div id="mylyn" class="switchcontent">
+ This session will demonstrate the most noteworthy features and enhancements
+ for Mylyn in the Helios release, such as enhanced support for Agile
+ development, code reviews, social technologies and continuous integration
+ systems. Mik Kersten, lead of the Mylyn project will showcase the latest and
+ greatest task-focused features and APIs. <br> <br>
+</div>
+</p>
diff --git a/content/en_index.php b/content/en_index.php
index 811ea4b..532838a 100644
--- a/content/en_index.php
+++ b/content/en_index.php
@@ -1,45 +1,50 @@
<?php
-/*******************************************************************************
- * Copyright(c) 2015 Eclipse Foundation and others.
- * All rights reserved. This program and the accompanying materials
- * are made available under the terms of the Eclipse Public License v1.0
- * which accompanies this distribution, and is available at
- * http://eclipse.org/legal/epl-v10.html
+/**
+ * Copyright (c) 2015, 2018 Eclipse Foundation.
+ *
+ * This program and the accompanying materials are made
+ * available under the terms of the Eclipse Public License 2.0
+ * which is available at https://www.eclipse.org/legal/epl-2.0/
*
* Contributors:
- * Nathan Gervais (Eclipse Foundation) - Initial implementation
- * Eric Poirier (Eclipse Foundation)
- *******************************************************************************/
- ?>
- <div class="col-sm-24">
+ * Nathan Gervais (Eclipse Foundation) - Initial implementation
+ * Eric Poirier (Eclipse Foundation)
+ *
+ * SPDX-License-Identifier: EPL-2.0
+ */
+?>
+<div class="col-sm-24">
<div id="fullcolumn" class="helios">
<div id="midcolumn">
<div>
<p class="description">
- Eclipse Helios is the annual release of Eclipse projects in
- 2010; this year 39 project teams are part of the release. <br />
- <br />Click <a style="color: #FFF;"
- href="http://wiki.eclipse.org/Simultaneous_Release">here</a>
- to find out about the newest Eclipse Simultaneous Release
+ Eclipse Helios is the annual release of Eclipse projects in 2010; this
+ year 39 project teams are part of the release. <br /> <br />Click <a
+ style="color: #FFF;" href="http://wiki.eclipse.org/Simultaneous_Release"
+ >here</a> to find out about the newest Eclipse Simultaneous Release
</p>
</div>
<div>
<ul class="links">
<li class="download sun indent1"><a title="Download Helios"
- href="/downloads/packages/release/helios/sr2">Download
- Helios</a></li>
+ href="/downloads/packages/release/helios/sr2"
+ >Download Helios</a></li>
<li class="projects sun indent2"><a title="Projects"
- href="http://www.eclipse.org/projects/releases/releases.php?release=helios">Projects</a></li>
+ href="http://www.eclipse.org/projects/releases/releases.php?release=helios"
+ >Projects</a></li>
<li class="projects sun indent3"><a title="Blogathon"
- href="/helios/blogathon/reviews.php">Blogathon</a></li>
+ href="/helios/blogathon/reviews.php"
+ >Blogathon</a></li>
<li class="projects sun indent4"><a title="Demos"
- href="/helios/demos.php">Demos</a></li>
- <li class="projects sun indent5"><a
- title="Helios Virtual Conference"
- href="/helios/heliosinaction.php">Virtual Conference</a></li>
- <!-- <li class="blog"><a title="Helios on Twitter" target="_blank" href="http://galileo.chinposin.com/"> </a></li>-->
+ href="/helios/demos.php"
+ >Demos</a></li>
+ <li class="projects sun indent5"><a title="Helios Virtual Conference"
+ href="/helios/heliosinaction.php"
+ >Virtual Conference</a></li>
+ <!-- <li class="blog"><a title="Helios on Twitter" target="_blank" href="http://galileo.chinposin.com/"> </a></li>-->
<li class="friends indent6"><a title="Friends of Eclipse"
- href="/helios/friends.php">Wanted: 360 Friends of Helios</a></li>
+ href="/helios/friends.php"
+ >Wanted: 360 Friends of Helios</a></li>
</ul>
</div>
<a id="continue" href="/home/">Continue to Eclipse.org</a>
diff --git a/content/en_indexNow.php b/content/en_indexNow.php
new file mode 100644
index 0000000..7b59cbd
--- /dev/null
+++ b/content/en_indexNow.php
@@ -0,0 +1,24 @@
+<?php
+/**
+ * Copyright (c) 2010, 2015, 2018 Eclipse Foundation.
+ *
+ * This program and the accompanying materials are made
+ * available under the terms of the Eclipse Public License 2.0
+ * which is available at https://www.eclipse.org/legal/epl-2.0/
+ *
+ * Contributors:
+ * Nathan Gervais (Eclipse Foundation) - Initial implementation
+ * Eric Poirier (Eclipse Foundation)
+ *
+ * SPDX-License-Identifier: EPL-2.0
+ */
+?>
+<p class="description">
+ Eclipse Helios is the annual release of Eclipse projects in 2010; this year 39
+ project teams are part of the release. <br /> <br />Click <a
+ href="http://wiki.eclipse.org/Simultaneous_Release"
+ >here</a> to find out about the newest Eclipse Simultaneous Release
+</p>
+<p>
+ <a id="continue" href="/home/">Continue to Eclipse.org</a>
+</p>
diff --git a/content/en_thankyou.php b/content/en_thankyou.php
index aad88e8..7dfff47 100644
--- a/content/en_thankyou.php
+++ b/content/en_thankyou.php
@@ -1,88 +1,44 @@
<?php
-/*******************************************************************************
- * Copyright(c) 2015 Eclipse Foundation and others.
- * All rights reserved. This program and the accompanying materials
- * are made available under the terms of the Eclipse Public License v1.0
- * which accompanies this distribution, and is available at
- * http://eclipse.org/legal/epl-v10.html
+/**
+ * Copyright (c) 2015, 2018 Eclipse Foundation.
+ *
+ * This program and the accompanying materials are made
+ * available under the terms of the Eclipse Public License 2.0
+ * which is available at https://www.eclipse.org/legal/epl-2.0/
*
* Contributors:
- * Nathan Gervais (Eclipse Foundation) - Initial implementation
- * Eric Poirier (Eclipse Foundation)
- *******************************************************************************/
- ?>
-<h1>Thank you Friends of Helios!</h1>
+ * Nathan Gervais (Eclipse Foundation) - Initial implementation
+ * Eric Poirier (Eclipse Foundation)
+ *
+ * SPDX-License-Identifier: EPL-2.0
+ */
+?>
+<h1><?php print $pageTitle; ?></h1>
<img style="float: left;" src="/donate/images/starTrans.png" />
<p>
- <strong>A big thank you to all <span style="font-size: 24px">487</span>
- of our Friends of Helios. The funds raised will be used to help
- support the Eclipse community. Your generousity is very much
- appreciated - Helios wouldn't be the same without you!
+ <strong>A big thank you to all <span style="font-size: 24px">487</span> of our
+ Friends of Helios. The funds raised will be used to help support the Eclipse
+ community. Your generousity is very much appreciated - Helios wouldn't be
+ the same without you!
</strong>
</p>
<hr>
<p>
-<strong>Daniele Gagliardi </strong>
-Anonymous
-<strong>Anonymous </strong>
-Anonymous
-<strong>Anonymous </strong>
-Anonymous
-<strong>Mark Tippetts </strong>
-Anonymous
-<strong>Anonymous </strong>
-Jody Garnett
-<strong>Cho Hyunjong </strong>
-Anonymous
-<strong>Craig Condit </strong>
-Anonymous
-<strong>Uwe Kitzmann </strong>
-Anonymous
-<strong>Ian Skerrett </strong>
-Anonymous
-<strong>Anonymous </strong>
-Anonymous
-<strong>Wendell Beckwith </strong>
-Marcus Hirt
-<strong>Anonymous </strong>
-Anonymous
-<strong>Wolfgang Schell </strong>
-Anonymous
-<strong>Sam Wu </strong>
-Anonymous
-<strong>Anonymous </strong>
-Anonymous
-<strong>Anonymous </strong>
-Anonymous
-<strong>Christian Schubert </strong>
-Anonymous
-<strong>Anonymous </strong>
-Anonymous
-<strong>Mickael Istria </strong>
-Anonymous
-<strong>Anonymous </strong>
-Anonymous
-<strong>Alex Weirig </strong>
-Anonymous
-<strong>Anonymous </strong>
-Anonymous
-<strong>Anonymous </strong>
-Anonymous
-<strong>Anonymous </strong>
-Robert Wloch
-<strong>Dong taek Kim </strong>
-Bruno Medeiros
-<strong>Anonymous </strong>
-Robert Meagher
-<strong>Anonymous </strong>
-Anonymous
-<strong>Anonymous </strong>
-Anonymous
-<strong>Anonymous </strong>
-Anonymous
-<strong>Anonymous </strong>
-Guy Shalev
-<strong>Anonymous </strong>
-Reibert Arbring
-<strong>Dennis Laliberte </strong>
+ <strong>Daniele Gagliardi </strong> Anonymous <strong>Anonymous </strong>
+ Anonymous <strong>Anonymous </strong> Anonymous <strong>Mark Tippetts </strong>
+ Anonymous <strong>Anonymous </strong> Jody Garnett <strong>Cho Hyunjong </strong>
+ Anonymous <strong>Craig Condit </strong> Anonymous <strong>Uwe Kitzmann </strong>
+ Anonymous <strong>Ian Skerrett </strong> Anonymous <strong>Anonymous </strong>
+ Anonymous <strong>Wendell Beckwith </strong> Marcus Hirt <strong>Anonymous </strong>
+ Anonymous <strong>Wolfgang Schell </strong> Anonymous <strong>Sam Wu </strong>
+ Anonymous <strong>Anonymous </strong> Anonymous <strong>Anonymous </strong>
+ Anonymous <strong>Christian Schubert </strong> Anonymous <strong>Anonymous </strong>
+ Anonymous <strong>Mickael Istria </strong> Anonymous <strong>Anonymous </strong>
+ Anonymous <strong>Alex Weirig </strong> Anonymous <strong>Anonymous </strong>
+ Anonymous <strong>Anonymous </strong> Anonymous <strong>Anonymous </strong>
+ Robert Wloch <strong>Dong taek Kim </strong> Bruno Medeiros <strong>Anonymous
+ </strong> Robert Meagher <strong>Anonymous </strong> Anonymous <strong>Anonymous
+ </strong> Anonymous <strong>Anonymous </strong> Anonymous <strong>Anonymous </strong>
+ Guy Shalev <strong>Anonymous </strong> Reibert Arbring <strong>Dennis
+ Laliberte </strong>
</p>
\ No newline at end of file
diff --git a/demos.php b/demos.php
index 9d53ae0..92cb2b6 100644
--- a/demos.php
+++ b/demos.php
@@ -1,34 +1,32 @@
<?php
-/*******************************************************************************
- * Copyright(c) 2015 Eclipse Foundation and others.
- * All rights reserved. This program and the accompanying materials
- * are made available under the terms of the Eclipse Public License v1.0
- * which accompanies this distribution, and is available at
- * http://eclipse.org/legal/epl-v10.html
+/**
+ * Copyright (c) 2015, 2018 Eclipse Foundation.
+ *
+ * This program and the accompanying materials are made
+ * available under the terms of the Eclipse Public License 2.0
+ * which is available at https://www.eclipse.org/legal/epl-2.0/
*
* Contributors:
- * Nathan Gervais (Eclipse Foundation) - Initial implementation
- * Eric Poirier (Eclipse Foundation)
- *******************************************************************************/
-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");
+ * Nathan Gervais (Eclipse Foundation) - Initial implementation
+ * Eric Poirier (Eclipse Foundation)
+ *
+ * SPDX-License-Identifier: EPL-2.0
+ */
+require_once ($_SERVER['DOCUMENT_ROOT'] . "/eclipse.org-common/system/app.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'
+$Theme = $App->getThemeClass();
+include ($App->getProjectCommon());
-// Begin: page-specific settings. Change these.
$pageTitle = "Helios Demos";
-$pageKeywords = "eclipse, helios, demo, video, release";
-$pageAuthor = "Lynn Gayowski";
+$Theme->setPageTitle($pageTitle);
+$Theme->setPageKeywords("eclipse, helios, demo, video, release");
+$Theme->setPageAuthor("Lynn Gayowski");
-// Place your html content in a file called content/en_pagename.php
ob_start();
-include("content/en_" . $App->getScriptName());
+include ("content/en_" . $App->getScriptName());
$html = ob_get_clean();
-# Generate the web page
-$App->generatePage(NULL, $Menu, NULL, $pageAuthor, $pageKeywords, $pageTitle, $html);
\ No newline at end of file
+$Theme->setHtml($html);
+$Theme->generatePage();
\ No newline at end of file
diff --git a/e4/content/en_index.php b/e4/content/en_index.php
index 6402829..9090134 100644
--- a/e4/content/en_index.php
+++ b/e4/content/en_index.php
@@ -1,52 +1,54 @@
<?php
-/*******************************************************************************
- * Copyright(c) 2015 Eclipse Foundation and others.
- * All rights reserved. This program and the accompanying materials
- * are made available under the terms of the Eclipse Public License v1.0
- * which accompanies this distribution, and is available at
- * http://eclipse.org/legal/epl-v10.html
+/**
+ * Copyright (c) 2015, 2018 Eclipse Foundation.
+ *
+ * This program and the accompanying materials are made
+ * available under the terms of the Eclipse Public License 2.0
+ * which is available at https://www.eclipse.org/legal/epl-2.0/
*
* Contributors:
- * Nathan Gervais (Eclipse Foundation) - Initial implementation
- * Eric Poirier (Eclipse Foundation)
- *******************************************************************************/
- ?>
-<h1>Eclipse SDK 4.0: The Next Generation Eclipse Platform (Early Adopter
- Release)</h1>
+ * Nathan Gervais (Eclipse Foundation) - Initial implementation
+ * Eric Poirier (Eclipse Foundation)
+ *
+ * SPDX-License-Identifier: EPL-2.0
+ */
+?>
+<h1><?php print $pageTitle; ?></h1>
<div class="row">
<div class="col-sm-12">
<img align="center" src="images/e4.png" />
</div>
<div class="col-sm-12" style="margin-top: 40px;">
<a href="#"><img style="position: relative; top: 20px;"
- src="http://dev.eclipse.org/huge_icons/actions/go-down.png" /></a>
- <a href="/downloads/packages/release/helios/sr2" style="font-size: 30px;">Download Now</a>
+ src="http://dev.eclipse.org/huge_icons/actions/go-down.png"
+ /></a> <a href="/downloads/packages/release/helios/sr2"
+ style="font-size: 30px;"
+ >Download Now</a>
</div>
</div>
<hr class="clearer" />
-<p>Eclipse SDK 4.0 (formerly called e4) is the next generation platform
- for building Eclipse-based rich client desktop applications. This new
- release makes it easier for developers to develop and assemble
- application and tools based on the Eclipse platform.</p>
-<p>The 4.0 release is for early adopters that want to begin taking
- advantage of the new api's and services. Eclipse tool users are urged
- to wait for future releases.</p>
+<p>Eclipse SDK 4.0 (formerly called e4) is the next generation platform for
+ building Eclipse-based rich client desktop applications. This new release
+ makes it easier for developers to develop and assemble application and tools
+ based on the Eclipse platform.</p>
+<p>The 4.0 release is for early adopters that want to begin taking advantage of
+ the new api's and services. Eclipse tool users are urged to wait for future
+ releases.</p>
<div class="row">
<div class="col-sm-12">
<h3>How RCP Developers Benefit</h3>
- <p>Developers who use the Eclipse Rich Client Platform (RCP) will
- find Eclipse SDK 4.0 makes it easier to build great looking rich
- client applications. Eclipse SDK 4.0 introduces the following:</p>
+ <p>Developers who use the Eclipse Rich Client Platform (RCP) will find
+ Eclipse SDK 4.0 makes it easier to build great looking rich client
+ applications. Eclipse SDK 4.0 introduces the following:</p>
<ul>
- <li>a new declarative and visual definition for user interfaces,
- making it easier and more flexible to design and change an
- application user interface. Also, making it easier to make a
- user interface look less like an IDE.</li>
- <li>a new services-orient programming model that makes it easier
- to use discreet application services of the Eclipse platform.</li>
- <li>better support for integrating web UI components into
- Eclipse-based applications, including support for OpenSocial
- gadgets.</li>
+ <li>a new declarative and visual definition for user interfaces, making it
+ easier and more flexible to design and change an application user
+ interface. Also, making it easier to make a user interface look less
+ like an IDE.</li>
+ <li>a new services-orient programming model that makes it easier to use
+ discreet application services of the Eclipse platform.</li>
+ <li>better support for integrating web UI components into Eclipse-based
+ applications, including support for OpenSocial gadgets.</li>
</ul>
<br />
<h3>Getting Started for RCP Developers</h3>
@@ -55,15 +57,14 @@
<li>Tutorials</li>
</ul>
</div>
-
<div class="col-sm-12">
<h3>How Tool Developers Benefit</h3>
- <p>Developers that have built Eclipse tools and plugins will want to
- start migrating these tools to Eclipse SDK 4.0. Developers will
- benefit from the following Eclipse SDK 4.0 features:</p>
+ <p>Developers that have built Eclipse tools and plugins will want to start
+ migrating these tools to Eclipse SDK 4.0. Developers will benefit from the
+ following Eclipse SDK 4.0 features:</p>
<ul>
- <li>a model-based workbench makes it easier to integrate your tool
- into the Eclipse workbench</li>
+ <li>a model-based workbench makes it easier to integrate your tool into
+ the Eclipse workbench</li>
</ul>
<br />
<h3>Getting Started for Tools Developers</h3>
diff --git a/e4/index.php b/e4/index.php
index a7cee0c..133c55d 100644
--- a/e4/index.php
+++ b/e4/index.php
@@ -1,35 +1,32 @@
<?php
-/*******************************************************************************
- * Copyright(c) 2015 Eclipse Foundation and others.
- * All rights reserved. This program and the accompanying materials
- * are made available under the terms of the Eclipse Public License v1.0
- * which accompanies this distribution, and is available at
- * http://eclipse.org/legal/epl-v10.html
+/**
+ * Copyright (c) 2015, 2018 Eclipse Foundation.
+ *
+ * This program and the accompanying materials are made
+ * available under the terms of the Eclipse Public License 2.0
+ * which is available at https://www.eclipse.org/legal/epl-2.0/
*
* Contributors:
- * Nathan Gervais (Eclipse Foundation) - Initial implementation
- * Eric Poirier (Eclipse Foundation)
- *******************************************************************************/
+ * Nathan Gervais (Eclipse Foundation) - Initial implementation
+ * Eric Poirier (Eclipse Foundation)
+ *
+ * SPDX-License-Identifier: EPL-2.0
+ */
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'
+$Theme = $App->getThemeClass();
+include($App->getProjectCommon());
-// Begin: page-specific settings. Change these.
$pageTitle = "Eclipse SDK 4.0: The Next Generation Eclipse Platform (Early Adopter Release)";
-$pageKeywords = "Eclipse SDK 4.0, e4";
-$pageAuthor = "Nathan Gervais";
+$Theme->setPageTitle($pageTitle);
+$Theme->setPageKeywords("Eclipse SDK 4.0, e4");
+$Theme->setPageAuthor("Nathan Gervais");
-// Place your html content in a file called content/en_pagename.php
ob_start();
-include("content/en_" . $App->getScriptName());
+include ("content/en_" . $App->getScriptName());
$html = ob_get_clean();
-# Generate the web page
-$App->AddExtraHtmlHeader('<link type="text/css" href="style.css" rel="stylesheet"/>');
-$App->generatePage(NULL, $Menu, NULL, $pageAuthor, $pageKeywords, $pageTitle, $html);
\ No newline at end of file
+$Theme->setHtml($html);
+$Theme->generatePage();
\ No newline at end of file
diff --git a/eclipse-sdk-4.0/content/en_index.php b/eclipse-sdk-4.0/content/en_index.php
index 028af13..2e778fa 100644
--- a/eclipse-sdk-4.0/content/en_index.php
+++ b/eclipse-sdk-4.0/content/en_index.php
@@ -1,15 +1,17 @@
<?php
-/*******************************************************************************
- * Copyright(c) 2015 Eclipse Foundation and others.
- * All rights reserved. This program and the accompanying materials
- * are made available under the terms of the Eclipse Public License v1.0
- * which accompanies this distribution, and is available at
- * http://eclipse.org/legal/epl-v10.html
+/**
+ * Copyright (c) 2015, 2018 Eclipse Foundation.
+ *
+ * This program and the accompanying materials are made
+ * available under the terms of the Eclipse Public License 2.0
+ * which is available at https://www.eclipse.org/legal/epl-2.0/
*
* Contributors:
- * Nathan Gervais (Eclipse Foundation) - Initial implementation
- * Eric Poirier (Eclipse Foundation)
- *******************************************************************************/
+ * Nathan Gervais (Eclipse Foundation) - Initial implementation
+ * Eric Poirier (Eclipse Foundation)
+ *
+ * SPDX-License-Identifier: EPL-2.0
+ */
?>
<div id="topper" class="clearfix">
<div class="logo" style="margin-top: 40px;"></div>
diff --git a/eclipse-sdk-4.0/index.php b/eclipse-sdk-4.0/index.php
index 740055e..7f9b1f8 100644
--- a/eclipse-sdk-4.0/index.php
+++ b/eclipse-sdk-4.0/index.php
@@ -1,35 +1,33 @@
<?php
-/*******************************************************************************
- * Copyright(c) 2015 Eclipse Foundation and others.
- * All rights reserved. This program and the accompanying materials
- * are made available under the terms of the Eclipse Public License v1.0
- * which accompanies this distribution, and is available at
- * http://eclipse.org/legal/epl-v10.html
+/**
+ * Copyright (c) 2015, 2018 Eclipse Foundation.
+ *
+ * This program and the accompanying materials are made
+ * available under the terms of the Eclipse Public License 2.0
+ * which is available at https://www.eclipse.org/legal/epl-2.0/
*
* Contributors:
- * Nathan Gervais (Eclipse Foundation) - Initial implementation
- * Eric Poirier (Eclipse Foundation)
- *******************************************************************************/
-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");
+ * Nathan Gervais (Eclipse Foundation) - Initial implementation
+ * Eric Poirier (Eclipse Foundation)
+ *
+ * SPDX-License-Identifier: EPL-2.0
+ */
+require_once ($_SERVER['DOCUMENT_ROOT'] . "/eclipse.org-common/system/app.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'
+$Theme = $App->getThemeClass();
+include ($App->getProjectCommon());
-// Begin: page-specific settings. Change these.
-$pageTitle = "Eclipse SDK 4.0: The Next Generation Eclipse Platform (Early Adopter Release)";
-$pageKeywords = "Eclipse SDK 4.0, e4";
-$pageAuthor = "Nathan Gervais";
+$pageTitle = "Eclipse SDK 4.0: The Next Generation Eclipse Platform (Early Adopter Release)";
+$Theme->setPageTitle($pageTitle);
+$Theme->setPageKeywords("Eclipse SDK 4.0, e4");
+$Theme->setPageAuthor("Nathan Gervais");
-// Place your html content in a file called content/en_pagename.php
ob_start();
-include("content/en_" . $App->getScriptName());
+include ("content/en_" . $App->getScriptName());
$html = ob_get_clean();
-# Generate the web page
$App->AddExtraHtmlHeader('<link type="text/css" href="style.css" rel="stylesheet"/>');
-$App->generatePage(NULL, $Menu, NULL, $pageAuthor, $pageKeywords, $pageTitle, $html);
\ No newline at end of file
+$Theme->setHtml($html);
+$Theme->generatePage();
\ No newline at end of file
diff --git a/eclipse-sdk-4.0/style.css b/eclipse-sdk-4.0/style.css
index 4ae0cc2..c0e768d 100644
--- a/eclipse-sdk-4.0/style.css
+++ b/eclipse-sdk-4.0/style.css
@@ -1,93 +1,82 @@
@CHARSET "ISO-8859-1";
-#container {
- padding:0;
-
+#container {
+ padding: 0;
}
#fullcolumn {
- padding-top:0px;
+ padding-top: 0px;
}
.twocolumn {
- width:45%;
- float:left;
- padding:20px;
- padding-top:30px;
-
+ width: 45%;
+ float: left;
+ padding: 20px;
+ padding-top: 30px;
}
.clearfix:after {
- content: ".";
- display: block;
- clear: both;
- visibility: hidden;
- line-height: 0;
- height: 0;
+ content: ".";
+ display: block;
+ clear: both;
+ visibility: hidden;
+ line-height: 0;
+ height: 0;
}
-
+
.clearfix {
- display: inline-block;
+ display: inline-block;
}
-
+
html[xmlns] .clearfix {
- display: block;
+ display: block;
}
-
+
* html .clearfix {
- height: 1%;
+ height: 1%;
}
h1 {
- font-size:30px;
+ font-size: 30px;
}
.subHeading {
- font-weight:bold;
- font-size:16px;
+ font-weight: bold;
+ font-size: 16px;
}
.description {
- font-size:15px;
- line-height:20px;
+ font-size: 15px;
+ line-height: 20px;
}
.logo {
- float:left;
- width:40%;
+ float: left;
+ width: 40%;
}
.topDesc {
- float:left;
- width:55%;
- color:#000;
+ float: left;
+ width: 55%;
+ color: #000;
}
-h1{
- color:#6E3E98;
-}
-
-
-h3 {
- border-bottom:2px solid #6E3E98;
-}
-
-h4 {
- border-bottom:1px dotted #888;
+h1 {
+ color: #6E3E98;
}
ul {
- margin-left:20px;
+ margin-left: 20px;
}
.bar {
- background-color:#6E3E98;
- height:7px;
+ background-color: #6E3E98;
+ height: 7px;
}
#topper {
- padding-top:20px;
- width:100%;
- background:transparent url('images/topper.png') no-repeat;
- background-size:cover;
+ padding: 20px 0;
+ width: 100%;
+ background: transparent url('images/topper.png') no-repeat;
+ background-size: cover;
}
\ No newline at end of file
diff --git a/friends.php b/friends.php
index c8a2aca..408d47f 100644
--- a/friends.php
+++ b/friends.php
@@ -1,35 +1,33 @@
<?php
-/*******************************************************************************
- * Copyright(c) 2015 Eclipse Foundation and others.
- * All rights reserved. This program and the accompanying materials
- * are made available under the terms of the Eclipse Public License v1.0
- * which accompanies this distribution, and is available at
- * http://eclipse.org/legal/epl-v10.html
+/**
+ * Copyright (c) 2015, 2018 Eclipse Foundation.
+ *
+ * This program and the accompanying materials are made
+ * available under the terms of the Eclipse Public License 2.0
+ * which is available at https://www.eclipse.org/legal/epl-2.0/
*
* Contributors:
- * Nathan Gervais (Eclipse Foundation) - Initial implementation
- * Eric Poirier (Eclipse Foundation)
- *******************************************************************************/
-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");
+ * Nathan Gervais (Eclipse Foundation) - Initial implementation
+ * Eric Poirier (Eclipse Foundation)
+ *
+ * SPDX-License-Identifier: EPL-2.0
+ */
+require_once ($_SERVER['DOCUMENT_ROOT'] . "/eclipse.org-common/system/app.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'
+$Theme = $App->getThemeClass();
+$App->setOutDated ( '2011-11-11', '<a href="https://projects.eclipse.org/releases/helios">Helios</a> is a past version of Eclipse. Please visit our <a href="/downloads/">download</a> page for the latest version of Eclipse. ' );
-// Begin: page-specific settings. Change these.
-$pageTitle = "Friends of Eclipse";
-$pageKeywords = "Friends of Eclipse, Helios";
-$pageAuthor = "Nathan Gervais";
+$pageTitle = "Friends of Eclipse";
+$Theme->setPageTitle($pageTitle);
+$Theme->setPageKeywords("Friends of Eclipse, Helios");
+$Theme->setPageAuthor("Nathan Gervais");
-// Place your html content in a file called content/en_pagename.php
ob_start();
-include("content/en_" . $App->getScriptName());
+include ("content/en_" . $App->getScriptName());
$html = ob_get_clean();
-# Generate the web page
$App->AddExtraHtmlHeader('<link type="text/css" href="/helios/style.css" rel="stylesheet"/>');
-$App->generatePage(NULL, $Menu, NULL, $pageAuthor, $pageKeywords, $pageTitle, $html);
\ No newline at end of file
+$Theme->setHtml($html);
+$Theme->generatePage();
\ No newline at end of file
diff --git a/heliosinaction.php b/heliosinaction.php
index 4ee61a8..2e20478 100644
--- a/heliosinaction.php
+++ b/heliosinaction.php
@@ -1,34 +1,32 @@
<?php
-/*******************************************************************************
- * Copyright(c) 2015 Eclipse Foundation and others.
- * All rights reserved. This program and the accompanying materials
- * are made available under the terms of the Eclipse Public License v1.0
- * which accompanies this distribution, and is available at
- * http://eclipse.org/legal/epl-v10.html
+/**
+ * Copyright (c) 2015, 2018 Eclipse Foundation.
+ *
+ * This program and the accompanying materials are made
+ * available under the terms of the Eclipse Public License 2.0
+ * which is available at https://www.eclipse.org/legal/epl-2.0/
*
* Contributors:
- * Nathan Gervais (Eclipse Foundation) - Initial implementation
- * Eric Poirier (Eclipse Foundation)
- *******************************************************************************/
-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");
+ * Nathan Gervais (Eclipse Foundation) - Initial implementation
+ * Eric Poirier (Eclipse Foundation)
+ *
+ * SPDX-License-Identifier: EPL-2.0
+ */
+require_once ($_SERVER['DOCUMENT_ROOT'] . "/eclipse.org-common/system/app.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'
+$Theme = $App->getThemeClass();
+include ($App->getProjectCommon());
-// Begin: page-specific settings. Change these.
-$pageTitle = "Helios In Action";
-$pageKeywords = "eclipse, helios, action, webinar, release, virtual conference";
-$pageAuthor = "Lynn Gayowski";
+$pageTitle = "Helios In Action";
+$Theme->setPageTitle($pageTitle);
+$Theme->setPageKeywords("eclipse, helios, action, webinar, release, virtual conference");
+$Theme->setPageAuthor("Lynn Gayowski");
-// Place your html content in a file called content/en_pagename.php
ob_start();
-include("content/en_" . $App->getScriptName());
+include ("content/en_" . $App->getScriptName());
$html = ob_get_clean();
-# Generate the web page
-$App->generatePage(NULL, $Menu, NULL, $pageAuthor, $pageKeywords, $pageTitle, $html);
\ No newline at end of file
+$Theme->setHtml($html);
+$Theme->generatePage();
\ No newline at end of file
diff --git a/index.php b/index.php
index d4d091c..6ca8134 100644
--- a/index.php
+++ b/index.php
@@ -1,35 +1,33 @@
<?php
-/*******************************************************************************
- * Copyright(c) 2015 Eclipse Foundation and others.
- * All rights reserved. This program and the accompanying materials
- * are made available under the terms of the Eclipse Public License v1.0
- * which accompanies this distribution, and is available at
- * http://eclipse.org/legal/epl-v10.html
+/**
+ * Copyright (c) 2015, 2018 Eclipse Foundation.
+ *
+ * This program and the accompanying materials are made
+ * available under the terms of the Eclipse Public License 2.0
+ * which is available at https://www.eclipse.org/legal/epl-2.0/
*
* Contributors:
- * Nathan Gervais (Eclipse Foundation) - Initial implementation
- * Eric Poirier (Eclipse Foundation)
- *******************************************************************************/
-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");
+ * Nathan Gervais (Eclipse Foundation) - Initial implementation
+ * Eric Poirier (Eclipse Foundation)
+ *
+ * SPDX-License-Identifier: EPL-2.0
+ */
+require_once ($_SERVER['DOCUMENT_ROOT'] . "/eclipse.org-common/system/app.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'
+$Theme = $App->getThemeClass();
+$App->setOutDated ( '2011-11-11', '<a href="https://projects.eclipse.org/releases/helios">Helios</a> is a past version of Eclipse. Please visit our <a href="/downloads/">download</a> page for the latest version of Eclipse. ' );
-// Begin: page-specific settings. Change these.
-$pageTitle = "Eclipse.org - Helios Simultaneous Release!";
-$pageKeywords = "eclipse helios, helios, helios release train";
-$pageAuthor = "Eclipse Foundation, Inc.";
+$pageTitle = "Eclipse.org - Helios Simultaneous Release!";
+$Theme->setPageTitle($pageTitle);
+$Theme->setPageKeywords("eclipse helios, helios, helios release train");
+$Theme->setPageAuthor("Eclipse Foundation, Inc.");
-// Place your html content in a file called content/en_pagename.php
ob_start();
-include("content/en_" . $App->getScriptName());
+include ("content/en_" . $App->getScriptName());
$html = ob_get_clean();
-# Generate the web page
$App->AddExtraHtmlHeader('<link type="text/css" href="/helios/style.css" rel="stylesheet"/>');
-$App->generatePage(NULL, $Menu, NULL, $pageAuthor, $pageKeywords, $pageTitle, $html);
\ No newline at end of file
+$Theme->setHtml($html);
+$Theme->generatePage();
\ No newline at end of file
diff --git a/indexNow.php b/indexNow.php
index 62b14af..973feb1 100644
--- a/indexNow.php
+++ b/indexNow.php
@@ -1,57 +1,35 @@
-<?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(); $theme = "Phoenix"; include($App->getProjectCommon()); # All on the same line to unclutter the user's desktop'
+<?php
+/**
+ * Copyright (c) 2010, 2015, 2018 Eclipse Foundation.
+ *
+ * This program and the accompanying materials are made
+ * available under the terms of the Eclipse Public License 2.0
+ * which is available at https://www.eclipse.org/legal/epl-2.0/
+ *
+ * Contributors:
+ * Nathan Gervais (Eclipse Foundation) - Initial implementation
+ * Eric Poirier (Eclipse Foundation)
+ *
+ * SPDX-License-Identifier: EPL-2.0
+ */
+require_once ($_SERVER['DOCUMENT_ROOT'] . "/eclipse.org-common/system/app.class.php");
- #*****************************************************************************
- #
- # index.php
- #
- # Author: Nathan Gervais
- # Date: 2010-04-16
- #
- # Description: Ganymede Landing Page
- #
- #****************************************************************************
-
- #
- # Begin: page-specific settings. Change these.
- $pageTitle = "Eclipse.org - Helios Simultaneous Release!";
- $pageKeywords = "eclipse helios, helios, helios release train";
- $pageAuthor = "Eclipse Foundation, Inc.";
-
- # Add page-specific Nav bars here
- # Format is Link text, link URL (can be http://www.someothersite.com/), target (_self, _blank)
- # $Nav->addCustomNav("My Link", "mypage.php", "_self");
- # $Nav->addCustomNav("Google", "http://www.google.com/", "_blank");
+$App = new App();
+$Theme = $App->getThemeClass();
- # End: page-specific settings
- #
-
- # Place your html content in a file called content/en_pagename.php
- ob_start();
- ?>
- <div id="fullcolumn" class="helios">
- <div id="midcolumn">
- <div>
- <p class="description">Eclipse Helios is the annual release of Eclipse projects in 2010; this year 39 project teams are part of the release. <br/>
- <br/>Click <a style="color:#FFF;" href="http://wiki.eclipse.org/Simultaneous_Release">here</a> to find out about the newest Eclipse Simultaneous Release</p>
- </div>
- <div>
- <ul class="links">
- <li class="download sun indent1"><a title="Download Helios" href="/downloads/">Download Helios</a></li>
- <li class="projects sun indent2"><a title="Projects" href="/helios/projects.php">Projects</a></li>
- <li class="projects sun indent3"><a title="Blogathon" href="/helios/blogathon/reviews.php">Blogathon</a></li>
- <li class="projects sun indent4"><a title="Demos" href="/helios/demos.php">Demos</a></li>
- <li class="projects sun indent5"><a title="Helios Virtual Conference" href="/helios/heliosinaction.php">Virtual Conference</a></li>
-<!-- <li class="blog"><a title="Helios on Twitter" target="_blank" href="http://galileo.chinposin.com/"> </a></li>-->
- <li class="friends indent6"><a title="Friends of Eclipse" href="friends.php">Wanted: 360 Friends of Helios</a></li>
- </ul>
- </div>
- <a id="continue" href="/home/">Continue to Eclipse.org</a>
- </div>
- </div>
- <?
- $html = ob_get_clean();
- # Generate the web page
- $App->Promotion = TRUE;
- $App->AddExtraHtmlHeader('<link type="text/css" href="/helios/styleNow.css" rel="stylesheet"/>');
- $App->generatePage("Nova", $Menu, NULL, $pageAuthor, $pageKeywords, $pageTitle, $html);
-?>
\ No newline at end of file
+include ($App->getProjectCommon());
+
+$pageTitle = "Eclipse.org - Helios Simultaneous Release!";
+$pageKeywords = "eclipse helios, helios, helios release train";
+$pageAuthor = "Eclipse Foundation, Inc.";
+
+$Theme->setPageTitle($pageTitle);
+$Theme->setPageKeywords("Friends of Eclipse, Helios");
+$Theme->setPageAuthor("Nathan Gervais");
+
+ob_start();
+include ("content/en_" . $App->getScriptName());
+$html = ob_get_clean();
+
+$Theme->setHtml($html);
+$Theme->generatePage();
\ No newline at end of file
diff --git a/planning/index.php b/planning/index.php
index 4451e71..9b8d41b 100644
--- a/planning/index.php
+++ b/planning/index.php
@@ -1,15 +1,15 @@
<?php
-/*******************************************************************************
- * Copyright(c) 2015 Eclipse Foundation and others.
- * All rights reserved. This program and the accompanying materials
- * are made available under the terms of the Eclipse Public License v1.0
- * which accompanies this distribution, and is available at
- * http://eclipse.org/legal/epl-v10.html
+/**
+ * Copyright (c) 2015, 2018 Eclipse Foundation.
+ *
+ * This program and the accompanying materials are made
+ * available under the terms of the Eclipse Public License 2.0
+ * which is available at https://www.eclipse.org/legal/epl-2.0/
*
* Contributors:
- * Nathan Gervais (Eclipse Foundation) - Initial implementation
- * Eric Poirier (Eclipse Foundation)
- *******************************************************************************/
-
-header('Location:http://www.eclipse.org/projects/releases/releases.php?release=helios');
-?>
\ No newline at end of file
+ * Nathan Gervais (Eclipse Foundation) - Initial implementation
+ * Eric Poirier (Eclipse Foundation)
+ *
+ * SPDX-License-Identifier: EPL-2.0
+ */
+header('Location:http://www.eclipse.org/projects/releases/releases.php?release=helios');
\ No newline at end of file
diff --git a/projects.php b/projects.php
index 40d2858..05cf928 100644
--- a/projects.php
+++ b/projects.php
@@ -1,19 +1,17 @@
-<?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'
-
- #*****************************************************************************
- #
- # projects.php
- #
- # Author: Nathan Gervais
- # Date: 2005-06-16
- #
- # Description: Type your page comments here - these are not sent to the browser
- #
- # WTB: This script has been generalized and moved to
- # http://eclipse.org/projects/releases/releases.php?release=helios
- #
- #****************************************************************************
-
+<?php
+/**
+ * Copyright (c) 2005, 2015, 2018 Eclipse Foundation.
+ *
+ * This program and the accompanying materials are made
+ * available under the terms of the Eclipse Public License 2.0
+ * which is available at https://www.eclipse.org/legal/epl-2.0/
+ *
+ * Contributors:
+ * Nathan Gervais (Eclipse Foundation) - Initial implementation
+ * Eric Poirier (Eclipse Foundation)
+ *
+ * SPDX-License-Identifier: EPL-2.0
+ */
+
header("Location: http://www.eclipse.org/projects/releases/releases.php?release=helios");
-exit;
-?>
\ No newline at end of file
+exit();
\ No newline at end of file
diff --git a/scripts/projectsTable.php b/scripts/projectsTable.php
index 3aed76a..f47b426 100644
--- a/scripts/projectsTable.php
+++ b/scripts/projectsTable.php
@@ -1,68 +1,80 @@
+<?
+/**
+ * Copyright (c) 2015, 2018 Eclipse Foundation.
+ *
+ * This program and the accompanying materials are made
+ * available under the terms of the Eclipse Public License 2.0
+ * which is available at https://www.eclipse.org/legal/epl-2.0/
+ *
+ * Contributors:
+ * Nathan Gervais (Eclipse Foundation) - Initial implementation
+ * Eric Poirier (Eclipse Foundation)
+ *
+ * SPDX-License-Identifier: EPL-2.0
+ */
+require_once ($_SERVER['DOCUMENT_ROOT'] . "/eclipse.org-common/system/smartconnection.class.php");
+require_once ($_SERVER['DOCUMENT_ROOT'] . "/eclipse.org-common/classes/projects/projectInfoList.class.php");
-
-<?
-require_once($_SERVER['DOCUMENT_ROOT'] . "/eclipse.org-common/system/smartconnection.class.php");
-require_once($_SERVER['DOCUMENT_ROOT'] . "/eclipse.org-common/classes/projects/projectInfoList.class.php");
-
-function findHeliosRelease($releases)
-{
- $retval = array();
- foreach ($releases as $rr)
- {
- $earlydate = strtotime("2010-06-21");
- $latedate = strtotime("2010-07-01");
- $date = strtotime($rr->date);
- if (($date >= $earlydate) && ($date <= $latedate))
- {
- $retval['version'] = $rr->name;
- }
- }
- return $retval;
+function findHeliosRelease($releases) {
+ $retval = array();
+ foreach ($releases as $rr) {
+ $earlydate = strtotime("2010-06-21");
+ $latedate = strtotime("2010-07-01");
+ $date = strtotime($rr->date);
+ if (($date >= $earlydate) && ($date <= $latedate)) {
+ $retval['version'] = $rr->name;
+ }
+ }
+ return $retval;
}
-function projectTable()
-{
- ob_start();
- ?>
- <table cellspacing=0 class="webinars">
- <tr class="header">
- <td width="35%">Project Name</td>
- <td width="12%" align="center">Version</td>
- <td width="10%" align="center">Project Summary</td>
- <? /*<td class="tableHeader" width="12%" align="center">New And Noteworthy</td>*/ ?>
- <td width="12%" align="center">Download</td>
- </tr>
- <?
- $projectInfoList = new projectInfoList();
- $projectInfoList->selectProjectInfoList(NULL, 'simultaneousrelease', 'helios', 1);
- $projectInfoList->alphaSortList();
-
- $numProjects = $projectInfoList->getCount();
-
- for ($i = 0; $i < $numProjects; $i++)
- {
- $projectInfoIterator = $projectInfoList->getItemAt($i);
- $projectName = $projectInfoIterator->projectname;
- $projectid = $projectInfoIterator->projectid;
- $projectShortName = $projectInfoIterator->projectshortname;
- $download = $projectInfoIterator->downloadsurl;
- $url = $projectInfoIterator->projecturl;
- $releases = $projectInfoIterator->releases;
- $downloadurl = $projectInfoIterator->downloadsurl;
- $releaseInfo = str_replace('\"', '', findHeliosRelease($releases));
- if ($projectName != ""){
- ?> <tr class="tableRow">
- <td><b><a href="<?=$url;?>"><?=$projectName;?></a></b></td>
- <td align="center"><?=$releaseInfo['version'];?></td>
- <td align="center"><a href="http://www.eclipse.org/projects/project_summary.php?projectid=<?=$projectid;?>"><img src="images/homepage.gif"></a></td>
- <td align="center"><? if ($downloadurl != "") {?><a href="<?=$downloadurl;?>">Download</a> <? } ?></td>
- </tr> <? }
- }
- ?>
- </table>
- <?
- $html = ob_get_contents();
- ob_end_clean();
-
- return $html;
+function projectTable() {
+ ob_start();
+ ?>
+<table cellspacing=0 class="webinars">
+ <tr class="header">
+ <td width="35%">Project Name</td>
+ <td width="12%" align="center">Version</td>
+ <td width="10%" align="center">Project Summary</td>
+ <? /*<td class="tableHeader" width="12%" align="center">New And Noteworthy</td>*/ ?>
+ <td width="12%" align="center">Download</td>
+ </tr>
+ <?
+ $projectInfoList = new projectInfoList();
+ $projectInfoList->selectProjectInfoList(NULL, 'simultaneousrelease', 'helios', 1);
+ $projectInfoList->alphaSortList();
+
+ $numProjects = $projectInfoList->getCount();
+
+ for ($i = 0; $i < $numProjects; $i++) {
+ $projectInfoIterator = $projectInfoList->getItemAt($i);
+ $projectName = $projectInfoIterator->projectname;
+ $projectid = $projectInfoIterator->projectid;
+ $projectShortName = $projectInfoIterator->projectshortname;
+ $download = $projectInfoIterator->downloadsurl;
+ $url = $projectInfoIterator->projecturl;
+ $releases = $projectInfoIterator->releases;
+ $downloadurl = $projectInfoIterator->downloadsurl;
+ $releaseInfo = str_replace('\"', '', findHeliosRelease($releases));
+ if ($projectName != "") {
+ ?> <tr class="tableRow">
+ <td><b><a href="<?=$url;?>"><?=$projectName;?></a></b></td>
+ <td align="center"><?=$releaseInfo['version'];?></td>
+ <td align="center"><a
+ href="http://www.eclipse.org/projects/project_summary.php?projectid=<?=$projectid;?>"
+ ><img src="images/homepage.gif"></a></td>
+ <td align="center"><? if ($downloadurl != "") {?><a
+ href="<?=$downloadurl;?>"
+ >Download</a> <? } ?></td>
+ </tr> <?
+
+}
+ }
+ ?>
+ </table>
+<?
+ $html = ob_get_contents();
+ ob_end_clean();
+
+ return $html;
} ?>
diff --git a/scripts/wantedFunctions.php b/scripts/wantedFunctions.php
index b6f32e4..f158518 100644
--- a/scripts/wantedFunctions.php
+++ b/scripts/wantedFunctions.php
@@ -1,61 +1,72 @@
<?php
-require_once($_SERVER['DOCUMENT_ROOT'] . "/eclipse.org-common/system/smartconnection.class.php");
-require_once($_SERVER['DOCUMENT_ROOT'] . "/eclipse.org-common/classes/friends/friendsContributionsList.class.php");
+/**
+ * Copyright (c) 2015, 2018 Eclipse Foundation.
+ *
+ * This program and the accompanying materials are made
+ * available under the terms of the Eclipse Public License 2.0
+ * which is available at https://www.eclipse.org/legal/epl-2.0/
+ *
+ * Contributors:
+ * Nathan Gervais (Eclipse Foundation) - Initial implementation
+ * Eric Poirier (Eclipse Foundation)
+ *
+ * SPDX-License-Identifier: EPL-2.0
+ */
+require_once ($_SERVER['DOCUMENT_ROOT'] . "/eclipse.org-common/system/smartconnection.class.php");
+require_once ($_SERVER['DOCUMENT_ROOT'] . "/eclipse.org-common/classes/friends/friendsContributionsList.class.php");
-function sideDonorList($_numrows, $_amount=TRUE) {
+function sideDonorList($_numrows, $_amount = TRUE) {
-
- $where = "WHERE F.is_benefit = 1 AND FC.date_expired > '2011-05-01 00:00:00' AND FC.date_expired < '2011-08-01 00:00:00'";
-
- $friendsContributionsList = new FriendsContributionsList();
- $friendsContributionsList->selectFriendsContributionsList(0, $_numrows, $where);
- $friend = new Friend();
- $contribution = new Contribution();
- $fcObject = new FriendsContributions();
-
- $count = $friendsContributionsList->getCount();
- for ($i=0; $i < $count; $i++)
- {
- $fcObject = $friendsContributionsList->getItemAt($i);
- $friend = $fcObject->getFriendObject();
- $contribution = $fcObject->getContributionObject();
- $date = $contribution->getDateExpired();
- $date = strtotime($date);
- $date = strtotime("-1 year", $date);
- $now = strtotime("now");
- if ($date <= $now) {
- $anonymous = $friend->getIsAnonymous();
- if ($anonymous != 1) {
- $name = ucfirst(strtolower($friend->getFirstName())) . " " . ucfirst(strtolower($friend->getLastName()));
- $name = htmlentities($name);
- }
- else
- $name = "Anonymous";
- $benefit = $friend->getIsBenefit();
- if ($benefit)
- $style = "";
- else
- $style = "";
- if ($_amount) {
- $amount = $contribution->getAmount();
- echo "<li $style>$name - $" . $amount . "</li>";
- }
- else {
- if ($i % 2 == 0){
- echo "<b>" . $name . " </b>";
- }
- else {
- echo "$name ";
- }
- }
- }
- }
+ $where = "WHERE F.is_benefit = 1 AND FC.date_expired > '2011-05-01 00:00:00' AND FC.date_expired < '2011-08-01 00:00:00'";
+
+ $friendsContributionsList = new FriendsContributionsList();
+ $friendsContributionsList->selectFriendsContributionsList(0, $_numrows, $where);
+ $friend = new Friend();
+ $contribution = new Contribution();
+ $fcObject = new FriendsContributions();
+
+ $count = $friendsContributionsList->getCount();
+ for ($i = 0; $i < $count; $i++) {
+ $fcObject = $friendsContributionsList->getItemAt($i);
+ $friend = $fcObject->getFriendObject();
+ $contribution = $fcObject->getContributionObject();
+ $date = $contribution->getDateExpired();
+ $date = strtotime($date);
+ $date = strtotime("-1 year", $date);
+ $now = strtotime("now");
+ if ($date <= $now) {
+ $anonymous = $friend->getIsAnonymous();
+ if ($anonymous != 1) {
+ $name = ucfirst(strtolower($friend->getFirstName())) . " " . ucfirst(strtolower($friend->getLastName()));
+ $name = htmlentities($name);
+ }
+ else
+ $name = "Anonymous";
+ $benefit = $friend->getIsBenefit();
+ if ($benefit)
+ $style = "";
+ else
+ $style = "";
+ if ($_amount) {
+ $amount = $contribution->getAmount();
+ echo "<li $style>$name - $" . $amount . "</li>";
+ }
+ else {
+ if ($i % 2 == 0) {
+ echo "<b>" . $name . " </b>";
+ }
+ else {
+ echo "$name ";
+ }
+ }
+ }
+ }
}
function getWantedCount() {
- $where = "WHERE F.is_benefit = 1 AND FC.date_expired > '2011-05-01 00:00:00' AND FC.date_expired < '2011-08-01 00:00:00'";
-
- $friendsContributionsList = new FriendsContributionsList();
- $friendsContributionsList->selectFriendsContributionsList(0, 500, $where);
- return $friendsContributionsList->getCount();
+ $where = "WHERE F.is_benefit = 1 AND FC.date_expired > '2011-05-01 00:00:00' AND FC.date_expired < '2011-08-01 00:00:00'";
+
+ $friendsContributionsList = new FriendsContributionsList();
+ $friendsContributionsList->selectFriendsContributionsList(0, 500, $where);
+ return $friendsContributionsList->getCount();
}
\ No newline at end of file
diff --git a/style.css b/style.css
index 12ec7dc..4075f08 100644
--- a/style.css
+++ b/style.css
@@ -8,243 +8,239 @@
line-height: 0;
height: 0;
}
-
-.clearfix {
- display: inline-block;
-}
-
+
.helios a, .heliosBlank a {
- color:#FFC600;
+ color: #FFC600;
}
-
+
html[xmlns] .clearfix {
display: block;
}
-
+
* html .clearfix {
height: 1%;
}
#clearFooter {
- height:0px !important;
+ height: 0px !important;
}
-
.helios {
- background:#000 url('images/heliosNow2.jpg') no-repeat;
- min-height:640px;
- width:978px;
+ background: #000 url('images/heliosNow2.jpg') no-repeat;
+ min-height: 640px;
+
}
.heliosBlank {
- background:#000 url('images/heliosBlank.jpg') no-repeat;
- min-height:575px;
+ background: #000 url('images/heliosBlank.jpg') no-repeat;
+ min-height: 575px;
}
-#fullcolumn {
- width:980px;
- margin-left:-15px;
+#fullcolumn {
+ width: 980px;
+ margin-left: -15px;
}
#midcolumn {
- position:relative;
- width:100%
+ position: relative;
+ width: 100%
}
.description {
- position:absolute;
- width:500px;
+ position: absolute;
+ width: 500px;
top: 101px;
left: 471px;
- font-size:14px;
- line-height:18px;
+ font-size: 14px;
+ line-height: 18px;
text-shadow: 2px 2px 2px #000;
- color:#fff;
+ color: #fff;
}
.links {
- position:absolute;
- width:530px;
- top:200px;
- left:455px;
-
+ position: absolute;
+ width: 530px;
+ top: 200px;
+ left: 455px;
}
+
.download {
+
}
.friends {
- list-style-image:url('images/icons/star.png') !important;
+ list-style-image: url('images/icons/star.png') !important;
}
-
.sun {
- list-style-image:url('images/icons/sun.png') !important;
+ list-style-image: url('images/icons/sun.png') !important;
}
-
-#novaContent li {
- color:#FFF;
- margin-bottom:20px;
+#novaContent li {
+ color: #FFF;
+ margin-bottom: 20px;
}
.links li a {
- color:#FFF;
- font-size:26px;
- position:relative;
- top:-3px;
+ color: #FFF;
+ font-size: 26px;
+ position: relative;
+ top: -3px;
text-shadow: 2px 2px 2px #000;
}
.indent2 {
- position:relative;
- left:-27px;
+ position: relative;
+ left: -27px;
}
.indent3 {
- position:relative;
- left:-72px;
+ position: relative;
+ left: -72px;
}
+
.indent4 {
- position:relative;
- left:-147px;
+ position: relative;
+ left: -147px;
}
+
.indent5 {
- position:relative;
- left:-225px;
+ position: relative;
+ left: -225px;
}
.indent6 {
- position:relative;
- left:-320px;
+ position: relative;
+ left: -320px;
}
.wantedPoster {
- float:left;
- margin-left:25px;
- margin-top:50px;
-
+ float: left;
+ margin-left: 25px;
+ margin-top: 50px;
}
.wantedDesc {
- float:left;
- width:645px;
- margin-top:55px;
+ float: left;
+ width: 645px;
+ margin-top: 55px;
}
-.wantedDesc li p{
- position:relative;
- top:-15px;
+.wantedDesc li p {
+ position: relative;
+ top: -15px;
}
.wantedDesc li {
- list-style-position:inside;
+ list-style-position: inside;
}
.wantedDesc h3 {
- display:inline;
- color:#FFF;
- border:0px;
+ display: inline;
+ color: #FFF;
+ border: 0px;
}
-.wantedDesc p{
- color:#fff;
+.wantedDesc p {
+ color: #fff;
}
-.donorList { clear:both; margin-left:0px; padding-left:0;}
+.donorList {
+ clear: both;
+ margin-left: 0px;
+ padding-left: 0;
+}
-.donorList li{
- float:left;
- list-style-image:url("images/starbullet.png") !important;
- margin-bottom:0px !important;
- margin-right:10px;
+.donorList li {
+ float: left;
+ list-style-image: url("images/starbullet.png") !important;
+ margin-bottom: 0px !important;
+ margin-right: 10px;
}
h1.wanted {
- font-size:40px;
- margin-bottom:20px;
+ font-size: 40px;
+ margin-bottom: 20px;
line-height: 20px;
font-weight: bold;
padding-bottom: 10px;
- color:#fff;
+ color: #fff;
}
#bulletList {
- margin-left:30px;
+ margin-left: 30px;
}
.donate {
- font-size:30px;
- color:#FFC600;
- line-height:32px;
+ font-size: 30px;
+ color: #FFC600;
+ line-height: 32px;
}
.wrapper {
- clear:both;
+ clear: both;
}
.wrapper p:first-letter {
- font-size:24px;
- font-weight:bold;
+ font-size: 24px;
+ font-weight: bold;
}
.wrapper p {
- font-size:14px;
+ font-size: 14px;
}
.star {
- float:left;
- width:40px;
- height:50px;
+ float: left;
+ width: 40px;
+ height: 50px;
}
.counter {
- text-align:center;
- font-size:20px;
- line-height:28px;
- color:#fff;
+ text-align: center;
+ font-size: 20px;
+ line-height: 28px;
+ color: #fff;
}
span.active {
- font-size:20px;
- color:#FFC600;
- font-weight:bold;
+ font-size: 20px;
+ color: #FFC600;
+ font-weight: bold;
}
.progressBar {
- height:15px;
- width:600px;
- clear:both;
- background:#80662B;
- margin:30px 0;
-
+ height: 15px;
+ width: 600px;
+ clear: both;
+ background: #80662B;
+ margin: 30px 0;
}
.progress {
- background-image:url('images/progress.jpg');
- height:15px;
- margin-bottom:0;
+ background-image: url('images/progress.jpg');
+ height: 15px;
+ margin-bottom: 0;
}
-.donorMore a{
- color:#FFC600;
+.donorMore a {
+ color: #FFC600;
}
-.webinartitle a{
- font-size:20px;
- color:#FFC600;
- font-weight:bold;
+.webinartitle a {
+ font-size: 20px;
+ color: #FFC600;
+ font-weight: bold;
}
p {
- font-family: Helvetica, Sans-serif;
+ font-family: Helvetica, Sans-serif;
}
#continue {
- font-size:18px;
- color:#FFF;
- position:relative;
- top:575px;
- left:700px;
-}
-
-
+ font-size: 18px;
+ color: #FFF;
+ position: relative;
+ top: 575px;
+ left: 700px;
+}
\ No newline at end of file
diff --git a/styleNow.css b/styleNow.css
index 14d2742..a179927 100644
--- a/styleNow.css
+++ b/styleNow.css
@@ -1,245 +1,245 @@
@CHARSET "ISO-8859-1";
.clearfix:after {
- content: ".";
- display: block;
- clear: both;
- visibility: hidden;
- line-height: 0;
- height: 0;
+ content: ".";
+ display: block;
+ clear: both;
+ visibility: hidden;
+ line-height: 0;
+ height: 0;
}
-
+
.clearfix {
- display: inline-block;
+ display: inline-block;
}
-
+
a {
- color:#FFC600;
+ color: #FFC600;
}
-
+
html[xmlns] .clearfix {
- display: block;
+ display: block;
}
-
+
* html .clearfix {
- height: 1%;
+ height: 1%;
}
#clearFooter {
- height:0px !important;
+ height: 0px !important;
}
-#novaContent{
- background:#000;
- color:#FFF;
- width:979px;
+#novaContent {
+ background: #000;
+ color: #FFF;
+ width: 979px;
}
.helios {
- background:#000 url('images/heliosNow2.jpg') no-repeat;
- min-height:640px;
- width:978px;
+ background: #000 url('images/heliosNow2.jpg') no-repeat;
+ min-height: 640px;
+ width: 978px;
}
.heliosBlank {
- background:#000 url('images/heliosBlank.jpg') no-repeat;
- min-height:575px;
+ background: #000 url('images/heliosBlank.jpg') no-repeat;
+ min-height: 575px;
}
-#fullcolumn {
- width:980px;
- margin-left:0px;
- margin-bottom:7px;
+#fullcolumn {
+ width: 980px;
+ margin-left: 0px;
+ margin-bottom: 7px;
}
#midcolumn {
- position:relative;
- width:100%
+ position: relative;
+ width: 100%
}
.description {
- position:absolute;
- width:500px;
- top:90px;
- left:450px;
- font-size:14px;
- line-height:18px;
- text-shadow: 2px 2px 2px #000;
+ position: absolute;
+ width: 500px;
+ top: 90px;
+ left: 450px;
+ font-size: 14px;
+ line-height: 18px;
+ text-shadow: 2px 2px 2px #000;
}
.links {
- position:absolute;
- width:530px;
- top:200px;
- left:455px;
-
+ position: absolute;
+ width: 530px;
+ top: 200px;
+ left: 455px;
}
+
.download {
+
}
.friends {
- list-style-image:url('images/icons/star.png') !important;
+ list-style-image: url('images/icons/star.png') !important;
}
-
.sun {
- list-style-image:url('images/icons/sun.png') !important;
+ list-style-image: url('images/icons/sun.png') !important;
}
-
-#novaContent li {
- color:#FFF;
- margin-bottom:20px;
+#novaContent li {
+ color: #FFF;
+ margin-bottom: 20px;
}
.links li a {
- color:#FFF;
- font-size:26px;
- position:relative;
- top:-3px;
- text-shadow: 2px 2px 2px #000;
+ color: #FFF;
+ font-size: 26px;
+ position: relative;
+ top: -3px;
+ text-shadow: 2px 2px 2px #000;
}
.indent2 {
- position:relative;
- left:-27px;
+ position: relative;
+ left: -27px;
}
.indent3 {
- position:relative;
- left:-72px;
+ position: relative;
+ left: -72px;
}
+
.indent4 {
- position:relative;
- left:-147px;
+ position: relative;
+ left: -147px;
}
+
.indent5 {
- position:relative;
- left:-225px;
+ position: relative;
+ left: -225px;
}
.indent6 {
- position:relative;
- left:-320px;
+ position: relative;
+ left: -320px;
}
.wantedPoster {
- float:left;
- margin-left:25px;
- margin-top:50px;
-
+ float: left;
+ margin-left: 25px;
+ margin-top: 50px;
}
.wantedDesc {
- float:left;
- width:600px;
- margin-top:55px;
+ float: left;
+ width: 600px;
+ margin-top: 55px;
}
-.wantedDesc li p{
- position:relative;
- top:-15px;
+.wantedDesc li p {
+ position: relative;
+ top: -15px;
}
.wantedDesc li {
- list-style-position:inside;
+ list-style-position: inside;
}
.wantedDesc h3 {
- display:inline;
- color:#FFF;
- border:0px;
+ display: inline;
+ color: #FFF;
+ border: 0px;
}
-.donorList { clear:both; margin-left:10px;}
+.donorList {
+ clear: both;
+ margin-left: 10px;
+}
-.donorList li{
- float:left;
- list-style-image:url("images/starbullet.png") !important;
- margin-bottom:0px !important;
- margin-right:10px;
+.donorList li {
+ float: left;
+ list-style-image: url("images/starbullet.png") !important;
+ margin-bottom: 0px !important;
+ margin-right: 10px;
}
h1.wanted {
- font-size:40px;
- margin-bottom:20px;
+ font-size: 40px;
+ margin-bottom: 20px;
}
#bulletList {
- margin-left:30px;
+ margin-left: 30px;
}
.donate {
- font-size:30px;
- color:#FFC600;
- line-height:32px;
+ font-size: 30px;
+ color: #FFC600;
+ line-height: 32px;
}
.wrapper {
- clear:both;
+ clear: both;
}
.wrapper p:first-letter {
- font-size:24px;
- font-weight:bold;
+ font-size: 24px;
+ font-weight: bold;
}
.wrapper p {
- font-size:14px;
+ font-size: 14px;
}
.star {
- float:left;
- width:40px;
- height:50px;
+ float: left;
+ width: 40px;
+ height: 50px;
}
.counter {
- text-align:center;
- font-size:20px;
- line-height:28px;
+ text-align: center;
+ font-size: 20px;
+ line-height: 28px;
}
span.active {
- font-size:20px;
- color:#FFC600;
- font-weight:bold;
+ font-size: 20px;
+ color: #FFC600;
+ font-weight: bold;
}
.progressBar {
- height:15px;
- width:600px;
- clear:both;
- background:#80662B;
- margin:30px 0;
-
+ height: 15px;
+ width: 600px;
+ clear: both;
+ background: #80662B;
+ margin: 30px 0;
}
.progress {
- background-image:url('images/progress.jpg');
- height:15px;
+ background-image: url('images/progress.jpg');
+ height: 15px;
}
-.donorMore a{
- color:#FFC600;
+.donorMore a {
+ color: #FFC600;
}
-.webinartitle a{
- font-size:20px;
- color:#FFC600;
- font-weight:bold;
+.webinartitle a {
+ font-size: 20px;
+ color: #FFC600;
+ font-weight: bold;
}
p {
- font-family: Helvetica, Sans-serif;
+ font-family: Helvetica, Sans-serif;
}
#continue {
- font-size:18px;
- color:#FFF;
- position:relative;
- top:575px;
- left:700px;
-}
-
-
+ font-size: 18px;
+ color: #FFF;
+ position: relative;
+ top: 575px;
+ left: 700px;
+}
\ No newline at end of file
diff --git a/thankyou.php b/thankyou.php
index d87e875..dcf32a6 100644
--- a/thankyou.php
+++ b/thankyou.php
@@ -1,34 +1,32 @@
<?php
-/*******************************************************************************
- * Copyright(c) 2015 Eclipse Foundation and others.
- * All rights reserved. This program and the accompanying materials
- * are made available under the terms of the Eclipse Public License v1.0
- * which accompanies this distribution, and is available at
- * http://eclipse.org/legal/epl-v10.html
+/**
+ * Copyright (c) 2015, 2018 Eclipse Foundation.
+ *
+ * This program and the accompanying materials are made
+ * available under the terms of the Eclipse Public License 2.0
+ * which is available at https://www.eclipse.org/legal/epl-2.0/
*
* Contributors:
- * Nathan Gervais (Eclipse Foundation) - Initial implementation
- * Eric Poirier (Eclipse Foundation)
- *******************************************************************************/
-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");
+ * Nathan Gervais (Eclipse Foundation) - Initial implementation
+ * Eric Poirier (Eclipse Foundation)
+ *
+ * SPDX-License-Identifier: EPL-2.0
+ */
+require_once ($_SERVER['DOCUMENT_ROOT'] . "/eclipse.org-common/system/app.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'
+$Theme = $App->getThemeClass();
+include ($App->getProjectCommon());
-// Begin: page-specific settings. Change these.
-$pageTitle = "Thank you Friends of Helios!";
-$pageKeywords = "Friends of Eclipse, Helios";
-$pageAuthor = "Nathan Gervais";
+$pageTitle = "Thank you Friends of Helios!";
+$Theme->setPageTitle($pageTitle);
+$Theme->setPageKeywords("Friends of Eclipse, Helios");
+$Theme->setPageAuthor("Nathan Gervais");
-// Place your html content in a file called content/en_pagename.php
ob_start();
-include("content/en_" . $App->getScriptName());
+include ("content/en_" . $App->getScriptName());
$html = ob_get_clean();
-# Generate the web page
-$App->generatePage(NULL, $Menu, NULL, $pageAuthor, $pageKeywords, $pageTitle, $html);
\ No newline at end of file
+$Theme->setHtml($html);
+$Theme->generatePage();
\ No newline at end of file