david_williams | 269a8c6 | 2007-09-23 04:34:53 +0000 | [diff] [blame] | 1 | <?php |
| 2 | echo "<?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 | |
david_williams | c964ef5 | 2007-09-23 03:51:53 +0000 | [diff] [blame] | 7 | <head> |
david_williams | 269a8c6 | 2007-09-23 04:34:53 +0000 | [diff] [blame] | 8 | <?php |
| 9 | include 'pagePropertyVariables.php'; |
| 10 | ?> |
| 11 | |
| 12 | <link rel="stylesheet" href="http://dev.eclipse.org/default_style.css" /> |
david_williams | 6ee1942 | 2008-01-07 19:24:41 +0000 | [diff] [blame] | 13 | <link rel="stylesheet" href="../commonPages/wtpDropStyle.css" /> |
david_williams | 269a8c6 | 2007-09-23 04:34:53 +0000 | [diff] [blame] | 14 | <title><?php echo $pageTitle; ?></title> |
david_williams | c964ef5 | 2007-09-23 03:51:53 +0000 | [diff] [blame] | 15 | </head> |
| 16 | <body> |
| 17 | |
david_williams | 269a8c6 | 2007-09-23 04:34:53 +0000 | [diff] [blame] | 18 | |
david_williams | c964ef5 | 2007-09-23 03:51:53 +0000 | [diff] [blame] | 19 | <?php |
| 20 | |
| 21 | // tiny banner to remind when looking at "local" machine results |
| 22 | $serverName = $_SERVER["SERVER_NAME"]; |
| 23 | |
| 24 | if (!stristr($serverName, "eclipse.org") && !stristr($serverName,"you.are.at.eclipsecon.org")) { |
david_williams | 269a8c6 | 2007-09-23 04:34:53 +0000 | [diff] [blame] | 25 | echo '<center> |
| 26 | <p> |
| 27 | Reminder: this is <font color="#FF0000">' . |
| 28 | $serverName . |
| 29 | '</font> |
| 30 | See also |
| 31 | <a href="http://download.eclipse.org/webtools/downloads" target="_top"> |
| 32 | the live public Eclipse site |
| 33 | </a>. |
| 34 | </p> |
| 35 | <hr /> |
| 36 | </center>'; |
| 37 | |
david_williams | c964ef5 | 2007-09-23 03:51:53 +0000 | [diff] [blame] | 38 | } |
| 39 | |
| 40 | if (function_exists("date_default_timezone_set")) { |
| 41 | date_default_timezone_set("UTC"); |
| 42 | //echo "<p>default timezone: "; |
| 43 | //echo date_default_timezone_get(); |
| 44 | //echo "</p>"; |
| 45 | } |
| 46 | |
| 47 | ?> |
| 48 | |
| 49 | |
david_williams | 269a8c6 | 2007-09-23 04:34:53 +0000 | [diff] [blame] | 50 | <?php |
| 51 | ini_set("display_errors", "true"); |
| 52 | error_reporting (E_ALL); |
david_williams | c964ef5 | 2007-09-23 03:51:53 +0000 | [diff] [blame] | 53 | ?> |
| 54 | |
david_williams | 269a8c6 | 2007-09-23 04:34:53 +0000 | [diff] [blame] | 55 | <?php |
| 56 | $QString = $_SERVER['QUERY_STRING']; |
| 57 | $C = strcmp($QString, "test"); |
| 58 | ?> |
david_williams | c964ef5 | 2007-09-23 03:51:53 +0000 | [diff] [blame] | 59 | |
| 60 | |
| 61 | <?php |
david_williams | 13b66f9 | 2008-03-08 04:40:11 +0000 | [diff] [blame] | 62 | include 'buildbranches.php'; |
david_williams | 6ee1942 | 2008-01-07 19:24:41 +0000 | [diff] [blame] | 63 | include '../commonPages/topAndInit.php'; |
| 64 | //include '../commonPages/latestBuilds.php'; |
| 65 | include '../commonPages/recentHistory.php'; |
| 66 | include '../commonPages/bottomAndFooter.php'; |
david_williams | c964ef5 | 2007-09-23 03:51:53 +0000 | [diff] [blame] | 67 | ?> |
| 68 | |
| 69 | |
david_williams | c964ef5 | 2007-09-23 03:51:53 +0000 | [diff] [blame] | 70 | </body> |
| 71 | </html> |
| 72 | |