Bug 4009 - Press releases added through newsroom not updating on PR page

Change-Id: Ia3e702bf95ba7fbd449bcbc39ebc11731eac4801
Signed-off-by: Christopher Guindon <chris.guindon@eclipse-foundation.org>
diff --git a/press-release/index.php b/press-release/index.php
index c2c4936..29f25f7 100644
--- a/press-release/index.php
+++ b/press-release/index.php
@@ -26,30 +26,27 @@
 $Theme->setPageKeywords("eclipse, foundation , press, release, news about eclipse, Eclipse Announcements");
 $Theme->setPageAuthor("Christopher Guindon");
 
-$news = new FeedParser();
-$news->addPath($_SERVER['DOCUMENT_ROOT'] . "/community/news/2005newsarchive.rss");
-$news->addPath($_SERVER['DOCUMENT_ROOT'] . "/community/news/archive/news.rss");
-$news->setPressRelease(TRUE);
-$news->setLimit(500);
-$news->setViewMoreLink('/org/press-release/index.php?archive=true');
-$news->setCount(25);
-
-if (isset($_GET['archive'])) {
-  $pageTitle .= " (Archive)";
-  $news->setCount(5000);
-}
-
 ob_start();
 ?>
 
 <h1><?php print $pageTitle; ?></h1>
-<div class="news-list">
-<div class="news-list-col">
-  <?php print $news->output();?>
-</div></div>
+<div id="pr-list" publish-target="eclipse_org" data-press-release="1"></div>
+
+
 <?php
 $html = ob_get_clean();
+$App->AddExtraJSFooter('
+  <script>
+$(function() {
+  // Eclipse News and Announcements
+  $("#pr-list").eclipseFdnApi({
+    type: "newsItems"
+  });
 
+});
+</script>
+
+');
 
 $Theme->setNav($Nav);
 $Theme->setHtml($html);