Rev 140 | Rev 151 | 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 | |||
| 29 | /* Specify location of translation tables */ | ||
| 137 | PointedEar | 30 | $textDomain = 'de.pointedears'; | 
| 31 | $baseDir = './LocaleData'; | ||
| 63 | PointedEar | 32 | |
| 141 | PointedEar | 33 | if (function_exists('_')) | 
| 34 | { | ||
| 35 | bindtextdomain($textDomain, $baseDir); | ||
| 63 | PointedEar | 36 | |
| 141 | PointedEar | 37 |   /* Choose domain */ | 
| 38 |   /* Translation is looking for in ./LocaleData/de/LC_MESSAGES/de.pointedears.mo now */ | ||
| 39 | textdomain($textDomain); | ||
| 40 | } | ||
| 41 | else | ||
| 137 | PointedEar | 42 | { | 
| 141 | PointedEar | 43 |   /* TODO: Use Autoloader */ | 
| 44 | require_once 'Zend\Stdlib\ErrorHandler.php'; | ||
| 45 | require_once 'Zend\I18n\Translator\TextDomain.php'; | ||
| 46 | require_once 'Zend\I18n\Translator\Loader\FileLoaderInterface.php'; | ||
| 47 | require_once 'Zend\I18n\Translator\Loader\Gettext.php'; | ||
| 48 | require_once 'Zend\ServiceManager\ServiceLocatorAwareInterface.php'; | ||
| 49 | require_once 'Zend\ServiceManager\ServiceLocatorInterface.php'; | ||
| 50 | require_once 'Zend\ServiceManager\ServiceManager.php'; | ||
| 51 | require_once 'Zend\ServiceManager\AbstractPluginManager.php'; | ||
| 52 | require_once 'Zend\I18n\Translator\LoaderPluginManager.php'; | ||
| 53 | require_once 'Zend\I18n\Translator\Translator.php'; | ||
| 54 | |||
| 55 | $translator = new Zend\I18n\Translator\Translator(); | ||
| 56 | $type = 'gettext'; | ||
| 57 | $pattern = '%s/LC_MESSAGES/%1$s.pointedears.mo'; | ||
| 58 | $translator->addTranslationFilePattern($type, $baseDir, $pattern, $textDomain); | ||
| 59 | |||
| 140 | PointedEar | 60 | function _($s) | 
| 61 |   { | ||
| 62 | global $translator; | ||
| 63 | global $textDomain; | ||
| 64 | global $language; | ||
| 65 | |||
| 141 | PointedEar | 66 | if ($translator) | 
| 67 |     { | ||
| 68 | return $translator->translate($s, $textDomain, $language); | ||
| 69 |     } | ||
| 70 | |||
| 71 | return $s; | ||
| 140 | PointedEar | 72 |   } | 
| 137 | PointedEar | 73 | } | 
| 74 | |||
| 63 | PointedEar | 75 | $menu = array( | 
| 71 | PointedEar | 76 | 'scripts' => array('path' => 'scripts/', 'text' => 'Scripting'), | 
| 77 | 'es-matrix' => array( | ||
| 78 | 'path' => 'es-matrix', | ||
| 79 | 'text' => 'ES Matrix', | ||
| 80 | 'title' => 'ECMAScript Support Matrix: ' . _("A comparison of features of ECMAScript implementations") | ||
| 81 | ), | ||
| 82 | 'devel' => array('path' => 'devel/', 'text' => _('Other software')), | ||
| 83 | 'series' => array('path' => "media/video/series/", 'text' => 'Seri-o-meter'), | ||
| 84 | 'ufpdb' => array( | ||
| 63 | PointedEar | 85 | 'path' => "ufpdb/index.$language", | 
| 86 | 'text' => 'UFPDB', | ||
| 87 | 'title' => _('United Federation of Planets DataBase') | ||
| 88 |   ) | ||
| 140 | PointedEar | 89 | ); |