blob: 78c0fe4450ba10c12897c5b1b22e74d452c2e1f8 [file] [log] [blame]
david_williams7cd36092008-01-07 01:21:39 +00001<?php
2echo "<?xml version=\"1.0\" encoding=\"ISO-8859-1\" ?> \n" ;
3?>
4<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
5<html xmlns="http://www.w3.org/1999/xhtml">
6
7<head>
8<?php
david_williamsc808a932010-09-23 01:31:06 +00009include 'buildbranches.php';
david_williams7cd36092008-01-07 01:21:39 +000010include 'pagePropertyVariables.php';
11?>
12
13<link rel="stylesheet" href="http://dev.eclipse.org/default_style.css" />
david_williams6ee19422008-01-07 19:24:41 +000014<link rel="stylesheet" href="../commonPages/wtpDropStyle.css" />
david_williams7cd36092008-01-07 01:21:39 +000015<title><?php echo $pageTitle; ?></title>
16</head>
17<body>
18
19
20<?php
21
22// tiny banner to remind when looking at "local" machine results
23$serverName = $_SERVER["SERVER_NAME"];
24
25if (!stristr($serverName, "eclipse.org") && !stristr($serverName,"you.are.at.eclipsecon.org")) {
26 echo '<center>
27 <p>
28 Reminder: this is <font color="#FF0000">' .
29 $serverName .
30 '</font>
31 See also
32 <a href="http://download.eclipse.org/webtools/downloads" target="_top">
33 the live public Eclipse site
34 </a>.
35 </p>
36 <hr />
37 </center>';
38
39}
40
41if (function_exists("date_default_timezone_set")) {
42 date_default_timezone_set("UTC");
43 //echo "<p>default timezone: ";
44 //echo date_default_timezone_get();
45 //echo "</p>";
46}
47
48?>
49
50
51<?php
52ini_set("display_errors", "true");
53error_reporting (E_ALL);
54?>
55
56<?php
57$QString = $_SERVER['QUERY_STRING'];
58$C = strcmp($QString, "test");
59?>
60
61
62<?php
david_williamsc808a932010-09-23 01:31:06 +000063
david_williamsfd220c82008-01-07 07:59:37 +000064include 'computeMainData.php';
david_williams6ee19422008-01-07 19:24:41 +000065include '../commonPages/topAndInit.php';
66include '../commonPages/latestBuilds.php';
67include '../commonPages/recentHistory.php';
68include '../commonPages/bottomAndFooter.php';
david_williams7cd36092008-01-07 01:21:39 +000069?>
70
71
72</body>
73</html>
74