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

@@ -1,23 +1,23 @@
<?php
/**
* HandBrakeCluster Library path
* RippingCluster Library path
*
* Specifies the absolute or relative path to the HandBrakeCluster library directory, relative to the webui root directory.
* Specifies the absolute or relative path to the RippingCluster library directory, relative to the webui root directory.
* Path must end with a trailing slash.
*
* @var string
*/
define('HandBrakeCluster_Lib', '../lib/');
define('RippingCluster_Lib', '../lib/');
/**
* HandBrakeCluster Database Configuration
* RippingCluster Database Configuration
*
* Specifies the absolute or relative path to the HandBrakeCluster database configuration file.
* Specifies the absolute or relative path to the RippingCluster database configuration file.
* This is a standard ini type file, containing the config required to connect to the database.
*
* @var string
*/
define('HandBrakeCluster_DBConfig', '../dbconfig.conf');
define('RippingCluster_DBConfig', '../dbconfig.conf');
?>