Rev 96 | Rev 99 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed
| Rev 96 | Rev 98 | ||
|---|---|---|---|
| Line -... | Line 1... | ||
| - | 1 | <?php
 | |
| - | 2 | ||
| - | 3 | $encoding = 'UTF-8'; | |
| - | 4 | header("Content-Type: text/html" . ($encoding ? "; charset=$encoding" : "")); | |
| - | 5 | ||
| - | 6 | $modi = max(array( | |
| - | 7 | @filemtime(__FILE__), | |
| - | 8 | )); | |
| - | 9 | ||
| - | 10 | header('Last-Modified: ' . gmdate('D, d M Y H:i:s', $modi) . ' GMT'); | |
| - | 11 | ||
| - | 12 | /* Cached resource expires in HTTP/1.1 caches 24h after last retrieval */
 | |
| - | 13 | header('Cache-Control: max-age=0, s-maxage=0, must-revalidate, proxy-revalidate'); | |
| - | 14 | ||
| - | 15 | /* Cached resource expires in HTTP/1.0 caches 24h after last retrieval */
 | |
| - | 16 | header('Expires: ' . gmdate('D, d M Y H:i:s', time() /*+ 86400*/) . ' GMT'); | |
| - | 17 | ||
| 1 | <!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" | 18 | ?><!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
 | 
| 2 | "http://www.w3.org/TR/html4/loose.dtd"> | 19 | "http://www.w3.org/TR/html4/loose.dtd"> | 
| 3 | <html lang="en"> | 20 | <html lang="en"> | 
| 4 | <head> | 21 | <head> | 
| 5 | <title>PointedEars’ Website</title> | 22 | <title>PointedEars’ Website</title> | 
| 6 | <link rel="SHORTCUT ICON" href="favicon.ico"> | 23 | <link rel="SHORTCUT ICON" href="favicon.ico"> | 
| Line 129... | Line 146... | ||
| 129 |           + "}"
 | 146 | + "}" | 
| 130 |         ));
 | 147 | )); | 
| 131 |         document.head.appendChild(s);
 | 148 | document.head.appendChild(s); | 
| 132 |         */
 | 149 | */ | 
| 133 | 150 | ||
| 134 | jsx._import(jsx.dom.animation); | 151 | jsx._import(jsx.dom.animation); | 
| 135 | var keyFrames = [ | 152 | var keyFrames = [ | 
| 136 |           {
 | 153 |           {
 | 
| 137 | values: { | 154 |             values: {
 | 
| 138 | style: { | 155 |               style: {
 | 
| 139 | overflow: "hidden", | 156 | overflow: "hidden", | 
| Line 233... | Line 250... | ||
| 233 | </ul> | 250 | </ul> | 
| 234 | <div style="clear: both"><!-- --></div> | 251 | <div style="clear: both"><!-- --></div> | 
| 235 | </div> | 252 | </div> | 
| 236 | 253 | ||
| 237 | <hr size=1 width="100%" noshade> | 254 | <hr size=1 width="100%" noshade> | 
| - | 255 | <p style="text-align: center"><?php echo sprintf( | |
| - | 256 | _("Original LCARS design by" | |
| - | 257 | . " <a href='%s' title='%s'>Michael Okuda</a>." | |
| - | 258 | . " This site is based on an <a href='%s'" | |
| - | 259 | . " title='LCARS Standards Development Board'" | |
| - | 260 | . ">implementation in Flash by Chris Rossi</a>," | |
| - | 261 | . " and research by <a href='%s'" | |
| - | 262 | . " title='Creating a Coherent LCARS Interface'>Bracer Jack</a>" | |
| - | 263 | . " and <a href='%s'" | |
| - | 264 | . " title='LCARS 47 Development Blog – LCARS 101: A Designer’s Handbook'" | |
| - | 265 | . ">Eleanor Denver</a>."), | |
| - | 266 | 'https://twitter.com/MikeOkuda', | |
| - | 267 | _('Michael Okuda on Twitter'), | |
| - | 268 | 'http://www.lcarsdeveloper.com/', | |
| - | 269 | 'http://www.bracercom.com/tutorial/content/CoherentLCARSInterface/LCARSCoherentInterface.html', | |
| - | 270 | 'http://www.lcars47.com/p/lcars-101.html'); | |
| - | 271 |         ?><br>
 | |
| 238 | <div style="text-align: center">Copyright © 2002–2013 <a | 272 | Copyright © 2002–2013 <a | 
| 239 | href="mailto:webmaster@PointedEars.de?subject=Feedback/LCARS/Welcome&body=[Your%20feedback%20|%20Ihr%20Feedback]" | 273 | href="mailto:webmaster@PointedEars.de?subject=Feedback/LCARS/Welcome&body=[Your%20feedback%20|%20Ihr%20Feedback]" | 
| 240 | title="Send your feedback to PointedEars" | 274 | title="Send your feedback to PointedEars" | 
| 241 | onmouseover="return mailStatus()" | 275 | onmouseover="return mailStatus()" | 
| 242 | onmouseout="return resetStatus()" | 276 | onmouseout="return resetStatus()" | 
| 243 | >Thomas ‘PointedEars’ Lahn.</a> All rights reserved.</div> | 277 | >Thomas ‘PointedEars’ Lahn.</a> All rights reserved.</p> | 
| 244 | </div> | 278 | </div> | 
| 245 | </body> | 279 | </body> | 
| 246 | </html> | 280 | </html> |