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 175875 | Differences between
and this patch

Collapse All | Expand All

(-)eclipse.org-common/themes/Miasma/footer.php (-2 / +2 lines)
Lines 1-8 Link Here
1
<div id="footer">
1
<div id="footer">
2
	<ul id="footernav">
2
	<ul id="footernav">
3
		<li class="first"><a href="/">Home</a></li>
3
		<li class="first"><a href="/">Home</a></li>
4
		<li><a href="/legal/privacy.php">Privacy Policy</a></li>
4
		<li><a href="<?= $www_prefix ?>/legal/privacy.php">Privacy Policy</a></li>
5
		<li><a href="/legal/termsofuse.php">Terms of Use</a></li>
5
		<li><a href="<?= $www_prefix ?>/legal/termsofuse.php">Terms of Use</a></li>
6
	</ul>
6
	</ul>
7
	<p>Copyright &copy; <?=date("Y");?> The Eclipse Foundation. All Rights
7
	<p>Copyright &copy; <?=date("Y");?> The Eclipse Foundation. All Rights
8
Reserved</p>
8
Reserved</p>
(-)eclipse.org-common/themes/Miasma/header.php (-7 / +27 lines)
Lines 1-20 Link Here
1
<?
2
/*******************************************************************************
3
 * Copyright (c) 2006 Eclipse Foundation and others.
4
 * All rights reserved. This program and the accompanying materials
5
 * are made available under the terms of the Eclipse Public License v1.0
6
 * which accompanies this distribution, and is available at
7
 * http://www.eclipse.org/legal/epl-v10.html
8
 *
9
 * Contributors:
10
 *    Denis Roy (Eclipse Foundation) - initial API and implementation
11
 *******************************************************************************/
12
 
13
	$www_prefix = "";
14
		
15
	global $App;
16
17
	if(isset($App)) {
18
		$www_prefix = $App->getWWWPrefix();
19
	}
20
?>
1
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
21
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
2
<html xmlns="http://www.w3.org/1999/xhtml">
22
<html xmlns="http://www.w3.org/1999/xhtml">
3
<head><title><?= $pageTitle ?></title>
23
<head><title><?= $pageTitle ?></title>
4
	<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
24
	<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
5
	<meta name="author" content="<?= $pageAuthor ?>" />
25
	<meta name="author" content="<?= $pageAuthor ?>" />
6
	<meta name="keywords" content="<?= $pageKeywords ?>" />
26
	<meta name="keywords" content="<?= $pageKeywords ?>" />
7
	<link rel="stylesheet" type="text/css" href="/eclipse.org-common/themes/Miasma/css/visual.css" media="screen" />
27
	<link rel="stylesheet" type="text/css" href="<?= $www_prefix ?>/eclipse.org-common/themes/Miasma/css/visual.css" media="screen" />
8
	<link rel="stylesheet" type="text/css" href="/eclipse.org-common/themes/Miasma/css/layout.css" media="screen" />
28
	<link rel="stylesheet" type="text/css" href="<?= $www_prefix ?>/eclipse.org-common/themes/Miasma/css/layout.css" media="screen" />
9
	<link rel="stylesheet" type="text/css" href="/eclipse.org-common/themes/Phoenix/css/print.css" media="print" />
29
	<link rel="stylesheet" type="text/css" href="<?= $www_prefix ?>/eclipse.org-common/themes/Phoenix/css/print.css" media="print" />
10
	<?php if( isset($extraHtmlHeaders) ) echo $extraHtmlHeaders; ?>
30
	<?php if( isset($extraHtmlHeaders) ) echo $extraHtmlHeaders; ?>
11
</head>
31
</head>
12
32
13
<body>
33
<body>
14
<div id="header">
34
<div id="header">
15
	<a href="/"><img src="/eclipse.org-common/themes/Miasma/images/header_logo.gif" alt="Eclipse Logo" class="logo" border="0" height="71" width="128" /></a>
35
	<a href="/"><img src="<?= $www_prefix ?>/eclipse.org-common/themes/Miasma/images/header_logo.gif" alt="Eclipse Logo" class="logo" border="0" height="71" width="128" /></a>
16
	<div id="searchbar">
36
	<div id="searchbar">
17
		<form method="get" action="/search/search.cgi">
37
		<form method="get" action="<?= $www_prefix ?>/search/search.cgi">
18
			<input name="t" value="All" type="hidden" />
38
			<input name="t" value="All" type="hidden" />
19
			<input name="t" value="Doc" type="hidden" />
39
			<input name="t" value="Doc" type="hidden" />
20
			<input name="t" value="Downloads" type="hidden" />
40
			<input name="t" value="Downloads" type="hidden" />
Lines 26-31 Link Here
26
		</form>
46
		</form>
27
	</div>
47
	</div>
28
	<ul id="headernav">
48
	<ul id="headernav">
29
		<li class="first"><a href="/org/foundation/contact.php">Contact</a></li>
49
		<li class="first"><a href="<?= $www_prefix ?>/org/foundation/contact.php">Contact</a></li>
30
		<li><a href="/legal/">Legal</a></li>
50
		<li><a href="<?= $www_prefix ?>/legal/">Legal</a></li>
31
	</ul>
51
	</ul>

Return to bug 175875