Subversion Repositories LCARS

Compare Revisions

Last modification

Ignore whitespace Rev 97 → Rev 98

/trunk/index.php
1,4 → 1,21
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
<?php
 
$encoding = 'UTF-8';
header("Content-Type: text/html" . ($encoding ? "; charset=$encoding" : ""));
 
$modi = max(array(
@filemtime(__FILE__),
));
 
header('Last-Modified: ' . gmdate('D, d M Y H:i:s', $modi) . ' GMT');
 
/* Cached resource expires in HTTP/1.1 caches 24h after last retrieval */
header('Cache-Control: max-age=0, s-maxage=0, must-revalidate, proxy-revalidate');
 
/* Cached resource expires in HTTP/1.0 caches 24h after last retrieval */
header('Expires: ' . gmdate('D, d M Y H:i:s', time() /*+ 86400*/) . ' GMT');
 
?><!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
"http://www.w3.org/TR/html4/loose.dtd">
<html lang="en">
<head>
131,7 → 148,7
document.head.appendChild(s);
*/
jsx._import(jsx.dom.animation);
jsx._import(jsx.dom.animation);
var keyFrames = [
{
values: {
235,12 → 252,29
</div>
<hr size=1 width="100%" noshade>
<div style="text-align: center">Copyright &copy;&nbsp;2002&#8211;2013 <a
<p style="text-align: center"><?php echo sprintf(
_("Original LCARS design by"
. " <a href='%s' title='%s'>Michael&nbsp;Okuda</a>."
. " This site is based on an <a href='%s'"
. " title='LCARS Standards Development Board'"
. ">implementation in Flash by Chris&nbsp;Rossi</a>,"
. " and research by <a href='%s'"
. " title='Creating a Coherent LCARS Interface'>Bracer&nbsp;Jack</a>"
. " and <a href='%s'"
. " title='LCARS 47 Development Blog&nbsp;– LCARS&nbsp;101: A Designer’s Handbook'"
. ">Eleanor&nbsp;Denver</a>."),
'https://twitter.com/MikeOkuda',
_('Michael Okuda on Twitter'),
'http://www.lcarsdeveloper.com/',
'http://www.bracercom.com/tutorial/content/CoherentLCARSInterface/LCARSCoherentInterface.html',
'http://www.lcars47.com/p/lcars-101.html');
?><br>
Copyright &copy;&nbsp;2002&#8211;2013 <a
href="mailto:webmaster@PointedEars.de?subject=Feedback/LCARS/Welcome&amp;body=[Your%20feedback%20|%20Ihr%20Feedback]"
title="Send your feedback to PointedEars"
onmouseover="return mailStatus()"
onmouseout="return resetStatus()"
>Thomas ‘PointedEars’ Lahn.</a> All rights reserved.</div>
>Thomas ‘PointedEars’ Lahn.</a> All rights reserved.</p>
</div>
</body>
</html>