Some Eclipse Foundation services are deprecated, or will be soon. Please ensure you've read this important communication.
View | Details | Raw Unified | Return to bug 129098 | Differences between
and this patch

Collapse All | Expand All

(-)project-info/atf-description.html (+3 lines)
Added Link Here
1
The AJAX Toolkit Framework (ATF) provides an extensible framework and
2
exemplary tools for building IDEs for the many different AJAX runtime
3
offerings (Dojo, Zimbra, Rico, etc) in the market.
(-)project-info/dali-description.html (+3 lines)
Added Link Here
1
The goal of the Dali JPA Tools Project is to build extensible frameworks
2
and exemplary tools for the definition and editing of Object-Relational
3
(O/R) mappings for EJB 3.0 Java Persistence API (JPA) Entities.
(-)dali/main.php (+37 lines)
Added Link Here
1
<?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'
2
$pageKeywords	= "";
3
$pageAuthor		= "Bob Fraser";
4
5
$root = $_SERVER['DOCUMENT_ROOT'];
6
require_once ($root . '/webtools/common.php');
7
8
# Generate the web page
9
// Load the XML source
10
$xml = DOMDocument::load('index.xml');
11
12
//Set the page title
13
$xpath = new DOMXPath($xml);
14
$titleNode = $xpath->query("/html/head/title")->item(0);
15
$pageTitle = ($titleNode != null) ? $titleNode->nodeValue : "eclipse.org webtools page";
16
17
// Load the XSL source
18
$xsl = DOMDocument::load($root . '/webtools/wtpphoenix.xsl');
19
20
// Configure the transformer
21
$proc = new XSLTProcessor;
22
$proc->importStyleSheet($xsl); // attach the xsl rules
23
24
$maincontent = $proc->transformToXML($xml);
25
$html = <<<EOHTML
26
<div id="maincontent">
27
	<div id="midcolumn">
28
		<p>
29
		$maincontent
30
		</p>
31
	</div>
32
</div>
33
34
35
EOHTML;
36
$App->generatePage($theme, $Menu, $Nav, $pageAuthor, $pageKeywords, $pageTitle, $html);
37
?>

Return to bug 129098