#!/usr/bin/php * @copyright 2004 by http://wombat.exit0.net * @package wombat * @subpackage framework */ include_once dirname( __FILE__ ) . '/../include/wbFactory.php'; wbFactory::setParam( 'debugMode', 'Text' ); // don't load site config - because we don't know where the site is! wbFactory::configure( 'no file', false ); $tool =& wbFactory::singleton( 'wbTranslateTools_Console' ); $tool->setArgv( $_SERVER['argv'] ); $code = $tool->display(); exit( $code ); ?>