| | Yannick Torres | | Mehdi Achour | | Gabor Hojtsy | | Sean Coates | | Maciej Sobaczewski | +----------------------------------------------------------------------+ */ function get_svn_dir($project) { // @@@ make this return something until the function is found return $GLOBALS['PROJECTS'][$project][1] . '/'; } function site_header() { $TITLE = 'Documentation Tools'; $SUBDOMAIN = 'doc'; $CSS = array('/styles/doc.css'); $LINKS = array( array('href' => '/revcheck.php', 'text' => 'Documentation Tools'), array('href' => '/tutorial/', 'text' => 'Tutorial for Contributors'), array('href' => '/phd.php', 'text' => 'PhD Homepage'), ); require __DIR__ . '/../shared/templates/header.inc'; echo '
'; } function site_footer($SECONDSCREEN = false) { echo '
'; require __DIR__ . '/../shared/templates/footer.inc'; } function nav_languages() { global $LANGUAGES; $out = '
'; $out .= '

Translation status

'; $out .= '
'; $out .= '
    '; foreach ($LANGUAGES as $code => $name) { $out .='
  • '.$name.'
  • '; } $out .= '
'; return $out; } function nav_tools($lang) { global $LANGUAGES; $out = '
'; $out .= '

Tools ('.$LANGUAGES[$lang].' Manual)

'; $out .= '
'; $out .= '
'; return $out; }