Rev 152 | Rev 156 | Go to most recent revision | Details | Compare with Previous | Last modification | View Log | RSS feed
Rev | Author | Line No. | Line |
---|---|---|---|
63 | PointedEar | 1 | <?php |
2 | |||
3 | $encoding = 'UTF-8'; |
||
4 | header("Content-Type: text/html" . ($encoding ? "; charset=$encoding" : "")); |
||
5 | |||
6 | $modi = max(array( |
||
7 | @filemtime(__FILE__), |
||
106 | PointedEar | 8 | @filemtime('LocaleData'), |
63 | PointedEar | 9 | @filemtime('index.phtml'), |
106 | PointedEar | 10 | @filemtime('styles/lcars-basic.css'), |
11 | @filemtime('styles/lcars22.css'), |
||
12 | @filemtime('styles/lcars-ani.css'), |
||
13 | @filemtime('scripts/object.js'), |
||
63 | PointedEar | 14 | )); |
15 | |||
16 | header('Last-Modified: ' . gmdate('D, d M Y H:i:s', $modi) . ' GMT'); |
||
17 | |||
18 | /* Cached resource expires in HTTP/1.1 caches 24h after last retrieval */ |
||
117 | PointedEar | 19 | header('Cache-Control: max-age=86400, s-maxage=86400, must-revalidate, proxy-revalidate'); |
63 | PointedEar | 20 | |
21 | /* Cached resource expires in HTTP/1.0 caches 24h after last retrieval */ |
||
117 | PointedEar | 22 | header('Expires: ' . gmdate('D, d M Y H:i:s', time() + 86400) . ' GMT'); |
63 | PointedEar | 23 | |
24 | $languages = array( |
||
25 | 'en' => 'English', |
||
26 | 'de' => 'Deutsch' |
||
27 | ); |
||
28 | |||
151 | PointedEar | 29 | /* TODO: Use Autoloader */ |
154 | PointedEar | 30 | require_once 'Zend/Loader/StandardAutoloader.php'; |
31 | $loader = new Zend\Loader\StandardAutoloader(array('autoregister_zf' => true)); |
||
32 | $loader->register(); |
||
33 | |||
151 | PointedEar | 34 | $translator = new Zend\I18n\Translator\Translator(); |
154 | PointedEar | 35 | // $translator->setCache(new Zend\Cache\Storage\*Adapter()); |
151 | PointedEar | 36 | $type = 'gettext'; |
37 | $baseDir = './LocaleData'; |
||
38 | $pattern = '%s/LC_MESSAGES/%1$s.pointedears.mo'; |
||
137 | PointedEar | 39 | $textDomain = 'de.pointedears'; |
151 | PointedEar | 40 | $translator->addTranslationFilePattern($type, $baseDir, $pattern, $textDomain); |
63 | PointedEar | 41 | |
151 | PointedEar | 42 | /** |
43 | * Returns the translation of the parameter, if any, |
||
44 | * using Zend Framework 2.1 Translate |
||
45 | * @param string $s |
||
46 | * @return string |
||
47 | */ |
||
48 | function tr ($s) |
||
141 | PointedEar | 49 | { |
151 | PointedEar | 50 | global $translator; |
51 | global $textDomain; |
||
52 | global $language; |
||
141 | PointedEar | 53 | |
151 | PointedEar | 54 | if ($translator) |
140 | PointedEar | 55 | { |
151 | PointedEar | 56 | return $translator->translate($s, $textDomain, $language); |
57 | } |
||
141 | PointedEar | 58 | |
151 | PointedEar | 59 | return $s; |
137 | PointedEar | 60 | } |
61 | |||
63 | PointedEar | 62 | $menu = array( |
71 | PointedEar | 63 | 'scripts' => array('path' => 'scripts/', 'text' => 'Scripting'), |
64 | 'es-matrix' => array( |
||
65 | 'path' => 'es-matrix', |
||
66 | 'text' => 'ES Matrix', |
||
151 | PointedEar | 67 | 'title' => 'ECMAScript Support Matrix: ' . tr("A comparison of features of ECMAScript implementations") |
71 | PointedEar | 68 | ), |
152 | PointedEar | 69 | 'devel' => array('path' => 'websvn/', 'text' => tr('Software projects')), |
71 | PointedEar | 70 | 'series' => array('path' => "media/video/series/", 'text' => 'Seri-o-meter'), |
71 | 'ufpdb' => array( |
||
63 | PointedEar | 72 | 'path' => "ufpdb/index.$language", |
73 | 'text' => 'UFPDB', |
||
151 | PointedEar | 74 | 'title' => tr('United Federation of Planets DataBase') |
63 | PointedEar | 75 | ) |
140 | PointedEar | 76 | ); |