Renamed the codebase to RippingCluster

Since the new design is engine agnostic, removed HandBrake from the
class names.
This commit is contained in:
2010-08-25 21:46:50 +01:00
parent 8c5e8f82c1
commit 89ddcba363
46 changed files with 266 additions and 266 deletions

View File

@@ -5,15 +5,15 @@ define('HBC_File', 'index');
require '_inc.php';
try {
$main = HandBrakeCluster_Main::instance();
$main = RippingCluster_Main::instance();
$smarty = $main->smarty();
$page = new HandBrakeCluster_Page($smarty, $main->request());
$page = new RippingCluster_Page($smarty, $main->request());
if ($page->evaluate()) {
$smarty->display('index.tpl');
}
} catch (HandBrakeCluster_Exception $e) {
} catch (RippingCluster_Exception $e) {
die("Uncaught Exception: " . $e->getMessage());
}