forked from eclipse-platform/www.eclipse.org-eclipse
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
1be937a
commit 54d09c8
Showing
14 changed files
with
562 additions
and
0 deletions.
There are no files selected for viewing
Empty file.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,40 @@ | ||
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN"> | ||
<html> | ||
<head> | ||
<meta name="copyright" content="Copyright (c) Eclipse contributors and others 2018. This page is made available under license. For full details see: https://www.eclipse.org/legal/notice.html"> | ||
<meta http-equiv="Content-Language" content="en-us"> | ||
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> | ||
<link rel="stylesheet" href="news.css" type="text/css"> | ||
<title>Eclipse 4.32 - New and Noteworthy</title> | ||
</head> | ||
<body> | ||
|
||
<h1>Eclipse 4.32 - New and Noteworthy</h1> | ||
<p> | ||
Welcome to the Eclipse SDK project! | ||
</p> | ||
<p> | ||
The Eclipse SDK project is part of the Eclipse 2024-06 simultaneous release. | ||
The Eclipse SDK and related resources can be downloaded from the <a href="https://download.eclipse.org/eclipse/downloads/">Eclipse Project downloads page</a>. | ||
The Eclipse installer and other packages can be downloaded from the <a href="https://www.eclipse.org/downloads/packages/installer">Eclipse Installer</a> page. | ||
</p> | ||
|
||
<!-- | ||
<p> | ||
The 4.32 release notes for the Eclipse SDK project can be found <a href="https://www.eclipse.org/eclipse/development/readme_eclipse_4.32.php">here</a>. | ||
</p> | ||
--> | ||
|
||
<p>Here are some of the more noteworthy items available in this release.</p> | ||
|
||
<blockquote> | ||
<ul> | ||
<li><a href="platform.php">New features in the Platform and Equinox</a></li> | ||
<li><a href="jdt.php">New features for Java developers</a></li> | ||
<li><a href="platform_isv.php">New APIs in the Platform and Equinox</a></li> | ||
<li><a href="pde.php">New features for plug-in developers</a></li> | ||
</ul> | ||
</blockquote> | ||
|
||
</body> | ||
</html> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
<?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(); | ||
$right_nav = FALSE; | ||
$keyword = 'news, new and noteworthy, eclipse'; | ||
require("newsCommon.php"); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,119 @@ | ||
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> | ||
<html xmlns="http://www.w3.org/1999/xhtml"> | ||
<head> | ||
<meta name="copyright" content="Copyright (c) Eclipse contributors and others 2018, 2019. This page is made available under license. For full details see the LEGAL in the documentation book that contains this page."/> | ||
<meta http-equiv="Content-Language" content="en-us"/> | ||
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8"/> | ||
<link rel="STYLESHEET" href="news.css" type="text/css"/> | ||
<style type="text/css"> | ||
body {max-width: 900px;} | ||
table.news col.title {width: 30%;} | ||
/*img {max-width: 520px;}*/ | ||
table.news {table-layout: fixed; border-collapse: collapse; width: 100%;} | ||
table.news td {border-top: solid thin black; padding: 10px; overflow: visible;} | ||
table.news tr {vertical-align: top;} | ||
table.news tr td.section {font-size: 20px; font-weight: bold;} | ||
table.news tr td.title {vertical-align: top; font-weight: bold;} | ||
table.news tr td.content {vertical-align: top;} | ||
ul {padding-left: 13px;} | ||
</style> | ||
<title>Eclipse Project 4.x - New and Noteworthy</title> | ||
</head> | ||
|
||
<body> | ||
<h2>Java Development Tools</h2> | ||
<ul> | ||
<!--<li><a href="#JavaXX">Java™ XX Support</a></li>--> | ||
<li><a href="#JUnit">JUnit</a></li> | ||
<li><a href="#JavaEditor">Java Editor</a></li> | ||
<li><a href="#JavaViewsAndDialogs">Java Views and Dialogs</a></li> | ||
<li><a href="#JavaCompiler">Java Compiler</a></li> | ||
<li><a href="#JavaFormatter">Java Formatter</a></li> | ||
<li><a href="#Debug">Debug</a></li> | ||
<li><a href="#JDTDev">JDT Developers</a></li> | ||
</ul> | ||
|
||
<!-- ****************** START OF N&N TABLE ****************** --> | ||
<table class="news"> | ||
<colgroup> | ||
<col class="title" /> | ||
<col /> | ||
</colgroup> | ||
<tbody> | ||
|
||
<!-- ******************* Java XX Support ************************************* --> | ||
<!-- | ||
<tr> | ||
<td id="JavaXX" class="section" colspan="2"> | ||
<h2>Java™ XX Support </h2> | ||
</td> | ||
</tr> | ||
--> | ||
<!-- ******************* End of Java XX Support ************************************* --> | ||
|
||
<!-- ******************* JUnit ************************************* --> | ||
<tr> | ||
<td id="JUnit" class="section" colspan="2"> | ||
<h2>JUnit</h2> | ||
</td> | ||
</tr> | ||
<!-- ******************* End of JUnit ************************************* --> | ||
|
||
<!-- ******************* Java Editor ************************************* --> | ||
<tr> | ||
<td id="JavaEditor" class="section" colspan="2"> | ||
<h2>Java Editor </h2> | ||
</td> | ||
</tr> | ||
<!-- ******************* End of Java Editor ************************************* --> | ||
|
||
<!-- ******************* Java Views and Dialogs ************************************* --> | ||
<tr> | ||
<td id="JavaViewsAndDialogs" class="section" colspan="2"> | ||
<h2>Java Views and Dialogs</h2> | ||
</td> | ||
</tr> | ||
<!-- ******************* End of Java Views and Dialogs ************************************* --> | ||
|
||
<!-- ******************* Java Compiler ************************************* --> | ||
<tr> | ||
<td id="JavaCompiler" class="section" colspan="2"> | ||
<h2>Java Compiler</h2> | ||
</td> | ||
</tr> | ||
<!-- ******************* End of Java Compiler ************************************* --> | ||
|
||
<!-- ******************* Java Formatter ************************************* --> | ||
<tr> | ||
<td id="JavaFormatter" class="section" colspan="2"> | ||
<h2>Java Formatter </h2> | ||
</td> | ||
</tr> | ||
<!-- ******************* End of Java Formatter ************************************* --> | ||
|
||
<!-- *********************** Debug ******************************** --> | ||
<tr> | ||
<td id="Debug" class="section" colspan="2"> | ||
<h2>Debug</h2> | ||
</td> | ||
</tr> | ||
<!--************************ End of Debug ******************************** --> | ||
|
||
<!-- *********************** JDT Developers ******************************** --> | ||
<tr> | ||
<td id="JDTDev" class="section" colspan="2"> | ||
<h2>JDT Developers</h2> | ||
</td> | ||
</tr> | ||
<!-- *********************** End of JDT Developers ******************************** --> | ||
<tr><td colspan="2"/></tr> | ||
</tbody> | ||
</table> | ||
<!-- ****************** END OF N&N TABLE ****************** --> | ||
|
||
<script type="text/javascript" src="scripts.js"></script> | ||
<p style="text-align:center"> | ||
<a href="platform.php">Previous</a> <a style="margin:1em" href=".">Up</a> <a href="platform_isv.php">Next</a> | ||
</p> | ||
</body> | ||
</html> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
<?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(); | ||
$right_nav = FALSE; | ||
$keyword = 'news, new and noteworthy, eclipse'; | ||
require("newsCommon.php"); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,79 @@ | ||
/* *** enable this section to preview the html files locally *** | ||
p, table, td, th { font-family: verdana, arial, helvetica, geneva; font-size: 10pt} | ||
pre { font-family: "Courier New", Courier, mono; font-size: 10pt} | ||
h2 { font-family: verdana, arial, helvetica, geneva; font-size: 18pt; font-weight: bold ; line-height: 14px} | ||
code { font-family: "Courier New", Courier, mono; font-size: 10pt} | ||
sup { font-family: verdana, arial, helvetica, geneva; font-size: 10px} | ||
h3 { font-family: verdana, arial, helvetica, geneva; font-size: 14pt; font-weight: bold} | ||
li { font-family: verdana, arial, helvetica, geneva; font-size: 10pt} | ||
h1 { font-family: verdana, arial, helvetica, geneva; font-size: 24pt; font-weight: bold} | ||
body { font-family: verdana, arial, helvetica, geneva; font-size: 10pt; margin-top: 5mm; margin-left: 3mm} | ||
.indextop { font-size: x-large; font-family: verdana, arial, helvetica, sans-serif; font-weight: bold} | ||
.indexsub { font-size: xx-small; font-family: verdana, arial, helvetica, sans-serif; color: #8080FF} | ||
a.bar:link { text-decoration: none; color: #FFFFFF} | ||
a.bar:visited { color: #FFFFFF; text-decoration: none} | ||
a.bar:hover { color: #FFFFFF; text-decoration: underline} | ||
a.bar { color: #FFFFFF} | ||
table.news tr td.title a { text-decoration: none; color: #000000; } | ||
table.news tr td.title a:hover { text-decoration: underline; color: #000000; } | ||
*/ | ||
|
||
.indextop { | ||
font-size: x-large; | ||
font-family: verdana, arial, helvetica, sans-serif; | ||
font-weight: bold | ||
} | ||
|
||
.indexsub { | ||
font-size: xx-small; | ||
font-family: verdana, arial, helvetica, sans-serif; | ||
color: #8080FF | ||
} | ||
|
||
a.bar:link { | ||
text-decoration: none; | ||
color: #FFFFFF | ||
} | ||
|
||
a.bar:visited { | ||
color: #FFFFFF; | ||
text-decoration: none | ||
} | ||
|
||
a.bar:hover { | ||
color: #FFFFFF; | ||
text-decoration: underline | ||
} | ||
|
||
a.bar { | ||
color: #FFFFFF | ||
} | ||
|
||
p { | ||
margin: 1em 0; /* undo styles.min.css */ | ||
} | ||
|
||
table.news td { | ||
padding: 10px; /* undo styles.min.css */ | ||
border-top: solid thin black; | ||
} | ||
|
||
table.news tr { | ||
vertical-align: top; | ||
} | ||
|
||
table.news tr td.section { | ||
font-size: 20px; | ||
font-weight: bold; | ||
} | ||
|
||
table.news tr td.title { | ||
vertical-align: top; | ||
width: 30%; | ||
font-weight: bold; | ||
} | ||
|
||
table.news tr td.content { | ||
vertical-align: top; | ||
width: 70%; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,44 @@ | ||
<?php | ||
function innerHTML($el) { | ||
$doc = new DOMDocument(); | ||
$doc->appendChild($doc->importNode($el, TRUE)); | ||
$html = trim($doc->saveHTML()); | ||
$tag = $el->nodeName; | ||
$html = preg_replace('@^<' . $tag . '[^>]*>|</' . $tag . '>$@', '', $html); | ||
return $html; | ||
} | ||
|
||
if(!isset($keyword) OR $keyword == ""){ | ||
$keyword = "eclipse 4.8, photon, eclipse, new and noteworthy"; | ||
} | ||
|
||
$file = basename($App->getScriptName(), ".php").'.html'; | ||
|
||
$doc = new DOMDocument; | ||
$doc->loadhtmlfile($file); | ||
|
||
$body = $doc->getElementsByTagName('body')->item(0); | ||
$body = innerHTML($body); | ||
|
||
$title = $doc->getElementsByTagName('title')->item(0); | ||
$title = innerHTML($title); | ||
# | ||
# Begin: page-specific settings. Change these. | ||
$pageTitle = $title; | ||
$pageKeywords = $keyword; | ||
$pageAuthor = ""; | ||
|
||
|
||
$html = $body; | ||
//$html .='</div></div>'; | ||
|
||
$html = mb_convert_encoding($html, "HTML-ENTITIES", "auto"); | ||
$App->Promotion = FALSE; | ||
|
||
// if theme is not provided by caller, we specify "current one", explicitly hard-coded | ||
if (! isset($theme)) { | ||
$theme = "solstice"; | ||
} | ||
|
||
$App->AddExtraHtmlHeader('<link rel="stylesheet" href="news.css" type="text/css">'); | ||
$App->generatePage($theme, $Menu, $Nav, $pageAuthor, $pageKeywords, $pageTitle, $html); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,72 @@ | ||
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> | ||
<html xmlns="http://www.w3.org/1999/xhtml"> | ||
<head> | ||
<meta name="copyright" content="Copyright (c) Eclipse contributors and others 2018. This page is made available under license. For full details see the LEGAL in the documentation book that contains this page."/> | ||
<meta http-equiv="Content-Language" content="en-us"/> | ||
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8"/> | ||
<link rel="STYLESHEET" href="news.css" type="text/css"/> | ||
<style type="text/css"> | ||
body {max-width: 900px;} | ||
table.news col.title {width: 30%;} | ||
/*img {max-width: 520px;}*/ | ||
table.news {table-layout: fixed; border-collapse: collapse; width: 100%;} | ||
table.news td {border-top: solid thin black; padding: 10px; overflow: visible;} | ||
table.news tr {vertical-align: top;} | ||
table.news tr td.section {font-size: 20px; font-weight: bold;} | ||
table.news tr td.title {vertical-align: top; font-weight: bold;} | ||
table.news tr td.content {vertical-align: top;} | ||
ul {padding-left: 13px;} | ||
</style> | ||
<title>Eclipse Project 4.x - New and Noteworthy</title> | ||
</head> | ||
|
||
<body> | ||
<h2>Plug-in Development Environment</h2> | ||
<ul> | ||
<li><a href="#dialogs-wizards-views">Dialogs, Wizards and Views</a></li> | ||
<li><a href="#editors">Editors</a></li> | ||
<li><a href="#APITools">API Tools</a></li> | ||
<li><a href="#pde-compiler">PDE Compiler</a></li> | ||
</ul> | ||
|
||
<!-- ****************** START OF N&N TABLE****************** --> | ||
<table class="news"> | ||
<colgroup> | ||
<col class="title" /> | ||
<col /> | ||
</colgroup> | ||
<tbody> | ||
<!-- ******************** Dialogs, Wizard and Views ********************** --> | ||
<tr> | ||
<td id="dialogs-wizards-views" class="section" colspan="2"><h2>Dialogs, Wizards and Views</h2></td> | ||
</tr> | ||
<!-- ******************** End ofDialogs, Wizard and Views ********************** --> | ||
|
||
<!-- ******************** Editors ********************** --> | ||
<tr> | ||
<td id="editors" class="section" colspan="2"><h2>Editors</h2></td> | ||
</tr> | ||
<!-- ******************** End of Editors ********************** --> | ||
|
||
<!-- ******************** APITools ********************** --> | ||
<tr> | ||
<td id="APITools" class="section" colspan="2"><h2>API Tools</h2></td> | ||
</tr> | ||
<!-- ******************** End of APITools ********************** --> | ||
|
||
<!-- ******************** PDE Compiler ********************** --> | ||
<tr> | ||
<td id="pde-compiler" class="section" colspan="2"><h2>PDE Compiler</h2></td> | ||
</tr> | ||
<!-- ******************** End of PDE Compiler ********************** --> | ||
<tr><td colspan="2"/></tr> | ||
</tbody> | ||
</table> | ||
<!-- ****************** END OF N&N TABLE ****************** --> | ||
|
||
<script type="text/javascript" src="scripts.js"></script> | ||
<p style="text-align:center"> | ||
<a href="platform_isv.php">Previous</a> <a style="margin:1em" href=".">Up</a> <span style="color:#808080">Next</span> | ||
</p> | ||
</body> | ||
</html> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
<?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(); | ||
$right_nav = FALSE; | ||
$keyword = 'news, new and noteworthy, eclipse'; | ||
require("newsCommon.php"); |
Oops, something went wrong.