version 1.14, 2005/11/15 12:06:25
|
version 1.15, 2005/11/15 12:27:52
|
Line 1
|
Line 1
|
<?php |
<?php |
|
|
|
|
$language = substr($_SERVER["REQUEST_URI"],-2); |
$language = substr($_SERVER["REQUEST_URI"],-2); |
echo $language; |
echo $language; |
|
if ($language=="en" || $language=="de") { |
|
$file = $language."_notes.html"; |
|
include($file); |
|
$author="accountex@astrapi.de"; $hide_text_control = 0; $target_page_override = 0; require(NOTES2); |
|
} |
|
else { |
|
if ($_SERVER["REQUEST_URI"]=="/notes.html" ) { |
|
PRINT "<link rel='stylesheet' type='text/css' media='screen' href='css/notes.css' >"; |
|
$author="accountex@astrapi.de"; $hide_text_control = 0; $target_page_override = 0; require(NOTES2); |
|
} |
|
else include("error/404.html"); |
|
|
|
exit(0); |
|
} |
|
|
?> |
?> |
<?xml version="1.0" encoding="UTF-8"?> |
|
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd"> |
|
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="de"> |
|
<head> |
|
<title>accountex: feedback</title> |
|
<?php include("head.html"); ?> |
|
</head> |
|
<body id="www-mozilla-org" class="secondLevel sectionFeedback"> |
|
<?php include("header.html"); ?> |
|
<div id="mainContent" class="left"> |
|
<?php $author="accountex@astrapi.de"; $hide_text_control = 0; $target_page_override = 0; require(NOTES2); ?> |
|
<hr class="hide"/> |
|
</div> |
|
<?php include("footer.html"); ?> |
|
</body> |
|
</html> |
|
|
|
|
|
|
<div class="editsection" style="float:right;margin-left:5px;"> |
|
[<a href="#top" title="goto page top"><?php |
|
switch ($language) { |
|
case "en": |
|
PRINT "top"; |
|
break; |
|
case "fr": |
|
PRINT "haut"; |
|
break; |
|
}?></a>] |
|
</div> |
|
<br> |
|
<div class="printfooter">Retrieved from "<a href="http://easygestures.mozdev.org/notes.html">http://easygestures.mozdev.org/notes.html</a>"</div> |
|
<div id="catlinks"> |
|
<?php |
|
switch ($language) { |
|
case "en": |
|
PRINT "It's as easy as pie "; |
|
break; |
|
case "fr": |
|
PRINT "C'est facile comme bonjour "; |
|
break; |
|
} |
|
?> |
|
<img src="img/marguerite.gif" width="16" height="17" alt="Marguerite"></div> |
|
<br><a name="bottom"></a> |
|
|
|
<!-- end content --> |
|
</div><!-- end of MAINCONTENT div --> |
|
|
|
</div><!-- end of MBODY div --> |
|
|
|
<div id="footer"> |
|
<span id="f-lastmod"> |
|
<?php |
|
switch ($language) { |
|
case "en": |
|
PRINT "This page was last updated on ".LAST_MODIFIED.". <a href='http://www.mozdev.org/copyright.html' >Copyright</a> ©".YEAR." on content. All rights reserved."; |
|
break; |
|
case "fr": |
|
PRINT "Dernière mise à jour le ".LAST_MODIFIED.". <a href='http://www.mozdev.org/copyright.html' >Copyright</a> ©".YEAR." sur le contenu. Tous droits réservés."; |
|
break; |
|
} |
|
?> |
|
</span> |
|
|
|
</div><!-- end of the FOOTER div --> |
|
</div><!-- end of the CONTAINER div --> |
|
|
|
</body></html> |
|
|