From: cajus Date: Fri, 18 Jan 2008 17:02:24 +0000 (+0000) Subject: Added temporary file X-Git-Url: https://git.tokkee.org/?a=commitdiff_plain;h=60fea858f028888a5fb26878915f655bcbf7f2c2;hp=ceb968833142e272e986df95ff8aae91cf4a7282;p=gosa.git Added temporary file git-svn-id: https://oss.gonicus.de/repositories/gosa/trunk@8507 594d385d-05f5-0310-b6e9-bd551577e9d8 --- diff --git a/gosa-core/re-generate-mo-will-move b/gosa-core/re-generate-mo-will-move new file mode 100755 index 000000000..4c614f9ff --- /dev/null +++ b/gosa-core/re-generate-mo-will-move @@ -0,0 +1,93 @@ +#!/usr/bin/php5 + +update-gosa - class cache updated and plugin manager for GOsa +Usage: update-gosa Update the class cache + + update-gosa install-plugin plugin Install the plugin named "plugin" in + the GOsa tree. + + update-gosa remove-plugin plugin Remove the plugin named "plugin" from + the current configuration. + + update-gosa list-plugins Lists installed plugins + + update-gosa rescan-i18n Rebuilds the translations + +isFile() && preg_match('/\/LC_MESSAGES\/messages.po$/', $element->getPathname())){ + $lang= preg_replace('/^.*\/([^\/]+)\/LC_MESSAGES\/.*$/', '\1', $element); + if (!isset($languages[$lang])){ + $languages[$lang]= array(); + } + $languages[$lang][]= substr($element->getPathName(), $size+1); + } + } + + /* For each language, merge the target .mo to the compiled directory. */ + foreach ($languages as $language => $po_files){ + if (!is_dir(LOCALE_DIR."/compiled/${language}/LC_MESSAGES")){ + if (!mkdir (LOCALE_DIR."/compiled/${language}/LC_MESSAGES", 0755, TRUE)){ + echo "Failed to create '".LOCALE_DIR."/compiled/${language}/LC_MESSAGES'- aborted"; + exit (3); + } + } + + /* Cat all these po files into one single file */ + system ("(cd ".LOCALE_DIR." && msgcat ".implode(" ", $po_files)." > compiled/${language}/LC_MESSAGES/messages.po)", $val); + if ($val != 0){ + echo "Merging of message files failed - aborted"; + exit (4); + } + system ("(cd ".LOCALE_DIR."/compiled/${language}/LC_MESSAGES && msgfmt -o messages.mo messages.po && rm messages.po)", $val); + if ($val != 0){ + echo "Compiling of message files failed - aborted"; + exit (5); + } + } +} + + +/* Action specified? */ +if ($argc < 2){ + exit (0); +} +switch ($argv[1]){ + case 'install-plugin': + echo "install\n"; + break; + case 'list-plugins': + echo "list\n"; + break; + case 'remove-plugin': + echo "remove\n"; + break; + case 'rescan-i18n': + rescan_i18n(); + break; + default: + echo "Error: Supplied command not known\n\n"; + print_usage(); + break; +} + + +?>