diff --git a/autoload.php b/autoload.php index 29414b3..9d86827 100644 --- a/autoload.php +++ b/autoload.php @@ -42,7 +42,8 @@ require(QBASE_PATH.'common.php'); */ function query_autoload($class) { - $class = strtolower($class); + $class_segments = explode('\\', $class); + $class = strtolower(array_pop($class_segments)); // Load Firebird separately if (function_exists('fbird_connect') && $class === 'firebird') diff --git a/classes/abstract_driver.php b/classes/abstract_driver.php index a438b91..38d1e4f 100644 --- a/classes/abstract_driver.php +++ b/classes/abstract_driver.php @@ -13,6 +13,8 @@ // -------------------------------------------------------------------------- +namespace Query\Driver; + /** * Base Database class * @@ -21,7 +23,7 @@ * @package Query * @subpackage Drivers */ -abstract class Abstract_Driver extends PDO implements Driver_Interface { +abstract class Abstract_Driver extends \PDO implements Driver_Interface { /** * Reference to the last executed query @@ -70,7 +72,7 @@ abstract class Abstract_Driver extends PDO implements Driver_Interface { public function __construct($dsn, $username=NULL, $password=NULL, array $driver_options=array()) { // Set PDO to display errors as exceptions, and apply driver options - $driver_options[PDO::ATTR_ERRMODE] = PDO::ERRMODE_EXCEPTION; + $driver_options[\PDO::ATTR_ERRMODE] = \PDO::ERRMODE_EXCEPTION; parent::__construct($dsn, $username, $password, $driver_options); // Load the sql and util class for the driver @@ -100,7 +102,7 @@ abstract class Abstract_Driver extends PDO implements Driver_Interface { if( ! (is_array($data) || is_object($data))) { - throw new InvalidArgumentException("Invalid data argument"); + throw new \InvalidArgumentException("Invalid data argument"); } // Bind the parameters @@ -422,10 +424,10 @@ abstract class Abstract_Driver extends PDO implements Driver_Interface { $res = $this->query($sql); - $flag = ($filtered_index) ? PDO::FETCH_NUM : PDO::FETCH_ASSOC; + $flag = ($filtered_index) ? \PDO::FETCH_NUM : \PDO::FETCH_ASSOC; $all = $res->fetchAll($flag); - return ($filtered_index) ? db_filter($all, 0) : $all; + return ($filtered_index) ? \db_filter($all, 0) : $all; } // -------------------------------------------------------------------------- diff --git a/classes/abstract_sql.php b/classes/abstract_sql.php index f2f7ca0..62e9761 100644 --- a/classes/abstract_sql.php +++ b/classes/abstract_sql.php @@ -13,6 +13,8 @@ // -------------------------------------------------------------------------- +namespace Query\Driver; + /** * parent for database manipulation subclasses * diff --git a/classes/connection_manager.php b/classes/connection_manager.php index 95097b9..bc842d0 100644 --- a/classes/connection_manager.php +++ b/classes/connection_manager.php @@ -13,13 +13,17 @@ // -------------------------------------------------------------------------- +namespace Query; + +use \Query\Driver; + /** * Generic exception for bad drivers * * @package Query * @subpackage Core */ -class BadDBDriverException extends InvalidArgumentException {} +class BadDBDriverException extends \InvalidArgumentException {} // -------------------------------------------------------------------------- @@ -69,7 +73,7 @@ final class Connection_Manager { */ private function __wakeup() { - throw new DomainException("Can't unserialize singleton"); + throw new \DomainException("Can't unserialize singleton"); } // -------------------------------------------------------------------------- @@ -115,7 +119,7 @@ final class Connection_Manager { } else { - throw new InvalidArgumentException("The specified connection does not exist"); + throw new \InvalidArgumentException("The specified connection does not exist"); } } @@ -132,10 +136,12 @@ final class Connection_Manager { { list($dsn, $dbtype, $params, $options) = $this->parse_params($params); + $driver = "\\Query\\Driver\\{$dbtype}"; + // Create the database connection $db = ( ! empty($params->user)) - ? new $dbtype($dsn, $params->user, $params->pass, $options) - : new $dbtype($dsn, '', '', $options); + ? new $driver($dsn, $params->user, $params->pass, $options) + : new $driver($dsn, '', '', $options); // -------------------------------------------------------------------------- // Save connection @@ -178,12 +184,12 @@ final class Connection_Manager { // -------------------------------------------------------------------------- // Convert array to object - $params = new ArrayObject($params, ArrayObject::STD_PROP_LIST | ArrayObject::ARRAY_AS_PROPS); + $params = new \ArrayObject($params, \ArrayObject::STD_PROP_LIST | \ArrayObject::ARRAY_AS_PROPS); $params->type = strtolower($params->type); $dbtype = ($params->type !== 'postgresql') ? $params->type : 'pgsql'; // Make sure the class exists - if ( ! class_exists($dbtype)) + if ( ! class_exists("Query\\Driver\\$dbtype")) { throw new BadDBDriverException('Database driver does not exist, or is not supported'); } diff --git a/classes/db_util.php b/classes/db_util.php index bdcc7c1..670ebb5 100644 --- a/classes/db_util.php +++ b/classes/db_util.php @@ -13,6 +13,10 @@ // -------------------------------------------------------------------------- +namespace Query\Driver; + +use \Query; + /** * Abstract class defining database / table creation methods * diff --git a/classes/driver_interface.php b/classes/driver_interface.php index e5f10d3..98e5788 100644 --- a/classes/driver_interface.php +++ b/classes/driver_interface.php @@ -13,6 +13,8 @@ // -------------------------------------------------------------------------- +namespace Query\Driver; + /** * PDO Interface to implement for database drivers * diff --git a/classes/query_builder.php b/classes/query_builder.php index 8e1b866..5668a28 100644 --- a/classes/query_builder.php +++ b/classes/query_builder.php @@ -13,6 +13,8 @@ // -------------------------------------------------------------------------- +namespace Query; + /** * Convienience class for creating sql queries - also the class that * instantiates the specific db driver @@ -176,14 +178,14 @@ class Query_Builder implements Query_Builder_Interface { /** * Constructor * - * @param Abstract_driver $db + * @param \Query\Driver\Driver_Interface $db */ - public function __construct(Driver_Interface $db) + public function __construct(\Query\Driver\Driver_Interface $db) { $this->db = $db; // Instantiate the Query Parser - $this->parser = new Query_Parser(); + $this->parser = new Query_Parser($this); $this->queries['total_time'] = 0; @@ -810,19 +812,7 @@ class Query_Builder implements Query_Builder_Interface { $table = implode(' ', $table); // Parse out the join condition - $parts = $this->parser->parse_join($condition); - $count = count($parts['identifiers']); - - // Go through and quote the identifiers - for($i=0; $i <= $count; $i++) - { - if (in_array($parts['combined'][$i], $parts['identifiers']) && ! is_numeric($parts['combined'][$i])) - { - $parts['combined'][$i] = $this->db->quote_ident($parts['combined'][$i]); - } - } - - $parsed_condition = implode('', $parts['combined']); + $parsed_condition = $this->parser->compile_join($condition); $condition = $table . ' ON ' . $parsed_condition; $this->_append_map("\n" . strtoupper($type) . ' JOIN ', $condition, 'join'); @@ -1251,7 +1241,7 @@ class Query_Builder implements Query_Builder_Interface { 'group_string', 'limit', 'offset', - 'explain' + 'explain', ) as $var) { $this->$var = NULL; @@ -1297,19 +1287,14 @@ class Query_Builder implements Query_Builder_Interface { $start_time = microtime(TRUE); - if (empty($vals)) - { - $res = $this->db->query($sql); - } - else - { - $res = $this->db->prepare_execute($sql, $vals); - } + $res = (empty($vals)) + ? $this->db->query($sql) + : $this->db->prepare_execute($sql, $vals); $end_time = microtime(TRUE); $total_time = number_format($end_time - $start_time, 5); - + // Add this query to the list of executed queries $this->_append_query($vals, $sql, $total_time); // Reset class state for next query @@ -1335,7 +1320,7 @@ class Query_Builder implements Query_Builder_Interface { return call_user_func_array(array($this->db, $name), $params); } - throw new BadMethodCallException("Method does not exist"); + throw new \BadMethodCallException("Method does not exist"); } /** @@ -1349,13 +1334,13 @@ class Query_Builder implements Query_Builder_Interface { protected function _append_query($vals, $sql, $total_time) { $evals = (is_array($vals)) ? $vals : array(); + $esql = str_replace('?', "%s", $sql); // Quote string values foreach($evals as &$v) { $v = ( ! is_numeric($v)) ? htmlentities($this->db->quote($v), ENT_NOQUOTES, 'utf-8', FALSE) : $v; } - $esql = str_replace('?', "%s", $sql); // Add the query onto the array of values to pass // as arguments to sprintf diff --git a/classes/query_builder_interface.php b/classes/query_builder_interface.php index d6030e0..7217e3c 100644 --- a/classes/query_builder_interface.php +++ b/classes/query_builder_interface.php @@ -13,6 +13,8 @@ // -------------------------------------------------------------------------- +namespace Query; + /** * Interface defining the Query Builder class * diff --git a/classes/query_parser.php b/classes/query_parser.php index 4fffe6f..df087a9 100644 --- a/classes/query_parser.php +++ b/classes/query_parser.php @@ -13,6 +13,8 @@ // -------------------------------------------------------------------------- +namespace Query; + /** * Utility Class to parse sql clauses for properly escaping identifiers * @@ -21,6 +23,13 @@ */ class Query_Parser { + /** + * DB Driver + * + * @var \Query\Driver\Driver_Interface + */ + private $db; + /** * Regex patterns for various syntax components * @@ -51,6 +60,12 @@ class Query_Parser { */ public function __construct($sql = '') { + if (is_object($sql)) + { + $this->db = $sql; + $sql = ''; + } + // Get sql clause components preg_match_all('`'.$this->match_patterns['function'].'`', $sql, $this->matches['functions'], PREG_SET_ORDER); preg_match_all('`'.$this->match_patterns['identifier'].'`', $sql, $this->matches['identifiers'], PREG_SET_ORDER); @@ -71,7 +86,7 @@ class Query_Parser { * * @param string $sql */ - public function parse_join($sql) + protected function parse_join($sql) { $this->__construct($sql); return $this->matches; @@ -79,13 +94,36 @@ class Query_Parser { // -------------------------------------------------------------------------- + /** + * Compiles a join condition after parsing + * + * @param string $condition + * @return string + */ + public function compile_join($condition) + { + $parts = $this->parse_join($condition); + $count = count($parts['identifiers']); + + // Go through and quote the identifiers + for($i=0; $i <= $count; $i++) + { + if (in_array($parts['combined'][$i], $parts['identifiers']) && ! is_numeric($parts['combined'][$i])) + { + $parts['combined'][$i] = $this->db->quote_ident($parts['combined'][$i]); + } + } + + return implode('', $parts['combined']); + } + /** * Returns a more useful match array * * @param array $array * @return array */ - private function filter_array($array) + protected function filter_array($array) { $new_array = array(); diff --git a/classes/sql_interface.php b/classes/sql_interface.php index 61dc59a..54b3c64 100644 --- a/classes/sql_interface.php +++ b/classes/sql_interface.php @@ -13,6 +13,8 @@ // -------------------------------------------------------------------------- +namespace Query\Driver; + /** * parent for database manipulation subclasses * diff --git a/common.php b/common.php index 7958455..86d2efa 100644 --- a/common.php +++ b/common.php @@ -82,7 +82,7 @@ function db_filter($array, $index) */ function Query($params = '') { - $cmanager = Connection_Manager::get_instance(); + $cmanager = \Query\Connection_Manager::get_instance(); // If you are getting a previously created connection if (is_scalar($params)) diff --git a/docs/classes.svg b/docs/classes.svg deleted file mode 100644 index ccfcb1e..0000000 --- a/docs/classes.svg +++ /dev/null @@ -1,262 +0,0 @@ - - - - - - -G - -cluster_Global - - - - - - - - -\ - - -\\Query_Parser - -Query_Parser - - -\\Abstract_SQL - -«abstract» -Abstract_SQL - - -\\SQL_Interface - -SQL_Interface - - -\\Abstract_SQL->\\SQL_Interface - - - - -\\DB_Util - -«abstract» -DB_Util - - -\\Abstract_Driver - -«abstract» -Abstract_Driver - - -\\Driver_Interface - -Driver_Interface - - -\\Abstract_Driver->\\Driver_Interface - - - - -\\PDO - -\PDO - - -\\Abstract_Driver->\\PDO - - - - -\\Table_Builder - -Table_Builder - - -\\Table_Builder_Interface - -Table_Builder_Interface - - -\\Table_Builder->\\Table_Builder_Interface - - - - -\\BadDBDriverException - -BadDBDriverException - - -\\InvalidArgumentException - -\InvalidArgumentException - - -\\BadDBDriverException->\\InvalidArgumentException - - - - -\\Connection_Manager - -Connection_Manager - - -\\Query_Builder - -Query_Builder - - -\\Query_Builder_Interface - -Query_Builder_Interface - - -\\Query_Builder->\\Query_Builder_Interface - - - - -\\SQLite - -SQLite - - -\\SQLite->\\Abstract_Driver - - - - -\\SQLite_SQL - -SQLite_SQL - - -\\SQLite_SQL->\\Abstract_SQL - - - - -\\SQLite_Util - -SQLite_Util - - -\\SQLite_Util->\\DB_Util - - - - -\\Firebird_SQL - -Firebird_SQL - - -\\Firebird_SQL->\\Abstract_SQL - - - - -\\Firebird_Result - -Firebird_Result - - -\\PDOStatement - -\PDOStatement - - -\\Firebird_Result->\\PDOStatement - - - - -\\Firebird - -Firebird - - -\\Firebird->\\Abstract_Driver - - - - -\\Firebird_Util - -Firebird_Util - - -\\Firebird_Util->\\DB_Util - - - - -\\PgSQL - -PgSQL - - -\\PgSQL->\\Abstract_Driver - - - - -\\PgSQL_SQL - -PgSQL_SQL - - -\\PgSQL_SQL->\\Abstract_SQL - - - - -\\PgSQL_Util - -PgSQL_Util - - -\\PgSQL_Util->\\DB_Util - - - - -\\MySQL - -MySQL - - -\\MySQL->\\Abstract_Driver - - - - -\\MySQL_SQL - -MySQL_SQL - - -\\MySQL_SQL->\\Abstract_SQL - - - - -\\MySQL_Util - -MySQL_Util - - -\\MySQL_Util->\\DB_Util - - - - - diff --git a/docs/classes/BadDBDriverException.html b/docs/classes/Query.BadDBDriverException.html similarity index 90% rename from docs/classes/BadDBDriverException.html rename to docs/classes/Query.BadDBDriverException.html index ec1dc1d..b0ef339 100644 --- a/docs/classes/BadDBDriverException.html +++ b/docs/classes/Query.BadDBDriverException.html @@ -3,7 +3,7 @@ -Query » \BadDBDriverException +Query » \Query\BadDBDriverException @@ -19,6 +19,9 @@
-
-
diff --git a/docs/classes/DB_Util.html b/docs/classes/Query.Driver.DB_Util.html similarity index 95% rename from docs/classes/DB_Util.html rename to docs/classes/Query.Driver.DB_Util.html index e7bb4e6..6e33321 100644 --- a/docs/classes/DB_Util.html +++ b/docs/classes/Query.Driver.DB_Util.html @@ -3,7 +3,7 @@ -Query » \DB_Util +Query » \Query\Driver\DB_Util @@ -19,6 +19,9 @@
-
+ generated on 2014-04-02T17:05:03-04:00.
diff --git a/docs/classes/Firebird.html b/docs/classes/Query.Driver.Firebird.html similarity index 94% rename from docs/classes/Firebird.html rename to docs/classes/Query.Driver.Firebird.html index 2e4935c..65787f3 100644 --- a/docs/classes/Firebird.html +++ b/docs/classes/Query.Driver.Firebird.html @@ -3,7 +3,7 @@ -Query » \Firebird +Query » \Query\Driver\Firebird @@ -19,6 +19,9 @@
-
diff --git a/docs/classes/SQLite.html b/docs/classes/Query.Driver.SQLite.html similarity index 93% rename from docs/classes/SQLite.html rename to docs/classes/Query.Driver.SQLite.html index bc3bd8b..9b1bfab 100644 --- a/docs/classes/SQLite.html +++ b/docs/classes/Query.Driver.SQLite.html @@ -3,7 +3,7 @@ -Query » \SQLite +Query » \Query\Driver\SQLite @@ -19,6 +19,9 @@
-
diff --git a/docs/classes/Query_Builder.html b/docs/classes/Query.Query_Builder.html similarity index 91% rename from docs/classes/Query_Builder.html rename to docs/classes/Query.Query_Builder.html index 95cfff6..0d78dc4 100644 --- a/docs/classes/Query_Builder.html +++ b/docs/classes/Query.Query_Builder.html @@ -3,7 +3,7 @@ -Query » \Query_Builder +Query » \Query\Query_Builder @@ -19,6 +19,9 @@
-

Adds the 'distinct' keyword to a query

-
distinct() : \Query_Builder
+
distinct() : \Query\Query_Builder

Shows the query plan for the query

-
explain() : \Query_Builder
+
explain() : \Query\Query_Builder

Specify the database table to select from

-
from(string $tblname) : \Query_Builder
+
from(string $tblname) : \Query\Query_Builder
@@ -224,13 +228,13 @@ in place of the get() method string

Returns

- +

Select and retrieve all records from the current table, and/or execute current compiled query

-
get(mixed $table = '', int $limit = FALSE, int $offset = FALSE) : \PDOStatement
+
get(mixed $table = '', int $limit = FALSE, int $offset = FALSE) : \Query\PDOStatement
@@ -245,7 +249,7 @@ execute current compiled query int

Returns

- +
@@ -326,7 +330,7 @@ execute current compiled query

Convience method for get() with a where clause

-
get_where(string $table, array $where = array(), int $limit = FALSE, int $offset = FALSE) : \PDOStatement
+
get_where(string $table, array $where = array(), int $limit = FALSE, int $offset = FALSE) : \Query\PDOStatement
@@ -348,12 +352,12 @@ execute current compiled query int

Returns

- +

Group the results by the selected field(s)

-
group_by(mixed $field) : \Query_Builder
+
group_by(mixed $field) : \Query\Query_Builder
@@ -363,32 +367,32 @@ execute current compiled query mixed

Returns

- +

Ends a query group

-
group_end() : \Query_Builder
+
group_end() : \Query\Query_Builder

Adds a paren to the current query for query grouping

-
group_start() : \Query_Builder
+
group_start() : \Query\Query_Builder

Generates a 'Having' clause

-
having(mixed $key, mixed $val = array()) : \Query_Builder
+
having(mixed $key, mixed $val = array()) : \Query\Query_Builder
@@ -402,12 +406,12 @@ execute current compiled query mixed

Returns

- +

Creates an insert clause, and executes it

-
insert(string $table, mixed $data = array()) : \PDOStatement
+
insert(string $table, mixed $data = array()) : \Query\PDOStatement
@@ -421,12 +425,12 @@ execute current compiled query mixed

Returns

- +

Creates and executes a batch insertion query

-
insert_batch(string $table, array $data = array()) : \PDOStatement
+
insert_batch(string $table, array $data = array()) : \Query\PDOStatement
@@ -440,12 +444,12 @@ execute current compiled query array

Returns

- +

Creates a join phrase in a compiled query

-
join(string $table, string $condition, string $type = '') : \Query_Builder
+
join(string $table, string $condition, string $type = '') : \Query\Query_Builder
@@ -463,12 +467,12 @@ execute current compiled query string

Returns

- +

Creates a Like clause in the sql statement

-
like(string $field, mixed $val, string $pos = 'both') : \Query_Builder
+
like(string $field, mixed $val, string $pos = 'both') : \Query\Query_Builder
@@ -486,7 +490,7 @@ execute current compiled query string

Returns

- +
@@ -510,7 +514,7 @@ execute current compiled query

Generates a NOT LIKE clause

-
not_like(string $field, mixed $val, string $pos = 'both') : \Query_Builder
+
not_like(string $field, mixed $val, string $pos = 'both') : \Query\Query_Builder
@@ -528,23 +532,23 @@ execute current compiled query string

Returns

- +

Adds a paren to the current query for query grouping, prefixed with 'OR'

-
or_group_start() : \Query_Builder
+
or_group_start() : \Query\Query_Builder

Generates a 'Having' clause prefixed with 'OR'

-
or_having(mixed $key, mixed $val = array()) : \Query_Builder
+
or_having(mixed $key, mixed $val = array()) : \Query\Query_Builder
@@ -558,12 +562,12 @@ prefixed with 'OR' mixed

Returns

- +

Generates an OR Like clause

-
or_like(string $field, mixed $val, string $pos = 'both') : \Query_Builder
+
or_like(string $field, mixed $val, string $pos = 'both') : \Query\Query_Builder
@@ -581,23 +585,23 @@ prefixed with 'OR' string

Returns

- +

Adds a paren to the current query for query grouping, prefixed with 'OR NOT'

-
or_not_group_start() : \Query_Builder
+
or_not_group_start() : \Query\Query_Builder

Generates a OR NOT LIKE clause

-
or_not_like(string $field, mixed $val, string $pos = 'both') : \Query_Builder
+
or_not_like(string $field, mixed $val, string $pos = 'both') : \Query\Query_Builder
@@ -615,12 +619,12 @@ prefixed with 'OR NOT' string

Returns

- +

Where clause prefixed with "OR"

-
or_where(string $key, mixed $val = array()) : \Query_Builder
+
or_where(string $key, mixed $val = array()) : \Query\Query_Builder
@@ -634,12 +638,12 @@ prefixed with 'OR NOT' mixed

Returns

- +

Where in statement prefixed with "or"

-
or_where_in(string $field, mixed $val = array()) : \Query_Builder
+
or_where_in(string $field, mixed $val = array()) : \Query\Query_Builder
@@ -653,12 +657,12 @@ prefixed with 'OR NOT' mixed

Returns

- +

OR WHERE NOT IN (FOO) clause

-
or_where_not_in(string $field, mixed $val = array()) : \Query_Builder
+
or_where_not_in(string $field, mixed $val = array()) : \Query\Query_Builder
@@ -672,12 +676,12 @@ prefixed with 'OR NOT' mixed

Returns

- +

Order the results by the selected field(s)

-
order_by(string $field, string $type = "") : \Query_Builder
+
order_by(string $field, string $type = "") : \Query\Query_Builder
@@ -691,7 +695,7 @@ prefixed with 'OR NOT' string

Returns

- +
@@ -702,7 +706,7 @@ prefixed with 'OR NOT'

Specifies rows to select in a query

-
select(string $fields) : \Query_Builder
+
select(string $fields) : \Query\Query_Builder
@@ -712,12 +716,12 @@ prefixed with 'OR NOT' string

Returns

- +

Selects the average value of a field from a query

-
select_avg(string $field, string $as = FALSE) : \Query_Builder
+
select_avg(string $field, string $as = FALSE) : \Query\Query_Builder
@@ -731,12 +735,12 @@ prefixed with 'OR NOT' string

Returns

- +

Selects the maximum value of a field from a query

-
select_max(string $field, string $as = FALSE) : \Query_Builder
+
select_max(string $field, string $as = FALSE) : \Query\Query_Builder
@@ -750,12 +754,12 @@ prefixed with 'OR NOT' string

Returns

- +

Selects the minimum value of a field from a query

-
select_min(string $field, string $as = FALSE) : \Query_Builder
+
select_min(string $field, string $as = FALSE) : \Query\Query_Builder
@@ -769,12 +773,12 @@ prefixed with 'OR NOT' string

Returns

- +

Selects the sum of a field from a query

-
select_sum(string $field, string $as = FALSE) : \Query_Builder
+
select_sum(string $field, string $as = FALSE) : \Query\Query_Builder
@@ -788,12 +792,12 @@ prefixed with 'OR NOT' string

Returns

- +

Sets values for inserts / updates / deletes

-
set(mixed $key, mixed $val = NULL) : \Query_Builder
+
set(mixed $key, mixed $val = NULL) : \Query\Query_Builder
@@ -807,12 +811,12 @@ prefixed with 'OR NOT' mixed

Returns

- +

Creates an update clause, and executes it

-
update(string $table, mixed $data = array()) : \PDOStatement
+
update(string $table, mixed $data = array()) : \Query\PDOStatement
@@ -826,14 +830,14 @@ prefixed with 'OR NOT' mixed

Returns

- +

Specify condition(s) in the where clause of a query Note: this function works with key / value, or a passed array with key / value pairs

-
where(mixed $key, mixed $val = array(), bool $escape = NULL) : \Query_Builder
+
where(mixed $key, mixed $val = array(), bool $escape = NULL) : \Query\Query_Builder
@@ -851,12 +855,12 @@ passed array with key / value pairs bool

Returns

- +

Where clause with 'IN' statement

-
where_in(mixed $field, mixed $val = array()) : \Query_Builder
+
where_in(mixed $field, mixed $val = array()) : \Query\Query_Builder
@@ -870,12 +874,12 @@ passed array with key / value pairs mixed

Returns

- +

WHERE NOT IN (FOO) clause

-
where_not_in(string $field, mixed $val = array()) : \Query_Builder
+
where_not_in(string $field, mixed $val = array()) : \Query\Query_Builder
@@ -889,7 +893,7 @@ passed array with key / value pairs mixed

Returns

- +
@@ -900,7 +904,7 @@ passed array with key / value pairs Template is built using Twitter Bootstrap 2 and icons provided by Glyphicons.
Documentation is powered by phpDocumentor 2.2.0 and
- generated on 2014-04-02T11:00:35-04:00.
+ generated on 2014-04-02T17:05:03-04:00.
diff --git a/docs/classes/Query_Parser.html b/docs/classes/Query.Query_Parser.html similarity index 73% rename from docs/classes/Query_Parser.html rename to docs/classes/Query.Query_Parser.html index ea7cf48..e92d39b 100644 --- a/docs/classes/Query_Parser.html +++ b/docs/classes/Query.Query_Parser.html @@ -3,7 +3,7 @@ -Query » \Query_Parser +Query » \Query\Query_Parser @@ -19,6 +19,9 @@ -
-
-
-

Public parser method for seting the parse string

-
parse_join(string $sql) 
+
+

Compiles a join condition after parsing

+
compile_join(string $condition) : string

Parameters

-

$sql

+

$condition

string
+

Returns

+
string
-
+

Returns a more useful match array

filter_array(array $array) : array
@@ -143,6 +155,19 @@
array
+
+

Public parser method for seting the parse string

+
parse_join(string $sql) 
+
+
+
+

Parameters

+
+

$sql

+string +
+
+

 Properties

 
@@ -155,6 +180,16 @@
+ 
+

DB Driver

+
$db : \Query\Driver\Driver_Interface
+
+

Default

+
+
+
+
+
 

Regex patterns for various syntax components

$match_patterns : array
@@ -173,7 +208,7 @@ Template is built using Twitter Bootstrap 2 and icons provided by Glyphicons.
Documentation is powered by phpDocumentor 2.2.0 and
- generated on 2014-04-02T11:00:35-04:00.
+ generated on 2014-04-02T17:05:03-04:00.
diff --git a/docs/classes/Query.Table_Builder.html b/docs/classes/Query.Table_Builder.html new file mode 100644 index 0000000..e2fe9ff --- /dev/null +++ b/docs/classes/Query.Table_Builder.html @@ -0,0 +1,423 @@ + + + + + +Query » \Query\Table_Builder + + + + + + + + + + +
+ +
+ +
+ +
+

Abstract class defining database / table creation methods

+
+
+ + + + + + + + + +
packageQuery
subpackageTable_Builder
+

+ Methods

+
+

Constructor

+
__construct(string $name, array $options = array(), \Query\Driver_Interface $driver = NULL) : \Query\Table_Builder
+
+
+
+

Parameters

+
+

$name

+string +
+
+

$options

+array +
+ +

Returns

+ +
+
+
+

add_column() +

+
add_column($column_name, $type = NULL, $options = array()
+
+
+
+

Parameters

+

$column_name

+

$type

+

$options

+
+
+
+

add_foreign_key() +

+
add_foreign_key($columns, $referenced_table, $referenced_columns = array('id'), $options = array()
+
+
+
+

Parameters

+

$columns

+

$referenced_table

+

$referenced_columns

+

$options

+
+
+
+

add_index() +

+
add_index($columns, $options = array()
+
+
+
+

Parameters

+

$columns

+

$options

+
+
+
+

change_column() +

+
change_column($column_name, $new_column_type, $options = array()
+
+
+
+

Parameters

+

$column_name

+

$new_column_type

+

$options

+
+
+
+

create() +

+
create() 
+
+
+
+
+

drop() +

+
drop() 
+
+
+
+
+

drop_foreign_key() +

+
drop_foreign_key($columns, $constraint = NULL
+
+
+
+

Parameters

+

$columns

+

$constraint

+
+
+
+

exists() +

+
exists() 
+
+
+
+
+

get_columns() +

+
get_columns() 
+
+
+
+
+

has_column() +

+
has_column($column_name, $options = array()
+
+
+
+

Parameters

+

$column_name

+

$options

+
+
+
+

has_foreign_key() +

+
has_foreign_key($columns, $constraint = NULL
+
+
+
+

Parameters

+

$columns

+

$constraint

+
+
+
+

has_index() +

+
has_index($columns, $options = array()
+
+
+
+

Parameters

+

$columns

+

$options

+
+
+
+

remove_column() +

+
remove_column($column_name) 
+
+
+
+

Parameters

+

$column_name

+
+
+
+

remove_index() +

+
remove_index($columns, $options = array()
+
+
+
+

Parameters

+

$columns

+

$options

+
+
+
+

remove_index_by_name() +

+
remove_index_by_name($name) 
+
+
+
+

Parameters

+

$name

+
+
+
+

rename() +

+
rename($new_table_name) 
+
+
+
+

Parameters

+

$new_table_name

+
+
+
+

rename_column() +

+
rename_column($old_name, $new_name) 
+
+
+
+

Parameters

+

$old_name

+

$new_name

+
+
+
+

reset() +

+
reset() 
+
+
+
+
+

save() +

+
save() 
+
+
+
+
+

update() +

+
update() 
+
+
+
+

+ Properties

+ 
+

The name of the current table

+
$name : string
+
+

Default

+
''
+
+
+
+
+ 
+

Driver for the current db

+
$driver : \Query\Driver_Interface
+
+

Default

+
NULL
+
+
+
+
+ 
+

Options for the current table

+
$table_options : array
+
+

Default

+
array()
+
+
+
+
+
+
+
+
+
+
+ + diff --git a/docs/classes/Table_Builder_Interface.html b/docs/classes/Query.Table_Builder_Interface.html similarity index 89% rename from docs/classes/Table_Builder_Interface.html rename to docs/classes/Query.Table_Builder_Interface.html index 36948a9..3af882e 100644 --- a/docs/classes/Table_Builder_Interface.html +++ b/docs/classes/Query.Table_Builder_Interface.html @@ -3,7 +3,7 @@ -Query » \Table_Builder_Interface +Query » \Query\Table_Builder_Interface @@ -19,6 +19,9 @@
-
+ generated on 2014-04-02T17:05:03-04:00.
diff --git a/docs/css/bootstrap-responsive.css b/docs/css/bootstrap-responsive.css deleted file mode 100644 index 4b032cd..0000000 --- a/docs/css/bootstrap-responsive.css +++ /dev/null @@ -1,567 +0,0 @@ -/*! - * Bootstrap Responsive v2.0.0 - * - * Copyright 2012 Twitter, Inc - * Licensed under the Apache License v2.0 - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Designed and built with all the love in the world @twitter by @mdo and @fat. - */ -.hidden { - display: none; - visibility: hidden; -} -@media (max-width: 480px) { - .nav-collapse { - -webkit-transform: translate3d(0, 0, 0); - } - .page-header h1 small { - display: block; - line-height: 18px; - } - input[class*="span"], - select[class*="span"], - textarea[class*="span"], - .uneditable-input { - display: block; - width: 100%; - height: 28px; - /* Make inputs at least the height of their button counterpart */ - - /* Makes inputs behave like true block-level elements */ - - -webkit-box-sizing: border-box; - /* Older Webkit */ - - -moz-box-sizing: border-box; - /* Older FF */ - - -ms-box-sizing: border-box; - /* IE8 */ - - box-sizing: border-box; - /* CSS3 spec*/ - - } - .input-prepend input[class*="span"], .input-append input[class*="span"] { - width: auto; - } - input[type="checkbox"], input[type="radio"] { - border: 1px solid #ccc; - } - .form-horizontal .control-group > label { - float: none; - width: auto; - padding-top: 0; - text-align: left; - } - .form-horizontal .controls { - margin-left: 0; - } - .form-horizontal .control-list { - padding-top: 0; - } - .form-horizontal .form-actions { - padding-left: 10px; - padding-right: 10px; - } - .modal { - position: absolute; - top: 10px; - left: 10px; - right: 10px; - width: auto; - margin: 0; - } - .modal.fade.in { - top: auto; - } - .modal-header .close { - padding: 10px; - margin: -10px; - } - .carousel-caption { - position: static; - } -} -@media (max-width: 768px) { - .container { - width: auto; - padding: 0 20px; - } - .row-fluid { - width: 100%; - } - .row { - margin-left: 0; - } - .row > [class*="span"], .row-fluid > [class*="span"] { - float: none; - display: block; - width: auto; - margin: 0; - } -} -@media (min-width: 768px) and (max-width: 980px) { - .row { - margin-left: -20px; - *zoom: 1; - } - .row:before, .row:after { - display: table; - content: ""; - } - .row:after { - clear: both; - } - [class*="span"] { - float: left; - margin-left: 20px; - } - .span1 { - width: 42px; - } - .span2 { - width: 104px; - } - .span3 { - width: 166px; - } - .span4 { - width: 228px; - } - .span5 { - width: 290px; - } - .span6 { - width: 352px; - } - .span7 { - width: 414px; - } - .span8 { - width: 476px; - } - .span9 { - width: 538px; - } - .span10 { - width: 600px; - } - .span11 { - width: 662px; - } - .span12, .container { - width: 724px; - } - .offset1 { - margin-left: 82px; - } - .offset2 { - margin-left: 144px; - } - .offset3 { - margin-left: 206px; - } - .offset4 { - margin-left: 268px; - } - .offset5 { - margin-left: 330px; - } - .offset6 { - margin-left: 392px; - } - .offset7 { - margin-left: 454px; - } - .offset8 { - margin-left: 516px; - } - .offset9 { - margin-left: 578px; - } - .offset10 { - margin-left: 640px; - } - .offset11 { - margin-left: 702px; - } - .row-fluid { - width: 100%; - *zoom: 1; - } - .row-fluid:before, .row-fluid:after { - display: table; - content: ""; - } - .row-fluid:after { - clear: both; - } - .row-fluid > [class*="span"] { - float: left; - margin-left: 2.762430939%; - } - .row-fluid > [class*="span"]:first-child { - margin-left: 0; - } - .row-fluid .span1 { - width: 5.801104972%; - } - .row-fluid .span2 { - width: 14.364640883%; - } - .row-fluid .span3 { - width: 22.928176794%; - } - .row-fluid .span4 { - width: 31.491712705%; - } - .row-fluid .span5 { - width: 40.055248616%; - } - .row-fluid .span6 { - width: 48.618784527%; - } - .row-fluid .span7 { - width: 57.182320438000005%; - } - .row-fluid .span8 { - width: 65.74585634900001%; - } - .row-fluid .span9 { - width: 74.30939226%; - } - .row-fluid .span10 { - width: 82.87292817100001%; - } - .row-fluid .span11 { - width: 91.436464082%; - } - .row-fluid .span12 { - width: 99.999999993%; - } - input.span1, textarea.span1, .uneditable-input.span1 { - width: 32px; - } - input.span2, textarea.span2, .uneditable-input.span2 { - width: 94px; - } - input.span3, textarea.span3, .uneditable-input.span3 { - width: 156px; - } - input.span4, textarea.span4, .uneditable-input.span4 { - width: 218px; - } - input.span5, textarea.span5, .uneditable-input.span5 { - width: 280px; - } - input.span6, textarea.span6, .uneditable-input.span6 { - width: 342px; - } - input.span7, textarea.span7, .uneditable-input.span7 { - width: 404px; - } - input.span8, textarea.span8, .uneditable-input.span8 { - width: 466px; - } - input.span9, textarea.span9, .uneditable-input.span9 { - width: 528px; - } - input.span10, textarea.span10, .uneditable-input.span10 { - width: 590px; - } - input.span11, textarea.span11, .uneditable-input.span11 { - width: 652px; - } - input.span12, textarea.span12, .uneditable-input.span12 { - width: 714px; - } -} -@media (max-width: 980px) { - body { - padding-top: 0; - } - .navbar-fixed-top { - position: static; - margin-bottom: 18px; - } - .navbar-fixed-top .navbar-inner { - padding: 5px; - } - .navbar .container { - width: auto; - padding: 0; - } - .navbar .brand { - padding-left: 10px; - padding-right: 10px; - margin: 0 0 0 -5px; - } - .navbar .nav-collapse { - clear: left; - } - .navbar .nav { - float: none; - margin: 0 0 9px; - } - .navbar .nav > li { - float: none; - } - .navbar .nav > li > a { - margin-bottom: 2px; - } - .navbar .nav > .divider-vertical { - display: none; - } - .navbar .nav > li > a, .navbar .dropdown-menu a { - padding: 6px 15px; - font-weight: bold; - color: #999999; - -webkit-border-radius: 3px; - -moz-border-radius: 3px; - border-radius: 3px; - } - .navbar .dropdown-menu li + li a { - margin-bottom: 2px; - } - .navbar .nav > li > a:hover, .navbar .dropdown-menu a:hover { - background-color: #222222; - } - .navbar .dropdown-menu { - position: static; - top: auto; - left: auto; - float: none; - display: block; - max-width: none; - margin: 0 15px; - padding: 0; - background-color: transparent; - border: none; - -webkit-border-radius: 0; - -moz-border-radius: 0; - border-radius: 0; - -webkit-box-shadow: none; - -moz-box-shadow: none; - box-shadow: none; - } - .navbar .dropdown-menu:before, .navbar .dropdown-menu:after { - display: none; - } - .navbar .dropdown-menu .divider { - display: none; - } - .navbar-form, .navbar-search { - float: none; - padding: 9px 15px; - margin: 9px 0; - border-top: 1px solid #222222; - border-bottom: 1px solid #222222; - -webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1), 0 1px 0 rgba(255, 255, 255, 0.1); - -moz-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1), 0 1px 0 rgba(255, 255, 255, 0.1); - box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1), 0 1px 0 rgba(255, 255, 255, 0.1); - } - .navbar .nav.pull-right { - float: none; - margin-left: 0; - } - .navbar-static .navbar-inner { - padding-left: 10px; - padding-right: 10px; - } - .btn-navbar { - display: block; - } - .nav-collapse { - overflow: hidden; - height: 0; - } -} -@media (min-width: 980px) { - .nav-collapse.collapse { - height: auto !important; - } -} -@media (min-width: 1200px) { - .row { - margin-left: -30px; - *zoom: 1; - } - .row:before, .row:after { - display: table; - content: ""; - } - .row:after { - clear: both; - } - [class*="span"] { - float: left; - margin-left: 30px; - } - .span1 { - width: 70px; - } - .span2 { - width: 170px; - } - .span3 { - width: 270px; - } - .span4 { - width: 370px; - } - .span5 { - width: 470px; - } - .span6 { - width: 570px; - } - .span7 { - width: 670px; - } - .span8 { - width: 770px; - } - .span9 { - width: 870px; - } - .span10 { - width: 970px; - } - .span11 { - width: 1070px; - } - .span12, .container { - width: 1170px; - } - .offset1 { - margin-left: 130px; - } - .offset2 { - margin-left: 230px; - } - .offset3 { - margin-left: 330px; - } - .offset4 { - margin-left: 430px; - } - .offset5 { - margin-left: 530px; - } - .offset6 { - margin-left: 630px; - } - .offset7 { - margin-left: 730px; - } - .offset8 { - margin-left: 830px; - } - .offset9 { - margin-left: 930px; - } - .offset10 { - margin-left: 1030px; - } - .offset11 { - margin-left: 1130px; - } - .row-fluid { - width: 100%; - *zoom: 1; - } - .row-fluid:before, .row-fluid:after { - display: table; - content: ""; - } - .row-fluid:after { - clear: both; - } - .row-fluid > [class*="span"] { - float: left; - margin-left: 2.564102564%; - } - .row-fluid > [class*="span"]:first-child { - margin-left: 0; - } - .row-fluid .span1 { - width: 5.982905983%; - } - .row-fluid .span2 { - width: 14.529914530000001%; - } - .row-fluid .span3 { - width: 23.076923077%; - } - .row-fluid .span4 { - width: 31.623931624%; - } - .row-fluid .span5 { - width: 40.170940171000005%; - } - .row-fluid .span6 { - width: 48.717948718%; - } - .row-fluid .span7 { - width: 57.264957265%; - } - .row-fluid .span8 { - width: 65.81196581200001%; - } - .row-fluid .span9 { - width: 74.358974359%; - } - .row-fluid .span10 { - width: 82.905982906%; - } - .row-fluid .span11 { - width: 91.45299145300001%; - } - .row-fluid .span12 { - width: 100%; - } - input.span1, textarea.span1, .uneditable-input.span1 { - width: 60px; - } - input.span2, textarea.span2, .uneditable-input.span2 { - width: 160px; - } - input.span3, textarea.span3, .uneditable-input.span3 { - width: 260px; - } - input.span4, textarea.span4, .uneditable-input.span4 { - width: 360px; - } - input.span5, textarea.span5, .uneditable-input.span5 { - width: 460px; - } - input.span6, textarea.span6, .uneditable-input.span6 { - width: 560px; - } - input.span7, textarea.span7, .uneditable-input.span7 { - width: 660px; - } - input.span8, textarea.span8, .uneditable-input.span8 { - width: 760px; - } - input.span9, textarea.span9, .uneditable-input.span9 { - width: 860px; - } - input.span10, textarea.span10, .uneditable-input.span10 { - width: 960px; - } - input.span11, textarea.span11, .uneditable-input.span11 { - width: 1060px; - } - input.span12, textarea.span12, .uneditable-input.span12 { - width: 1160px; - } - .thumbnails { - margin-left: -30px; - } - .thumbnails > li { - margin-left: 30px; - } -} diff --git a/docs/css/bootstrap-responsive.min.css b/docs/css/bootstrap-responsive.min.css deleted file mode 100644 index bc3f2ab..0000000 --- a/docs/css/bootstrap-responsive.min.css +++ /dev/null @@ -1,3 +0,0 @@ - -.hidden{display:none;visibility:hidden;} -@media (max-width:480px){.nav-collapse{-webkit-transform:translate3d(0, 0, 0);} .page-header h1 small{display:block;line-height:18px;} input[class*="span"],select[class*="span"],textarea[class*="span"],.uneditable-input{display:block;width:100%;height:28px;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;-ms-box-sizing:border-box;box-sizing:border-box;} .input-prepend input[class*="span"],.input-append input[class*="span"]{width:auto;} input[type="checkbox"],input[type="radio"]{border:1px solid #ccc;} .form-horizontal .control-group>label{float:none;width:auto;padding-top:0;text-align:left;} .form-horizontal .controls{margin-left:0;} .form-horizontal .control-list{padding-top:0;} .form-horizontal .form-actions{padding-left:10px;padding-right:10px;} .modal{position:absolute;top:10px;left:10px;right:10px;width:auto;margin:0;}.modal.fade.in{top:auto;} .modal-header .close{padding:10px;margin:-10px;} .carousel-caption{position:static;}}@media (max-width:768px){.container{width:auto;padding:0 20px;} .row-fluid{width:100%;} .row{margin-left:0;} .row>[class*="span"],.row-fluid>[class*="span"]{float:none;display:block;width:auto;margin:0;}}@media (min-width:768px) and (max-width:980px){.row{margin-left:-20px;*zoom:1;}.row:before,.row:after{display:table;content:"";} .row:after{clear:both;} [class*="span"]{float:left;margin-left:20px;} .span1{width:42px;} .span2{width:104px;} .span3{width:166px;} .span4{width:228px;} .span5{width:290px;} .span6{width:352px;} .span7{width:414px;} .span8{width:476px;} .span9{width:538px;} .span10{width:600px;} .span11{width:662px;} .span12,.container{width:724px;} .offset1{margin-left:82px;} .offset2{margin-left:144px;} .offset3{margin-left:206px;} .offset4{margin-left:268px;} .offset5{margin-left:330px;} .offset6{margin-left:392px;} .offset7{margin-left:454px;} .offset8{margin-left:516px;} .offset9{margin-left:578px;} .offset10{margin-left:640px;} .offset11{margin-left:702px;} .row-fluid{width:100%;*zoom:1;}.row-fluid:before,.row-fluid:after{display:table;content:"";} .row-fluid:after{clear:both;} .row-fluid>[class*="span"]{float:left;margin-left:2.762430939%;} .row-fluid>[class*="span"]:first-child{margin-left:0;} .row-fluid .span1{width:5.801104972%;} .row-fluid .span2{width:14.364640883%;} .row-fluid .span3{width:22.928176794%;} .row-fluid .span4{width:31.491712705%;} .row-fluid .span5{width:40.055248616%;} .row-fluid .span6{width:48.618784527%;} .row-fluid .span7{width:57.182320438000005%;} .row-fluid .span8{width:65.74585634900001%;} .row-fluid .span9{width:74.30939226%;} .row-fluid .span10{width:82.87292817100001%;} .row-fluid .span11{width:91.436464082%;} .row-fluid .span12{width:99.999999993%;} input.span1,textarea.span1,.uneditable-input.span1{width:32px;} input.span2,textarea.span2,.uneditable-input.span2{width:94px;} input.span3,textarea.span3,.uneditable-input.span3{width:156px;} input.span4,textarea.span4,.uneditable-input.span4{width:218px;} input.span5,textarea.span5,.uneditable-input.span5{width:280px;} input.span6,textarea.span6,.uneditable-input.span6{width:342px;} input.span7,textarea.span7,.uneditable-input.span7{width:404px;} input.span8,textarea.span8,.uneditable-input.span8{width:466px;} input.span9,textarea.span9,.uneditable-input.span9{width:528px;} input.span10,textarea.span10,.uneditable-input.span10{width:590px;} input.span11,textarea.span11,.uneditable-input.span11{width:652px;} input.span12,textarea.span12,.uneditable-input.span12{width:714px;}}@media (max-width:980px){body{padding-top:0;} .navbar-fixed-top{position:static;margin-bottom:18px;} .navbar-fixed-top .navbar-inner{padding:5px;} .navbar .container{width:auto;padding:0;} .navbar .brand{padding-left:10px;padding-right:10px;margin:0 0 0 -5px;} .navbar .nav-collapse{clear:left;} .navbar .nav{float:none;margin:0 0 9px;} .navbar .nav>li{float:none;} .navbar .nav>li>a{margin-bottom:2px;} .navbar .nav>.divider-vertical{display:none;} .navbar .nav>li>a,.navbar .dropdown-menu a{padding:6px 15px;font-weight:bold;color:#999999;-webkit-border-radius:3px;-moz-border-radius:3px;border-radius:3px;} .navbar .dropdown-menu li+li a{margin-bottom:2px;} .navbar .nav>li>a:hover,.navbar .dropdown-menu a:hover{background-color:#222222;} .navbar .dropdown-menu{position:static;top:auto;left:auto;float:none;display:block;max-width:none;margin:0 15px;padding:0;background-color:transparent;border:none;-webkit-border-radius:0;-moz-border-radius:0;border-radius:0;-webkit-box-shadow:none;-moz-box-shadow:none;box-shadow:none;} .navbar .dropdown-menu:before,.navbar .dropdown-menu:after{display:none;} .navbar .dropdown-menu .divider{display:none;} .navbar-form,.navbar-search{float:none;padding:9px 15px;margin:9px 0;border-top:1px solid #222222;border-bottom:1px solid #222222;-webkit-box-shadow:inset 0 1px 0 rgba(255, 255, 255, 0.1),0 1px 0 rgba(255, 255, 255, 0.1);-moz-box-shadow:inset 0 1px 0 rgba(255, 255, 255, 0.1),0 1px 0 rgba(255, 255, 255, 0.1);box-shadow:inset 0 1px 0 rgba(255, 255, 255, 0.1),0 1px 0 rgba(255, 255, 255, 0.1);} .navbar .nav.pull-right{float:none;margin-left:0;} .navbar-static .navbar-inner{padding-left:10px;padding-right:10px;} .btn-navbar{display:block;} .nav-collapse{overflow:hidden;height:0;}}@media (min-width:980px){.nav-collapse.collapse{height:auto !important;}}@media (min-width:1200px){.row{margin-left:-30px;*zoom:1;}.row:before,.row:after{display:table;content:"";} .row:after{clear:both;} [class*="span"]{float:left;margin-left:30px;} .span1{width:70px;} .span2{width:170px;} .span3{width:270px;} .span4{width:370px;} .span5{width:470px;} .span6{width:570px;} .span7{width:670px;} .span8{width:770px;} .span9{width:870px;} .span10{width:970px;} .span11{width:1070px;} .span12,.container{width:1170px;} .offset1{margin-left:130px;} .offset2{margin-left:230px;} .offset3{margin-left:330px;} .offset4{margin-left:430px;} .offset5{margin-left:530px;} .offset6{margin-left:630px;} .offset7{margin-left:730px;} .offset8{margin-left:830px;} .offset9{margin-left:930px;} .offset10{margin-left:1030px;} .offset11{margin-left:1130px;} .row-fluid{width:100%;*zoom:1;}.row-fluid:before,.row-fluid:after{display:table;content:"";} .row-fluid:after{clear:both;} .row-fluid>[class*="span"]{float:left;margin-left:2.564102564%;} .row-fluid>[class*="span"]:first-child{margin-left:0;} .row-fluid .span1{width:5.982905983%;} .row-fluid .span2{width:14.529914530000001%;} .row-fluid .span3{width:23.076923077%;} .row-fluid .span4{width:31.623931624%;} .row-fluid .span5{width:40.170940171000005%;} .row-fluid .span6{width:48.717948718%;} .row-fluid .span7{width:57.264957265%;} .row-fluid .span8{width:65.81196581200001%;} .row-fluid .span9{width:74.358974359%;} .row-fluid .span10{width:82.905982906%;} .row-fluid .span11{width:91.45299145300001%;} .row-fluid .span12{width:100%;} input.span1,textarea.span1,.uneditable-input.span1{width:60px;} input.span2,textarea.span2,.uneditable-input.span2{width:160px;} input.span3,textarea.span3,.uneditable-input.span3{width:260px;} input.span4,textarea.span4,.uneditable-input.span4{width:360px;} input.span5,textarea.span5,.uneditable-input.span5{width:460px;} input.span6,textarea.span6,.uneditable-input.span6{width:560px;} input.span7,textarea.span7,.uneditable-input.span7{width:660px;} input.span8,textarea.span8,.uneditable-input.span8{width:760px;} input.span9,textarea.span9,.uneditable-input.span9{width:860px;} input.span10,textarea.span10,.uneditable-input.span10{width:960px;} input.span11,textarea.span11,.uneditable-input.span11{width:1060px;} input.span12,textarea.span12,.uneditable-input.span12{width:1160px;} .thumbnails{margin-left:-30px;} .thumbnails>li{margin-left:30px;}} diff --git a/docs/css/bootstrap.css b/docs/css/bootstrap.css deleted file mode 100644 index 563050c..0000000 --- a/docs/css/bootstrap.css +++ /dev/null @@ -1,3370 +0,0 @@ -/*! - * Bootstrap v2.0.0 - * - * Copyright 2012 Twitter, Inc - * Licensed under the Apache License v2.0 - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Designed and built with all the love in the world @twitter by @mdo and @fat. - */ -article, -aside, -details, -figcaption, -figure, -footer, -header, -hgroup, -nav, -section { - display: block; -} -audio, canvas, video { - display: inline-block; - *display: inline; - *zoom: 1; -} -audio:not([controls]) { - display: none; -} -html { - font-size: 100%; - -webkit-text-size-adjust: 100%; - -ms-text-size-adjust: 100%; -} -a:focus { - outline: thin dotted; - outline: 5px auto -webkit-focus-ring-color; - outline-offset: -2px; -} -a:hover, a:active { - outline: 0; -} -sub, sup { - position: relative; - font-size: 75%; - line-height: 0; - vertical-align: baseline; -} -sup { - top: -0.5em; -} -sub { - bottom: -0.25em; -} -img { - max-width: 100%; - height: auto; - border: 0; - -ms-interpolation-mode: bicubic; -} -button, -input, -select, -textarea { - margin: 0; - font-size: 100%; - vertical-align: middle; -} -button, input { - *overflow: visible; - line-height: normal; -} -button::-moz-focus-inner, input::-moz-focus-inner { - padding: 0; - border: 0; -} -button, -input[type="button"], -input[type="reset"], -input[type="submit"] { - cursor: pointer; - -webkit-appearance: button; -} -input[type="search"] { - -webkit-appearance: textfield; - -webkit-box-sizing: content-box; - -moz-box-sizing: content-box; - box-sizing: content-box; -} -input[type="search"]::-webkit-search-decoration, input[type="search"]::-webkit-search-cancel-button { - -webkit-appearance: none; -} -textarea { - overflow: auto; - vertical-align: top; -} -body { - margin: 0; - font-family: "Helvetica Neue", Helvetica, Arial, sans-serif; - font-size: 13px; - line-height: 18px; - color: #333333; - background-color: #ffffff; -} -a { - color: #0088cc; - text-decoration: none; -} -a:hover { - color: #005580; - text-decoration: underline; -} -.row { - margin-left: -20px; - *zoom: 1; -} -.row:before, .row:after { - display: table; - content: ""; -} -.row:after { - clear: both; -} -[class*="span"] { - float: left; - margin-left: 20px; -} -.span1 { - width: 60px; -} -.span2 { - width: 140px; -} -.span3 { - width: 220px; -} -.span4 { - width: 300px; -} -.span5 { - width: 380px; -} -.span6 { - width: 460px; -} -.span7 { - width: 540px; -} -.span8 { - width: 620px; -} -.span9 { - width: 700px; -} -.span10 { - width: 780px; -} -.span11 { - width: 860px; -} -.span12, .container { - width: 940px; -} -.offset1 { - margin-left: 100px; -} -.offset2 { - margin-left: 180px; -} -.offset3 { - margin-left: 260px; -} -.offset4 { - margin-left: 340px; -} -.offset5 { - margin-left: 420px; -} -.offset6 { - margin-left: 500px; -} -.offset7 { - margin-left: 580px; -} -.offset8 { - margin-left: 660px; -} -.offset9 { - margin-left: 740px; -} -.offset10 { - margin-left: 820px; -} -.offset11 { - margin-left: 900px; -} -.row-fluid { - width: 100%; - *zoom: 1; -} -.row-fluid:before, .row-fluid:after { - display: table; - content: ""; -} -.row-fluid:after { - clear: both; -} -.row-fluid > [class*="span"] { - float: left; - margin-left: 2.127659574%; -} -.row-fluid > [class*="span"]:first-child { - margin-left: 0; -} -.row-fluid .span1 { - width: 6.382978723%; -} -.row-fluid .span2 { - width: 14.89361702%; -} -.row-fluid .span3 { - width: 23.404255317%; -} -.row-fluid .span4 { - width: 31.914893614%; -} -.row-fluid .span5 { - width: 40.425531911%; -} -.row-fluid .span6 { - width: 48.93617020799999%; -} -.row-fluid .span7 { - width: 57.446808505%; -} -.row-fluid .span8 { - width: 65.95744680199999%; -} -.row-fluid .span9 { - width: 74.468085099%; -} -.row-fluid .span10 { - width: 82.97872339599999%; -} -.row-fluid .span11 { - width: 91.489361693%; -} -.row-fluid .span12 { - width: 99.99999998999999%; -} -.container { - width: 940px; - margin-left: auto; - margin-right: auto; - *zoom: 1; -} -.container:before, .container:after { - display: table; - content: ""; -} -.container:after { - clear: both; -} -.container-fluid { - padding-left: 20px; - padding-right: 20px; - *zoom: 1; -} -.container-fluid:before, .container-fluid:after { - display: table; - content: ""; -} -.container-fluid:after { - clear: both; -} -p { - margin: 0 0 9px; - font-family: "Helvetica Neue", Helvetica, Arial, sans-serif; - font-size: 13px; - line-height: 18px; -} -p small { - font-size: 11px; - color: #999999; -} -.lead { - margin-bottom: 18px; - font-size: 20px; - font-weight: 200; - line-height: 27px; -} -h1, -h2, -h3, -h4, -h5, -h6 { - margin: 0; - font-weight: bold; - color: #333333; - text-rendering: optimizelegibility; -} -h1 small, -h2 small, -h3 small, -h4 small, -h5 small, -h6 small { - font-weight: normal; - color: #999999; -} -h1 { - font-size: 30px; - line-height: 36px; -} -h1 small { - font-size: 18px; -} -h2 { - font-size: 24px; - line-height: 36px; -} -h2 small { - font-size: 18px; -} -h3 { - line-height: 27px; - font-size: 18px; -} -h3 small { - font-size: 14px; -} -h4, h5, h6 { - line-height: 18px; -} -h4 { - font-size: 14px; -} -h4 small { - font-size: 12px; -} -h5 { - font-size: 12px; -} -h6 { - font-size: 11px; - color: #999999; - text-transform: uppercase; -} -.page-header { - padding-bottom: 17px; - margin: 18px 0; - border-bottom: 1px solid #eeeeee; -} -.page-header h1 { - line-height: 1; -} -ul, ol { - padding: 0; - margin: 0 0 9px 25px; -} -ul ul, -ul ol, -ol ol, -ol ul { - margin-bottom: 0; -} -ul { - list-style: disc; -} -ol { - list-style: decimal; -} -li { - line-height: 18px; -} -ul.unstyled { - margin-left: 0; - list-style: none; -} -dl { - margin-bottom: 18px; -} -dt, dd { - line-height: 18px; -} -dt { - font-weight: bold; -} -dd { - margin-left: 9px; -} -hr { - margin: 18px 0; - border: 0; - border-top: 1px solid #e5e5e5; - border-bottom: 1px solid #ffffff; -} -strong { - font-weight: bold; -} -em { - font-style: italic; -} -.muted { - color: #999999; -} -abbr { - font-size: 90%; - text-transform: uppercase; - border-bottom: 1px dotted #ddd; - cursor: help; -} -blockquote { - padding: 0 0 0 15px; - margin: 0 0 18px; - border-left: 5px solid #eeeeee; -} -blockquote p { - margin-bottom: 0; - font-size: 16px; - font-weight: 300; - line-height: 22.5px; -} -blockquote small { - display: block; - line-height: 18px; - color: #999999; -} -blockquote small:before { - content: '\2014 \00A0'; -} -blockquote.pull-right { - float: right; - padding-left: 0; - padding-right: 15px; - border-left: 0; - border-right: 5px solid #eeeeee; -} -blockquote.pull-right p, blockquote.pull-right small { - text-align: right; -} -q:before, -q:after, -blockquote:before, -blockquote:after { - content: ""; -} -address { - display: block; - margin-bottom: 18px; - line-height: 18px; - font-style: normal; -} -small { - font-size: 100%; -} -cite { - font-style: normal; -} -code, pre { - padding: 0 3px 2px; - font-family: Menlo, Monaco, "Courier New", monospace; - font-size: 12px; - color: #333333; - -webkit-border-radius: 3px; - -moz-border-radius: 3px; - border-radius: 3px; -} -code { - padding: 3px 4px; - color: #d14; - background-color: #f7f7f9; - border: 1px solid #e1e1e8; -} -pre { - display: block; - padding: 8.5px; - margin: 0 0 9px; - font-size: 12px; - line-height: 18px; - background-color: #f5f5f5; - border: 1px solid #ccc; - border: 1px solid rgba(0, 0, 0, 0.15); - -webkit-border-radius: 4px; - -moz-border-radius: 4px; - border-radius: 4px; - white-space: pre; - white-space: pre-wrap; - word-break: break-all; -} -pre.prettyprint { - margin-bottom: 18px; -} -pre code { - padding: 0; - background-color: transparent; -} -form { - margin: 0 0 18px; -} -fieldset { - padding: 0; - margin: 0; - border: 0; -} -legend { - display: block; - width: 100%; - padding: 0; - margin-bottom: 27px; - font-size: 19.5px; - line-height: 36px; - color: #333333; - border: 0; - border-bottom: 1px solid #eee; -} -label, -input, -button, -select, -textarea { - font-family: "Helvetica Neue", Helvetica, Arial, sans-serif; - font-size: 13px; - font-weight: normal; - line-height: 18px; -} -label { - display: block; - margin-bottom: 5px; - color: #333333; -} -input, -textarea, -select, -.uneditable-input { - display: inline-block; - width: 210px; - height: 18px; - padding: 4px; - margin-bottom: 9px; - font-size: 13px; - line-height: 18px; - color: #555555; - border: 1px solid #ccc; - -webkit-border-radius: 3px; - -moz-border-radius: 3px; - border-radius: 3px; -} -.uneditable-textarea { - width: auto; - height: auto; -} -label input, label textarea, label select { - display: block; -} -input[type="image"], input[type="checkbox"], input[type="radio"] { - width: auto; - height: auto; - padding: 0; - margin: 3px 0; - *margin-top: 0; - /* IE7 */ - - line-height: normal; - border: 0; - cursor: pointer; - -webkit-border-radius: 0; - -moz-border-radius: 0; - border-radius: 0; -} -input[type="file"] { - padding: initial; - line-height: initial; - border: initial; - background-color: #ffffff; - background-color: initial; - -webkit-box-shadow: none; - -moz-box-shadow: none; - box-shadow: none; -} -input[type="button"], input[type="reset"], input[type="submit"] { - width: auto; - height: auto; -} -select, input[type="file"] { - height: 28px; - /* In IE7, the height of the select element cannot be changed by height, only font-size */ - - *margin-top: 4px; - /* For IE7, add top margin to align select with labels */ - - line-height: 28px; -} -select { - width: 220px; - background-color: #ffffff; -} -select[multiple], select[size] { - height: auto; -} -input[type="image"] { - -webkit-box-shadow: none; - -moz-box-shadow: none; - box-shadow: none; -} -textarea { - height: auto; -} -input[type="hidden"] { - display: none; -} -.radio, .checkbox { - padding-left: 18px; -} -.radio input[type="radio"], .checkbox input[type="checkbox"] { - float: left; - margin-left: -18px; -} -.controls > .radio:first-child, .controls > .checkbox:first-child { - padding-top: 5px; -} -.radio.inline, .checkbox.inline { - display: inline-block; - margin-bottom: 0; - vertical-align: middle; -} -.radio.inline + .radio.inline, .checkbox.inline + .checkbox.inline { - margin-left: 10px; -} -.controls > .radio.inline:first-child, .controls > .checkbox.inline:first-child { - padding-top: 0; -} -input, textarea { - -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075); - -moz-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075); - box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075); - -webkit-transition: border linear 0.2s, box-shadow linear 0.2s; - -moz-transition: border linear 0.2s, box-shadow linear 0.2s; - -ms-transition: border linear 0.2s, box-shadow linear 0.2s; - -o-transition: border linear 0.2s, box-shadow linear 0.2s; - transition: border linear 0.2s, box-shadow linear 0.2s; -} -input:focus, textarea:focus { - border-color: rgba(82, 168, 236, 0.8); - -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(82, 168, 236, 0.6); - -moz-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(82, 168, 236, 0.6); - box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(82, 168, 236, 0.6); - outline: 0; - outline: thin dotted \9; - /* IE6-8 */ - -} -input[type="file"]:focus, input[type="checkbox"]:focus, select:focus { - -webkit-box-shadow: none; - -moz-box-shadow: none; - box-shadow: none; - outline: thin dotted; - outline: 5px auto -webkit-focus-ring-color; - outline-offset: -2px; -} -.input-mini { - width: 60px; -} -.input-small { - width: 90px; -} -.input-medium { - width: 150px; -} -.input-large { - width: 210px; -} -.input-xlarge { - width: 270px; -} -.input-xxlarge { - width: 530px; -} -input[class*="span"], -select[class*="span"], -textarea[class*="span"], -.uneditable-input { - float: none; - margin-left: 0; -} -input.span1, textarea.span1, .uneditable-input.span1 { - width: 50px; -} -input.span2, textarea.span2, .uneditable-input.span2 { - width: 130px; -} -input.span3, textarea.span3, .uneditable-input.span3 { - width: 210px; -} -input.span4, textarea.span4, .uneditable-input.span4 { - width: 290px; -} -input.span5, textarea.span5, .uneditable-input.span5 { - width: 370px; -} -input.span6, textarea.span6, .uneditable-input.span6 { - width: 450px; -} -input.span7, textarea.span7, .uneditable-input.span7 { - width: 530px; -} -input.span8, textarea.span8, .uneditable-input.span8 { - width: 610px; -} -input.span9, textarea.span9, .uneditable-input.span9 { - width: 690px; -} -input.span10, textarea.span10, .uneditable-input.span10 { - width: 770px; -} -input.span11, textarea.span11, .uneditable-input.span11 { - width: 850px; -} -input.span12, textarea.span12, .uneditable-input.span12 { - width: 930px; -} -input[disabled], -select[disabled], -textarea[disabled], -input[readonly], -select[readonly], -textarea[readonly] { - background-color: #f5f5f5; - border-color: #ddd; - cursor: not-allowed; -} -.control-group.warning > label, .control-group.warning .help-block, .control-group.warning .help-inline { - color: #c09853; -} -.control-group.warning input, .control-group.warning select, .control-group.warning textarea { - color: #c09853; - border-color: #c09853; -} -.control-group.warning input:focus, .control-group.warning select:focus, .control-group.warning textarea:focus { - border-color: #a47e3c; - -webkit-box-shadow: 0 0 6px #dbc59e; - -moz-box-shadow: 0 0 6px #dbc59e; - box-shadow: 0 0 6px #dbc59e; -} -.control-group.warning .input-prepend .add-on, .control-group.warning .input-append .add-on { - color: #c09853; - background-color: #fcf8e3; - border-color: #c09853; -} -.control-group.error > label, .control-group.error .help-block, .control-group.error .help-inline { - color: #b94a48; -} -.control-group.error input, .control-group.error select, .control-group.error textarea { - color: #b94a48; - border-color: #b94a48; -} -.control-group.error input:focus, .control-group.error select:focus, .control-group.error textarea:focus { - border-color: #953b39; - -webkit-box-shadow: 0 0 6px #d59392; - -moz-box-shadow: 0 0 6px #d59392; - box-shadow: 0 0 6px #d59392; -} -.control-group.error .input-prepend .add-on, .control-group.error .input-append .add-on { - color: #b94a48; - background-color: #f2dede; - border-color: #b94a48; -} -.control-group.success > label, .control-group.success .help-block, .control-group.success .help-inline { - color: #468847; -} -.control-group.success input, .control-group.success select, .control-group.success textarea { - color: #468847; - border-color: #468847; -} -.control-group.success input:focus, .control-group.success select:focus, .control-group.success textarea:focus { - border-color: #356635; - -webkit-box-shadow: 0 0 6px #7aba7b; - -moz-box-shadow: 0 0 6px #7aba7b; - box-shadow: 0 0 6px #7aba7b; -} -.control-group.success .input-prepend .add-on, .control-group.success .input-append .add-on { - color: #468847; - background-color: #dff0d8; - border-color: #468847; -} -input:focus:required:invalid, textarea:focus:required:invalid, select:focus:required:invalid { - color: #b94a48; - border-color: #ee5f5b; -} -input:focus:required:invalid:focus, textarea:focus:required:invalid:focus, select:focus:required:invalid:focus { - border-color: #e9322d; - -webkit-box-shadow: 0 0 6px #f8b9b7; - -moz-box-shadow: 0 0 6px #f8b9b7; - box-shadow: 0 0 6px #f8b9b7; -} -.form-actions { - padding: 17px 20px 18px; - margin-top: 18px; - margin-bottom: 18px; - background-color: #f5f5f5; - border-top: 1px solid #ddd; -} -.uneditable-input { - display: block; - background-color: #ffffff; - border-color: #eee; - -webkit-box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.025); - -moz-box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.025); - box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.025); - cursor: not-allowed; -} -:-moz-placeholder { - color: #999999; -} -::-webkit-input-placeholder { - color: #999999; -} -.help-block { - margin-top: 5px; - margin-bottom: 0; - color: #999999; -} -.help-inline { - display: inline-block; - *display: inline; - /* IE7 inline-block hack */ - - *zoom: 1; - margin-bottom: 9px; - vertical-align: middle; - padding-left: 5px; -} -.input-prepend, .input-append { - margin-bottom: 5px; - *zoom: 1; -} -.input-prepend:before, -.input-append:before, -.input-prepend:after, -.input-append:after { - display: table; - content: ""; -} -.input-prepend:after, .input-append:after { - clear: both; -} -.input-prepend input, -.input-append input, -.input-prepend .uneditable-input, -.input-append .uneditable-input { - -webkit-border-radius: 0 3px 3px 0; - -moz-border-radius: 0 3px 3px 0; - border-radius: 0 3px 3px 0; -} -.input-prepend input:focus, -.input-append input:focus, -.input-prepend .uneditable-input:focus, -.input-append .uneditable-input:focus { - position: relative; - z-index: 2; -} -.input-prepend .uneditable-input, .input-append .uneditable-input { - border-left-color: #ccc; -} -.input-prepend .add-on, .input-append .add-on { - float: left; - display: block; - width: auto; - min-width: 16px; - height: 18px; - margin-right: -1px; - padding: 4px 5px; - font-weight: normal; - line-height: 18px; - color: #999999; - text-align: center; - text-shadow: 0 1px 0 #ffffff; - background-color: #f5f5f5; - border: 1px solid #ccc; - -webkit-border-radius: 3px 0 0 3px; - -moz-border-radius: 3px 0 0 3px; - border-radius: 3px 0 0 3px; -} -.input-prepend .active, .input-append .active { - background-color: #a9dba9; - border-color: #46a546; -} -.input-prepend .add-on { - *margin-top: 1px; - /* IE6-7 */ - -} -.input-append input, .input-append .uneditable-input { - float: left; - -webkit-border-radius: 3px 0 0 3px; - -moz-border-radius: 3px 0 0 3px; - border-radius: 3px 0 0 3px; -} -.input-append .uneditable-input { - border-right-color: #ccc; -} -.input-append .add-on { - margin-right: 0; - margin-left: -1px; - -webkit-border-radius: 0 3px 3px 0; - -moz-border-radius: 0 3px 3px 0; - border-radius: 0 3px 3px 0; -} -.input-append input:first-child { - *margin-left: -160px; -} -.input-append input:first-child + .add-on { - *margin-left: -21px; -} -.search-query { - padding-left: 14px; - padding-right: 14px; - margin-bottom: 0; - -webkit-border-radius: 14px; - -moz-border-radius: 14px; - border-radius: 14px; -} -.form-search input, -.form-inline input, -.form-horizontal input, -.form-search textarea, -.form-inline textarea, -.form-horizontal textarea, -.form-search select, -.form-inline select, -.form-horizontal select, -.form-search .help-inline, -.form-inline .help-inline, -.form-horizontal .help-inline, -.form-search .uneditable-input, -.form-inline .uneditable-input, -.form-horizontal .uneditable-input { - display: inline-block; - margin-bottom: 0; -} -.form-search label, -.form-inline label, -.form-search .input-append, -.form-inline .input-append, -.form-search .input-prepend, -.form-inline .input-prepend { - display: inline-block; -} -.form-search .input-append .add-on, -.form-inline .input-prepend .add-on, -.form-search .input-append .add-on, -.form-inline .input-prepend .add-on { - vertical-align: middle; -} -.control-group { - margin-bottom: 9px; -} -.form-horizontal legend + .control-group { - margin-top: 18px; - -webkit-margin-top-collapse: separate; -} -.form-horizontal .control-group { - margin-bottom: 18px; - *zoom: 1; -} -.form-horizontal .control-group:before, .form-horizontal .control-group:after { - display: table; - content: ""; -} -.form-horizontal .control-group:after { - clear: both; -} -.form-horizontal .control-group > label { - float: left; - width: 140px; - padding-top: 5px; - text-align: right; -} -.form-horizontal .controls { - margin-left: 160px; -} -.form-horizontal .form-actions { - padding-left: 160px; -} -table { - max-width: 100%; - border-collapse: collapse; - border-spacing: 0; -} -.table { - width: 100%; - margin-bottom: 18px; -} -.table th, .table td { - padding: 8px; - line-height: 18px; - text-align: left; - border-top: 1px solid #ddd; -} -.table th { - font-weight: bold; - vertical-align: bottom; -} -.table td { - vertical-align: top; -} -.table thead:first-child tr th, .table thead:first-child tr td { - border-top: 0; -} -.table tbody + tbody { - border-top: 2px solid #ddd; -} -.table-condensed th, .table-condensed td { - padding: 4px 5px; -} -.table-bordered { - border: 1px solid #ddd; - border-collapse: separate; - *border-collapse: collapsed; - -webkit-border-radius: 4px; - -moz-border-radius: 4px; - border-radius: 4px; -} -.table-bordered th + th, -.table-bordered td + td, -.table-bordered th + td, -.table-bordered td + th { - border-left: 1px solid #ddd; -} -.table-bordered thead:first-child tr:first-child th, .table-bordered tbody:first-child tr:first-child th, .table-bordered tbody:first-child tr:first-child td { - border-top: 0; -} -.table-bordered thead:first-child tr:first-child th:first-child, .table-bordered tbody:first-child tr:first-child td:first-child { - -webkit-border-radius: 4px 0 0 0; - -moz-border-radius: 4px 0 0 0; - border-radius: 4px 0 0 0; -} -.table-bordered thead:first-child tr:first-child th:last-child, .table-bordered tbody:first-child tr:first-child td:last-child { - -webkit-border-radius: 0 4px 0 0; - -moz-border-radius: 0 4px 0 0; - border-radius: 0 4px 0 0; -} -.table-bordered thead:last-child tr:last-child th:first-child, .table-bordered tbody:last-child tr:last-child td:first-child { - -webkit-border-radius: 0 0 0 4px; - -moz-border-radius: 0 0 0 4px; - border-radius: 0 0 0 4px; -} -.table-bordered thead:last-child tr:last-child th:last-child, .table-bordered tbody:last-child tr:last-child td:last-child { - -webkit-border-radius: 0 0 4px 0; - -moz-border-radius: 0 0 4px 0; - border-radius: 0 0 4px 0; -} -.table-striped tbody tr:nth-child(odd) td, .table-striped tbody tr:nth-child(odd) th { - background-color: #f9f9f9; -} -table .span1 { - float: none; - width: 44px; - margin-left: 0; -} -table .span2 { - float: none; - width: 124px; - margin-left: 0; -} -table .span3 { - float: none; - width: 204px; - margin-left: 0; -} -table .span4 { - float: none; - width: 284px; - margin-left: 0; -} -table .span5 { - float: none; - width: 364px; - margin-left: 0; -} -table .span6 { - float: none; - width: 444px; - margin-left: 0; -} -table .span7 { - float: none; - width: 524px; - margin-left: 0; -} -table .span8 { - float: none; - width: 604px; - margin-left: 0; -} -table .span9 { - float: none; - width: 684px; - margin-left: 0; -} -table .span10 { - float: none; - width: 764px; - margin-left: 0; -} -table .span11 { - float: none; - width: 844px; - margin-left: 0; -} -table .span12 { - float: none; - width: 924px; - margin-left: 0; -} -[class^="icon-"] { - display: inline-block; - width: 14px; - height: 14px; - vertical-align: text-top; - background-image: url(../img/glyphicons-halflings.png); - background-position: 14px 14px; - background-repeat: no-repeat; - *margin-right: .3em; -} -[class^="icon-"]:last-child { - *margin-left: 0; -} -.icon-white { - background-image: url(../img/glyphicons-halflings-white.png); -} -.icon-glass { - background-position: 0 0; -} -.icon-music { - background-position: -24px 0; -} -.icon-search { - background-position: -48px 0; -} -.icon-envelope { - background-position: -72px 0; -} -.icon-heart { - background-position: -96px 0; -} -.icon-star { - background-position: -120px 0; -} -.icon-star-empty { - background-position: -144px 0; -} -.icon-user { - background-position: -168px 0; -} -.icon-film { - background-position: -192px 0; -} -.icon-th-large { - background-position: -216px 0; -} -.icon-th { - background-position: -240px 0; -} -.icon-th-list { - background-position: -264px 0; -} -.icon-ok { - background-position: -288px 0; -} -.icon-remove { - background-position: -312px 0; -} -.icon-zoom-in { - background-position: -336px 0; -} -.icon-zoom-out { - background-position: -360px 0; -} -.icon-off { - background-position: -384px 0; -} -.icon-signal { - background-position: -408px 0; -} -.icon-cog { - background-position: -432px 0; -} -.icon-trash { - background-position: -456px 0; -} -.icon-home { - background-position: 0 -24px; -} -.icon-file { - background-position: -24px -24px; -} -.icon-time { - background-position: -48px -24px; -} -.icon-road { - background-position: -72px -24px; -} -.icon-download-alt { - background-position: -96px -24px; -} -.icon-download { - background-position: -120px -24px; -} -.icon-upload { - background-position: -144px -24px; -} -.icon-inbox { - background-position: -168px -24px; -} -.icon-play-circle { - background-position: -192px -24px; -} -.icon-repeat { - background-position: -216px -24px; -} -.icon-refresh { - background-position: -240px -24px; -} -.icon-list-alt { - background-position: -264px -24px; -} -.icon-lock { - background-position: -287px -24px; -} -.icon-flag { - background-position: -312px -24px; -} -.icon-headphones { - background-position: -336px -24px; -} -.icon-volume-off { - background-position: -360px -24px; -} -.icon-volume-down { - background-position: -384px -24px; -} -.icon-volume-up { - background-position: -408px -24px; -} -.icon-qrcode { - background-position: -432px -24px; -} -.icon-barcode { - background-position: -456px -24px; -} -.icon-tag { - background-position: 0 -48px; -} -.icon-tags { - background-position: -25px -48px; -} -.icon-book { - background-position: -48px -48px; -} -.icon-bookmark { - background-position: -72px -48px; -} -.icon-print { - background-position: -96px -48px; -} -.icon-camera { - background-position: -120px -48px; -} -.icon-font { - background-position: -144px -48px; -} -.icon-bold { - background-position: -167px -48px; -} -.icon-italic { - background-position: -192px -48px; -} -.icon-text-height { - background-position: -216px -48px; -} -.icon-text-width { - background-position: -240px -48px; -} -.icon-align-left { - background-position: -264px -48px; -} -.icon-align-center { - background-position: -288px -48px; -} -.icon-align-right { - background-position: -312px -48px; -} -.icon-align-justify { - background-position: -336px -48px; -} -.icon-list { - background-position: -360px -48px; -} -.icon-indent-left { - background-position: -384px -48px; -} -.icon-indent-right { - background-position: -408px -48px; -} -.icon-facetime-video { - background-position: -432px -48px; -} -.icon-picture { - background-position: -456px -48px; -} -.icon-pencil { - background-position: 0 -72px; -} -.icon-map-marker { - background-position: -24px -72px; -} -.icon-adjust { - background-position: -48px -72px; -} -.icon-tint { - background-position: -72px -72px; -} -.icon-edit { - background-position: -96px -72px; -} -.icon-share { - background-position: -120px -72px; -} -.icon-check { - background-position: -144px -72px; -} -.icon-move { - background-position: -168px -72px; -} -.icon-step-backward { - background-position: -192px -72px; -} -.icon-fast-backward { - background-position: -216px -72px; -} -.icon-backward { - background-position: -240px -72px; -} -.icon-play { - background-position: -264px -72px; -} -.icon-pause { - background-position: -288px -72px; -} -.icon-stop { - background-position: -312px -72px; -} -.icon-forward { - background-position: -336px -72px; -} -.icon-fast-forward { - background-position: -360px -72px; -} -.icon-step-forward { - background-position: -384px -72px; -} -.icon-eject { - background-position: -408px -72px; -} -.icon-chevron-left { - background-position: -432px -72px; -} -.icon-chevron-right { - background-position: -456px -72px; -} -.icon-plus-sign { - background-position: 0 -96px; -} -.icon-minus-sign { - background-position: -24px -96px; -} -.icon-remove-sign { - background-position: -48px -96px; -} -.icon-ok-sign { - background-position: -72px -96px; -} -.icon-question-sign { - background-position: -96px -96px; -} -.icon-info-sign { - background-position: -120px -96px; -} -.icon-screenshot { - background-position: -144px -96px; -} -.icon-remove-circle { - background-position: -168px -96px; -} -.icon-ok-circle { - background-position: -192px -96px; -} -.icon-ban-circle { - background-position: -216px -96px; -} -.icon-arrow-left { - background-position: -240px -96px; -} -.icon-arrow-right { - background-position: -264px -96px; -} -.icon-arrow-up { - background-position: -289px -96px; -} -.icon-arrow-down { - background-position: -312px -96px; -} -.icon-share-alt { - background-position: -336px -96px; -} -.icon-resize-full { - background-position: -360px -96px; -} -.icon-resize-small { - background-position: -384px -96px; -} -.icon-plus { - background-position: -408px -96px; -} -.icon-minus { - background-position: -433px -96px; -} -.icon-asterisk { - background-position: -456px -96px; -} -.icon-exclamation-sign { - background-position: 0 -120px; -} -.icon-gift { - background-position: -24px -120px; -} -.icon-leaf { - background-position: -48px -120px; -} -.icon-fire { - background-position: -72px -120px; -} -.icon-eye-open { - background-position: -96px -120px; -} -.icon-eye-close { - background-position: -120px -120px; -} -.icon-warning-sign { - background-position: -144px -120px; -} -.icon-plane { - background-position: -168px -120px; -} -.icon-calendar { - background-position: -192px -120px; -} -.icon-random { - background-position: -216px -120px; -} -.icon-comment { - background-position: -240px -120px; -} -.icon-magnet { - background-position: -264px -120px; -} -.icon-chevron-up { - background-position: -288px -120px; -} -.icon-chevron-down { - background-position: -313px -119px; -} -.icon-retweet { - background-position: -336px -120px; -} -.icon-shopping-cart { - background-position: -360px -120px; -} -.icon-folder-close { - background-position: -384px -120px; -} -.icon-folder-open { - background-position: -408px -120px; -} -.icon-resize-vertical { - background-position: -432px -119px; -} -.icon-resize-horizontal { - background-position: -456px -118px; -} -.dropdown { - position: relative; -} -.dropdown-toggle { - *margin-bottom: -3px; -} -.dropdown-toggle:active, .open .dropdown-toggle { - outline: 0; -} -.caret { - display: inline-block; - width: 0; - height: 0; - text-indent: -99999px; - *text-indent: 0; - vertical-align: top; - border-left: 4px solid transparent; - border-right: 4px solid transparent; - border-top: 4px solid #000000; - opacity: 0.3; - filter: alpha(opacity=30); - content: "\2193"; -} -.dropdown .caret { - margin-top: 8px; - margin-left: 2px; -} -.dropdown:hover .caret, .open.dropdown .caret { - opacity: 1; - filter: alpha(opacity=100); -} -.dropdown-menu { - position: absolute; - top: 100%; - left: 0; - z-index: 1000; - float: left; - display: none; - min-width: 160px; - max-width: 220px; - _width: 160px; - padding: 4px 0; - margin: 0; - list-style: none; - background-color: #ffffff; - border-color: #ccc; - border-color: rgba(0, 0, 0, 0.2); - border-style: solid; - border-width: 1px; - -webkit-border-radius: 0 0 5px 5px; - -moz-border-radius: 0 0 5px 5px; - border-radius: 0 0 5px 5px; - -webkit-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2); - -moz-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2); - box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2); - -webkit-background-clip: padding-box; - -moz-background-clip: padding; - background-clip: padding-box; - *border-right-width: 2px; - *border-bottom-width: 2px; -} -.dropdown-menu.bottom-up { - top: auto; - bottom: 100%; - margin-bottom: 2px; -} -.dropdown-menu .divider { - height: 1px; - margin: 5px 1px; - overflow: hidden; - background-color: #e5e5e5; - border-bottom: 1px solid #ffffff; - *width: 100%; - *margin: -5px 0 5px; -} -.dropdown-menu a { - display: block; - padding: 3px 15px; - clear: both; - font-weight: normal; - line-height: 18px; - color: #555555; - white-space: nowrap; -} -.dropdown-menu li > a:hover, .dropdown-menu .active > a, .dropdown-menu .active > a:hover { - color: #ffffff; - text-decoration: none; - background-color: #0088cc; -} -.dropdown.open { - *z-index: 1000; -} -.dropdown.open .dropdown-toggle { - color: #ffffff; - background: #ccc; - background: rgba(0, 0, 0, 0.3); -} -.dropdown.open .dropdown-menu { - display: block; -} -.typeahead { - margin-top: 2px; - -webkit-border-radius: 4px; - -moz-border-radius: 4px; - border-radius: 4px; -} -.well { - min-height: 20px; - padding: 19px; - margin-bottom: 20px; - background-color: #f5f5f5; - border: 1px solid #eee; - border: 1px solid rgba(0, 0, 0, 0.05); - -webkit-border-radius: 4px; - -moz-border-radius: 4px; - border-radius: 4px; - -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.05); - -moz-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.05); - box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.05); -} -.well blockquote { - border-color: #ddd; - border-color: rgba(0, 0, 0, 0.15); -} -.fade { - -webkit-transition: opacity 0.15s linear; - -moz-transition: opacity 0.15s linear; - -ms-transition: opacity 0.15s linear; - -o-transition: opacity 0.15s linear; - transition: opacity 0.15s linear; - opacity: 0; -} -.fade.in { - opacity: 1; -} -.collapse { - -webkit-transition: height 0.35s ease; - -moz-transition: height 0.35s ease; - -ms-transition: height 0.35s ease; - -o-transition: height 0.35s ease; - transition: height 0.35s ease; - position: relative; - overflow: hidden; - height: 0; -} -.collapse.in { - height: auto; -} -.close { - float: right; - font-size: 20px; - font-weight: bold; - line-height: 18px; - color: #000000; - text-shadow: 0 1px 0 #ffffff; - opacity: 0.2; - filter: alpha(opacity=20); -} -.close:hover { - color: #000000; - text-decoration: none; - opacity: 0.4; - filter: alpha(opacity=40); - cursor: pointer; -} -.btn { - display: inline-block; - padding: 4px 10px 4px; - font-size: 13px; - line-height: 18px; - color: #333333; - text-align: center; - text-shadow: 0 1px 1px rgba(255, 255, 255, 0.75); - background-color: #fafafa; - background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#ffffff), color-stop(25%, #ffffff), to(#e6e6e6)); - background-image: -webkit-linear-gradient(#ffffff, #ffffff 25%, #e6e6e6); - background-image: -moz-linear-gradient(top, #ffffff, #ffffff 25%, #e6e6e6); - background-image: -ms-linear-gradient(#ffffff, #ffffff 25%, #e6e6e6); - background-image: -o-linear-gradient(#ffffff, #ffffff 25%, #e6e6e6); - background-image: linear-gradient(#ffffff, #ffffff 25%, #e6e6e6); - background-repeat: no-repeat; - filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffff', endColorstr='#e6e6e6', GradientType=0); - border: 1px solid #ccc; - border-bottom-color: #bbb; - -webkit-border-radius: 4px; - -moz-border-radius: 4px; - border-radius: 4px; - -webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2), 0 1px 2px rgba(0, 0, 0, 0.05); - -moz-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2), 0 1px 2px rgba(0, 0, 0, 0.05); - box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2), 0 1px 2px rgba(0, 0, 0, 0.05); - cursor: pointer; - *margin-left: .3em; -} -.btn:first-child { - *margin-left: 0; -} -.btn:hover { - color: #333333; - text-decoration: none; - background-color: #e6e6e6; - background-position: 0 -15px; - -webkit-transition: background-position 0.1s linear; - -moz-transition: background-position 0.1s linear; - -ms-transition: background-position 0.1s linear; - -o-transition: background-position 0.1s linear; - transition: background-position 0.1s linear; -} -.btn:focus { - outline: thin dotted; - outline: 5px auto -webkit-focus-ring-color; - outline-offset: -2px; -} -.btn.active, .btn:active { - background-image: none; - -webkit-box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.15), 0 1px 2px rgba(0, 0, 0, 0.05); - -moz-box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.15), 0 1px 2px rgba(0, 0, 0, 0.05); - box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.15), 0 1px 2px rgba(0, 0, 0, 0.05); - background-color: #e6e6e6; - background-color: #d9d9d9 \9; - color: rgba(0, 0, 0, 0.5); - outline: 0; -} -.btn.disabled, .btn[disabled] { - cursor: default; - background-image: none; - background-color: #e6e6e6; - opacity: 0.65; - filter: alpha(opacity=65); - -webkit-box-shadow: none; - -moz-box-shadow: none; - box-shadow: none; -} -.btn-large { - padding: 9px 14px; - font-size: 15px; - line-height: normal; - -webkit-border-radius: 5px; - -moz-border-radius: 5px; - border-radius: 5px; -} -.btn-large .icon { - margin-top: 1px; -} -.btn-small { - padding: 5px 9px; - font-size: 11px; - line-height: 16px; -} -.btn-small .icon { - margin-top: -1px; -} -.btn-primary, -.btn-primary:hover, -.btn-warning, -.btn-warning:hover, -.btn-danger, -.btn-danger:hover, -.btn-success, -.btn-success:hover, -.btn-info, -.btn-info:hover { - text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25); - color: #ffffff; -} -.btn-primary.active, -.btn-warning.active, -.btn-danger.active, -.btn-success.active, -.btn-info.active { - color: rgba(255, 255, 255, 0.75); -} -.btn-primary { - background-color: #006dcc; - background-image: -moz-linear-gradient(top, #0088cc, #0044cc); - background-image: -ms-linear-gradient(top, #0088cc, #0044cc); - background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#0088cc), to(#0044cc)); - background-image: -webkit-linear-gradient(top, #0088cc, #0044cc); - background-image: -o-linear-gradient(top, #0088cc, #0044cc); - background-image: linear-gradient(top, #0088cc, #0044cc); - background-repeat: repeat-x; - filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#0088cc', endColorstr='#0044cc', GradientType=0); - border-color: #0044cc #0044cc #002a80; - border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25); - filter: progid:DXImageTransform.Microsoft.gradient(enabled = false); -} -.btn-primary:hover, -.btn-primary:active, -.btn-primary.active, -.btn-primary.disabled, -.btn-primary[disabled] { - background-color: #0044cc; -} -.btn-primary:active, .btn-primary.active { - background-color: #003399 \9; -} -.btn-warning { - background-color: #faa732; - background-image: -moz-linear-gradient(top, #fbb450, #f89406); - background-image: -ms-linear-gradient(top, #fbb450, #f89406); - background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#fbb450), to(#f89406)); - background-image: -webkit-linear-gradient(top, #fbb450, #f89406); - background-image: -o-linear-gradient(top, #fbb450, #f89406); - background-image: linear-gradient(top, #fbb450, #f89406); - background-repeat: repeat-x; - filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#fbb450', endColorstr='#f89406', GradientType=0); - border-color: #f89406 #f89406 #ad6704; - border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25); - filter: progid:DXImageTransform.Microsoft.gradient(enabled = false); -} -.btn-warning:hover, -.btn-warning:active, -.btn-warning.active, -.btn-warning.disabled, -.btn-warning[disabled] { - background-color: #f89406; -} -.btn-warning:active, .btn-warning.active { - background-color: #c67605 \9; -} -.btn-danger { - background-color: #da4f49; - background-image: -moz-linear-gradient(top, #ee5f5b, #bd362f); - background-image: -ms-linear-gradient(top, #ee5f5b, #bd362f); - background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#ee5f5b), to(#bd362f)); - background-image: -webkit-linear-gradient(top, #ee5f5b, #bd362f); - background-image: -o-linear-gradient(top, #ee5f5b, #bd362f); - background-image: linear-gradient(top, #ee5f5b, #bd362f); - background-repeat: repeat-x; - filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ee5f5b', endColorstr='#bd362f', GradientType=0); - border-color: #bd362f #bd362f #802420; - border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25); - filter: progid:DXImageTransform.Microsoft.gradient(enabled = false); -} -.btn-danger:hover, -.btn-danger:active, -.btn-danger.active, -.btn-danger.disabled, -.btn-danger[disabled] { - background-color: #bd362f; -} -.btn-danger:active, .btn-danger.active { - background-color: #942a25 \9; -} -.btn-success { - background-color: #5bb75b; - background-image: -moz-linear-gradient(top, #62c462, #51a351); - background-image: -ms-linear-gradient(top, #62c462, #51a351); - background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#62c462), to(#51a351)); - background-image: -webkit-linear-gradient(top, #62c462, #51a351); - background-image: -o-linear-gradient(top, #62c462, #51a351); - background-image: linear-gradient(top, #62c462, #51a351); - background-repeat: repeat-x; - filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#62c462', endColorstr='#51a351', GradientType=0); - border-color: #51a351 #51a351 #387038; - border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25); - filter: progid:DXImageTransform.Microsoft.gradient(enabled = false); -} -.btn-success:hover, -.btn-success:active, -.btn-success.active, -.btn-success.disabled, -.btn-success[disabled] { - background-color: #51a351; -} -.btn-success:active, .btn-success.active { - background-color: #408140 \9; -} -.btn-info { - background-color: #49afcd; - background-image: -moz-linear-gradient(top, #5bc0de, #2f96b4); - background-image: -ms-linear-gradient(top, #5bc0de, #2f96b4); - background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#5bc0de), to(#2f96b4)); - background-image: -webkit-linear-gradient(top, #5bc0de, #2f96b4); - background-image: -o-linear-gradient(top, #5bc0de, #2f96b4); - background-image: linear-gradient(top, #5bc0de, #2f96b4); - background-repeat: repeat-x; - filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#5bc0de', endColorstr='#2f96b4', GradientType=0); - border-color: #2f96b4 #2f96b4 #1f6377; - border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25); - filter: progid:DXImageTransform.Microsoft.gradient(enabled = false); -} -.btn-info:hover, -.btn-info:active, -.btn-info.active, -.btn-info.disabled, -.btn-info[disabled] { - background-color: #2f96b4; -} -.btn-info:active, .btn-info.active { - background-color: #24748c \9; -} -button.btn, input[type="submit"].btn { - *padding-top: 2px; - *padding-bottom: 2px; -} -button.btn::-moz-focus-inner, input[type="submit"].btn::-moz-focus-inner { - padding: 0; - border: 0; -} -button.btn.large, input[type="submit"].btn.large { - *padding-top: 7px; - *padding-bottom: 7px; -} -button.btn.small, input[type="submit"].btn.small { - *padding-top: 3px; - *padding-bottom: 3px; -} -.btn-group { - position: relative; - *zoom: 1; - *margin-left: .3em; -} -.btn-group:before, .btn-group:after { - display: table; - content: ""; -} -.btn-group:after { - clear: both; -} -.btn-group:first-child { - *margin-left: 0; -} -.btn-group + .btn-group { - margin-left: 5px; -} -.btn-toolbar { - margin-top: 9px; - margin-bottom: 9px; -} -.btn-toolbar .btn-group { - display: inline-block; - *display: inline; - /* IE7 inline-block hack */ - - *zoom: 1; -} -.btn-group .btn { - position: relative; - float: left; - margin-left: -1px; - -webkit-border-radius: 0; - -moz-border-radius: 0; - border-radius: 0; -} -.btn-group .btn:first-child { - margin-left: 0; - -webkit-border-top-left-radius: 4px; - -moz-border-radius-topleft: 4px; - border-top-left-radius: 4px; - -webkit-border-bottom-left-radius: 4px; - -moz-border-radius-bottomleft: 4px; - border-bottom-left-radius: 4px; -} -.btn-group .btn:last-child, .btn-group .dropdown-toggle { - -webkit-border-top-right-radius: 4px; - -moz-border-radius-topright: 4px; - border-top-right-radius: 4px; - -webkit-border-bottom-right-radius: 4px; - -moz-border-radius-bottomright: 4px; - border-bottom-right-radius: 4px; -} -.btn-group .btn.large:first-child { - margin-left: 0; - -webkit-border-top-left-radius: 6px; - -moz-border-radius-topleft: 6px; - border-top-left-radius: 6px; - -webkit-border-bottom-left-radius: 6px; - -moz-border-radius-bottomleft: 6px; - border-bottom-left-radius: 6px; -} -.btn-group .btn.large:last-child, .btn-group .large.dropdown-toggle { - -webkit-border-top-right-radius: 6px; - -moz-border-radius-topright: 6px; - border-top-right-radius: 6px; - -webkit-border-bottom-right-radius: 6px; - -moz-border-radius-bottomright: 6px; - border-bottom-right-radius: 6px; -} -.btn-group .btn:hover, -.btn-group .btn:focus, -.btn-group .btn:active, -.btn-group .btn.active { - z-index: 2; -} -.btn-group .dropdown-toggle:active, .btn-group.open .dropdown-toggle { - outline: 0; -} -.btn-group .dropdown-toggle { - padding-left: 8px; - padding-right: 8px; - -webkit-box-shadow: inset 1px 0 0 rgba(255, 255, 255, 0.125), inset 0 1px 0 rgba(255, 255, 255, 0.2), 0 1px 2px rgba(0, 0, 0, 0.05); - -moz-box-shadow: inset 1px 0 0 rgba(255, 255, 255, 0.125), inset 0 1px 0 rgba(255, 255, 255, 0.2), 0 1px 2px rgba(0, 0, 0, 0.05); - box-shadow: inset 1px 0 0 rgba(255, 255, 255, 0.125), inset 0 1px 0 rgba(255, 255, 255, 0.2), 0 1px 2px rgba(0, 0, 0, 0.05); - *padding-top: 5px; - *padding-bottom: 5px; -} -.btn-group.open { - *z-index: 1000; -} -.btn-group.open .dropdown-menu { - display: block; - margin-top: 1px; - -webkit-border-radius: 5px; - -moz-border-radius: 5px; - border-radius: 5px; -} -.btn-group.open .dropdown-toggle { - background-image: none; - -webkit-box-shadow: inset 0 1px 6px rgba(0, 0, 0, 0.15), 0 1px 2px rgba(0, 0, 0, 0.05); - -moz-box-shadow: inset 0 1px 6px rgba(0, 0, 0, 0.15), 0 1px 2px rgba(0, 0, 0, 0.05); - box-shadow: inset 0 1px 6px rgba(0, 0, 0, 0.15), 0 1px 2px rgba(0, 0, 0, 0.05); -} -.btn .caret { - margin-top: 7px; - margin-left: 0; -} -.btn:hover .caret, .open.btn-group .caret { - opacity: 1; - filter: alpha(opacity=100); -} -.btn-primary .caret, -.btn-danger .caret, -.btn-info .caret, -.btn-success .caret { - border-top-color: #ffffff; - opacity: 0.75; - filter: alpha(opacity=75); -} -.btn-small .caret { - margin-top: 4px; -} -.alert { - padding: 8px 35px 8px 14px; - margin-bottom: 18px; - text-shadow: 0 1px 0 rgba(255, 255, 255, 0.5); - background-color: #fcf8e3; - border: 1px solid #fbeed5; - -webkit-border-radius: 4px; - -moz-border-radius: 4px; - border-radius: 4px; -} -.alert, .alert-heading { - color: #c09853; -} -.alert .close { - position: relative; - top: -2px; - right: -21px; - line-height: 18px; -} -.alert-success { - background-color: #dff0d8; - border-color: #d6e9c6; -} -.alert-success, .alert-success .alert-heading { - color: #468847; -} -.alert-danger, .alert-error { - background-color: #f2dede; - border-color: #eed3d7; -} -.alert-danger, -.alert-error, -.alert-danger .alert-heading, -.alert-error .alert-heading { - color: #b94a48; -} -.alert-info { - background-color: #d9edf7; - border-color: #bce8f1; -} -.alert-info, .alert-info .alert-heading { - color: #3a87ad; -} -.alert-block { - padding-top: 14px; - padding-bottom: 14px; -} -.alert-block > p, .alert-block > ul { - margin-bottom: 0; -} -.alert-block p + p { - margin-top: 5px; -} -.nav { - margin-left: 0; - margin-bottom: 18px; - list-style: none; -} -.nav > li > a { - display: block; -} -.nav > li > a:hover { - text-decoration: none; - background-color: #eeeeee; -} -.nav-list { - padding-left: 14px; - padding-right: 14px; - margin-bottom: 0; -} -.nav-list > li > a, .nav-list .nav-header { - display: block; - padding: 3px 15px; - margin-left: -15px; - margin-right: -15px; - text-shadow: 0 1px 0 rgba(255, 255, 255, 0.5); -} -.nav-list .nav-header { - font-size: 11px; - font-weight: bold; - line-height: 18px; - color: #999999; - text-transform: uppercase; -} - -.nav-list .nav-header * { - text-transform:none; -} - -.nav-list > li + .nav-header { - margin-top: 9px; -} -.nav-list .active > a, .nav-list .active > a:hover { - color: #ffffff; - text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.2); - background-color: #0088cc; -} -.nav-list [class^="icon-"] { - margin-right: 2px; -} -.nav-tabs, .nav-pills { - *zoom: 1; -} -.nav-tabs:before, -.nav-pills:before, -.nav-tabs:after, -.nav-pills:after { - display: table; - content: ""; -} -.nav-tabs:after, .nav-pills:after { - clear: both; -} -.nav-tabs > li, .nav-pills > li { - float: left; -} -.nav-tabs > li > a, .nav-pills > li > a { - padding-right: 12px; - padding-left: 12px; - margin-right: 2px; - line-height: 14px; -} -.nav-tabs { - border-bottom: 1px solid #ddd; -} -.nav-tabs > li { - margin-bottom: -1px; -} -.nav-tabs > li > a { - padding-top: 9px; - padding-bottom: 9px; - border: 1px solid transparent; - -webkit-border-radius: 4px 4px 0 0; - -moz-border-radius: 4px 4px 0 0; - border-radius: 4px 4px 0 0; -} -.nav-tabs > li > a:hover { - border-color: #eeeeee #eeeeee #dddddd; -} -.nav-tabs > .active > a, .nav-tabs > .active > a:hover { - color: #555555; - background-color: #ffffff; - border: 1px solid #ddd; - border-bottom-color: transparent; - cursor: default; -} -.nav-pills > li > a { - padding-top: 8px; - padding-bottom: 8px; - margin-top: 2px; - margin-bottom: 2px; - -webkit-border-radius: 5px; - -moz-border-radius: 5px; - border-radius: 5px; -} -.nav-pills .active > a, .nav-pills .active > a:hover { - color: #ffffff; - background-color: #0088cc; -} -.nav-stacked > li { - float: none; -} -.nav-stacked > li > a { - margin-right: 0; -} -.nav-tabs.nav-stacked { - border-bottom: 0; -} -.nav-tabs.nav-stacked > li > a { - border: 1px solid #ddd; - -webkit-border-radius: 0; - -moz-border-radius: 0; - border-radius: 0; -} -.nav-tabs.nav-stacked > li:first-child > a { - -webkit-border-radius: 4px 4px 0 0; - -moz-border-radius: 4px 4px 0 0; - border-radius: 4px 4px 0 0; -} -.nav-tabs.nav-stacked > li:last-child > a { - -webkit-border-radius: 0 0 4px 4px; - -moz-border-radius: 0 0 4px 4px; - border-radius: 0 0 4px 4px; -} -.nav-tabs.nav-stacked > li > a:hover { - border-color: #ddd; - z-index: 2; -} -.nav-pills.nav-stacked > li > a { - margin-bottom: 3px; -} -.nav-pills.nav-stacked > li:last-child > a { - margin-bottom: 1px; -} -.nav-tabs .dropdown-menu, .nav-pills .dropdown-menu { - margin-top: 1px; - border-width: 1px; -} -.nav-pills .dropdown-menu { - -webkit-border-radius: 4px; - -moz-border-radius: 4px; - border-radius: 4px; -} -.nav-tabs .dropdown-toggle .caret, .nav-pills .dropdown-toggle .caret { - border-top-color: #0088cc; - margin-top: 6px; -} -.nav-tabs .dropdown-toggle:hover .caret, .nav-pills .dropdown-toggle:hover .caret { - border-top-color: #005580; -} -.nav-tabs .active .dropdown-toggle .caret, .nav-pills .active .dropdown-toggle .caret { - border-top-color: #333333; -} -.nav > .dropdown.active > a:hover { - color: #000000; - cursor: pointer; -} -.nav-tabs .open .dropdown-toggle, .nav-pills .open .dropdown-toggle, .nav > .open.active > a:hover { - color: #ffffff; - background-color: #999999; - border-color: #999999; -} -.nav .open .caret, .nav .open.active .caret, .nav .open a:hover .caret { - border-top-color: #ffffff; - opacity: 1; - filter: alpha(opacity=100); -} -.tabs-stacked .open > a:hover { - border-color: #999999; -} -.tabbable { - *zoom: 1; -} -.tabbable:before, .tabbable:after { - display: table; - content: ""; -} -.tabbable:after { - clear: both; -} -.tabs-below .nav-tabs, .tabs-right .nav-tabs, .tabs-left .nav-tabs { - border-bottom: 0; -} -.tab-content > .tab-pane, .pill-content > .pill-pane { - display: none; -} -.tab-content > .active, .pill-content > .active { - display: block; -} -.tabs-below .nav-tabs { - border-top: 1px solid #ddd; -} -.tabs-below .nav-tabs > li { - margin-top: -1px; - margin-bottom: 0; -} -.tabs-below .nav-tabs > li > a { - -webkit-border-radius: 0 0 4px 4px; - -moz-border-radius: 0 0 4px 4px; - border-radius: 0 0 4px 4px; -} -.tabs-below .nav-tabs > li > a:hover { - border-bottom-color: transparent; - border-top-color: #ddd; -} -.tabs-below .nav-tabs .active > a, .tabs-below .nav-tabs .active > a:hover { - border-color: transparent #ddd #ddd #ddd; -} -.tabs-left .nav-tabs > li, .tabs-right .nav-tabs > li { - float: none; -} -.tabs-left .nav-tabs > li > a, .tabs-right .nav-tabs > li > a { - min-width: 74px; - margin-right: 0; - margin-bottom: 3px; -} -.tabs-left .nav-tabs { - float: left; - margin-right: 19px; - border-right: 1px solid #ddd; -} -.tabs-left .nav-tabs > li > a { - margin-right: -1px; - -webkit-border-radius: 4px 0 0 4px; - -moz-border-radius: 4px 0 0 4px; - border-radius: 4px 0 0 4px; -} -.tabs-left .nav-tabs > li > a:hover { - border-color: #eeeeee #dddddd #eeeeee #eeeeee; -} -.tabs-left .nav-tabs .active > a, .tabs-left .nav-tabs .active > a:hover { - border-color: #ddd transparent #ddd #ddd; - *border-right-color: #ffffff; -} -.tabs-right .nav-tabs { - float: right; - margin-left: 19px; - border-left: 1px solid #ddd; -} -.tabs-right .nav-tabs > li > a { - margin-left: -1px; - -webkit-border-radius: 0 4px 4px 0; - -moz-border-radius: 0 4px 4px 0; - border-radius: 0 4px 4px 0; -} -.tabs-right .nav-tabs > li > a:hover { - border-color: #eeeeee #eeeeee #eeeeee #dddddd; -} -.tabs-right .nav-tabs .active > a, .tabs-right .nav-tabs .active > a:hover { - border-color: #ddd #ddd #ddd transparent; - *border-left-color: #ffffff; -} -.navbar { - overflow: visible; - margin-bottom: 18px; -} -.navbar-inner { - padding-left: 20px; - padding-right: 20px; - background-color: #2c2c2c; - background-image: -moz-linear-gradient(top, #333333, #222222); - background-image: -ms-linear-gradient(top, #333333, #222222); - background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#333333), to(#222222)); - background-image: -webkit-linear-gradient(top, #333333, #222222); - background-image: -o-linear-gradient(top, #333333, #222222); - background-image: linear-gradient(top, #333333, #222222); - background-repeat: repeat-x; - filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#333333', endColorstr='#222222', GradientType=0); - -webkit-border-radius: 4px; - -moz-border-radius: 4px; - border-radius: 4px; - -webkit-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.25), inset 0 -1px 0 rgba(0, 0, 0, 0.1); - -moz-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.25), inset 0 -1px 0 rgba(0, 0, 0, 0.1); - box-shadow: 0 1px 3px rgba(0, 0, 0, 0.25), inset 0 -1px 0 rgba(0, 0, 0, 0.1); -} -.btn-navbar { - display: none; - float: right; - padding: 7px 10px; - margin-left: 5px; - margin-right: 5px; - background-color: #2c2c2c; - background-image: -moz-linear-gradient(top, #333333, #222222); - background-image: -ms-linear-gradient(top, #333333, #222222); - background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#333333), to(#222222)); - background-image: -webkit-linear-gradient(top, #333333, #222222); - background-image: -o-linear-gradient(top, #333333, #222222); - background-image: linear-gradient(top, #333333, #222222); - background-repeat: repeat-x; - filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#333333', endColorstr='#222222', GradientType=0); - border-color: #222222 #222222 #000000; - border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25); - filter: progid:DXImageTransform.Microsoft.gradient(enabled = false); - -webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1), 0 1px 0 rgba(255, 255, 255, 0.075); - -moz-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1), 0 1px 0 rgba(255, 255, 255, 0.075); - box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1), 0 1px 0 rgba(255, 255, 255, 0.075); -} -.btn-navbar:hover, -.btn-navbar:active, -.btn-navbar.active, -.btn-navbar.disabled, -.btn-navbar[disabled] { - background-color: #222222; -} -.btn-navbar:active, .btn-navbar.active { - background-color: #080808 \9; -} -.btn-navbar .icon-bar { - display: block; - width: 18px; - height: 2px; - background-color: #f5f5f5; - -webkit-border-radius: 1px; - -moz-border-radius: 1px; - border-radius: 1px; - -webkit-box-shadow: 0 1px 0 rgba(0, 0, 0, 0.25); - -moz-box-shadow: 0 1px 0 rgba(0, 0, 0, 0.25); - box-shadow: 0 1px 0 rgba(0, 0, 0, 0.25); -} -.btn-navbar .icon-bar + .icon-bar { - margin-top: 3px; -} -.nav-collapse.collapse { - height: auto; -} -.navbar .brand:hover { - text-decoration: none; -} -.navbar .brand { - float: left; - display: block; - padding: 8px 20px 12px; - margin-left: -20px; - font-size: 20px; - font-weight: 200; - line-height: 1; - color: #ffffff; -} -.navbar .navbar-text { - margin-bottom: 0; - line-height: 40px; - color: #999999; -} -.navbar .navbar-text a:hover { - color: #ffffff; - background-color: transparent; -} -.navbar .btn, .navbar .btn-group { - margin-top: 5px; -} -.navbar .btn-group .btn { - margin-top: 0; -} -.navbar-form { - margin-bottom: 0; - *zoom: 1; -} -.navbar-form:before, .navbar-form:after { - display: table; - content: ""; -} -.navbar-form:after { - clear: both; -} -.navbar-form input, .navbar-form select { - display: inline-block; - margin-top: 5px; - margin-bottom: 0; -} -.navbar-form .radio, .navbar-form .checkbox { - margin-top: 5px; -} -.navbar-form input[type="image"], .navbar-form input[type="checkbox"], .navbar-form input[type="radio"] { - margin-top: 3px; -} -.navbar-search { - position: relative; - float: left; - margin-top: 6px; - margin-bottom: 0; -} -.navbar-search .search-query { - padding: 4px 9px; - font-family: "Helvetica Neue", Helvetica, Arial, sans-serif; - font-size: 13px; - font-weight: normal; - line-height: 1; - color: #ffffff; - color: rgba(255, 255, 255, 0.75); - background: #666; - background: rgba(255, 255, 255, 0.3); - border: 1px solid #111; - -webkit-box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1), 0 1px 0px rgba(255, 255, 255, 0.15); - -moz-box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1), 0 1px 0px rgba(255, 255, 255, 0.15); - box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1), 0 1px 0px rgba(255, 255, 255, 0.15); - -webkit-transition: none; - -moz-transition: none; - -ms-transition: none; - -o-transition: none; - transition: none; -} -.navbar-search .search-query :-moz-placeholder { - color: #eeeeee; -} -.navbar-search .search-query::-webkit-input-placeholder { - color: #eeeeee; -} -.navbar-search .search-query:hover { - color: #ffffff; - background-color: #999999; - background-color: rgba(255, 255, 255, 0.5); -} -.navbar-search .search-query:focus, .navbar-search .search-query.focused { - padding: 5px 10px; - color: #333333; - text-shadow: 0 1px 0 #ffffff; - background-color: #ffffff; - border: 0; - -webkit-box-shadow: 0 0 3px rgba(0, 0, 0, 0.15); - -moz-box-shadow: 0 0 3px rgba(0, 0, 0, 0.15); - box-shadow: 0 0 3px rgba(0, 0, 0, 0.15); - outline: 0; -} -.navbar-fixed-top { - position: fixed; - top: 0; - right: 0; - left: 0; - z-index: 1030; -} -.navbar-fixed-top .navbar-inner { - padding-left: 0; - padding-right: 0; - -webkit-border-radius: 0; - -moz-border-radius: 0; - border-radius: 0; -} -.navbar .nav { - position: relative; - left: 0; - display: block; - float: left; - margin: 0 10px 0 0; -} -.navbar .nav.pull-right { - float: right; -} -.navbar .nav > li { - display: block; - float: left; -} -.navbar .nav > li > a { - float: none; - padding: 10px 10px 11px; - line-height: 19px; - color: #999999; - text-decoration: none; - text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25); -} -.navbar .nav > li > a:hover { - background-color: transparent; - color: #ffffff; - text-decoration: none; -} -.navbar .nav .active > a, .navbar .nav .active > a:hover { - color: #ffffff; - text-decoration: none; - background-color: #222222; - background-color: rgba(0, 0, 0, 0.5); -} -.navbar .divider-vertical { - height: 40px; - width: 1px; - margin: 0 9px; - overflow: hidden; - background-color: #222222; - border-right: 1px solid #333333; -} -.navbar .nav.pull-right { - margin-left: 10px; - margin-right: 0; -} -.navbar .dropdown-menu { - margin-top: 1px; - -webkit-border-radius: 4px; - -moz-border-radius: 4px; - border-radius: 4px; -} -.navbar .dropdown-menu:before { - content: ''; - display: inline-block; - border-left: 7px solid transparent; - border-right: 7px solid transparent; - border-bottom: 7px solid #ccc; - border-bottom-color: rgba(0, 0, 0, 0.2); - position: absolute; - top: -7px; - left: 9px; -} -.navbar .dropdown-menu:after { - content: ''; - display: inline-block; - border-left: 6px solid transparent; - border-right: 6px solid transparent; - border-bottom: 6px solid #ffffff; - position: absolute; - top: -6px; - left: 10px; -} -.navbar .nav .dropdown-toggle .caret, .navbar .nav .open.dropdown .caret { - border-top-color: #ffffff; -} -.navbar .nav .active .caret { - opacity: 1; - filter: alpha(opacity=100); -} -.navbar .nav .open > .dropdown-toggle, .navbar .nav .active > .dropdown-toggle, .navbar .nav .open.active > .dropdown-toggle { - background-color: transparent; -} -.navbar .nav .active > .dropdown-toggle:hover { - color: #ffffff; -} -.navbar .nav.pull-right .dropdown-menu { - left: auto; - right: 0; -} -.navbar .nav.pull-right .dropdown-menu:before { - left: auto; - right: 12px; -} -.navbar .nav.pull-right .dropdown-menu:after { - left: auto; - right: 13px; -} -.breadcrumb { - padding: 7px 14px; - margin: 0 0 18px; - background-color: #fbfbfb; - background-image: -moz-linear-gradient(top, #ffffff, #f5f5f5); - background-image: -ms-linear-gradient(top, #ffffff, #f5f5f5); - background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#ffffff), to(#f5f5f5)); - background-image: -webkit-linear-gradient(top, #ffffff, #f5f5f5); - background-image: -o-linear-gradient(top, #ffffff, #f5f5f5); - background-image: linear-gradient(top, #ffffff, #f5f5f5); - background-repeat: repeat-x; - filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffff', endColorstr='#f5f5f5', GradientType=0); - border: 1px solid #ddd; - -webkit-border-radius: 3px; - -moz-border-radius: 3px; - border-radius: 3px; - -webkit-box-shadow: inset 0 1px 0 #ffffff; - -moz-box-shadow: inset 0 1px 0 #ffffff; - box-shadow: inset 0 1px 0 #ffffff; -} -.breadcrumb li { - display: inline; - text-shadow: 0 1px 0 #ffffff; -} -.breadcrumb .divider { - padding: 0 5px; - color: #999999; -} -.breadcrumb .active a { - color: #333333; -} -.pagination { - height: 36px; - margin: 18px 0; -} -.pagination ul { - display: inline-block; - *display: inline; - /* IE7 inline-block hack */ - - *zoom: 1; - margin-left: 0; - margin-bottom: 0; - -webkit-border-radius: 3px; - -moz-border-radius: 3px; - border-radius: 3px; - -webkit-box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05); - -moz-box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05); - box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05); -} -.pagination li { - display: inline; -} -.pagination a { - float: left; - padding: 0 14px; - line-height: 34px; - text-decoration: none; - border: 1px solid #ddd; - border-left-width: 0; -} -.pagination a:hover, .pagination .active a { - background-color: #f5f5f5; -} -.pagination .active a { - color: #999999; - cursor: default; -} -.pagination .disabled a, .pagination .disabled a:hover { - color: #999999; - background-color: transparent; - cursor: default; -} -.pagination li:first-child a { - border-left-width: 1px; - -webkit-border-radius: 3px 0 0 3px; - -moz-border-radius: 3px 0 0 3px; - border-radius: 3px 0 0 3px; -} -.pagination li:last-child a { - -webkit-border-radius: 0 3px 3px 0; - -moz-border-radius: 0 3px 3px 0; - border-radius: 0 3px 3px 0; -} -.pagination-centered { - text-align: center; -} -.pagination-right { - text-align: right; -} -.pager { - margin-left: 0; - margin-bottom: 18px; - list-style: none; - text-align: center; - *zoom: 1; -} -.pager:before, .pager:after { - display: table; - content: ""; -} -.pager:after { - clear: both; -} -.pager li { - display: inline; -} -.pager a { - display: inline-block; - padding: 5px 14px; - background-color: #fff; - border: 1px solid #ddd; - -webkit-border-radius: 15px; - -moz-border-radius: 15px; - border-radius: 15px; -} -.pager a:hover { - text-decoration: none; - background-color: #f5f5f5; -} -.pager .next a { - float: right; -} -.pager .previous a { - float: left; -} -.modal-open .dropdown-menu { - z-index: 2050; -} -.modal-open .dropdown.open { - *z-index: 2050; -} -.modal-open .popover { - z-index: 2060; -} -.modal-open .tooltip { - z-index: 2070; -} -.modal-backdrop { - position: fixed; - top: 0; - right: 0; - bottom: 0; - left: 0; - z-index: 1040; - background-color: #000000; -} -.modal-backdrop.fade { - opacity: 0; -} -.modal-backdrop, .modal-backdrop.fade.in { - opacity: 0.8; - filter: alpha(opacity=80); -} -.modal { - position: fixed; - top: 50%; - left: 50%; - z-index: 1050; - max-height: 500px; - overflow: auto; - width: 560px; - margin: -250px 0 0 -280px; - background-color: #ffffff; - border: 1px solid #999; - border: 1px solid rgba(0, 0, 0, 0.3); - *border: 1px solid #999; - /* IE6-7 */ - - -webkit-border-radius: 6px; - -moz-border-radius: 6px; - border-radius: 6px; - -webkit-box-shadow: 0 3px 7px rgba(0, 0, 0, 0.3); - -moz-box-shadow: 0 3px 7px rgba(0, 0, 0, 0.3); - box-shadow: 0 3px 7px rgba(0, 0, 0, 0.3); - -webkit-background-clip: padding-box; - -moz-background-clip: padding-box; - background-clip: padding-box; -} -.modal.fade { - -webkit-transition: opacity .3s linear, top .3s ease-out; - -moz-transition: opacity .3s linear, top .3s ease-out; - -ms-transition: opacity .3s linear, top .3s ease-out; - -o-transition: opacity .3s linear, top .3s ease-out; - transition: opacity .3s linear, top .3s ease-out; - top: -25%; -} -.modal.fade.in { - top: 50%; -} -.modal-header { - padding: 9px 15px; - border-bottom: 1px solid #eee; -} -.modal-header .close { - margin-top: 2px; -} -.modal-body { - padding: 15px; -} -.modal-footer { - padding: 14px 15px 15px; - margin-bottom: 0; - background-color: #f5f5f5; - border-top: 1px solid #ddd; - -webkit-border-radius: 0 0 6px 6px; - -moz-border-radius: 0 0 6px 6px; - border-radius: 0 0 6px 6px; - -webkit-box-shadow: inset 0 1px 0 #ffffff; - -moz-box-shadow: inset 0 1px 0 #ffffff; - box-shadow: inset 0 1px 0 #ffffff; - *zoom: 1; -} -.modal-footer:before, .modal-footer:after { - display: table; - content: ""; -} -.modal-footer:after { - clear: both; -} -.modal-footer .btn { - float: right; - margin-left: 5px; - margin-bottom: 0; -} -.tooltip { - position: absolute; - z-index: 1020; - display: block; - visibility: visible; - padding: 5px; - font-size: 11px; - opacity: 0; - filter: alpha(opacity=0); -} -.tooltip.in { - opacity: 0.8; - filter: alpha(opacity=80); -} -.tooltip.top { - margin-top: -2px; -} -.tooltip.right { - margin-left: 2px; -} -.tooltip.bottom { - margin-top: 2px; -} -.tooltip.left { - margin-left: -2px; -} -.tooltip.top .tooltip-arrow { - bottom: 0; - left: 50%; - margin-left: -5px; - border-left: 5px solid transparent; - border-right: 5px solid transparent; - border-top: 5px solid #000000; -} -.tooltip.left .tooltip-arrow { - top: 50%; - right: 0; - margin-top: -5px; - border-top: 5px solid transparent; - border-bottom: 5px solid transparent; - border-left: 5px solid #000000; -} -.tooltip.bottom .tooltip-arrow { - top: 0; - left: 50%; - margin-left: -5px; - border-left: 5px solid transparent; - border-right: 5px solid transparent; - border-bottom: 5px solid #000000; -} -.tooltip.right .tooltip-arrow { - top: 50%; - left: 0; - margin-top: -5px; - border-top: 5px solid transparent; - border-bottom: 5px solid transparent; - border-right: 5px solid #000000; -} -.tooltip-inner { - max-width: 200px; - padding: 3px 8px; - color: #ffffff; - text-align: center; - text-decoration: none; - background-color: #000000; - -webkit-border-radius: 4px; - -moz-border-radius: 4px; - border-radius: 4px; -} -.tooltip-arrow { - position: absolute; - width: 0; - height: 0; -} -.popover { - position: absolute; - top: 0; - left: 0; - z-index: 1010; - display: none; - padding: 5px; -} -.popover.top { - margin-top: -5px; -} -.popover.right { - margin-left: 5px; -} -.popover.bottom { - margin-top: 5px; -} -.popover.left { - margin-left: -5px; -} -.popover.top .arrow { - bottom: 0; - left: 50%; - margin-left: -5px; - border-left: 5px solid transparent; - border-right: 5px solid transparent; - border-top: 5px solid #000000; -} -.popover.right .arrow { - top: 50%; - left: 0; - margin-top: -5px; - border-top: 5px solid transparent; - border-bottom: 5px solid transparent; - border-right: 5px solid #000000; -} -.popover.bottom .arrow { - top: 0; - left: 50%; - margin-left: -5px; - border-left: 5px solid transparent; - border-right: 5px solid transparent; - border-bottom: 5px solid #000000; -} -.popover.left .arrow { - top: 50%; - right: 0; - margin-top: -5px; - border-top: 5px solid transparent; - border-bottom: 5px solid transparent; - border-left: 5px solid #000000; -} -.popover .arrow { - position: absolute; - width: 0; - height: 0; -} -.popover-inner { - padding: 3px; - width: 280px; - overflow: hidden; - background: #000000; - background: rgba(0, 0, 0, 0.8); - -webkit-border-radius: 6px; - -moz-border-radius: 6px; - border-radius: 6px; - -webkit-box-shadow: 0 3px 7px rgba(0, 0, 0, 0.3); - -moz-box-shadow: 0 3px 7px rgba(0, 0, 0, 0.3); - box-shadow: 0 3px 7px rgba(0, 0, 0, 0.3); -} -.popover-title { - padding: 9px 15px; - line-height: 1; - background-color: #f5f5f5; - border-bottom: 1px solid #eee; - -webkit-border-radius: 3px 3px 0 0; - -moz-border-radius: 3px 3px 0 0; - border-radius: 3px 3px 0 0; -} -.popover-content { - padding: 14px; - background-color: #ffffff; - -webkit-border-radius: 0 0 3px 3px; - -moz-border-radius: 0 0 3px 3px; - border-radius: 0 0 3px 3px; - -webkit-background-clip: padding-box; - -moz-background-clip: padding-box; - background-clip: padding-box; -} -.popover-content p, .popover-content ul, .popover-content ol { - margin-bottom: 0; -} -.thumbnails { - margin-left: -20px; - list-style: none; - *zoom: 1; -} -.thumbnails:before, .thumbnails:after { - display: table; - content: ""; -} -.thumbnails:after { - clear: both; -} -.thumbnails > li { - float: left; - margin: 0 0 18px 20px; -} -.thumbnail { - display: block; - padding: 4px; - line-height: 1; - border: 1px solid #ddd; - -webkit-border-radius: 4px; - -moz-border-radius: 4px; - border-radius: 4px; - -webkit-box-shadow: 0 1px 1px rgba(0, 0, 0, 0.075); - -moz-box-shadow: 0 1px 1px rgba(0, 0, 0, 0.075); - box-shadow: 0 1px 1px rgba(0, 0, 0, 0.075); -} -a.thumbnail:hover { - border-color: #0088cc; - -webkit-box-shadow: 0 1px 4px rgba(0, 105, 214, 0.25); - -moz-box-shadow: 0 1px 4px rgba(0, 105, 214, 0.25); - box-shadow: 0 1px 4px rgba(0, 105, 214, 0.25); -} -.thumbnail > img { - display: block; - max-width: 100%; - margin-left: auto; - margin-right: auto; -} -.thumbnail .caption { - padding: 9px; -} -.label { - padding: 1px 3px 2px; - font-size: 9.75px; - font-weight: bold; - color: #ffffff; - text-transform: uppercase; - background-color: #999999; - -webkit-border-radius: 3px; - -moz-border-radius: 3px; - border-radius: 3px; -} -.label-important { - background-color: #b94a48; -} -.label-warning { - background-color: #f89406; -} -.label-success { - background-color: #468847; -} -.label-info { - background-color: #3a87ad; -} -@-webkit-keyframes progress-bar-stripes { - from { - background-position: 0 0; - } - to { - background-position: 40px 0; - } -} -@-moz-keyframes progress-bar-stripes { - from { - background-position: 0 0; - } - to { - background-position: 40px 0; - } -} -@keyframes progress-bar-stripes { - from { - background-position: 0 0; - } - to { - background-position: 40px 0; - } -} -.progress { - overflow: hidden; - height: 18px; - margin-bottom: 18px; - background-color: #f7f7f7; - background-image: -moz-linear-gradient(top, #f5f5f5, #f9f9f9); - background-image: -ms-linear-gradient(top, #f5f5f5, #f9f9f9); - background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#f5f5f5), to(#f9f9f9)); - background-image: -webkit-linear-gradient(top, #f5f5f5, #f9f9f9); - background-image: -o-linear-gradient(top, #f5f5f5, #f9f9f9); - background-image: linear-gradient(top, #f5f5f5, #f9f9f9); - background-repeat: repeat-x; - filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#f5f5f5', endColorstr='#f9f9f9', GradientType=0); - -webkit-box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1); - -moz-box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1); - box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1); - -webkit-border-radius: 4px; - -moz-border-radius: 4px; - border-radius: 4px; -} -.progress .bar { - width: 0%; - height: 18px; - color: #ffffff; - font-size: 12px; - text-align: center; - text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25); - background-color: #0e90d2; - background-image: -moz-linear-gradient(top, #149bdf, #0480be); - background-image: -ms-linear-gradient(top, #149bdf, #0480be); - background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#149bdf), to(#0480be)); - background-image: -webkit-linear-gradient(top, #149bdf, #0480be); - background-image: -o-linear-gradient(top, #149bdf, #0480be); - background-image: linear-gradient(top, #149bdf, #0480be); - background-repeat: repeat-x; - filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#149bdf', endColorstr='#0480be', GradientType=0); - -webkit-box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.15); - -moz-box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.15); - box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.15); - -webkit-box-sizing: border-box; - -moz-box-sizing: border-box; - box-sizing: border-box; - -webkit-transition: width 0.6s ease; - -moz-transition: width 0.6s ease; - -ms-transition: width 0.6s ease; - -o-transition: width 0.6s ease; - transition: width 0.6s ease; -} -.progress-striped .bar { - background-color: #62c462; - background-image: -webkit-gradient(linear, 0 100%, 100% 0, color-stop(0.25, rgba(255, 255, 255, 0.15)), color-stop(0.25, transparent), color-stop(0.5, transparent), color-stop(0.5, rgba(255, 255, 255, 0.15)), color-stop(0.75, rgba(255, 255, 255, 0.15)), color-stop(0.75, transparent), to(transparent)); - background-image: -webkit-linear-gradient(-45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent); - background-image: -moz-linear-gradient(-45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent); - background-image: -ms-linear-gradient(-45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent); - background-image: -o-linear-gradient(-45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent); - background-image: linear-gradient(-45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent); - -webkit-background-size: 40px 40px; - -moz-background-size: 40px 40px; - -o-background-size: 40px 40px; - background-size: 40px 40px; -} -.progress.active .bar { - -webkit-animation: progress-bar-stripes 2s linear infinite; - -moz-animation: progress-bar-stripes 2s linear infinite; - animation: progress-bar-stripes 2s linear infinite; -} -.progress-danger .bar { - background-color: #dd514c; - background-image: -moz-linear-gradient(top, #ee5f5b, #c43c35); - background-image: -ms-linear-gradient(top, #ee5f5b, #c43c35); - background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#ee5f5b), to(#c43c35)); - background-image: -webkit-linear-gradient(top, #ee5f5b, #c43c35); - background-image: -o-linear-gradient(top, #ee5f5b, #c43c35); - background-image: linear-gradient(top, #ee5f5b, #c43c35); - background-repeat: repeat-x; - filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ee5f5b', endColorstr='#c43c35', GradientType=0); -} -.progress-danger.progress-striped .bar { - background-color: #ee5f5b; - background-image: -webkit-gradient(linear, 0 100%, 100% 0, color-stop(0.25, rgba(255, 255, 255, 0.15)), color-stop(0.25, transparent), color-stop(0.5, transparent), color-stop(0.5, rgba(255, 255, 255, 0.15)), color-stop(0.75, rgba(255, 255, 255, 0.15)), color-stop(0.75, transparent), to(transparent)); - background-image: -webkit-linear-gradient(-45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent); - background-image: -moz-linear-gradient(-45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent); - background-image: -ms-linear-gradient(-45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent); - background-image: -o-linear-gradient(-45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent); - background-image: linear-gradient(-45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent); -} -.progress-success .bar { - background-color: #5eb95e; - background-image: -moz-linear-gradient(top, #62c462, #57a957); - background-image: -ms-linear-gradient(top, #62c462, #57a957); - background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#62c462), to(#57a957)); - background-image: -webkit-linear-gradient(top, #62c462, #57a957); - background-image: -o-linear-gradient(top, #62c462, #57a957); - background-image: linear-gradient(top, #62c462, #57a957); - background-repeat: repeat-x; - filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#62c462', endColorstr='#57a957', GradientType=0); -} -.progress-success.progress-striped .bar { - background-color: #62c462; - background-image: -webkit-gradient(linear, 0 100%, 100% 0, color-stop(0.25, rgba(255, 255, 255, 0.15)), color-stop(0.25, transparent), color-stop(0.5, transparent), color-stop(0.5, rgba(255, 255, 255, 0.15)), color-stop(0.75, rgba(255, 255, 255, 0.15)), color-stop(0.75, transparent), to(transparent)); - background-image: -webkit-linear-gradient(-45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent); - background-image: -moz-linear-gradient(-45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent); - background-image: -ms-linear-gradient(-45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent); - background-image: -o-linear-gradient(-45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent); - background-image: linear-gradient(-45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent); -} -.progress-info .bar { - background-color: #4bb1cf; - background-image: -moz-linear-gradient(top, #5bc0de, #339bb9); - background-image: -ms-linear-gradient(top, #5bc0de, #339bb9); - background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#5bc0de), to(#339bb9)); - background-image: -webkit-linear-gradient(top, #5bc0de, #339bb9); - background-image: -o-linear-gradient(top, #5bc0de, #339bb9); - background-image: linear-gradient(top, #5bc0de, #339bb9); - background-repeat: repeat-x; - filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#5bc0de', endColorstr='#339bb9', GradientType=0); -} -.progress-info.progress-striped .bar { - background-color: #5bc0de; - background-image: -webkit-gradient(linear, 0 100%, 100% 0, color-stop(0.25, rgba(255, 255, 255, 0.15)), color-stop(0.25, transparent), color-stop(0.5, transparent), color-stop(0.5, rgba(255, 255, 255, 0.15)), color-stop(0.75, rgba(255, 255, 255, 0.15)), color-stop(0.75, transparent), to(transparent)); - background-image: -webkit-linear-gradient(-45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent); - background-image: -moz-linear-gradient(-45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent); - background-image: -ms-linear-gradient(-45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent); - background-image: -o-linear-gradient(-45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent); - background-image: linear-gradient(-45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent); -} -.accordion { - margin-bottom: 18px; -} -.accordion-group { - margin-bottom: 2px; - border: 1px solid #e5e5e5; - -webkit-border-radius: 4px; - -moz-border-radius: 4px; - border-radius: 4px; -} -.accordion-heading { - border-bottom: 0; -} -.accordion-heading .accordion-toggle { - display: block; - padding: 8px 15px; -} -.accordion-inner { - padding: 9px 15px; - border-top: 1px solid #e5e5e5; -} -.carousel { - position: relative; - margin-bottom: 18px; - line-height: 1; -} -.carousel-inner { - overflow: hidden; - width: 100%; - position: relative; -} -.carousel .item { - display: none; - position: relative; - -webkit-transition: 0.6s ease-in-out left; - -moz-transition: 0.6s ease-in-out left; - -ms-transition: 0.6s ease-in-out left; - -o-transition: 0.6s ease-in-out left; - transition: 0.6s ease-in-out left; -} -.carousel .item > img { - display: block; - line-height: 1; -} -.carousel .active, .carousel .next, .carousel .prev { - display: block; -} -.carousel .active { - left: 0; -} -.carousel .next, .carousel .prev { - position: absolute; - top: 0; - width: 100%; -} -.carousel .next { - left: 100%; -} -.carousel .prev { - left: -100%; -} -.carousel .next.left, .carousel .prev.right { - left: 0; -} -.carousel .active.left { - left: -100%; -} -.carousel .active.right { - left: 100%; -} -.carousel-control { - position: absolute; - top: 40%; - left: 15px; - width: 40px; - height: 40px; - margin-top: -20px; - font-size: 60px; - font-weight: 100; - line-height: 30px; - color: #ffffff; - text-align: center; - background: #222222; - border: 3px solid #ffffff; - -webkit-border-radius: 23px; - -moz-border-radius: 23px; - border-radius: 23px; - opacity: 0.5; - filter: alpha(opacity=50); -} -.carousel-control.right { - left: auto; - right: 15px; -} -.carousel-control:hover { - color: #ffffff; - text-decoration: none; - opacity: 0.9; - filter: alpha(opacity=90); -} -.carousel-caption { - position: absolute; - left: 0; - right: 0; - bottom: 0; - padding: 10px 15px 5px; - background: #333333; - background: rgba(0, 0, 0, 0.75); -} -.carousel-caption h4, .carousel-caption p { - color: #ffffff; -} -.hero-unit { - padding: 60px; - margin-bottom: 30px; - background-color: #f5f5f5; - -webkit-border-radius: 6px; - -moz-border-radius: 6px; - border-radius: 6px; -} -.hero-unit h1 { - margin-bottom: 0; - font-size: 60px; - line-height: 1; - letter-spacing: -1px; -} -.hero-unit p { - font-size: 18px; - font-weight: 200; - line-height: 27px; -} -.pull-right { - float: right; -} -.pull-left { - float: left; -} -.hide { - display: none; -} -.show { - display: block; -} -.invisible { - visibility: hidden; -} diff --git a/docs/css/bootstrap.min.css b/docs/css/bootstrap.min.css deleted file mode 100644 index d522124..0000000 --- a/docs/css/bootstrap.min.css +++ /dev/null @@ -1,611 +0,0 @@ -article,aside,details,figcaption,figure,footer,header,hgroup,nav,section{display:block;} -audio,canvas,video{display:inline-block;*display:inline;*zoom:1;} -audio:not([controls]){display:none;} -html{font-size:100%;-webkit-text-size-adjust:100%;-ms-text-size-adjust:100%;} -a:focus{outline:thin dotted;outline:5px auto -webkit-focus-ring-color;outline-offset:-2px;} -a:hover,a:active{outline:0;} -sub,sup{position:relative;font-size:75%;line-height:0;vertical-align:baseline;} -sup{top:-0.5em;} -sub{bottom:-0.25em;} -img{max-width:100%;height:auto;border:0;-ms-interpolation-mode:bicubic;} -button,input,select,textarea{margin:0;font-size:100%;vertical-align:middle;} -button,input{*overflow:visible;line-height:normal;} -button::-moz-focus-inner,input::-moz-focus-inner{padding:0;border:0;} -button,input[type="button"],input[type="reset"],input[type="submit"]{cursor:pointer;-webkit-appearance:button;} -input[type="search"]{-webkit-appearance:textfield;-webkit-box-sizing:content-box;-moz-box-sizing:content-box;box-sizing:content-box;} -input[type="search"]::-webkit-search-decoration,input[type="search"]::-webkit-search-cancel-button{-webkit-appearance:none;} -textarea{overflow:auto;vertical-align:top;} -body{margin:0;font-family:"Helvetica Neue",Helvetica,Arial,sans-serif;font-size:13px;line-height:18px;color:#333333;background-color:#ffffff;} -a{color:#0088cc;text-decoration:none;} -a:hover{color:#005580;text-decoration:underline;} -.row{margin-left:-20px;*zoom:1;}.row:before,.row:after{display:table;content:"";} -.row:after{clear:both;} -[class*="span"]{float:left;margin-left:20px;} -.span1{width:60px;} -.span2{width:140px;} -.span3{width:220px;} -.span4{width:300px;} -.span5{width:380px;} -.span6{width:460px;} -.span7{width:540px;} -.span8{width:620px;} -.span9{width:700px;} -.span10{width:780px;} -.span11{width:860px;} -.span12,.container{width:940px;} -.offset1{margin-left:100px;} -.offset2{margin-left:180px;} -.offset3{margin-left:260px;} -.offset4{margin-left:340px;} -.offset5{margin-left:420px;} -.offset6{margin-left:500px;} -.offset7{margin-left:580px;} -.offset8{margin-left:660px;} -.offset9{margin-left:740px;} -.offset10{margin-left:820px;} -.offset11{margin-left:900px;} -.row-fluid{width:100%;*zoom:1;}.row-fluid:before,.row-fluid:after{display:table;content:"";} -.row-fluid:after{clear:both;} -.row-fluid>[class*="span"]{float:left;margin-left:2.127659574%;} -.row-fluid>[class*="span"]:first-child{margin-left:0;} -.row-fluid .span1{width:6.382978723%;} -.row-fluid .span2{width:14.89361702%;} -.row-fluid .span3{width:23.404255317%;} -.row-fluid .span4{width:31.914893614%;} -.row-fluid .span5{width:40.425531911%;} -.row-fluid .span6{width:48.93617020799999%;} -.row-fluid .span7{width:57.446808505%;} -.row-fluid .span8{width:65.95744680199999%;} -.row-fluid .span9{width:74.468085099%;} -.row-fluid .span10{width:82.97872339599999%;} -.row-fluid .span11{width:91.489361693%;} -.row-fluid .span12{width:99.99999998999999%;} -.container{width:940px;margin-left:auto;margin-right:auto;*zoom:1;}.container:before,.container:after{display:table;content:"";} -.container:after{clear:both;} -.container-fluid{padding-left:20px;padding-right:20px;*zoom:1;}.container-fluid:before,.container-fluid:after{display:table;content:"";} -.container-fluid:after{clear:both;} -p{margin:0 0 9px;font-family:"Helvetica Neue",Helvetica,Arial,sans-serif;font-size:13px;line-height:18px;}p small{font-size:11px;color:#999999;} -.lead{margin-bottom:18px;font-size:20px;font-weight:200;line-height:27px;} -h1,h2,h3,h4,h5,h6{margin:0;font-weight:bold;color:#333333;text-rendering:optimizelegibility;}h1 small,h2 small,h3 small,h4 small,h5 small,h6 small{font-weight:normal;color:#999999;} -h1{font-size:30px;line-height:36px;}h1 small{font-size:18px;} -h2{font-size:24px;line-height:36px;}h2 small{font-size:18px;} -h3{line-height:27px;font-size:18px;}h3 small{font-size:14px;} -h4,h5,h6{line-height:18px;} -h4{font-size:14px;}h4 small{font-size:12px;} -h5{font-size:12px;} -h6{font-size:11px;color:#999999;text-transform:uppercase;} -.page-header{padding-bottom:17px;margin:18px 0;border-bottom:1px solid #eeeeee;} -.page-header h1{line-height:1;} -ul,ol{padding:0;margin:0 0 9px 25px;} -ul ul,ul ol,ol ol,ol ul{margin-bottom:0;} -ul{list-style:disc;} -ol{list-style:decimal;} -li{line-height:18px;} -ul.unstyled{margin-left:0;list-style:none;} -dl{margin-bottom:18px;} -dt,dd{line-height:18px;} -dt{font-weight:bold;} -dd{margin-left:9px;} -hr{margin:18px 0;border:0;border-top:1px solid #e5e5e5;border-bottom:1px solid #ffffff;} -strong{font-weight:bold;} -em{font-style:italic;} -.muted{color:#999999;} -abbr{font-size:90%;text-transform:uppercase;border-bottom:1px dotted #ddd;cursor:help;} -blockquote{padding:0 0 0 15px;margin:0 0 18px;border-left:5px solid #eeeeee;}blockquote p{margin-bottom:0;font-size:16px;font-weight:300;line-height:22.5px;} -blockquote small{display:block;line-height:18px;color:#999999;}blockquote small:before{content:'\2014 \00A0';} -blockquote.pull-right{float:right;padding-left:0;padding-right:15px;border-left:0;border-right:5px solid #eeeeee;}blockquote.pull-right p,blockquote.pull-right small{text-align:right;} -q:before,q:after,blockquote:before,blockquote:after{content:"";} -address{display:block;margin-bottom:18px;line-height:18px;font-style:normal;} -small{font-size:100%;} -cite{font-style:normal;} -code,pre{padding:0 3px 2px;font-family:Menlo,Monaco,"Courier New",monospace;font-size:12px;color:#333333;-webkit-border-radius:3px;-moz-border-radius:3px;border-radius:3px;} -code{padding:3px 4px;color:#d14;background-color:#f7f7f9;border:1px solid #e1e1e8;} -pre{display:block;padding:8.5px;margin:0 0 9px;font-size:12px;line-height:18px;background-color:#f5f5f5;border:1px solid #ccc;border:1px solid rgba(0, 0, 0, 0.15);-webkit-border-radius:4px;-moz-border-radius:4px;border-radius:4px;white-space:pre;white-space:pre-wrap;word-break:break-all;}pre.prettyprint{margin-bottom:18px;} -pre code{padding:0;background-color:transparent;} -form{margin:0 0 18px;} -fieldset{padding:0;margin:0;border:0;} -legend{display:block;width:100%;padding:0;margin-bottom:27px;font-size:19.5px;line-height:36px;color:#333333;border:0;border-bottom:1px solid #eee;} -label,input,button,select,textarea{font-family:"Helvetica Neue",Helvetica,Arial,sans-serif;font-size:13px;font-weight:normal;line-height:18px;} -label{display:block;margin-bottom:5px;color:#333333;} -input,textarea,select,.uneditable-input{display:inline-block;width:210px;height:18px;padding:4px;margin-bottom:9px;font-size:13px;line-height:18px;color:#555555;border:1px solid #ccc;-webkit-border-radius:3px;-moz-border-radius:3px;border-radius:3px;} -.uneditable-textarea{width:auto;height:auto;} -label input,label textarea,label select{display:block;} -input[type="image"],input[type="checkbox"],input[type="radio"]{width:auto;height:auto;padding:0;margin:3px 0;*margin-top:0;line-height:normal;border:0;cursor:pointer;-webkit-border-radius:0;-moz-border-radius:0;border-radius:0;} -input[type="file"]{padding:initial;line-height:initial;border:initial;background-color:#ffffff;background-color:initial;-webkit-box-shadow:none;-moz-box-shadow:none;box-shadow:none;} -input[type="button"],input[type="reset"],input[type="submit"]{width:auto;height:auto;} -select,input[type="file"]{height:28px;*margin-top:4px;line-height:28px;} -select{width:220px;background-color:#ffffff;} -select[multiple],select[size]{height:auto;} -input[type="image"]{-webkit-box-shadow:none;-moz-box-shadow:none;box-shadow:none;} -textarea{height:auto;} -input[type="hidden"]{display:none;} -.radio,.checkbox{padding-left:18px;} -.radio input[type="radio"],.checkbox input[type="checkbox"]{float:left;margin-left:-18px;} -.controls>.radio:first-child,.controls>.checkbox:first-child{padding-top:5px;} -.radio.inline,.checkbox.inline{display:inline-block;margin-bottom:0;vertical-align:middle;} -.radio.inline+.radio.inline,.checkbox.inline+.checkbox.inline{margin-left:10px;} -.controls>.radio.inline:first-child,.controls>.checkbox.inline:first-child{padding-top:0;} -input,textarea{-webkit-box-shadow:inset 0 1px 1px rgba(0, 0, 0, 0.075);-moz-box-shadow:inset 0 1px 1px rgba(0, 0, 0, 0.075);box-shadow:inset 0 1px 1px rgba(0, 0, 0, 0.075);-webkit-transition:border linear 0.2s,box-shadow linear 0.2s;-moz-transition:border linear 0.2s,box-shadow linear 0.2s;-ms-transition:border linear 0.2s,box-shadow linear 0.2s;-o-transition:border linear 0.2s,box-shadow linear 0.2s;transition:border linear 0.2s,box-shadow linear 0.2s;} -input:focus,textarea:focus{border-color:rgba(82, 168, 236, 0.8);-webkit-box-shadow:inset 0 1px 1px rgba(0, 0, 0, 0.075),0 0 8px rgba(82, 168, 236, 0.6);-moz-box-shadow:inset 0 1px 1px rgba(0, 0, 0, 0.075),0 0 8px rgba(82, 168, 236, 0.6);box-shadow:inset 0 1px 1px rgba(0, 0, 0, 0.075),0 0 8px rgba(82, 168, 236, 0.6);outline:0;outline:thin dotted \9;} -input[type="file"]:focus,input[type="checkbox"]:focus,select:focus{-webkit-box-shadow:none;-moz-box-shadow:none;box-shadow:none;outline:thin dotted;outline:5px auto -webkit-focus-ring-color;outline-offset:-2px;} -.input-mini{width:60px;} -.input-small{width:90px;} -.input-medium{width:150px;} -.input-large{width:210px;} -.input-xlarge{width:270px;} -.input-xxlarge{width:530px;} -input[class*="span"],select[class*="span"],textarea[class*="span"],.uneditable-input{float:none;margin-left:0;} -input.span1,textarea.span1,.uneditable-input.span1{width:50px;} -input.span2,textarea.span2,.uneditable-input.span2{width:130px;} -input.span3,textarea.span3,.uneditable-input.span3{width:210px;} -input.span4,textarea.span4,.uneditable-input.span4{width:290px;} -input.span5,textarea.span5,.uneditable-input.span5{width:370px;} -input.span6,textarea.span6,.uneditable-input.span6{width:450px;} -input.span7,textarea.span7,.uneditable-input.span7{width:530px;} -input.span8,textarea.span8,.uneditable-input.span8{width:610px;} -input.span9,textarea.span9,.uneditable-input.span9{width:690px;} -input.span10,textarea.span10,.uneditable-input.span10{width:770px;} -input.span11,textarea.span11,.uneditable-input.span11{width:850px;} -input.span12,textarea.span12,.uneditable-input.span12{width:930px;} -input[disabled],select[disabled],textarea[disabled],input[readonly],select[readonly],textarea[readonly]{background-color:#f5f5f5;border-color:#ddd;cursor:not-allowed;} -.control-group.warning>label,.control-group.warning .help-block,.control-group.warning .help-inline{color:#c09853;} -.control-group.warning input,.control-group.warning select,.control-group.warning textarea{color:#c09853;border-color:#c09853;}.control-group.warning input:focus,.control-group.warning select:focus,.control-group.warning textarea:focus{border-color:#a47e3c;-webkit-box-shadow:0 0 6px #dbc59e;-moz-box-shadow:0 0 6px #dbc59e;box-shadow:0 0 6px #dbc59e;} -.control-group.warning .input-prepend .add-on,.control-group.warning .input-append .add-on{color:#c09853;background-color:#fcf8e3;border-color:#c09853;} -.control-group.error>label,.control-group.error .help-block,.control-group.error .help-inline{color:#b94a48;} -.control-group.error input,.control-group.error select,.control-group.error textarea{color:#b94a48;border-color:#b94a48;}.control-group.error input:focus,.control-group.error select:focus,.control-group.error textarea:focus{border-color:#953b39;-webkit-box-shadow:0 0 6px #d59392;-moz-box-shadow:0 0 6px #d59392;box-shadow:0 0 6px #d59392;} -.control-group.error .input-prepend .add-on,.control-group.error .input-append .add-on{color:#b94a48;background-color:#f2dede;border-color:#b94a48;} -.control-group.success>label,.control-group.success .help-block,.control-group.success .help-inline{color:#468847;} -.control-group.success input,.control-group.success select,.control-group.success textarea{color:#468847;border-color:#468847;}.control-group.success input:focus,.control-group.success select:focus,.control-group.success textarea:focus{border-color:#356635;-webkit-box-shadow:0 0 6px #7aba7b;-moz-box-shadow:0 0 6px #7aba7b;box-shadow:0 0 6px #7aba7b;} -.control-group.success .input-prepend .add-on,.control-group.success .input-append .add-on{color:#468847;background-color:#dff0d8;border-color:#468847;} -input:focus:required:invalid,textarea:focus:required:invalid,select:focus:required:invalid{color:#b94a48;border-color:#ee5f5b;}input:focus:required:invalid:focus,textarea:focus:required:invalid:focus,select:focus:required:invalid:focus{border-color:#e9322d;-webkit-box-shadow:0 0 6px #f8b9b7;-moz-box-shadow:0 0 6px #f8b9b7;box-shadow:0 0 6px #f8b9b7;} -.form-actions{padding:17px 20px 18px;margin-top:18px;margin-bottom:18px;background-color:#f5f5f5;border-top:1px solid #ddd;} -.uneditable-input{display:block;background-color:#ffffff;border-color:#eee;-webkit-box-shadow:inset 0 1px 2px rgba(0, 0, 0, 0.025);-moz-box-shadow:inset 0 1px 2px rgba(0, 0, 0, 0.025);box-shadow:inset 0 1px 2px rgba(0, 0, 0, 0.025);cursor:not-allowed;} -:-moz-placeholder{color:#999999;} -::-webkit-input-placeholder{color:#999999;} -.help-block{margin-top:5px;margin-bottom:0;color:#999999;} -.help-inline{display:inline-block;*display:inline;*zoom:1;margin-bottom:9px;vertical-align:middle;padding-left:5px;} -.input-prepend,.input-append{margin-bottom:5px;*zoom:1;}.input-prepend:before,.input-append:before,.input-prepend:after,.input-append:after{display:table;content:"";} -.input-prepend:after,.input-append:after{clear:both;} -.input-prepend input,.input-append input,.input-prepend .uneditable-input,.input-append .uneditable-input{-webkit-border-radius:0 3px 3px 0;-moz-border-radius:0 3px 3px 0;border-radius:0 3px 3px 0;}.input-prepend input:focus,.input-append input:focus,.input-prepend .uneditable-input:focus,.input-append .uneditable-input:focus{position:relative;z-index:2;} -.input-prepend .uneditable-input,.input-append .uneditable-input{border-left-color:#ccc;} -.input-prepend .add-on,.input-append .add-on{float:left;display:block;width:auto;min-width:16px;height:18px;margin-right:-1px;padding:4px 5px;font-weight:normal;line-height:18px;color:#999999;text-align:center;text-shadow:0 1px 0 #ffffff;background-color:#f5f5f5;border:1px solid #ccc;-webkit-border-radius:3px 0 0 3px;-moz-border-radius:3px 0 0 3px;border-radius:3px 0 0 3px;} -.input-prepend .active,.input-append .active{background-color:#a9dba9;border-color:#46a546;} -.input-prepend .add-on{*margin-top:1px;} -.input-append input,.input-append .uneditable-input{float:left;-webkit-border-radius:3px 0 0 3px;-moz-border-radius:3px 0 0 3px;border-radius:3px 0 0 3px;} -.input-append .uneditable-input{border-right-color:#ccc;} -.input-append .add-on{margin-right:0;margin-left:-1px;-webkit-border-radius:0 3px 3px 0;-moz-border-radius:0 3px 3px 0;border-radius:0 3px 3px 0;} -.input-append input:first-child{*margin-left:-160px;}.input-append input:first-child+.add-on{*margin-left:-21px;} -.search-query{padding-left:14px;padding-right:14px;margin-bottom:0;-webkit-border-radius:14px;-moz-border-radius:14px;border-radius:14px;} -.form-search input,.form-inline input,.form-horizontal input,.form-search textarea,.form-inline textarea,.form-horizontal textarea,.form-search select,.form-inline select,.form-horizontal select,.form-search .help-inline,.form-inline .help-inline,.form-horizontal .help-inline,.form-search .uneditable-input,.form-inline .uneditable-input,.form-horizontal .uneditable-input{display:inline-block;margin-bottom:0;} -.form-search label,.form-inline label,.form-search .input-append,.form-inline .input-append,.form-search .input-prepend,.form-inline .input-prepend{display:inline-block;} -.form-search .input-append .add-on,.form-inline .input-prepend .add-on,.form-search .input-append .add-on,.form-inline .input-prepend .add-on{vertical-align:middle;} -.control-group{margin-bottom:9px;} -.form-horizontal legend+.control-group{margin-top:18px;-webkit-margin-top-collapse:separate;} -.form-horizontal .control-group{margin-bottom:18px;*zoom:1;}.form-horizontal .control-group:before,.form-horizontal .control-group:after{display:table;content:"";} -.form-horizontal .control-group:after{clear:both;} -.form-horizontal .control-group>label{float:left;width:140px;padding-top:5px;text-align:right;} -.form-horizontal .controls{margin-left:160px;} -.form-horizontal .form-actions{padding-left:160px;} -table{max-width:100%;border-collapse:collapse;border-spacing:0;} -.table{width:100%;margin-bottom:18px;}.table th,.table td{padding:8px;line-height:18px;text-align:left;border-top:1px solid #ddd;} -.table th{font-weight:bold;vertical-align:bottom;} -.table td{vertical-align:top;} -.table thead:first-child tr th,.table thead:first-child tr td{border-top:0;} -.table tbody+tbody{border-top:2px solid #ddd;} -.table-condensed th,.table-condensed td{padding:4px 5px;} -.table-bordered{border:1px solid #ddd;border-collapse:separate;*border-collapse:collapsed;-webkit-border-radius:4px;-moz-border-radius:4px;border-radius:4px;}.table-bordered th+th,.table-bordered td+td,.table-bordered th+td,.table-bordered td+th{border-left:1px solid #ddd;} -.table-bordered thead:first-child tr:first-child th,.table-bordered tbody:first-child tr:first-child th,.table-bordered tbody:first-child tr:first-child td{border-top:0;} -.table-bordered thead:first-child tr:first-child th:first-child,.table-bordered tbody:first-child tr:first-child td:first-child{-webkit-border-radius:4px 0 0 0;-moz-border-radius:4px 0 0 0;border-radius:4px 0 0 0;} -.table-bordered thead:first-child tr:first-child th:last-child,.table-bordered tbody:first-child tr:first-child td:last-child{-webkit-border-radius:0 4px 0 0;-moz-border-radius:0 4px 0 0;border-radius:0 4px 0 0;} -.table-bordered thead:last-child tr:last-child th:first-child,.table-bordered tbody:last-child tr:last-child td:first-child{-webkit-border-radius:0 0 0 4px;-moz-border-radius:0 0 0 4px;border-radius:0 0 0 4px;} -.table-bordered thead:last-child tr:last-child th:last-child,.table-bordered tbody:last-child tr:last-child td:last-child{-webkit-border-radius:0 0 4px 0;-moz-border-radius:0 0 4px 0;border-radius:0 0 4px 0;} -.table-striped tbody tr:nth-child(odd) td,.table-striped tbody tr:nth-child(odd) th{background-color:#f9f9f9;} -table .span1{float:none;width:44px;margin-left:0;} -table .span2{float:none;width:124px;margin-left:0;} -table .span3{float:none;width:204px;margin-left:0;} -table .span4{float:none;width:284px;margin-left:0;} -table .span5{float:none;width:364px;margin-left:0;} -table .span6{float:none;width:444px;margin-left:0;} -table .span7{float:none;width:524px;margin-left:0;} -table .span8{float:none;width:604px;margin-left:0;} -table .span9{float:none;width:684px;margin-left:0;} -table .span10{float:none;width:764px;margin-left:0;} -table .span11{float:none;width:844px;margin-left:0;} -table .span12{float:none;width:924px;margin-left:0;} -[class^="icon-"]{display:inline-block;width:14px;height:14px;vertical-align:text-top;background-image:url(../img/glyphicons-halflings.png);background-position:14px 14px;background-repeat:no-repeat;*margin-right:.3em;}[class^="icon-"]:last-child{*margin-left:0;} -.icon-white{background-image:url(../img/glyphicons-halflings-white.png);} -.icon-glass{background-position:0 0;} -.icon-music{background-position:-24px 0;} -.icon-search{background-position:-48px 0;} -.icon-envelope{background-position:-72px 0;} -.icon-heart{background-position:-96px 0;} -.icon-star{background-position:-120px 0;} -.icon-star-empty{background-position:-144px 0;} -.icon-user{background-position:-168px 0;} -.icon-film{background-position:-192px 0;} -.icon-th-large{background-position:-216px 0;} -.icon-th{background-position:-240px 0;} -.icon-th-list{background-position:-264px 0;} -.icon-ok{background-position:-288px 0;} -.icon-remove{background-position:-312px 0;} -.icon-zoom-in{background-position:-336px 0;} -.icon-zoom-out{background-position:-360px 0;} -.icon-off{background-position:-384px 0;} -.icon-signal{background-position:-408px 0;} -.icon-cog{background-position:-432px 0;} -.icon-trash{background-position:-456px 0;} -.icon-home{background-position:0 -24px;} -.icon-file{background-position:-24px -24px;} -.icon-time{background-position:-48px -24px;} -.icon-road{background-position:-72px -24px;} -.icon-download-alt{background-position:-96px -24px;} -.icon-download{background-position:-120px -24px;} -.icon-upload{background-position:-144px -24px;} -.icon-inbox{background-position:-168px -24px;} -.icon-play-circle{background-position:-192px -24px;} -.icon-repeat{background-position:-216px -24px;} -.icon-refresh{background-position:-240px -24px;} -.icon-list-alt{background-position:-264px -24px;} -.icon-lock{background-position:-287px -24px;} -.icon-flag{background-position:-312px -24px;} -.icon-headphones{background-position:-336px -24px;} -.icon-volume-off{background-position:-360px -24px;} -.icon-volume-down{background-position:-384px -24px;} -.icon-volume-up{background-position:-408px -24px;} -.icon-qrcode{background-position:-432px -24px;} -.icon-barcode{background-position:-456px -24px;} -.icon-tag{background-position:0 -48px;} -.icon-tags{background-position:-25px -48px;} -.icon-book{background-position:-48px -48px;} -.icon-bookmark{background-position:-72px -48px;} -.icon-print{background-position:-96px -48px;} -.icon-camera{background-position:-120px -48px;} -.icon-font{background-position:-144px -48px;} -.icon-bold{background-position:-167px -48px;} -.icon-italic{background-position:-192px -48px;} -.icon-text-height{background-position:-216px -48px;} -.icon-text-width{background-position:-240px -48px;} -.icon-align-left{background-position:-264px -48px;} -.icon-align-center{background-position:-288px -48px;} -.icon-align-right{background-position:-312px -48px;} -.icon-align-justify{background-position:-336px -48px;} -.icon-list{background-position:-360px -48px;} -.icon-indent-left{background-position:-384px -48px;} -.icon-indent-right{background-position:-408px -48px;} -.icon-facetime-video{background-position:-432px -48px;} -.icon-picture{background-position:-456px -48px;} -.icon-pencil{background-position:0 -72px;} -.icon-map-marker{background-position:-24px -72px;} -.icon-adjust{background-position:-48px -72px;} -.icon-tint{background-position:-72px -72px;} -.icon-edit{background-position:-96px -72px;} -.icon-share{background-position:-120px -72px;} -.icon-check{background-position:-144px -72px;} -.icon-move{background-position:-168px -72px;} -.icon-step-backward{background-position:-192px -72px;} -.icon-fast-backward{background-position:-216px -72px;} -.icon-backward{background-position:-240px -72px;} -.icon-play{background-position:-264px -72px;} -.icon-pause{background-position:-288px -72px;} -.icon-stop{background-position:-312px -72px;} -.icon-forward{background-position:-336px -72px;} -.icon-fast-forward{background-position:-360px -72px;} -.icon-step-forward{background-position:-384px -72px;} -.icon-eject{background-position:-408px -72px;} -.icon-chevron-left{background-position:-432px -72px;} -.icon-chevron-right{background-position:-456px -72px;} -.icon-plus-sign{background-position:0 -96px;} -.icon-minus-sign{background-position:-24px -96px;} -.icon-remove-sign{background-position:-48px -96px;} -.icon-ok-sign{background-position:-72px -96px;} -.icon-question-sign{background-position:-96px -96px;} -.icon-info-sign{background-position:-120px -96px;} -.icon-screenshot{background-position:-144px -96px;} -.icon-remove-circle{background-position:-168px -96px;} -.icon-ok-circle{background-position:-192px -96px;} -.icon-ban-circle{background-position:-216px -96px;} -.icon-arrow-left{background-position:-240px -96px;} -.icon-arrow-right{background-position:-264px -96px;} -.icon-arrow-up{background-position:-289px -96px;} -.icon-arrow-down{background-position:-312px -96px;} -.icon-share-alt{background-position:-336px -96px;} -.icon-resize-full{background-position:-360px -96px;} -.icon-resize-small{background-position:-384px -96px;} -.icon-plus{background-position:-408px -96px;} -.icon-minus{background-position:-433px -96px;} -.icon-asterisk{background-position:-456px -96px;} -.icon-exclamation-sign{background-position:0 -120px;} -.icon-gift{background-position:-24px -120px;} -.icon-leaf{background-position:-48px -120px;} -.icon-fire{background-position:-72px -120px;} -.icon-eye-open{background-position:-96px -120px;} -.icon-eye-close{background-position:-120px -120px;} -.icon-warning-sign{background-position:-144px -120px;} -.icon-plane{background-position:-168px -120px;} -.icon-calendar{background-position:-192px -120px;} -.icon-random{background-position:-216px -120px;} -.icon-comment{background-position:-240px -120px;} -.icon-magnet{background-position:-264px -120px;} -.icon-chevron-up{background-position:-288px -120px;} -.icon-chevron-down{background-position:-313px -119px;} -.icon-retweet{background-position:-336px -120px;} -.icon-shopping-cart{background-position:-360px -120px;} -.icon-folder-close{background-position:-384px -120px;} -.icon-folder-open{background-position:-408px -120px;} -.icon-resize-vertical{background-position:-432px -119px;} -.icon-resize-horizontal{background-position:-456px -118px;} -.dropdown{position:relative;} -.dropdown-toggle{*margin-bottom:-3px;} -.dropdown-toggle:active,.open .dropdown-toggle{outline:0;} -.caret{display:inline-block;width:0;height:0;text-indent:-99999px;*text-indent:0;vertical-align:top;border-left:4px solid transparent;border-right:4px solid transparent;border-top:4px solid #000000;opacity:0.3;filter:alpha(opacity=30);content:"\2193";} -.dropdown .caret{margin-top:8px;margin-left:2px;} -.dropdown:hover .caret,.open.dropdown .caret{opacity:1;filter:alpha(opacity=100);} -.dropdown-menu{position:absolute;top:100%;left:0;z-index:1000;float:left;display:none;min-width:160px;max-width:220px;_width:160px;padding:4px 0;margin:0;list-style:none;background-color:#ffffff;border-color:#ccc;border-color:rgba(0, 0, 0, 0.2);border-style:solid;border-width:1px;-webkit-border-radius:0 0 5px 5px;-moz-border-radius:0 0 5px 5px;border-radius:0 0 5px 5px;-webkit-box-shadow:0 5px 10px rgba(0, 0, 0, 0.2);-moz-box-shadow:0 5px 10px rgba(0, 0, 0, 0.2);box-shadow:0 5px 10px rgba(0, 0, 0, 0.2);-webkit-background-clip:padding-box;-moz-background-clip:padding;background-clip:padding-box;*border-right-width:2px;*border-bottom-width:2px;}.dropdown-menu.bottom-up{top:auto;bottom:100%;margin-bottom:2px;} -.dropdown-menu .divider{height:1px;margin:5px 1px;overflow:hidden;background-color:#e5e5e5;border-bottom:1px solid #ffffff;*width:100%;*margin:-5px 0 5px;} -.dropdown-menu a{display:block;padding:3px 15px;clear:both;font-weight:normal;line-height:18px;color:#555555;white-space:nowrap;} -.dropdown-menu li>a:hover,.dropdown-menu .active>a,.dropdown-menu .active>a:hover{color:#ffffff;text-decoration:none;background-color:#0088cc;} -.dropdown.open{*z-index:1000;}.dropdown.open .dropdown-toggle{color:#ffffff;background:#ccc;background:rgba(0, 0, 0, 0.3);} -.dropdown.open .dropdown-menu{display:block;} -.typeahead{margin-top:2px;-webkit-border-radius:4px;-moz-border-radius:4px;border-radius:4px;} -.well{min-height:20px;padding:19px;margin-bottom:20px;background-color:#f5f5f5;border:1px solid #eee;border:1px solid rgba(0, 0, 0, 0.05);-webkit-border-radius:4px;-moz-border-radius:4px;border-radius:4px;-webkit-box-shadow:inset 0 1px 1px rgba(0, 0, 0, 0.05);-moz-box-shadow:inset 0 1px 1px rgba(0, 0, 0, 0.05);box-shadow:inset 0 1px 1px rgba(0, 0, 0, 0.05);}.well blockquote{border-color:#ddd;border-color:rgba(0, 0, 0, 0.15);} -.fade{-webkit-transition:opacity 0.15s linear;-moz-transition:opacity 0.15s linear;-ms-transition:opacity 0.15s linear;-o-transition:opacity 0.15s linear;transition:opacity 0.15s linear;opacity:0;}.fade.in{opacity:1;} -.collapse{-webkit-transition:height 0.35s ease;-moz-transition:height 0.35s ease;-ms-transition:height 0.35s ease;-o-transition:height 0.35s ease;transition:height 0.35s ease;position:relative;overflow:hidden;height:0;}.collapse.in{height:auto;} -.close{float:right;font-size:20px;font-weight:bold;line-height:18px;color:#000000;text-shadow:0 1px 0 #ffffff;opacity:0.2;filter:alpha(opacity=20);}.close:hover{color:#000000;text-decoration:none;opacity:0.4;filter:alpha(opacity=40);cursor:pointer;} -.btn{display:inline-block;padding:4px 10px 4px;font-size:13px;line-height:18px;color:#333333;text-align:center;text-shadow:0 1px 1px rgba(255, 255, 255, 0.75);background-color:#fafafa;background-image:-webkit-gradient(linear, 0 0, 0 100%, from(#ffffff), color-stop(25%, #ffffff), to(#e6e6e6));background-image:-webkit-linear-gradient(#ffffff, #ffffff 25%, #e6e6e6);background-image:-moz-linear-gradient(top, #ffffff, #ffffff 25%, #e6e6e6);background-image:-ms-linear-gradient(#ffffff, #ffffff 25%, #e6e6e6);background-image:-o-linear-gradient(#ffffff, #ffffff 25%, #e6e6e6);background-image:linear-gradient(#ffffff, #ffffff 25%, #e6e6e6);background-repeat:no-repeat;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffff', endColorstr='#e6e6e6', GradientType=0);border:1px solid #ccc;border-bottom-color:#bbb;-webkit-border-radius:4px;-moz-border-radius:4px;border-radius:4px;-webkit-box-shadow:inset 0 1px 0 rgba(255, 255, 255, 0.2),0 1px 2px rgba(0, 0, 0, 0.05);-moz-box-shadow:inset 0 1px 0 rgba(255, 255, 255, 0.2),0 1px 2px rgba(0, 0, 0, 0.05);box-shadow:inset 0 1px 0 rgba(255, 255, 255, 0.2),0 1px 2px rgba(0, 0, 0, 0.05);cursor:pointer;*margin-left:.3em;}.btn:first-child{*margin-left:0;} -.btn:hover{color:#333333;text-decoration:none;background-color:#e6e6e6;background-position:0 -15px;-webkit-transition:background-position 0.1s linear;-moz-transition:background-position 0.1s linear;-ms-transition:background-position 0.1s linear;-o-transition:background-position 0.1s linear;transition:background-position 0.1s linear;} -.btn:focus{outline:thin dotted;outline:5px auto -webkit-focus-ring-color;outline-offset:-2px;} -.btn.active,.btn:active{background-image:none;-webkit-box-shadow:inset 0 2px 4px rgba(0, 0, 0, 0.15),0 1px 2px rgba(0, 0, 0, 0.05);-moz-box-shadow:inset 0 2px 4px rgba(0, 0, 0, 0.15),0 1px 2px rgba(0, 0, 0, 0.05);box-shadow:inset 0 2px 4px rgba(0, 0, 0, 0.15),0 1px 2px rgba(0, 0, 0, 0.05);background-color:#e6e6e6;background-color:#d9d9d9 \9;color:rgba(0, 0, 0, 0.5);outline:0;} -.btn.disabled,.btn[disabled]{cursor:default;background-image:none;background-color:#e6e6e6;opacity:0.65;filter:alpha(opacity=65);-webkit-box-shadow:none;-moz-box-shadow:none;box-shadow:none;} -.btn-large{padding:9px 14px;font-size:15px;line-height:normal;-webkit-border-radius:5px;-moz-border-radius:5px;border-radius:5px;} -.btn-large .icon{margin-top:1px;} -.btn-small{padding:5px 9px;font-size:11px;line-height:16px;} -.btn-small .icon{margin-top:-1px;} -.btn-primary,.btn-primary:hover,.btn-warning,.btn-warning:hover,.btn-danger,.btn-danger:hover,.btn-success,.btn-success:hover,.btn-info,.btn-info:hover{text-shadow:0 -1px 0 rgba(0, 0, 0, 0.25);color:#ffffff;} -.btn-primary.active,.btn-warning.active,.btn-danger.active,.btn-success.active,.btn-info.active{color:rgba(255, 255, 255, 0.75);} -.btn-primary{background-color:#006dcc;background-image:-moz-linear-gradient(top, #0088cc, #0044cc);background-image:-ms-linear-gradient(top, #0088cc, #0044cc);background-image:-webkit-gradient(linear, 0 0, 0 100%, from(#0088cc), to(#0044cc));background-image:-webkit-linear-gradient(top, #0088cc, #0044cc);background-image:-o-linear-gradient(top, #0088cc, #0044cc);background-image:linear-gradient(top, #0088cc, #0044cc);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#0088cc', endColorstr='#0044cc', GradientType=0);border-color:#0044cc #0044cc #002a80;border-color:rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);filter:progid:DXImageTransform.Microsoft.gradient(enabled = false);}.btn-primary:hover,.btn-primary:active,.btn-primary.active,.btn-primary.disabled,.btn-primary[disabled]{background-color:#0044cc;} -.btn-primary:active,.btn-primary.active{background-color:#003399 \9;} -.btn-warning{background-color:#faa732;background-image:-moz-linear-gradient(top, #fbb450, #f89406);background-image:-ms-linear-gradient(top, #fbb450, #f89406);background-image:-webkit-gradient(linear, 0 0, 0 100%, from(#fbb450), to(#f89406));background-image:-webkit-linear-gradient(top, #fbb450, #f89406);background-image:-o-linear-gradient(top, #fbb450, #f89406);background-image:linear-gradient(top, #fbb450, #f89406);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#fbb450', endColorstr='#f89406', GradientType=0);border-color:#f89406 #f89406 #ad6704;border-color:rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);filter:progid:DXImageTransform.Microsoft.gradient(enabled = false);}.btn-warning:hover,.btn-warning:active,.btn-warning.active,.btn-warning.disabled,.btn-warning[disabled]{background-color:#f89406;} -.btn-warning:active,.btn-warning.active{background-color:#c67605 \9;} -.btn-danger{background-color:#da4f49;background-image:-moz-linear-gradient(top, #ee5f5b, #bd362f);background-image:-ms-linear-gradient(top, #ee5f5b, #bd362f);background-image:-webkit-gradient(linear, 0 0, 0 100%, from(#ee5f5b), to(#bd362f));background-image:-webkit-linear-gradient(top, #ee5f5b, #bd362f);background-image:-o-linear-gradient(top, #ee5f5b, #bd362f);background-image:linear-gradient(top, #ee5f5b, #bd362f);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ee5f5b', endColorstr='#bd362f', GradientType=0);border-color:#bd362f #bd362f #802420;border-color:rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);filter:progid:DXImageTransform.Microsoft.gradient(enabled = false);}.btn-danger:hover,.btn-danger:active,.btn-danger.active,.btn-danger.disabled,.btn-danger[disabled]{background-color:#bd362f;} -.btn-danger:active,.btn-danger.active{background-color:#942a25 \9;} -.btn-success{background-color:#5bb75b;background-image:-moz-linear-gradient(top, #62c462, #51a351);background-image:-ms-linear-gradient(top, #62c462, #51a351);background-image:-webkit-gradient(linear, 0 0, 0 100%, from(#62c462), to(#51a351));background-image:-webkit-linear-gradient(top, #62c462, #51a351);background-image:-o-linear-gradient(top, #62c462, #51a351);background-image:linear-gradient(top, #62c462, #51a351);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#62c462', endColorstr='#51a351', GradientType=0);border-color:#51a351 #51a351 #387038;border-color:rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);filter:progid:DXImageTransform.Microsoft.gradient(enabled = false);}.btn-success:hover,.btn-success:active,.btn-success.active,.btn-success.disabled,.btn-success[disabled]{background-color:#51a351;} -.btn-success:active,.btn-success.active{background-color:#408140 \9;} -.btn-info{background-color:#49afcd;background-image:-moz-linear-gradient(top, #5bc0de, #2f96b4);background-image:-ms-linear-gradient(top, #5bc0de, #2f96b4);background-image:-webkit-gradient(linear, 0 0, 0 100%, from(#5bc0de), to(#2f96b4));background-image:-webkit-linear-gradient(top, #5bc0de, #2f96b4);background-image:-o-linear-gradient(top, #5bc0de, #2f96b4);background-image:linear-gradient(top, #5bc0de, #2f96b4);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#5bc0de', endColorstr='#2f96b4', GradientType=0);border-color:#2f96b4 #2f96b4 #1f6377;border-color:rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);filter:progid:DXImageTransform.Microsoft.gradient(enabled = false);}.btn-info:hover,.btn-info:active,.btn-info.active,.btn-info.disabled,.btn-info[disabled]{background-color:#2f96b4;} -.btn-info:active,.btn-info.active{background-color:#24748c \9;} -button.btn,input[type="submit"].btn{*padding-top:2px;*padding-bottom:2px;}button.btn::-moz-focus-inner,input[type="submit"].btn::-moz-focus-inner{padding:0;border:0;} -button.btn.large,input[type="submit"].btn.large{*padding-top:7px;*padding-bottom:7px;} -button.btn.small,input[type="submit"].btn.small{*padding-top:3px;*padding-bottom:3px;} -.btn-group{position:relative;*zoom:1;*margin-left:.3em;}.btn-group:before,.btn-group:after{display:table;content:"";} -.btn-group:after{clear:both;} -.btn-group:first-child{*margin-left:0;} -.btn-group+.btn-group{margin-left:5px;} -.btn-toolbar{margin-top:9px;margin-bottom:9px;}.btn-toolbar .btn-group{display:inline-block;*display:inline;*zoom:1;} -.btn-group .btn{position:relative;float:left;margin-left:-1px;-webkit-border-radius:0;-moz-border-radius:0;border-radius:0;} -.btn-group .btn:first-child{margin-left:0;-webkit-border-top-left-radius:4px;-moz-border-radius-topleft:4px;border-top-left-radius:4px;-webkit-border-bottom-left-radius:4px;-moz-border-radius-bottomleft:4px;border-bottom-left-radius:4px;} -.btn-group .btn:last-child,.btn-group .dropdown-toggle{-webkit-border-top-right-radius:4px;-moz-border-radius-topright:4px;border-top-right-radius:4px;-webkit-border-bottom-right-radius:4px;-moz-border-radius-bottomright:4px;border-bottom-right-radius:4px;} -.btn-group .btn.large:first-child{margin-left:0;-webkit-border-top-left-radius:6px;-moz-border-radius-topleft:6px;border-top-left-radius:6px;-webkit-border-bottom-left-radius:6px;-moz-border-radius-bottomleft:6px;border-bottom-left-radius:6px;} -.btn-group .btn.large:last-child,.btn-group .large.dropdown-toggle{-webkit-border-top-right-radius:6px;-moz-border-radius-topright:6px;border-top-right-radius:6px;-webkit-border-bottom-right-radius:6px;-moz-border-radius-bottomright:6px;border-bottom-right-radius:6px;} -.btn-group .btn:hover,.btn-group .btn:focus,.btn-group .btn:active,.btn-group .btn.active{z-index:2;} -.btn-group .dropdown-toggle:active,.btn-group.open .dropdown-toggle{outline:0;} -.btn-group .dropdown-toggle{padding-left:8px;padding-right:8px;-webkit-box-shadow:inset 1px 0 0 rgba(255, 255, 255, 0.125),inset 0 1px 0 rgba(255, 255, 255, 0.2),0 1px 2px rgba(0, 0, 0, 0.05);-moz-box-shadow:inset 1px 0 0 rgba(255, 255, 255, 0.125),inset 0 1px 0 rgba(255, 255, 255, 0.2),0 1px 2px rgba(0, 0, 0, 0.05);box-shadow:inset 1px 0 0 rgba(255, 255, 255, 0.125),inset 0 1px 0 rgba(255, 255, 255, 0.2),0 1px 2px rgba(0, 0, 0, 0.05);*padding-top:5px;*padding-bottom:5px;} -.btn-group.open{*z-index:1000;}.btn-group.open .dropdown-menu{display:block;margin-top:1px;-webkit-border-radius:5px;-moz-border-radius:5px;border-radius:5px;} -.btn-group.open .dropdown-toggle{background-image:none;-webkit-box-shadow:inset 0 1px 6px rgba(0, 0, 0, 0.15),0 1px 2px rgba(0, 0, 0, 0.05);-moz-box-shadow:inset 0 1px 6px rgba(0, 0, 0, 0.15),0 1px 2px rgba(0, 0, 0, 0.05);box-shadow:inset 0 1px 6px rgba(0, 0, 0, 0.15),0 1px 2px rgba(0, 0, 0, 0.05);} -.btn .caret{margin-top:7px;margin-left:0;} -.btn:hover .caret,.open.btn-group .caret{opacity:1;filter:alpha(opacity=100);} -.btn-primary .caret,.btn-danger .caret,.btn-info .caret,.btn-success .caret{border-top-color:#ffffff;opacity:0.75;filter:alpha(opacity=75);} -.btn-small .caret{margin-top:4px;} -.alert{padding:8px 35px 8px 14px;margin-bottom:18px;text-shadow:0 1px 0 rgba(255, 255, 255, 0.5);background-color:#fcf8e3;border:1px solid #fbeed5;-webkit-border-radius:4px;-moz-border-radius:4px;border-radius:4px;} -.alert,.alert-heading{color:#c09853;} -.alert .close{position:relative;top:-2px;right:-21px;line-height:18px;} -.alert-success{background-color:#dff0d8;border-color:#d6e9c6;} -.alert-success,.alert-success .alert-heading{color:#468847;} -.alert-danger,.alert-error{background-color:#f2dede;border-color:#eed3d7;} -.alert-danger,.alert-error,.alert-danger .alert-heading,.alert-error .alert-heading{color:#b94a48;} -.alert-info{background-color:#d9edf7;border-color:#bce8f1;} -.alert-info,.alert-info .alert-heading{color:#3a87ad;} -.alert-block{padding-top:14px;padding-bottom:14px;} -.alert-block>p,.alert-block>ul{margin-bottom:0;} -.alert-block p+p{margin-top:5px;} -.nav{margin-left:0;margin-bottom:18px;list-style:none;} -.nav>li>a{display:block;} -.nav>li>a:hover{text-decoration:none;background-color:#eeeeee;} -.nav-list{padding-left:14px;padding-right:14px;margin-bottom:0;} -.nav-list>li>a,.nav-list .nav-header{display:block;padding:3px 15px;margin-left:-15px;margin-right:-15px;text-shadow:0 1px 0 rgba(255, 255, 255, 0.5);} -.nav-list .nav-header{font-size:11px;font-weight:bold;line-height:18px;color:#999999;text-transform:uppercase;} -.nav-list .nav-header *{text-transform:none;} -.nav-list>li+.nav-header{margin-top:9px;} -.nav-list .active>a,.nav-list .active>a:hover{color:#ffffff;text-shadow:0 -1px 0 rgba(0, 0, 0, 0.2);background-color:#0088cc;} -.nav-list [class^="icon-"]{margin-right:2px;} -.nav-tabs,.nav-pills{*zoom:1;}.nav-tabs:before,.nav-pills:before,.nav-tabs:after,.nav-pills:after{display:table;content:"";} -.nav-tabs:after,.nav-pills:after{clear:both;} -.nav-tabs>li,.nav-pills>li{float:left;} -.nav-tabs>li>a,.nav-pills>li>a{padding-right:12px;padding-left:12px;margin-right:2px;line-height:14px;} -.nav-tabs{border-bottom:1px solid #ddd;} -.nav-tabs>li{margin-bottom:-1px;} -.nav-tabs>li>a{padding-top:9px;padding-bottom:9px;border:1px solid transparent;-webkit-border-radius:4px 4px 0 0;-moz-border-radius:4px 4px 0 0;border-radius:4px 4px 0 0;}.nav-tabs>li>a:hover{border-color:#eeeeee #eeeeee #dddddd;} -.nav-tabs>.active>a,.nav-tabs>.active>a:hover{color:#555555;background-color:#ffffff;border:1px solid #ddd;border-bottom-color:transparent;cursor:default;} -.nav-pills>li>a{padding-top:8px;padding-bottom:8px;margin-top:2px;margin-bottom:2px;-webkit-border-radius:5px;-moz-border-radius:5px;border-radius:5px;} -.nav-pills .active>a,.nav-pills .active>a:hover{color:#ffffff;background-color:#0088cc;} -.nav-stacked>li{float:none;} -.nav-stacked>li>a{margin-right:0;} -.nav-tabs.nav-stacked{border-bottom:0;} -.nav-tabs.nav-stacked>li>a{border:1px solid #ddd;-webkit-border-radius:0;-moz-border-radius:0;border-radius:0;} -.nav-tabs.nav-stacked>li:first-child>a{-webkit-border-radius:4px 4px 0 0;-moz-border-radius:4px 4px 0 0;border-radius:4px 4px 0 0;} -.nav-tabs.nav-stacked>li:last-child>a{-webkit-border-radius:0 0 4px 4px;-moz-border-radius:0 0 4px 4px;border-radius:0 0 4px 4px;} -.nav-tabs.nav-stacked>li>a:hover{border-color:#ddd;z-index:2;} -.nav-pills.nav-stacked>li>a{margin-bottom:3px;} -.nav-pills.nav-stacked>li:last-child>a{margin-bottom:1px;} -.nav-tabs .dropdown-menu,.nav-pills .dropdown-menu{margin-top:1px;border-width:1px;} -.nav-pills .dropdown-menu{-webkit-border-radius:4px;-moz-border-radius:4px;border-radius:4px;} -.nav-tabs .dropdown-toggle .caret,.nav-pills .dropdown-toggle .caret{border-top-color:#0088cc;margin-top:6px;} -.nav-tabs .dropdown-toggle:hover .caret,.nav-pills .dropdown-toggle:hover .caret{border-top-color:#005580;} -.nav-tabs .active .dropdown-toggle .caret,.nav-pills .active .dropdown-toggle .caret{border-top-color:#333333;} -.nav>.dropdown.active>a:hover{color:#000000;cursor:pointer;} -.nav-tabs .open .dropdown-toggle,.nav-pills .open .dropdown-toggle,.nav>.open.active>a:hover{color:#ffffff;background-color:#999999;border-color:#999999;} -.nav .open .caret,.nav .open.active .caret,.nav .open a:hover .caret{border-top-color:#ffffff;opacity:1;filter:alpha(opacity=100);} -.tabs-stacked .open>a:hover{border-color:#999999;} -.tabbable{*zoom:1;}.tabbable:before,.tabbable:after{display:table;content:"";} -.tabbable:after{clear:both;} -.tabs-below .nav-tabs,.tabs-right .nav-tabs,.tabs-left .nav-tabs{border-bottom:0;} -.tab-content>.tab-pane,.pill-content>.pill-pane{display:none;} -.tab-content>.active,.pill-content>.active{display:block;} -.tabs-below .nav-tabs{border-top:1px solid #ddd;} -.tabs-below .nav-tabs>li{margin-top:-1px;margin-bottom:0;} -.tabs-below .nav-tabs>li>a{-webkit-border-radius:0 0 4px 4px;-moz-border-radius:0 0 4px 4px;border-radius:0 0 4px 4px;}.tabs-below .nav-tabs>li>a:hover{border-bottom-color:transparent;border-top-color:#ddd;} -.tabs-below .nav-tabs .active>a,.tabs-below .nav-tabs .active>a:hover{border-color:transparent #ddd #ddd #ddd;} -.tabs-left .nav-tabs>li,.tabs-right .nav-tabs>li{float:none;} -.tabs-left .nav-tabs>li>a,.tabs-right .nav-tabs>li>a{min-width:74px;margin-right:0;margin-bottom:3px;} -.tabs-left .nav-tabs{float:left;margin-right:19px;border-right:1px solid #ddd;} -.tabs-left .nav-tabs>li>a{margin-right:-1px;-webkit-border-radius:4px 0 0 4px;-moz-border-radius:4px 0 0 4px;border-radius:4px 0 0 4px;} -.tabs-left .nav-tabs>li>a:hover{border-color:#eeeeee #dddddd #eeeeee #eeeeee;} -.tabs-left .nav-tabs .active>a,.tabs-left .nav-tabs .active>a:hover{border-color:#ddd transparent #ddd #ddd;*border-right-color:#ffffff;} -.tabs-right .nav-tabs{float:right;margin-left:19px;border-left:1px solid #ddd;} -.tabs-right .nav-tabs>li>a{margin-left:-1px;-webkit-border-radius:0 4px 4px 0;-moz-border-radius:0 4px 4px 0;border-radius:0 4px 4px 0;} -.tabs-right .nav-tabs>li>a:hover{border-color:#eeeeee #eeeeee #eeeeee #dddddd;} -.tabs-right .nav-tabs .active>a,.tabs-right .nav-tabs .active>a:hover{border-color:#ddd #ddd #ddd transparent;*border-left-color:#ffffff;} -.navbar{overflow:visible;margin-bottom:18px;} -.navbar-inner{padding-left:20px;padding-right:20px;background-color:#2c2c2c;background-image:-moz-linear-gradient(top, #333333, #222222);background-image:-ms-linear-gradient(top, #333333, #222222);background-image:-webkit-gradient(linear, 0 0, 0 100%, from(#333333), to(#222222));background-image:-webkit-linear-gradient(top, #333333, #222222);background-image:-o-linear-gradient(top, #333333, #222222);background-image:linear-gradient(top, #333333, #222222);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#333333', endColorstr='#222222', GradientType=0);-webkit-border-radius:4px;-moz-border-radius:4px;border-radius:4px;-webkit-box-shadow:0 1px 3px rgba(0, 0, 0, 0.25),inset 0 -1px 0 rgba(0, 0, 0, 0.1);-moz-box-shadow:0 1px 3px rgba(0, 0, 0, 0.25),inset 0 -1px 0 rgba(0, 0, 0, 0.1);box-shadow:0 1px 3px rgba(0, 0, 0, 0.25),inset 0 -1px 0 rgba(0, 0, 0, 0.1);} -.btn-navbar{display:none;float:right;padding:7px 10px;margin-left:5px;margin-right:5px;background-color:#2c2c2c;background-image:-moz-linear-gradient(top, #333333, #222222);background-image:-ms-linear-gradient(top, #333333, #222222);background-image:-webkit-gradient(linear, 0 0, 0 100%, from(#333333), to(#222222));background-image:-webkit-linear-gradient(top, #333333, #222222);background-image:-o-linear-gradient(top, #333333, #222222);background-image:linear-gradient(top, #333333, #222222);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#333333', endColorstr='#222222', GradientType=0);border-color:#222222 #222222 #000000;border-color:rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);filter:progid:DXImageTransform.Microsoft.gradient(enabled = false);-webkit-box-shadow:inset 0 1px 0 rgba(255, 255, 255, 0.1),0 1px 0 rgba(255, 255, 255, 0.075);-moz-box-shadow:inset 0 1px 0 rgba(255, 255, 255, 0.1),0 1px 0 rgba(255, 255, 255, 0.075);box-shadow:inset 0 1px 0 rgba(255, 255, 255, 0.1),0 1px 0 rgba(255, 255, 255, 0.075);}.btn-navbar:hover,.btn-navbar:active,.btn-navbar.active,.btn-navbar.disabled,.btn-navbar[disabled]{background-color:#222222;} -.btn-navbar:active,.btn-navbar.active{background-color:#080808 \9;} -.btn-navbar .icon-bar{display:block;width:18px;height:2px;background-color:#f5f5f5;-webkit-border-radius:1px;-moz-border-radius:1px;border-radius:1px;-webkit-box-shadow:0 1px 0 rgba(0, 0, 0, 0.25);-moz-box-shadow:0 1px 0 rgba(0, 0, 0, 0.25);box-shadow:0 1px 0 rgba(0, 0, 0, 0.25);} -.btn-navbar .icon-bar+.icon-bar{margin-top:3px;} -.nav-collapse.collapse{height:auto;} -.navbar .brand:hover{text-decoration:none;} -.navbar .brand{float:left;display:block;padding:8px 20px 12px;margin-left:-20px;font-size:20px;font-weight:200;line-height:1;color:#ffffff;} -.navbar .navbar-text{margin-bottom:0;line-height:40px;color:#999999;}.navbar .navbar-text a:hover{color:#ffffff;background-color:transparent;} -.navbar .btn,.navbar .btn-group{margin-top:5px;} -.navbar .btn-group .btn{margin-top:0;} -.navbar-form{margin-bottom:0;*zoom:1;}.navbar-form:before,.navbar-form:after{display:table;content:"";} -.navbar-form:after{clear:both;} -.navbar-form input,.navbar-form select{display:inline-block;margin-top:5px;margin-bottom:0;} -.navbar-form .radio,.navbar-form .checkbox{margin-top:5px;} -.navbar-form input[type="image"],.navbar-form input[type="checkbox"],.navbar-form input[type="radio"]{margin-top:3px;} -.navbar-search{position:relative;float:left;margin-top:6px;margin-bottom:0;}.navbar-search .search-query{padding:4px 9px;font-family:"Helvetica Neue",Helvetica,Arial,sans-serif;font-size:13px;font-weight:normal;line-height:1;color:#ffffff;color:rgba(255, 255, 255, 0.75);background:#666;background:rgba(255, 255, 255, 0.3);border:1px solid #111;-webkit-box-shadow:inset 0 1px 2px rgba(0, 0, 0, 0.1),0 1px 0px rgba(255, 255, 255, 0.15);-moz-box-shadow:inset 0 1px 2px rgba(0, 0, 0, 0.1),0 1px 0px rgba(255, 255, 255, 0.15);box-shadow:inset 0 1px 2px rgba(0, 0, 0, 0.1),0 1px 0px rgba(255, 255, 255, 0.15);-webkit-transition:none;-moz-transition:none;-ms-transition:none;-o-transition:none;transition:none;}.navbar-search .search-query :-moz-placeholder{color:#eeeeee;} -.navbar-search .search-query::-webkit-input-placeholder{color:#eeeeee;} -.navbar-search .search-query:hover{color:#ffffff;background-color:#999999;background-color:rgba(255, 255, 255, 0.5);} -.navbar-search .search-query:focus,.navbar-search .search-query.focused{padding:5px 10px;color:#333333;text-shadow:0 1px 0 #ffffff;background-color:#ffffff;border:0;-webkit-box-shadow:0 0 3px rgba(0, 0, 0, 0.15);-moz-box-shadow:0 0 3px rgba(0, 0, 0, 0.15);box-shadow:0 0 3px rgba(0, 0, 0, 0.15);outline:0;} -.navbar-fixed-top{position:fixed;top:0;right:0;left:0;z-index:1030;} -.navbar-fixed-top .navbar-inner{padding-left:0;padding-right:0;-webkit-border-radius:0;-moz-border-radius:0;border-radius:0;} -.navbar .nav{position:relative;left:0;display:block;float:left;margin:0 10px 0 0;} -.navbar .nav.pull-right{float:right;} -.navbar .nav>li{display:block;float:left;} -.navbar .nav>li>a{float:none;padding:10px 10px 11px;line-height:19px;color:#999999;text-decoration:none;text-shadow:0 -1px 0 rgba(0, 0, 0, 0.25);} -.navbar .nav>li>a:hover{background-color:transparent;color:#ffffff;text-decoration:none;} -.navbar .nav .active>a,.navbar .nav .active>a:hover{color:#ffffff;text-decoration:none;background-color:#222222;background-color:rgba(0, 0, 0, 0.5);} -.navbar .divider-vertical{height:40px;width:1px;margin:0 9px;overflow:hidden;background-color:#222222;border-right:1px solid #333333;} -.navbar .nav.pull-right{margin-left:10px;margin-right:0;} -.navbar .dropdown-menu{margin-top:1px;-webkit-border-radius:4px;-moz-border-radius:4px;border-radius:4px;}.navbar .dropdown-menu:before{content:'';display:inline-block;border-left:7px solid transparent;border-right:7px solid transparent;border-bottom:7px solid #ccc;border-bottom-color:rgba(0, 0, 0, 0.2);position:absolute;top:-7px;left:9px;} -.navbar .dropdown-menu:after{content:'';display:inline-block;border-left:6px solid transparent;border-right:6px solid transparent;border-bottom:6px solid #ffffff;position:absolute;top:-6px;left:10px;} -.navbar .nav .dropdown-toggle .caret,.navbar .nav .open.dropdown .caret{border-top-color:#ffffff;} -.navbar .nav .active .caret{opacity:1;filter:alpha(opacity=100);} -.navbar .nav .open>.dropdown-toggle,.navbar .nav .active>.dropdown-toggle,.navbar .nav .open.active>.dropdown-toggle{background-color:transparent;} -.navbar .nav .active>.dropdown-toggle:hover{color:#ffffff;} -.navbar .nav.pull-right .dropdown-menu{left:auto;right:0;}.navbar .nav.pull-right .dropdown-menu:before{left:auto;right:12px;} -.navbar .nav.pull-right .dropdown-menu:after{left:auto;right:13px;} -.breadcrumb{padding:7px 14px;margin:0 0 18px;background-color:#fbfbfb;background-image:-moz-linear-gradient(top, #ffffff, #f5f5f5);background-image:-ms-linear-gradient(top, #ffffff, #f5f5f5);background-image:-webkit-gradient(linear, 0 0, 0 100%, from(#ffffff), to(#f5f5f5));background-image:-webkit-linear-gradient(top, #ffffff, #f5f5f5);background-image:-o-linear-gradient(top, #ffffff, #f5f5f5);background-image:linear-gradient(top, #ffffff, #f5f5f5);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffff', endColorstr='#f5f5f5', GradientType=0);border:1px solid #ddd;-webkit-border-radius:3px;-moz-border-radius:3px;border-radius:3px;-webkit-box-shadow:inset 0 1px 0 #ffffff;-moz-box-shadow:inset 0 1px 0 #ffffff;box-shadow:inset 0 1px 0 #ffffff;}.breadcrumb li{display:inline;text-shadow:0 1px 0 #ffffff;} -.breadcrumb .divider{padding:0 5px;color:#999999;} -.breadcrumb .active a{color:#333333;} -.pagination{height:36px;margin:18px 0;} -.pagination ul{display:inline-block;*display:inline;*zoom:1;margin-left:0;margin-bottom:0;-webkit-border-radius:3px;-moz-border-radius:3px;border-radius:3px;-webkit-box-shadow:0 1px 2px rgba(0, 0, 0, 0.05);-moz-box-shadow:0 1px 2px rgba(0, 0, 0, 0.05);box-shadow:0 1px 2px rgba(0, 0, 0, 0.05);} -.pagination li{display:inline;} -.pagination a{float:left;padding:0 14px;line-height:34px;text-decoration:none;border:1px solid #ddd;border-left-width:0;} -.pagination a:hover,.pagination .active a{background-color:#f5f5f5;} -.pagination .active a{color:#999999;cursor:default;} -.pagination .disabled a,.pagination .disabled a:hover{color:#999999;background-color:transparent;cursor:default;} -.pagination li:first-child a{border-left-width:1px;-webkit-border-radius:3px 0 0 3px;-moz-border-radius:3px 0 0 3px;border-radius:3px 0 0 3px;} -.pagination li:last-child a{-webkit-border-radius:0 3px 3px 0;-moz-border-radius:0 3px 3px 0;border-radius:0 3px 3px 0;} -.pagination-centered{text-align:center;} -.pagination-right{text-align:right;} -.pager{margin-left:0;margin-bottom:18px;list-style:none;text-align:center;*zoom:1;}.pager:before,.pager:after{display:table;content:"";} -.pager:after{clear:both;} -.pager li{display:inline;} -.pager a{display:inline-block;padding:5px 14px;background-color:#fff;border:1px solid #ddd;-webkit-border-radius:15px;-moz-border-radius:15px;border-radius:15px;} -.pager a:hover{text-decoration:none;background-color:#f5f5f5;} -.pager .next a{float:right;} -.pager .previous a{float:left;} -.modal-open .dropdown-menu{z-index:2050;} -.modal-open .dropdown.open{*z-index:2050;} -.modal-open .popover{z-index:2060;} -.modal-open .tooltip{z-index:2070;} -.modal-backdrop{position:fixed;top:0;right:0;bottom:0;left:0;z-index:1040;background-color:#000000;}.modal-backdrop.fade{opacity:0;} -.modal-backdrop,.modal-backdrop.fade.in{opacity:0.8;filter:alpha(opacity=80);} -.modal{position:fixed;top:50%;left:50%;z-index:1050;max-height:500px;overflow:auto;width:560px;margin:-250px 0 0 -280px;background-color:#ffffff;border:1px solid #999;border:1px solid rgba(0, 0, 0, 0.3);*border:1px solid #999;-webkit-border-radius:6px;-moz-border-radius:6px;border-radius:6px;-webkit-box-shadow:0 3px 7px rgba(0, 0, 0, 0.3);-moz-box-shadow:0 3px 7px rgba(0, 0, 0, 0.3);box-shadow:0 3px 7px rgba(0, 0, 0, 0.3);-webkit-background-clip:padding-box;-moz-background-clip:padding-box;background-clip:padding-box;}.modal.fade{-webkit-transition:opacity .3s linear, top .3s ease-out;-moz-transition:opacity .3s linear, top .3s ease-out;-ms-transition:opacity .3s linear, top .3s ease-out;-o-transition:opacity .3s linear, top .3s ease-out;transition:opacity .3s linear, top .3s ease-out;top:-25%;} -.modal.fade.in{top:50%;} -.modal-header{padding:9px 15px;border-bottom:1px solid #eee;}.modal-header .close{margin-top:2px;} -.modal-body{padding:15px;} -.modal-footer{padding:14px 15px 15px;margin-bottom:0;background-color:#f5f5f5;border-top:1px solid #ddd;-webkit-border-radius:0 0 6px 6px;-moz-border-radius:0 0 6px 6px;border-radius:0 0 6px 6px;-webkit-box-shadow:inset 0 1px 0 #ffffff;-moz-box-shadow:inset 0 1px 0 #ffffff;box-shadow:inset 0 1px 0 #ffffff;*zoom:1;}.modal-footer:before,.modal-footer:after{display:table;content:"";} -.modal-footer:after{clear:both;} -.modal-footer .btn{float:right;margin-left:5px;margin-bottom:0;} -.tooltip{position:absolute;z-index:1020;display:block;visibility:visible;padding:5px;font-size:11px;opacity:0;filter:alpha(opacity=0);}.tooltip.in{opacity:0.8;filter:alpha(opacity=80);} -.tooltip.top{margin-top:-2px;} -.tooltip.right{margin-left:2px;} -.tooltip.bottom{margin-top:2px;} -.tooltip.left{margin-left:-2px;} -.tooltip.top .tooltip-arrow{bottom:0;left:50%;margin-left:-5px;border-left:5px solid transparent;border-right:5px solid transparent;border-top:5px solid #000000;} -.tooltip.left .tooltip-arrow{top:50%;right:0;margin-top:-5px;border-top:5px solid transparent;border-bottom:5px solid transparent;border-left:5px solid #000000;} -.tooltip.bottom .tooltip-arrow{top:0;left:50%;margin-left:-5px;border-left:5px solid transparent;border-right:5px solid transparent;border-bottom:5px solid #000000;} -.tooltip.right .tooltip-arrow{top:50%;left:0;margin-top:-5px;border-top:5px solid transparent;border-bottom:5px solid transparent;border-right:5px solid #000000;} -.tooltip-inner{max-width:200px;padding:3px 8px;color:#ffffff;text-align:center;text-decoration:none;background-color:#000000;-webkit-border-radius:4px;-moz-border-radius:4px;border-radius:4px;} -.tooltip-arrow{position:absolute;width:0;height:0;} -.popover{position:absolute;top:0;left:0;z-index:1010;display:none;padding:5px;}.popover.top{margin-top:-5px;} -.popover.right{margin-left:5px;} -.popover.bottom{margin-top:5px;} -.popover.left{margin-left:-5px;} -.popover.top .arrow{bottom:0;left:50%;margin-left:-5px;border-left:5px solid transparent;border-right:5px solid transparent;border-top:5px solid #000000;} -.popover.right .arrow{top:50%;left:0;margin-top:-5px;border-top:5px solid transparent;border-bottom:5px solid transparent;border-right:5px solid #000000;} -.popover.bottom .arrow{top:0;left:50%;margin-left:-5px;border-left:5px solid transparent;border-right:5px solid transparent;border-bottom:5px solid #000000;} -.popover.left .arrow{top:50%;right:0;margin-top:-5px;border-top:5px solid transparent;border-bottom:5px solid transparent;border-left:5px solid #000000;} -.popover .arrow{position:absolute;width:0;height:0;} -.popover-inner{padding:3px;width:280px;overflow:hidden;background:#000000;background:rgba(0, 0, 0, 0.8);-webkit-border-radius:6px;-moz-border-radius:6px;border-radius:6px;-webkit-box-shadow:0 3px 7px rgba(0, 0, 0, 0.3);-moz-box-shadow:0 3px 7px rgba(0, 0, 0, 0.3);box-shadow:0 3px 7px rgba(0, 0, 0, 0.3);} -.popover-title{padding:9px 15px;line-height:1;background-color:#f5f5f5;border-bottom:1px solid #eee;-webkit-border-radius:3px 3px 0 0;-moz-border-radius:3px 3px 0 0;border-radius:3px 3px 0 0;} -.popover-content{padding:14px;background-color:#ffffff;-webkit-border-radius:0 0 3px 3px;-moz-border-radius:0 0 3px 3px;border-radius:0 0 3px 3px;-webkit-background-clip:padding-box;-moz-background-clip:padding-box;background-clip:padding-box;}.popover-content p,.popover-content ul,.popover-content ol{margin-bottom:0;} -.thumbnails{margin-left:-20px;list-style:none;*zoom:1;}.thumbnails:before,.thumbnails:after{display:table;content:"";} -.thumbnails:after{clear:both;} -.thumbnails>li{float:left;margin:0 0 18px 20px;} -.thumbnail{display:block;padding:4px;line-height:1;border:1px solid #ddd;-webkit-border-radius:4px;-moz-border-radius:4px;border-radius:4px;-webkit-box-shadow:0 1px 1px rgba(0, 0, 0, 0.075);-moz-box-shadow:0 1px 1px rgba(0, 0, 0, 0.075);box-shadow:0 1px 1px rgba(0, 0, 0, 0.075);} -a.thumbnail:hover{border-color:#0088cc;-webkit-box-shadow:0 1px 4px rgba(0, 105, 214, 0.25);-moz-box-shadow:0 1px 4px rgba(0, 105, 214, 0.25);box-shadow:0 1px 4px rgba(0, 105, 214, 0.25);} -.thumbnail>img{display:block;max-width:100%;margin-left:auto;margin-right:auto;} -.thumbnail .caption{padding:9px;} -.label{padding:1px 3px 2px;font-size:9.75px;font-weight:bold;color:#ffffff;text-transform:uppercase;background-color:#999999;-webkit-border-radius:3px;-moz-border-radius:3px;border-radius:3px;} -.label-important{background-color:#b94a48;} -.label-warning{background-color:#f89406;} -.label-success{background-color:#468847;} -.label-info{background-color:#3a87ad;} -@-webkit-keyframes progress-bar-stripes{from{background-position:0 0;} to{background-position:40px 0;}}@-moz-keyframes progress-bar-stripes{from{background-position:0 0;} to{background-position:40px 0;}}@keyframes progress-bar-stripes{from{background-position:0 0;} to{background-position:40px 0;}}.progress{overflow:hidden;height:18px;margin-bottom:18px;background-color:#f7f7f7;background-image:-moz-linear-gradient(top, #f5f5f5, #f9f9f9);background-image:-ms-linear-gradient(top, #f5f5f5, #f9f9f9);background-image:-webkit-gradient(linear, 0 0, 0 100%, from(#f5f5f5), to(#f9f9f9));background-image:-webkit-linear-gradient(top, #f5f5f5, #f9f9f9);background-image:-o-linear-gradient(top, #f5f5f5, #f9f9f9);background-image:linear-gradient(top, #f5f5f5, #f9f9f9);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#f5f5f5', endColorstr='#f9f9f9', GradientType=0);-webkit-box-shadow:inset 0 1px 2px rgba(0, 0, 0, 0.1);-moz-box-shadow:inset 0 1px 2px rgba(0, 0, 0, 0.1);box-shadow:inset 0 1px 2px rgba(0, 0, 0, 0.1);-webkit-border-radius:4px;-moz-border-radius:4px;border-radius:4px;} -.progress .bar{width:0%;height:18px;color:#ffffff;font-size:12px;text-align:center;text-shadow:0 -1px 0 rgba(0, 0, 0, 0.25);background-color:#0e90d2;background-image:-moz-linear-gradient(top, #149bdf, #0480be);background-image:-ms-linear-gradient(top, #149bdf, #0480be);background-image:-webkit-gradient(linear, 0 0, 0 100%, from(#149bdf), to(#0480be));background-image:-webkit-linear-gradient(top, #149bdf, #0480be);background-image:-o-linear-gradient(top, #149bdf, #0480be);background-image:linear-gradient(top, #149bdf, #0480be);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#149bdf', endColorstr='#0480be', GradientType=0);-webkit-box-shadow:inset 0 -1px 0 rgba(0, 0, 0, 0.15);-moz-box-shadow:inset 0 -1px 0 rgba(0, 0, 0, 0.15);box-shadow:inset 0 -1px 0 rgba(0, 0, 0, 0.15);-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box;-webkit-transition:width 0.6s ease;-moz-transition:width 0.6s ease;-ms-transition:width 0.6s ease;-o-transition:width 0.6s ease;transition:width 0.6s ease;} -.progress-striped .bar{background-color:#62c462;background-image:-webkit-gradient(linear, 0 100%, 100% 0, color-stop(0.25, rgba(255, 255, 255, 0.15)), color-stop(0.25, transparent), color-stop(0.5, transparent), color-stop(0.5, rgba(255, 255, 255, 0.15)), color-stop(0.75, rgba(255, 255, 255, 0.15)), color-stop(0.75, transparent), to(transparent));background-image:-webkit-linear-gradient(-45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);background-image:-moz-linear-gradient(-45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);background-image:-ms-linear-gradient(-45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);background-image:-o-linear-gradient(-45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);background-image:linear-gradient(-45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);-webkit-background-size:40px 40px;-moz-background-size:40px 40px;-o-background-size:40px 40px;background-size:40px 40px;} -.progress.active .bar{-webkit-animation:progress-bar-stripes 2s linear infinite;-moz-animation:progress-bar-stripes 2s linear infinite;animation:progress-bar-stripes 2s linear infinite;} -.progress-danger .bar{background-color:#dd514c;background-image:-moz-linear-gradient(top, #ee5f5b, #c43c35);background-image:-ms-linear-gradient(top, #ee5f5b, #c43c35);background-image:-webkit-gradient(linear, 0 0, 0 100%, from(#ee5f5b), to(#c43c35));background-image:-webkit-linear-gradient(top, #ee5f5b, #c43c35);background-image:-o-linear-gradient(top, #ee5f5b, #c43c35);background-image:linear-gradient(top, #ee5f5b, #c43c35);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ee5f5b', endColorstr='#c43c35', GradientType=0);} -.progress-danger.progress-striped .bar{background-color:#ee5f5b;background-image:-webkit-gradient(linear, 0 100%, 100% 0, color-stop(0.25, rgba(255, 255, 255, 0.15)), color-stop(0.25, transparent), color-stop(0.5, transparent), color-stop(0.5, rgba(255, 255, 255, 0.15)), color-stop(0.75, rgba(255, 255, 255, 0.15)), color-stop(0.75, transparent), to(transparent));background-image:-webkit-linear-gradient(-45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);background-image:-moz-linear-gradient(-45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);background-image:-ms-linear-gradient(-45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);background-image:-o-linear-gradient(-45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);background-image:linear-gradient(-45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);} -.progress-success .bar{background-color:#5eb95e;background-image:-moz-linear-gradient(top, #62c462, #57a957);background-image:-ms-linear-gradient(top, #62c462, #57a957);background-image:-webkit-gradient(linear, 0 0, 0 100%, from(#62c462), to(#57a957));background-image:-webkit-linear-gradient(top, #62c462, #57a957);background-image:-o-linear-gradient(top, #62c462, #57a957);background-image:linear-gradient(top, #62c462, #57a957);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#62c462', endColorstr='#57a957', GradientType=0);} -.progress-success.progress-striped .bar{background-color:#62c462;background-image:-webkit-gradient(linear, 0 100%, 100% 0, color-stop(0.25, rgba(255, 255, 255, 0.15)), color-stop(0.25, transparent), color-stop(0.5, transparent), color-stop(0.5, rgba(255, 255, 255, 0.15)), color-stop(0.75, rgba(255, 255, 255, 0.15)), color-stop(0.75, transparent), to(transparent));background-image:-webkit-linear-gradient(-45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);background-image:-moz-linear-gradient(-45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);background-image:-ms-linear-gradient(-45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);background-image:-o-linear-gradient(-45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);background-image:linear-gradient(-45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);} -.progress-info .bar{background-color:#4bb1cf;background-image:-moz-linear-gradient(top, #5bc0de, #339bb9);background-image:-ms-linear-gradient(top, #5bc0de, #339bb9);background-image:-webkit-gradient(linear, 0 0, 0 100%, from(#5bc0de), to(#339bb9));background-image:-webkit-linear-gradient(top, #5bc0de, #339bb9);background-image:-o-linear-gradient(top, #5bc0de, #339bb9);background-image:linear-gradient(top, #5bc0de, #339bb9);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#5bc0de', endColorstr='#339bb9', GradientType=0);} -.progress-info.progress-striped .bar{background-color:#5bc0de;background-image:-webkit-gradient(linear, 0 100%, 100% 0, color-stop(0.25, rgba(255, 255, 255, 0.15)), color-stop(0.25, transparent), color-stop(0.5, transparent), color-stop(0.5, rgba(255, 255, 255, 0.15)), color-stop(0.75, rgba(255, 255, 255, 0.15)), color-stop(0.75, transparent), to(transparent));background-image:-webkit-linear-gradient(-45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);background-image:-moz-linear-gradient(-45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);background-image:-ms-linear-gradient(-45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);background-image:-o-linear-gradient(-45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);background-image:linear-gradient(-45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);} -.accordion{margin-bottom:18px;} -.accordion-group{margin-bottom:2px;border:1px solid #e5e5e5;-webkit-border-radius:4px;-moz-border-radius:4px;border-radius:4px;} -.accordion-heading{border-bottom:0;} -.accordion-heading .accordion-toggle{display:block;padding:8px 15px;} -.accordion-inner{padding:9px 15px;border-top:1px solid #e5e5e5;} -.carousel{position:relative;margin-bottom:18px;line-height:1;} -.carousel-inner{overflow:hidden;width:100%;position:relative;} -.carousel .item{display:none;position:relative;-webkit-transition:0.6s ease-in-out left;-moz-transition:0.6s ease-in-out left;-ms-transition:0.6s ease-in-out left;-o-transition:0.6s ease-in-out left;transition:0.6s ease-in-out left;} -.carousel .item>img{display:block;line-height:1;} -.carousel .active,.carousel .next,.carousel .prev{display:block;} -.carousel .active{left:0;} -.carousel .next,.carousel .prev{position:absolute;top:0;width:100%;} -.carousel .next{left:100%;} -.carousel .prev{left:-100%;} -.carousel .next.left,.carousel .prev.right{left:0;} -.carousel .active.left{left:-100%;} -.carousel .active.right{left:100%;} -.carousel-control{position:absolute;top:40%;left:15px;width:40px;height:40px;margin-top:-20px;font-size:60px;font-weight:100;line-height:30px;color:#ffffff;text-align:center;background:#222222;border:3px solid #ffffff;-webkit-border-radius:23px;-moz-border-radius:23px;border-radius:23px;opacity:0.5;filter:alpha(opacity=50);}.carousel-control.right{left:auto;right:15px;} -.carousel-control:hover{color:#ffffff;text-decoration:none;opacity:0.9;filter:alpha(opacity=90);} -.carousel-caption{position:absolute;left:0;right:0;bottom:0;padding:10px 15px 5px;background:#333333;background:rgba(0, 0, 0, 0.75);} -.carousel-caption h4,.carousel-caption p{color:#ffffff;} -.hero-unit{padding:60px;margin-bottom:30px;background-color:#f5f5f5;-webkit-border-radius:6px;-moz-border-radius:6px;border-radius:6px;}.hero-unit h1{margin-bottom:0;font-size:60px;line-height:1;letter-spacing:-1px;} -.hero-unit p{font-size:18px;font-weight:200;line-height:27px;} -.pull-right{float:right;} -.pull-left{float:left;} -.hide{display:none;} -.show{display:block;} -.invisible{visibility:hidden;} diff --git a/docs/css/jquery.iviewer.css b/docs/css/jquery.iviewer.css deleted file mode 100644 index d68c642..0000000 --- a/docs/css/jquery.iviewer.css +++ /dev/null @@ -1,91 +0,0 @@ -.iviewer_common { - position:absolute; - bottom:10px; - border: 1px solid #000; - height: 28px; - z-index: 5000; -} - -.iviewer_cursor { - cursor: url(../img/iviewer/hand.cur) 6 8, pointer; -} - -.iviewer_drag_cursor { - cursor: url(../img/iviewer/grab.cur) 6 8, pointer; -} - -.iviewer_button { - width: 28px; - cursor: pointer; - background-position: center center; - background-repeat: no-repeat; -} - -.iviewer_zoom_in { - left: 20px; - background: url(../img/iviewer/iviewer.zoom_in.png); -} - -.iviewer_zoom_out { - left: 55px; - background: url(../img/iviewer/iviewer.zoom_out.png); -} - -.iviewer_zoom_zero { - left: 90px; - background: url(../img/iviewer/iviewer.zoom_zero.png); -} - -.iviewer_zoom_fit { - left: 125px; - background: url(../img/iviewer/iviewer.zoom_fit.png); -} - -.iviewer_zoom_status { - left: 160px; - font: 1em/28px Sans; - color: #000; - background-color: #fff; - text-align: center; - width: 60px; -} - -.iviewer_rotate_left { - left: 227px; - background: #fff url(../img/iviewer/iviewer.rotate_left.png) center center no-repeat; -} - -.iviewer_rotate_right { - left: 262px; - background: #fff url(../img/iviewer/iviewer.rotate_right.png) center center no-repeat; -} - -.viewer -{ - width: 100%; - height: 500px; - position: relative; - background: transparent url('../img/loader.gif') no-repeat center center; -} - -.viewer img -{ - max-width: none; -} - -.wrapper -{ - overflow: hidden; -} - -.iviewer_common -{ - border: 0; - bottom: auto; - top: 10px; -} - -.iviewer_zoom_status -{ - border: 1px solid black; -} diff --git a/docs/css/prettify.css b/docs/css/prettify.css deleted file mode 100644 index d44b3a2..0000000 --- a/docs/css/prettify.css +++ /dev/null @@ -1 +0,0 @@ -.pln{color:#000}@media screen{.str{color:#080}.kwd{color:#008}.com{color:#800}.typ{color:#606}.lit{color:#066}.pun,.opn,.clo{color:#660}.tag{color:#008}.atn{color:#606}.atv{color:#080}.dec,.var{color:#606}.fun{color:red}}@media print,projection{.str{color:#060}.kwd{color:#006;font-weight:bold}.com{color:#600;font-style:italic}.typ{color:#404;font-weight:bold}.lit{color:#044}.pun,.opn,.clo{color:#440}.tag{color:#006;font-weight:bold}.atn{color:#404}.atv{color:#060}}pre.prettyprint{padding:2px;border:1px solid #888}ol.linenums{margin-top:0;margin-bottom:0}li.L0,li.L1,li.L2,li.L3,li.L5,li.L6,li.L7,li.L8{list-style-type:none}li.L1,li.L3,li.L5,li.L7,li.L9{background:#eee} \ No newline at end of file diff --git a/docs/css/template.css b/docs/css/template.css deleted file mode 100644 index 45d6196..0000000 --- a/docs/css/template.css +++ /dev/null @@ -1,527 +0,0 @@ -@import url(bootstrap.min.css); -@import url(bootstrap-responsive.css); -@import url(prettify.css); -@import url(jquery.iviewer.css); -@import url(http://fonts.googleapis.com/css?family=Forum); - -body -{ - padding-top: 60px; /* 60px to make the container go all the way to the bottom of the topbar */ - background: #f9f9f9; - color: #444; -} - -a -{ - color: #55A72F; -} - -td p:last-of-type { - margin: 0; -} - -li.l0, li.l1, li.l2, li.l3, li.l5, li.l6, li.l7, li.l8 -{ - list-style-type: decimal; -} - -a.brand, h2, .hero-unit h1 -{ - font-family: 'Forum', "Helvetica Neue", Helvetica, Arial, sans-serif; -} - -.element .span4 -{ - width: 275px; -} - -.namespace-contents hr, .package-contents hr -{ - border-top: 3px dotted silver; -} - -.namespace-indent, .package-indent -{ - padding-left: 10px; border-left: 1px dashed #f0f0f0; -} - -.element h3 i, .namespace-contents h3 i, .package-contents h3 i -{ - margin-top: 2px; - margin-right: 5px; -} - -.element h3, .namespace-contents h3, .package-contents h3 -{ - margin-top: 25px; - margin-bottom: 20px; - border-bottom: 1px solid silver; -} - -.element h3:first-of-type, .namespace-contents h3:first-of-type, -.package-contents h3:first-of-type -{ - margin-top: 30px; -} - -.element h2 -{ - font-family: inherit; - font-size: 1.2em; - color: black; -} - -.element .type -{ - font-weight: bold; -} - -#search-query -{ - height: auto; -} - -.hero-unit, div.element, .well -{ - border: 1px solid #e0e0e0; - background: white; -} - -.dropdown-menu a{ - overflow: hidden; - text-overflow: ellipsis; -} -h2 -{ - border-bottom: 1px dashed #55A72F; - margin-bottom: 10px; - padding-bottom: 0; - padding-left: 5px; - color: #e9e9e9; - font-weight: normal; - margin-top: 40px; -} - -h2:first-of-type -{ - margin-top: 0; -} - -.hero-unit -{ - background: #75a70d; /* Old browsers */ - background: -moz-radial-gradient(center, ellipse cover, #bfd255 0%, #8eb92a 72%, #72aa00 96%, #9ecb2d 100%); /* FF3.6+ */ - background: -webkit-gradient(radial, center center, 0px, center center, 100%, color-stop(0%,#bfd255), color-stop(72%,#8eb92a), color-stop(96%,#72aa00), color-stop(100%,#9ecb2d)); /* Chrome,Safari4+ */ - background: -webkit-radial-gradient(center, ellipse cover, #bfd255 0%,#8eb92a 72%,#72aa00 96%,#9ecb2d 100%); /* Chrome10+,Safari5.1+ */ - background: -o-radial-gradient(center, ellipse cover, #bfd255 0%,#8eb92a 72%,#72aa00 96%,#9ecb2d 100%); /* Opera 12+ */ - background: -ms-radial-gradient(center, ellipse cover, #bfd255 0%,#8eb92a 72%,#72aa00 96%,#9ecb2d 100%); /* IE10+ */ - background: radial-gradient(center, ellipse cover, #bfd255 0%,#8eb92a 72%,#72aa00 96%,#9ecb2d 100%); /* W3C */ - filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#bfd255', endColorstr='#9ecb2d',GradientType=1 ); /* IE6-9 fallback on horizontal gradient */ - - padding: 40px 0 15px 0; - box-shadow: inset 0 0 10px gray; -} - -.hero-unit h1 -{ - font-weight: normal; - text-align: center; - color: white; - text-shadow: black 0 0 15px; -} - -.hero-unit h2 -{ - border: none; - color: white; - background: rgba(48, 48, 48, 0.5); - padding: 0; - margin: 0; - margin-top: 15px; - text-align: center; -} - -.namespace-contents h2, .package-contents h2 -{ - padding-left: 44px; - background: transparent url('../img/icons/icon-th-big.png') no-repeat 3px center; -} - -.package-contents h2 -{ - background-image: url('../img/icons/icon-folder-open-big.png'); -} - -.namespace-contents .element h2, .package-contents .element h2 -{ - padding-left: 0; - background: none; -} - -div.element -{ - border-left: 10px solid #55A72F; - border-radius: 5px; - padding: 7px 7px 2px 7px; - margin-bottom: 15px; - margin-left: 0; -} - -div.element.protected -{ - border-left-color: orange; -} - -div.element.private -{ - border-left-color: red; -} - -div.element.class, div.element.interface -{ - border-left-color: #e0e0e0; -} - -div.element.class.abstract h1, div.element.interface.abstract h1 -{ - font-style: italic; -} - -div.element h1 -{ - font-size: 1.2em; - line-height: 1.5em; - margin-bottom: 10px; - padding-left: 22px; - background: transparent no-repeat left 2px; - word-wrap: break-word; -} - -div.element h1 a -{ - color: transparent; - margin-left: 10px; -} - -div.element h1:hover a -{ - color: silver; -} - -div.element h1 a:hover -{ - color: navy; -} - -div.element a.more:hover -{ - background: #f0f0f0; - color: #444; - text-decoration: none; -} - -div.element a.more -{ - font-weight: bold; - text-align: center; - color: gray; - border-top: 1px dashed silver; - display: block; - margin-top: 5px; - padding: 5px 0; - border-bottom-left-radius: 5px; - border-bottom-right-radius: 5px; -} - -div.element p -{ - font-size: 0.9em; -} - -div.element .table -{ - font-size: 0.9em; -} - -div.element .table th -{ - text-transform: capitalize; -} - -div.detail-description -{ - padding-left: 30px; -} - -div.detail-description table th { - vertical-align: top; -} - -body.invert -{ - background: white; -} - -body.invert div.element -{ - background: #f9f9f9; -} - -ul.side-nav -{ - clear: both; -} - -ul.side-nav li -{ - word-wrap: break-word; - padding-left: 10px; - text-indent: -10px; -} - -ul.side-nav li a -{ - background: transparent no-repeat 5px 3px; - padding-bottom: 10px; - font-style: italic; -} - -ul.side-nav li pre -{ - font-size: 0.8em; - margin: 5px 15px 0 15px; - padding: 2px 5px; - background-color: #f8f8f8; - color: gray; - font-style: normal; - word-wrap: break-word; - text-indent: 0; -} - -ul.side-nav li.view-simple span.description -{ - display: none; -} - -ul.side-nav li.view-simple pre -{ - font-size: inherit; - margin: inherit; - padding: inherit; - background-color: inherit; - border: none; - color: inherit; - font-family: inherit; - font-style: inherit; - padding-bottom: 0; - padding-left: 5px; -} - -ul.side-nav li.view-simple a -{ - padding-bottom: 0; -} - -i.icon-custom -{ - width: 16px; - height: 16px; - background-position: 0; -} - -.table.markers -{ - background: white; -} - -/* JS only functionality; disable by default */ -.btn-group.visibility, .btn-group.view, .btn-group.type-filter -{ - display: none; -} - -.visibility button -{ - height: 24px; -} - -div.element.constant h1, -i.icon-constant { background-image: url('../img/icons/constant.png'); } - -div.element.function h1, -i.icon-function { background-image: url('../img/icons/function.png'); } - -div.element.method h1, -i.icon-method { background-image: url('../img/icons/method.png'); } - -div.element.class h1, -i.icon-class { background-image: url('../img/icons/class.png'); } - -div.element.interface h1, -i.icon-interface { background-image: url('../img/icons/interface.png'); } - -div.element.property h1, -i.icon-property { background-image: url('../img/icons/property.png'); } - -span.empty-namespace -{ - color: silver; -} - -footer -{ - text-align: right; - font-size: 0.8em; - opacity: 0.5; -} - -#mapHolder -{ - border: 4px solid #555; - padding: 0 !important; - overflow: hidden -} - -div.element div.subelement -{ - margin-left: 10px; - padding-bottom: 5px; - clear: both; -} - -pre code -{ - border: none; -} - -div.element div.subelement > code -{ - font-size: 0.8em; - float: left; - margin-right: 10px; - padding: 0 5px; - line-height: 16px; -} - -div.element div.subelement > p -{ - margin-left: 20px; - margin-right: 50px; -} - -div.element div.subelement h4 -{ - color: #666; - margin-bottom: 5px; -} - -div.element div.subelement.response -{ - padding-bottom: 15px; - margin-right: 50px; -} - -div.labels -{ - text-align: right; -} - -.nav-list .nav-header -{ - font-size: 13px; -} - -.nav-list .nav-header .side-nav-header -{ - font-weight: bold; - line-height: 18px; - color: #999999; - text-transform: uppercase; -} - -.detail-description code { - white-space: pre; - display: inline-block; - padding: 10px; -} - -.go_to_top -{ - float: right; - margin-right: 20px; - background: #2C2C2C; - color: #999; - padding: 3px 10px; - border-bottom-right-radius: 5px; - border-bottom-left-radius: 5px; - text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25); - line-height: 19px; -} - -.visibility .btn { - text-transform: uppercase; - font-size: 0.7em; - font-weight: bold; -} - -.iviewer_common -{ - z-index: 100; -} - -@media (min-width: 980px) -{ - a[name] - { - margin-top: -50px; - position: absolute; - } -} - -@media (min-width: 1200px) -{ - .method .span4 - { - width: 345px; - } -} - -/* redefined because twitter bootstrap assumes that bootstrap-responsive.css */ -@media (max-width: 980px) -{ - body - { - padding-top: 0; - } - - .go_to_top - { - display: none; - } - - .btn-group.visibility - { - font-size: 0.80em; - margin-bottom: 7px; - display: inline-block; - float: right; - } -} - -@media (max-width: 768px) -{ - .hero-unit h1 { - font-size: 30px; - } - .hero-unit h2 { - font-size: 19px; - } - -} -@media (min-width: 768px) and (max-width: 980px) -{ - .method .span4 - { - width: 203px; - } -} diff --git a/docs/deprecated.html b/docs/deprecated.html deleted file mode 100644 index b718149..0000000 --- a/docs/deprecated.html +++ /dev/null @@ -1,72 +0,0 @@ - - - - - -Query - - - - - - - - - - -
- -
-
-
- -
No deprecated elements have been - found in this project. -
-
-
-
-
-
- - diff --git a/docs/errors.html b/docs/errors.html deleted file mode 100644 index c213485..0000000 --- a/docs/errors.html +++ /dev/null @@ -1,101 +0,0 @@ - - - - - -Query - - - - - - - - - - -
- -
-
-
- -
No errors have been found in this project.
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- - diff --git a/docs/graph_class.html b/docs/graph_class.html deleted file mode 100644 index 0965770..0000000 --- a/docs/graph_class.html +++ /dev/null @@ -1,69 +0,0 @@ - - - - - -Query - - - - - - - - - - -
- -
-
-
- - diff --git a/docs/img/apple-touch-icon-114x114.png b/docs/img/apple-touch-icon-114x114.png deleted file mode 100644 index 1506f6a..0000000 Binary files a/docs/img/apple-touch-icon-114x114.png and /dev/null differ diff --git a/docs/img/apple-touch-icon-72x72.png b/docs/img/apple-touch-icon-72x72.png deleted file mode 100644 index d813259..0000000 Binary files a/docs/img/apple-touch-icon-72x72.png and /dev/null differ diff --git a/docs/img/apple-touch-icon.png b/docs/img/apple-touch-icon.png deleted file mode 100644 index 2d320cb..0000000 Binary files a/docs/img/apple-touch-icon.png and /dev/null differ diff --git a/docs/img/favicon.ico b/docs/img/favicon.ico deleted file mode 100644 index 9575ac8..0000000 Binary files a/docs/img/favicon.ico and /dev/null differ diff --git a/docs/img/glyphicons-halflings-white.png b/docs/img/glyphicons-halflings-white.png deleted file mode 100644 index a20760b..0000000 Binary files a/docs/img/glyphicons-halflings-white.png and /dev/null differ diff --git a/docs/img/glyphicons-halflings.png b/docs/img/glyphicons-halflings.png deleted file mode 100644 index 92d4445..0000000 Binary files a/docs/img/glyphicons-halflings.png and /dev/null differ diff --git a/docs/img/icons/arrow_down.png b/docs/img/icons/arrow_down.png deleted file mode 100644 index 61505ad..0000000 Binary files a/docs/img/icons/arrow_down.png and /dev/null differ diff --git a/docs/img/icons/arrow_right.png b/docs/img/icons/arrow_right.png deleted file mode 100644 index 60c5927..0000000 Binary files a/docs/img/icons/arrow_right.png and /dev/null differ diff --git a/docs/img/icons/class.png b/docs/img/icons/class.png deleted file mode 100644 index 87c2107..0000000 Binary files a/docs/img/icons/class.png and /dev/null differ diff --git a/docs/img/icons/constant.png b/docs/img/icons/constant.png deleted file mode 100644 index f5f180d..0000000 Binary files a/docs/img/icons/constant.png and /dev/null differ diff --git a/docs/img/icons/favicon.ico b/docs/img/icons/favicon.ico deleted file mode 100644 index df28db3..0000000 Binary files a/docs/img/icons/favicon.ico and /dev/null differ diff --git a/docs/img/icons/file-php.png b/docs/img/icons/file-php.png deleted file mode 100644 index c323f09..0000000 Binary files a/docs/img/icons/file-php.png and /dev/null differ diff --git a/docs/img/icons/file.gif b/docs/img/icons/file.gif deleted file mode 100644 index 7e62167..0000000 Binary files a/docs/img/icons/file.gif and /dev/null differ diff --git a/docs/img/icons/folder.gif b/docs/img/icons/folder.gif deleted file mode 100644 index 2b31631..0000000 Binary files a/docs/img/icons/folder.gif and /dev/null differ diff --git a/docs/img/icons/function.png b/docs/img/icons/function.png deleted file mode 100644 index c430902..0000000 Binary files a/docs/img/icons/function.png and /dev/null differ diff --git a/docs/img/icons/icon-folder-open-big.png b/docs/img/icons/icon-folder-open-big.png deleted file mode 100644 index fae384e..0000000 Binary files a/docs/img/icons/icon-folder-open-big.png and /dev/null differ diff --git a/docs/img/icons/icon-th-big.png b/docs/img/icons/icon-th-big.png deleted file mode 100644 index 04b0ad8..0000000 Binary files a/docs/img/icons/icon-th-big.png and /dev/null differ diff --git a/docs/img/icons/icon_template.svg b/docs/img/icons/icon_template.svg deleted file mode 100644 index b0428aa..0000000 --- a/docs/img/icons/icon_template.svg +++ /dev/null @@ -1,93 +0,0 @@ - - - - - - - - - - - - image/svg+xml - - - - - - - - - Co - - diff --git a/docs/img/icons/interface.png b/docs/img/icons/interface.png deleted file mode 100644 index 51a3a17..0000000 Binary files a/docs/img/icons/interface.png and /dev/null differ diff --git a/docs/img/icons/method.png b/docs/img/icons/method.png deleted file mode 100644 index a7cc004..0000000 Binary files a/docs/img/icons/method.png and /dev/null differ diff --git a/docs/img/icons/ok.png b/docs/img/icons/ok.png deleted file mode 100644 index 39f287a..0000000 Binary files a/docs/img/icons/ok.png and /dev/null differ diff --git a/docs/img/icons/property.png b/docs/img/icons/property.png deleted file mode 100644 index e76d52b..0000000 Binary files a/docs/img/icons/property.png and /dev/null differ diff --git a/docs/img/icons/search.gif b/docs/img/icons/search.gif deleted file mode 100644 index eef46fc..0000000 Binary files a/docs/img/icons/search.gif and /dev/null differ diff --git a/docs/img/icons/variable.png b/docs/img/icons/variable.png deleted file mode 100644 index a39bc19..0000000 Binary files a/docs/img/icons/variable.png and /dev/null differ diff --git a/docs/img/icons/view_source.png b/docs/img/icons/view_source.png deleted file mode 100644 index 0c76bd1..0000000 Binary files a/docs/img/icons/view_source.png and /dev/null differ diff --git a/docs/img/icons/visibility_private.png b/docs/img/icons/visibility_private.png deleted file mode 100644 index 386dc2d..0000000 Binary files a/docs/img/icons/visibility_private.png and /dev/null differ diff --git a/docs/img/icons/visibility_protected.png b/docs/img/icons/visibility_protected.png deleted file mode 100644 index d3bd8e7..0000000 Binary files a/docs/img/icons/visibility_protected.png and /dev/null differ diff --git a/docs/img/icons/visibility_public.png b/docs/img/icons/visibility_public.png deleted file mode 100644 index 4e10063..0000000 Binary files a/docs/img/icons/visibility_public.png and /dev/null differ diff --git a/docs/img/iviewer/grab.cur b/docs/img/iviewer/grab.cur deleted file mode 100644 index ef540be..0000000 Binary files a/docs/img/iviewer/grab.cur and /dev/null differ diff --git a/docs/img/iviewer/hand.cur b/docs/img/iviewer/hand.cur deleted file mode 100644 index 1a5bafb..0000000 Binary files a/docs/img/iviewer/hand.cur and /dev/null differ diff --git a/docs/img/iviewer/iviewer.rotate_left.png b/docs/img/iviewer/iviewer.rotate_left.png deleted file mode 100644 index df0956d..0000000 Binary files a/docs/img/iviewer/iviewer.rotate_left.png and /dev/null differ diff --git a/docs/img/iviewer/iviewer.rotate_right.png b/docs/img/iviewer/iviewer.rotate_right.png deleted file mode 100644 index 7a6c829..0000000 Binary files a/docs/img/iviewer/iviewer.rotate_right.png and /dev/null differ diff --git a/docs/img/iviewer/iviewer.zoom_fit.png b/docs/img/iviewer/iviewer.zoom_fit.png deleted file mode 100644 index 364e01d..0000000 Binary files a/docs/img/iviewer/iviewer.zoom_fit.png and /dev/null differ diff --git a/docs/img/iviewer/iviewer.zoom_fit2.gif b/docs/img/iviewer/iviewer.zoom_fit2.gif deleted file mode 100644 index 3199a1e..0000000 Binary files a/docs/img/iviewer/iviewer.zoom_fit2.gif and /dev/null differ diff --git a/docs/img/iviewer/iviewer.zoom_in.png b/docs/img/iviewer/iviewer.zoom_in.png deleted file mode 100644 index 7899332..0000000 Binary files a/docs/img/iviewer/iviewer.zoom_in.png and /dev/null differ diff --git a/docs/img/iviewer/iviewer.zoom_in2.gif b/docs/img/iviewer/iviewer.zoom_in2.gif deleted file mode 100644 index 5d59618..0000000 Binary files a/docs/img/iviewer/iviewer.zoom_in2.gif and /dev/null differ diff --git a/docs/img/iviewer/iviewer.zoom_out.png b/docs/img/iviewer/iviewer.zoom_out.png deleted file mode 100644 index 893f350..0000000 Binary files a/docs/img/iviewer/iviewer.zoom_out.png and /dev/null differ diff --git a/docs/img/iviewer/iviewer.zoom_out2.gif b/docs/img/iviewer/iviewer.zoom_out2.gif deleted file mode 100644 index 77ec19a..0000000 Binary files a/docs/img/iviewer/iviewer.zoom_out2.gif and /dev/null differ diff --git a/docs/img/iviewer/iviewer.zoom_zero.png b/docs/img/iviewer/iviewer.zoom_zero.png deleted file mode 100644 index c981db6..0000000 Binary files a/docs/img/iviewer/iviewer.zoom_zero.png and /dev/null differ diff --git a/docs/img/iviewer/iviewer.zoom_zero2.gif b/docs/img/iviewer/iviewer.zoom_zero2.gif deleted file mode 100644 index e56c670..0000000 Binary files a/docs/img/iviewer/iviewer.zoom_zero2.gif and /dev/null differ diff --git a/docs/img/loader.gif b/docs/img/loader.gif deleted file mode 100644 index 1209425..0000000 Binary files a/docs/img/loader.gif and /dev/null differ diff --git a/docs/js/SVGPan.js b/docs/js/SVGPan.js deleted file mode 100644 index 4966b99..0000000 --- a/docs/js/SVGPan.js +++ /dev/null @@ -1,232 +0,0 @@ -/** - * SVGPan library 1.2 - phpDocumentor1 - * ==================== - * - * Given an unique existing element with id "viewport", including the - * the library into any SVG adds the following capabilities: - * - * - Mouse panning - * - Mouse zooming (using the wheel) - * - Object dargging - * - * Known issues: - * - * - Zooming (while panning) on Safari has still some issues - * - * Releases: - * - * 1.2 - phpDocumentor1, Fri Apr 08 19:19:00 CET 2011, Mike van Riel - * Increased zoom speed with 20% - * Disabled element moving functionality - * - * 1.2, Sat Mar 20 08:42:50 GMT 2010, Zeng Xiaohui - * Fixed a bug with browser mouse handler interaction - * - * 1.1, Wed Feb 3 17:39:33 GMT 2010, Zeng Xiaohui - * Updated the zoom code to support the mouse wheel on Safari/Chrome - * - * 1.0, Andrea Leofreddi - * First release - * - * This code is licensed under the following BSD license: - * - * Copyright 2009-2010 Andrea Leofreddi . All rights reserved. - * - * Redistribution and use in source and binary forms, with or without modification, are - * permitted provided that the following conditions are met: - * - * 1. Redistributions of source code must retain the above copyright notice, this list of - * conditions and the following disclaimer. - * - * 2. Redistributions in binary form must reproduce the above copyright notice, this list - * of conditions and the following disclaimer in the documentation and/or other materials - * provided with the distribution. - * - * THIS SOFTWARE IS PROVIDED BY Andrea Leofreddi ``AS IS'' AND ANY EXPRESS OR IMPLIED - * WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND - * FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL Andrea Leofreddi OR - * CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR - * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR - * SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON - * ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING - * NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF - * ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - * - * The views and conclusions contained in the software and documentation are those of the - * authors and should not be interpreted as representing official policies, either expressed - * or implied, of Andrea Leofreddi. - */ - -var root = document.documentElement; - -var state = 'none', stateTarget, stateOrigin, stateTf; - -setupHandlers(root); - -/** - * Register handlers - */ -function setupHandlers(root){ - setAttributes(root, { - "onmouseup" : "add(evt)", - "onmousedown" : "handleMouseDown(evt)", - "onmousemove" : "handleMouseMove(evt)", - "onmouseup" : "handleMouseUp(evt)", -// "onmouseout" : "handleMouseUp(evt)" // Decomment this to stop the pan functionality when dragging out of the SVG element - }); - - if(navigator.userAgent.toLowerCase().indexOf('webkit') >= 0) - window.addEventListener('mousewheel', handleMouseWheel, false); // Chrome/Safari - else - window.addEventListener('DOMMouseScroll', handleMouseWheel, false); // Others -} - -/** - * Instance an SVGPoint object with given event coordinates. - */ -function getEventPoint(evt) { - var p = root.createSVGPoint(); - - p.x = evt.clientX; - p.y = evt.clientY; - - return p; -} - -/** - * Sets the current transform matrix of an element. - */ -function setCTM(element, matrix) { - var s = "matrix(" + matrix.a + "," + matrix.b + "," + matrix.c + "," + matrix.d + "," + matrix.e + "," + matrix.f + ")"; - - element.setAttribute("transform", s); -} - -/** - * Dumps a matrix to a string (useful for debug). - */ -function dumpMatrix(matrix) { - var s = "[ " + matrix.a + ", " + matrix.c + ", " + matrix.e + "\n " + matrix.b + ", " + matrix.d + ", " + matrix.f + "\n 0, 0, 1 ]"; - - return s; -} - -/** - * Sets attributes of an element. - */ -function setAttributes(element, attributes){ - for (i in attributes) - element.setAttributeNS(null, i, attributes[i]); -} - -/** - * Handle mouse move event. - */ -function handleMouseWheel(evt) { - if(evt.preventDefault) - evt.preventDefault(); - - evt.returnValue = false; - - var svgDoc = evt.target.ownerDocument; - - var delta; - - if(evt.wheelDelta) - delta = evt.wheelDelta / 3600; // Chrome/Safari - else - delta = evt.detail / -90; // Mozilla - - var z = 1 + (delta * 1.2); // Zoom factor: 0.9/1.1 - - var g = svgDoc.getElementById("viewport"); - - var p = getEventPoint(evt); - - p = p.matrixTransform(g.getCTM().inverse()); - - // Compute new scale matrix in current mouse position - var k = root.createSVGMatrix().translate(p.x, p.y).scale(z).translate(-p.x, -p.y); - - setCTM(g, g.getCTM().multiply(k)); - - stateTf = stateTf.multiply(k.inverse()); -} - -/** - * Handle mouse move event. - */ -function handleMouseMove(evt) { - if(evt.preventDefault) - evt.preventDefault(); - - evt.returnValue = false; - - var svgDoc = evt.target.ownerDocument; - - var g = svgDoc.getElementById("viewport"); - - if(state == 'pan') { - // Pan mode - var p = getEventPoint(evt).matrixTransform(stateTf); - - setCTM(g, stateTf.inverse().translate(p.x - stateOrigin.x, p.y - stateOrigin.y)); - } else if(state == 'move') { - // Move mode - var p = getEventPoint(evt).matrixTransform(g.getCTM().inverse()); - - setCTM(stateTarget, root.createSVGMatrix().translate(p.x - stateOrigin.x, p.y - stateOrigin.y).multiply(g.getCTM().inverse()).multiply(stateTarget.getCTM())); - - stateOrigin = p; - } -} - -/** - * Handle click event. - */ -function handleMouseDown(evt) { - if(evt.preventDefault) - evt.preventDefault(); - - evt.returnValue = false; - - var svgDoc = evt.target.ownerDocument; - - var g = svgDoc.getElementById("viewport"); - -// if(evt.target.tagName == "svg") { - // Pan mode - state = 'pan'; - - stateTf = g.getCTM().inverse(); - - stateOrigin = getEventPoint(evt).matrixTransform(stateTf); -// } else { - // Move mode -// state = 'move'; -// -// stateTarget = evt.target; -// -// stateTf = g.getCTM().inverse(); -// -// stateOrigin = getEventPoint(evt).matrixTransform(stateTf); -// } -} - -/** - * Handle mouse button release event. - */ -function handleMouseUp(evt) { - if(evt.preventDefault) - evt.preventDefault(); - - evt.returnValue = false; - - var svgDoc = evt.target.ownerDocument; - - if(state == 'pan' || state == 'move') { - // Quit pan mode - state = ''; - } -} - diff --git a/docs/js/bootstrap.js b/docs/js/bootstrap.js deleted file mode 100644 index c832ccb..0000000 --- a/docs/js/bootstrap.js +++ /dev/null @@ -1,1722 +0,0 @@ -/* =================================================== - * bootstrap-transition.js v2.0.0 - * http://twitter.github.com/bootstrap/javascript.html#transitions - * =================================================== - * Copyright 2012 Twitter, Inc. - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - * ========================================================== */ - -!function( $ ) { - - $(function () { - - "use strict" - - /* CSS TRANSITION SUPPORT (https://gist.github.com/373874) - * ======================================================= */ - - $.support.transition = (function () { - var thisBody = document.body || document.documentElement - , thisStyle = thisBody.style - , support = thisStyle.transition !== undefined || thisStyle.WebkitTransition !== undefined || thisStyle.MozTransition !== undefined || thisStyle.MsTransition !== undefined || thisStyle.OTransition !== undefined - - return support && { - end: (function () { - var transitionEnd = "TransitionEnd" - if ( $.browser.webkit ) { - transitionEnd = "webkitTransitionEnd" - } else if ( $.browser.mozilla ) { - transitionEnd = "transitionend" - } else if ( $.browser.opera ) { - transitionEnd = "oTransitionEnd" - } - return transitionEnd - }()) - } - })() - - }) - -}( window.jQuery ) -/* ========================================================== - * bootstrap-alert.js v2.0.0 - * http://twitter.github.com/bootstrap/javascript.html#alerts - * ========================================================== - * Copyright 2012 Twitter, Inc. - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - * ========================================================== */ - - -!function( $ ){ - - "use strict" - - /* ALERT CLASS DEFINITION - * ====================== */ - - var dismiss = '[data-dismiss="alert"]' - , Alert = function ( el ) { - $(el).on('click', dismiss, this.close) - } - - Alert.prototype = { - - constructor: Alert - - , close: function ( e ) { - var $this = $(this) - , selector = $this.attr('data-target') - , $parent - - if (!selector) { - selector = $this.attr('href') - selector = selector && selector.replace(/.*(?=#[^\s]*$)/, '') //strip for ie7 - } - - $parent = $(selector) - $parent.trigger('close') - - e && e.preventDefault() - - $parent.length || ($parent = $this.hasClass('alert') ? $this : $this.parent()) - - $parent.removeClass('in') - - function removeElement() { - $parent.remove() - $parent.trigger('closed') - } - - $.support.transition && $parent.hasClass('fade') ? - $parent.on($.support.transition.end, removeElement) : - removeElement() - } - - } - - - /* ALERT PLUGIN DEFINITION - * ======================= */ - - $.fn.alert = function ( option ) { - return this.each(function () { - var $this = $(this) - , data = $this.data('alert') - if (!data) $this.data('alert', (data = new Alert(this))) - if (typeof option == 'string') data[option].call($this) - }) - } - - $.fn.alert.Constructor = Alert - - - /* ALERT DATA-API - * ============== */ - - $(function () { - $('body').on('click.alert.data-api', dismiss, Alert.prototype.close) - }) - -}( window.jQuery ) -/* ============================================================ - * bootstrap-button.js v2.0.0 - * http://twitter.github.com/bootstrap/javascript.html#buttons - * ============================================================ - * Copyright 2012 Twitter, Inc. - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - * ============================================================ */ - -!function( $ ){ - - "use strict" - - /* BUTTON PUBLIC CLASS DEFINITION - * ============================== */ - - var Button = function ( element, options ) { - this.$element = $(element) - this.options = $.extend({}, $.fn.button.defaults, options) - } - - Button.prototype = { - - constructor: Button - - , setState: function ( state ) { - var d = 'disabled' - , $el = this.$element - , data = $el.data() - , val = $el.is('input') ? 'val' : 'html' - - state = state + 'Text' - data.resetText || $el.data('resetText', $el[val]()) - - $el[val](data[state] || this.options[state]) - - // push to event loop to allow forms to submit - setTimeout(function () { - state == 'loadingText' ? - $el.addClass(d).attr(d, d) : - $el.removeClass(d).removeAttr(d) - }, 0) - } - - , toggle: function () { - var $parent = this.$element.parent('[data-toggle="buttons-radio"]') - - $parent && $parent - .find('.active') - .removeClass('active') - - this.$element.toggleClass('active') - } - - } - - - /* BUTTON PLUGIN DEFINITION - * ======================== */ - - $.fn.button = function ( option ) { - return this.each(function () { - var $this = $(this) - , data = $this.data('button') - , options = typeof option == 'object' && option - if (!data) $this.data('button', (data = new Button(this, options))) - if (option == 'toggle') data.toggle() - else if (option) data.setState(option) - }) - } - - $.fn.button.defaults = { - loadingText: 'loading...' - } - - $.fn.button.Constructor = Button - - - /* BUTTON DATA-API - * =============== */ - - $(function () { - $('body').on('click.button.data-api', '[data-toggle^=button]', function ( e ) { - $(e.target).button('toggle') - }) - }) - -}( window.jQuery ) -/* ========================================================== - * bootstrap-carousel.js v2.0.0 - * http://twitter.github.com/bootstrap/javascript.html#carousel - * ========================================================== - * Copyright 2012 Twitter, Inc. - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - * ========================================================== */ - - -!function( $ ){ - - "use strict" - - /* CAROUSEL CLASS DEFINITION - * ========================= */ - - var Carousel = function (element, options) { - this.$element = $(element) - this.options = $.extend({}, $.fn.carousel.defaults, options) - this.options.slide && this.slide(this.options.slide) - } - - Carousel.prototype = { - - cycle: function () { - this.interval = setInterval($.proxy(this.next, this), this.options.interval) - return this - } - - , to: function (pos) { - var $active = this.$element.find('.active') - , children = $active.parent().children() - , activePos = children.index($active) - , that = this - - if (pos > (children.length - 1) || pos < 0) return - - if (this.sliding) { - return this.$element.one('slid', function () { - that.to(pos) - }) - } - - if (activePos == pos) { - return this.pause().cycle() - } - - return this.slide(pos > activePos ? 'next' : 'prev', $(children[pos])) - } - - , pause: function () { - clearInterval(this.interval) - return this - } - - , next: function () { - if (this.sliding) return - return this.slide('next') - } - - , prev: function () { - if (this.sliding) return - return this.slide('prev') - } - - , slide: function (type, next) { - var $active = this.$element.find('.active') - , $next = next || $active[type]() - , isCycling = this.interval - , direction = type == 'next' ? 'left' : 'right' - , fallback = type == 'next' ? 'first' : 'last' - , that = this - - this.sliding = true - - isCycling && this.pause() - - $next = $next.length ? $next : this.$element.find('.item')[fallback]() - - if (!$.support.transition && this.$element.hasClass('slide')) { - this.$element.trigger('slide') - $active.removeClass('active') - $next.addClass('active') - this.sliding = false - this.$element.trigger('slid') - } else { - $next.addClass(type) - $next[0].offsetWidth // force reflow - $active.addClass(direction) - $next.addClass(direction) - this.$element.trigger('slide') - this.$element.one($.support.transition.end, function () { - $next.removeClass([type, direction].join(' ')).addClass('active') - $active.removeClass(['active', direction].join(' ')) - that.sliding = false - setTimeout(function () { that.$element.trigger('slid') }, 0) - }) - } - - isCycling && this.cycle() - - return this - } - - } - - - /* CAROUSEL PLUGIN DEFINITION - * ========================== */ - - $.fn.carousel = function ( option ) { - return this.each(function () { - var $this = $(this) - , data = $this.data('carousel') - , options = typeof option == 'object' && option - if (!data) $this.data('carousel', (data = new Carousel(this, options))) - if (typeof option == 'number') data.to(option) - else if (typeof option == 'string' || (option = options.slide)) data[option]() - else data.cycle() - }) - } - - $.fn.carousel.defaults = { - interval: 5000 - } - - $.fn.carousel.Constructor = Carousel - - - /* CAROUSEL DATA-API - * ================= */ - - $(function () { - $('body').on('click.carousel.data-api', '[data-slide]', function ( e ) { - var $this = $(this), href - , $target = $($this.attr('data-target') || (href = $this.attr('href')) && href.replace(/.*(?=#[^\s]+$)/, '')) //strip for ie7 - , options = !$target.data('modal') && $.extend({}, $target.data(), $this.data()) - $target.carousel(options) - e.preventDefault() - }) - }) - -}( window.jQuery ) -/* ============================================================= - * bootstrap-collapse.js v2.0.0 - * http://twitter.github.com/bootstrap/javascript.html#collapse - * ============================================================= - * Copyright 2012 Twitter, Inc. - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - * ============================================================ */ - -!function( $ ){ - - "use strict" - - var Collapse = function ( element, options ) { - this.$element = $(element) - this.options = $.extend({}, $.fn.collapse.defaults, options) - - if (this.options["parent"]) { - this.$parent = $(this.options["parent"]) - } - - this.options.toggle && this.toggle() - } - - Collapse.prototype = { - - constructor: Collapse - - , dimension: function () { - var hasWidth = this.$element.hasClass('width') - return hasWidth ? 'width' : 'height' - } - - , show: function () { - var dimension = this.dimension() - , scroll = $.camelCase(['scroll', dimension].join('-')) - , actives = this.$parent && this.$parent.find('.in') - , hasData - - if (actives && actives.length) { - hasData = actives.data('collapse') - actives.collapse('hide') - hasData || actives.data('collapse', null) - } - - this.$element[dimension](0) - this.transition('addClass', 'show', 'shown') - this.$element[dimension](this.$element[0][scroll]) - - } - - , hide: function () { - var dimension = this.dimension() - this.reset(this.$element[dimension]()) - this.transition('removeClass', 'hide', 'hidden') - this.$element[dimension](0) - } - - , reset: function ( size ) { - var dimension = this.dimension() - - this.$element - .removeClass('collapse') - [dimension](size || 'auto') - [0].offsetWidth - - this.$element.addClass('collapse') - } - - , transition: function ( method, startEvent, completeEvent ) { - var that = this - , complete = function () { - if (startEvent == 'show') that.reset() - that.$element.trigger(completeEvent) - } - - this.$element - .trigger(startEvent) - [method]('in') - - $.support.transition && this.$element.hasClass('collapse') ? - this.$element.one($.support.transition.end, complete) : - complete() - } - - , toggle: function () { - this[this.$element.hasClass('in') ? 'hide' : 'show']() - } - - } - - /* COLLAPSIBLE PLUGIN DEFINITION - * ============================== */ - - $.fn.collapse = function ( option ) { - return this.each(function () { - var $this = $(this) - , data = $this.data('collapse') - , options = typeof option == 'object' && option - if (!data) $this.data('collapse', (data = new Collapse(this, options))) - if (typeof option == 'string') data[option]() - }) - } - - $.fn.collapse.defaults = { - toggle: true - } - - $.fn.collapse.Constructor = Collapse - - - /* COLLAPSIBLE DATA-API - * ==================== */ - - $(function () { - $('body').on('click.collapse.data-api', '[data-toggle=collapse]', function ( e ) { - var $this = $(this), href - , target = $this.attr('data-target') - || e.preventDefault() - || (href = $this.attr('href')) && href.replace(/.*(?=#[^\s]+$)/, '') //strip for ie7 - , option = $(target).data('collapse') ? 'toggle' : $this.data() - $(target).collapse(option) - }) - }) - -}( window.jQuery ) -/* ============================================================ - * bootstrap-dropdown.js v2.0.0 - * http://twitter.github.com/bootstrap/javascript.html#dropdowns - * ============================================================ - * Copyright 2012 Twitter, Inc. - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - * ============================================================ */ - - -!function( $ ){ - - "use strict" - - /* DROPDOWN CLASS DEFINITION - * ========================= */ - - var toggle = '[data-toggle="dropdown"]' - , Dropdown = function ( element ) { - var $el = $(element).on('click.dropdown.data-api', this.toggle) - $('html').on('click.dropdown.data-api', function () { - $el.parent().removeClass('open') - }) - } - - Dropdown.prototype = { - - constructor: Dropdown - - , toggle: function ( e ) { - var $this = $(this) - , selector = $this.attr('data-target') - , $parent - , isActive - - if (!selector) { - selector = $this.attr('href') - selector = selector && selector.replace(/.*(?=#[^\s]*$)/, '') //strip for ie7 - } - - $parent = $(selector) - $parent.length || ($parent = $this.parent()) - - isActive = $parent.hasClass('open') - - clearMenus() - !isActive && $parent.toggleClass('open') - - return false - } - - } - - function clearMenus() { - $(toggle).parent().removeClass('open') - } - - - /* DROPDOWN PLUGIN DEFINITION - * ========================== */ - - $.fn.dropdown = function ( option ) { - return this.each(function () { - var $this = $(this) - , data = $this.data('dropdown') - if (!data) $this.data('dropdown', (data = new Dropdown(this))) - if (typeof option == 'string') data[option].call($this) - }) - } - - $.fn.dropdown.Constructor = Dropdown - - - /* APPLY TO STANDARD DROPDOWN ELEMENTS - * =================================== */ - - $(function () { - $('html').on('click.dropdown.data-api', clearMenus) - $('body').on('click.dropdown.data-api', toggle, Dropdown.prototype.toggle) - }) - -}( window.jQuery ) -/* ========================================================= - * bootstrap-modal.js v2.0.0 - * http://twitter.github.com/bootstrap/javascript.html#modals - * ========================================================= - * Copyright 2012 Twitter, Inc. - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - * ========================================================= */ - - -!function( $ ){ - - "use strict" - - /* MODAL CLASS DEFINITION - * ====================== */ - - var Modal = function ( content, options ) { - this.options = $.extend({}, $.fn.modal.defaults, options) - this.$element = $(content) - .delegate('[data-dismiss="modal"]', 'click.dismiss.modal', $.proxy(this.hide, this)) - } - - Modal.prototype = { - - constructor: Modal - - , toggle: function () { - return this[!this.isShown ? 'show' : 'hide']() - } - - , show: function () { - var that = this - - if (this.isShown) return - - $('body').addClass('modal-open') - - this.isShown = true - this.$element.trigger('show') - - escape.call(this) - backdrop.call(this, function () { - var transition = $.support.transition && that.$element.hasClass('fade') - - !that.$element.parent().length && that.$element.appendTo(document.body) //don't move modals dom position - - that.$element - .show() - - if (transition) { - that.$element[0].offsetWidth // force reflow - } - - that.$element.addClass('in') - - transition ? - that.$element.one($.support.transition.end, function () { that.$element.trigger('shown') }) : - that.$element.trigger('shown') - - }) - } - - , hide: function ( e ) { - e && e.preventDefault() - - if (!this.isShown) return - - var that = this - this.isShown = false - - $('body').removeClass('modal-open') - - escape.call(this) - - this.$element - .trigger('hide') - .removeClass('in') - - $.support.transition && this.$element.hasClass('fade') ? - hideWithTransition.call(this) : - hideModal.call(this) - } - - } - - - /* MODAL PRIVATE METHODS - * ===================== */ - - function hideWithTransition() { - var that = this - , timeout = setTimeout(function () { - that.$element.off($.support.transition.end) - hideModal.call(that) - }, 500) - - this.$element.one($.support.transition.end, function () { - clearTimeout(timeout) - hideModal.call(that) - }) - } - - function hideModal( that ) { - this.$element - .hide() - .trigger('hidden') - - backdrop.call(this) - } - - function backdrop( callback ) { - var that = this - , animate = this.$element.hasClass('fade') ? 'fade' : '' - - if (this.isShown && this.options.backdrop) { - var doAnimate = $.support.transition && animate - - this.$backdrop = $(' -
- +

- Classes and interfaces

+ Classes and interfaces
-

Driver_Interface +

Driver_Interface

PDO Interface to implement for database drivers

-« More » +« More »
-

SQL_Interface +

SQL_Interface

parent for database manipulation subclasses

-« More » +« More »
-

Abstract_Driver +

Abstract_Driver

Base Database class

-« More » +« More »
-

Abstract_SQL +

Abstract_SQL

parent for database manipulation subclasses

-« More » +« More »
-

DB_Util +

DB_Util

Abstract class defining database / table creation methods

-« More » +« More »
-

Firebird +

Firebird

Firebird Database class

-« More » +« More »
-

Firebird_Result +

Firebird_Result

Firebird result class to emulate PDOStatement Class - only implements data-fetching methods

-« More » +« More »
-

Firebird_SQL +

Firebird_SQL

Firebird Specific SQL

-« More » +« More »
-

Firebird_Util +

Firebird_Util

Firebird-specific backup, import and creation methods

-« More » +« More »
-

MySQL +

MySQL

MySQL specific class

-« More » +« More »
-

MySQL_SQL +

MySQL_SQL

MySQL specifc SQL

-« More » +« More »
-

MySQL_Util +

MySQL_Util

MySQL-specific backup, import and creation methods

-« More » +« More »
-

PgSQL +

PgSQL

PostgreSQL specifc class

-« More » +« More »
-

PgSQL_SQL +

PgSQL_SQL

PostgreSQL specifc SQL

-« More » +« More »
-

PgSQL_Util +

PgSQL_Util

Posgres-specific backup, import and creation methods

-« More » +« More »
-

SQLite +

SQLite

SQLite specific class

-« More » +« More »
-

SQLite_SQL +

SQLite_SQL

SQLite Specific SQL

-« More » +« More »
-

SQLite_Util +

SQLite_Util

SQLite-specific backup, import and creation methods

-« More » +« More »
@@ -227,7 +210,7 @@ data-fetching methods

Template is built using Twitter Bootstrap 2 and icons provided by Glyphicons.
Documentation is powered by phpDocumentor 2.2.0 and
- generated on 2014-04-02T11:00:35-04:00.
+ generated on 2014-04-02T17:05:03-04:00.
diff --git a/docs/namespaces/Query.html b/docs/namespaces/Query.html new file mode 100644 index 0000000..99a64dc --- /dev/null +++ b/docs/namespaces/Query.html @@ -0,0 +1,292 @@ + + + + + +Query » Query + + + + + + + + + + +
+ +
+ +
+ +
+

+ Classes and interfaces

+
+

Query_Builder_Interface +

+

Interface defining the Query Builder class

+
+« More » +
+
+

Table_Builder_Interface +

+

Abstract class defining database / table creation methods

+
+« More » +
+
+

BadDBDriverException +

+

Generic exception for bad drivers

+
+« More » +
+
+

Connection_Manager +

+

Connection manager class to manage connections for the +Query method

+
+« More » +
+
+

Query_Builder +

+

Convienience class for creating sql queries - also the class that +instantiates the specific db driver

+
+« More » +
+
+

Query_Parser +

+

Utility Class to parse sql clauses for properly escaping identifiers

+
+« More » +
+
+

Table_Builder +

+

Abstract class defining database / table creation methods

+
+« More » +
+ +
+

+ Classes and interfaces

+
+

Driver_Interface +

+

PDO Interface to implement for database drivers

+
+« More » +
+
+

SQL_Interface +

+

parent for database manipulation subclasses

+
+« More » +
+
+

Abstract_Driver +

+

Base Database class

+
+« More » +
+
+

Abstract_SQL +

+

parent for database manipulation subclasses

+
+« More » +
+
+

DB_Util +

+

Abstract class defining database / table creation methods

+
+« More » +
+
+

Firebird +

+

Firebird Database class

+
+« More » +
+
+

Firebird_Result +

+

Firebird result class to emulate PDOStatement Class - only implements +data-fetching methods

+
+« More » +
+
+

Firebird_SQL +

+

Firebird Specific SQL

+
+« More » +
+
+

Firebird_Util +

+

Firebird-specific backup, import and creation methods

+
+« More » +
+
+

MySQL +

+

MySQL specific class

+
+« More » +
+
+

MySQL_SQL +

+

MySQL specifc SQL

+
+« More » +
+
+

MySQL_Util +

+

MySQL-specific backup, import and creation methods

+
+« More » +
+
+

PgSQL +

+

PostgreSQL specifc class

+
+« More » +
+
+

PgSQL_SQL +

+

PostgreSQL specifc SQL

+
+« More » +
+
+

PgSQL_Util +

+

Posgres-specific backup, import and creation methods

+
+« More » +
+
+

SQLite +

+

SQLite specific class

+
+« More » +
+
+

SQLite_SQL +

+

SQLite Specific SQL

+
+« More » +
+
+

SQLite_Util +

+

SQLite-specific backup, import and creation methods

+
+« More » +
+
+
+
+
+
+
+ + diff --git a/docs/namespaces/global.html b/docs/namespaces/global.html deleted file mode 100644 index 889c565..0000000 --- a/docs/namespaces/global.html +++ /dev/null @@ -1,117 +0,0 @@ - - - - - -Query » global - - - - - - - - - - -
- - -
-
- - diff --git a/docs/packages/Default.html b/docs/packages/Default.html deleted file mode 100644 index bdf72ae..0000000 --- a/docs/packages/Default.html +++ /dev/null @@ -1,72 +0,0 @@ - - - - - -Query » Default - - - - - - - - - - -
- -
-
-
- -
- -
-
-
-
-
- - diff --git a/docs/packages/Query.Core.html b/docs/packages/Query.Core.html deleted file mode 100644 index 6fdb5fc..0000000 --- a/docs/packages/Query.Core.html +++ /dev/null @@ -1,155 +0,0 @@ - - - - - -Query » Query\Core - - - - - - - - - - -
- -
- -
- -
-

- Functions

-
-

Load query classes

-
query_autoload(string $class) 
-
-
-
- - - -
subpackageCore
-

Parameters

-
-

$class

-string -
-
-
-

- Classes and interfaces

-
-

BadDBDriverException -

-

Generic exception for bad drivers

-
-« More » -
-
-

Connection_Manager -

-

Connection manager class to manage connections for the -Query method

-
-« More » -
-

- Constants

- 
-

Reference to root path

-
QBASE_PATH = dirname(__FILE__) . '/' 
-
-
-
- - - -
subpackageCore
-
-
- 
-

Path to driver classes

-
QDRIVER_PATH = QBASE_PATH . 'drivers/' 
-
-
-
- - - -
subpackageCore
-
-
-
-
-
-
-
- - diff --git a/docs/packages/Query.Query_Builder.html b/docs/packages/Query.Query_Builder.html deleted file mode 100644 index 67fc1c4..0000000 --- a/docs/packages/Query.Query_Builder.html +++ /dev/null @@ -1,113 +0,0 @@ - - - - - -Query » Query\Query_Builder - - - - - - - - - - -
- -
-
-
- -
- -
-
- -
-

- Classes and interfaces

-
-

Query_Builder_Interface -

-

Interface defining the Query Builder class

-
-« More » -
-
-

Query_Builder -

-

Convienience class for creating sql queries - also the class that -instantiates the specific db driver

-
-« More » -
-
-

Query_Parser -

-

Utility Class to parse sql clauses for properly escaping identifiers

-
-« More » -
-
-
-
-
-
- - diff --git a/docs/packages/Query.Table_Builder.html b/docs/packages/Query.Table_Builder.html deleted file mode 100644 index f014131..0000000 --- a/docs/packages/Query.Table_Builder.html +++ /dev/null @@ -1,103 +0,0 @@ - - - - - -Query » Query\Table_Builder - - - - - - - - - - -
- -
-
-
- -
- -
-
- -
-

- Classes and interfaces

-
-

Table_Builder_Interface -

-

Abstract class defining database / table creation methods

-
-« More » -
-
-

Table_Builder -

-

Abstract class defining database / table creation methods

-
-« More » -
-
-
-
-
-
- - diff --git a/docs/packages/Query.html b/docs/packages/Query.html deleted file mode 100644 index da56b0f..0000000 --- a/docs/packages/Query.html +++ /dev/null @@ -1,427 +0,0 @@ - - - - - -Query » Query - - - - - - - - - - -
- -
- -
- -
-

- Functions

-
-

Connection function

-
Query(mixed $params = '') : \Query_Builder
-
-
-
-

Parameters

-
-

$params

-mixed -
-

Returns

- -
-
-
-

Filter out db rows into one array

-
db_filter(array $array, mixed $index) : array
-
-
-
-

Parameters

-
-

$array

-array -
-
-

$index

-mixed -
-

Returns

-
array
-
-
-
-

Bulk directory loading workaround for use -with array_map and glob

-
do_include(string $path) : void
-
-
-
-

Parameters

-
-

$path

-string -
-
-
-
-

Multibyte-safe trim function

-
mb_trim(string $string) : string
-
-
-
-

Parameters

-
-

$string

-string -
-

Returns

-
string
-
-
- -
-

- Functions

-
-

Load query classes

-
query_autoload(string $class) 
-
-
-
- - - -
subpackageCore
-

Parameters

-
-

$class

-string -
-
-
-

- Classes and interfaces

-
-

BadDBDriverException -

-

Generic exception for bad drivers

-
-« More » -
-
-

Connection_Manager -

-

Connection manager class to manage connections for the -Query method

-
-« More » -
-

- Constants

- 
-

Reference to root path

-
QBASE_PATH = dirname(__FILE__) . '/' 
-
-
-
- - - -
subpackageCore
-
-
- 
-

Path to driver classes

-
QDRIVER_PATH = QBASE_PATH . 'drivers/' 
-
-
-
- - - -
subpackageCore
-
-
-
- -
-

- Classes and interfaces

-
-

Driver_Interface -

-

PDO Interface to implement for database drivers

-
-« More » -
-
-

SQL_Interface -

-

parent for database manipulation subclasses

-
-« More » -
-
-

Abstract_Driver -

-

Base Database class

-
-« More » -
-
-

Abstract_SQL -

-

parent for database manipulation subclasses

-
-« More » -
-
-

DB_Util -

-

Abstract class defining database / table creation methods

-
-« More » -
-
-

Firebird -

-

Firebird Database class

-
-« More » -
-
-

Firebird_Result -

-

Firebird result class to emulate PDOStatement Class - only implements -data-fetching methods

-
-« More » -
-
-

Firebird_SQL -

-

Firebird Specific SQL

-
-« More » -
-
-

Firebird_Util -

-

Firebird-specific backup, import and creation methods

-
-« More » -
-
-

MySQL -

-

MySQL specific class

-
-« More » -
-
-

MySQL_SQL -

-

MySQL specifc SQL

-
-« More » -
-
-

MySQL_Util -

-

MySQL-specific backup, import and creation methods

-
-« More » -
-
-

PgSQL -

-

PostgreSQL specifc class

-
-« More » -
-
-

PgSQL_SQL -

-

PostgreSQL specifc SQL

-
-« More » -
-
-

PgSQL_Util -

-

Posgres-specific backup, import and creation methods

-
-« More » -
-
-

SQLite -

-

SQLite specific class

-
-« More » -
-
-

SQLite_SQL -

-

SQLite Specific SQL

-
-« More » -
-
-

SQLite_Util -

-

SQLite-specific backup, import and creation methods

-
-« More » -
-
- -
-

- Classes and interfaces

-
-

Query_Builder_Interface -

-

Interface defining the Query Builder class

-
-« More » -
-
-

Query_Builder -

-

Convienience class for creating sql queries - also the class that -instantiates the specific db driver

-
-« More » -
-
-

Query_Parser -

-

Utility Class to parse sql clauses for properly escaping identifiers

-
-« More » -
-
- -
-

- Classes and interfaces

-
-

Table_Builder_Interface -

-

Abstract class defining database / table creation methods

-
-« More » -
-
-

Table_Builder -

-

Abstract class defining database / table creation methods

-
-« More » -
-
-
-
-
-
-
- - diff --git a/docs/structure.xml b/docs/structure.xml deleted file mode 100644 index 164348e..0000000 --- a/docs/structure.xml +++ /dev/null @@ -1,7274 +0,0 @@ - - - - - - Query - Free Query Builder / Database Abstraction Layer - - - - - - - - - Query_Parser - \Query_Parser - - Utility Class to parse sql clauses for properly escaping identifiers - - - - - - $match_patterns - array('function' => '([a-zA-Z0-9_]+\((.*?)\))', 'identifier' => '([a-zA-Z0-9_-]+\.?)+', 'operator' => '=|AND|&&?|~|\|\|?|\^|/|>=?|<=?|-|%|OR|\+|NOT|\!=?|<>|XOR') - - Regex patterns for various syntax components - - - array - - - - - $matches - array('functions' => array(), 'identifiers' => array(), 'operators' => array(), 'combined' => array()) - - Regex matches - - - array - - - - - __construct - \Query_Parser::__construct() - - Constructor/entry point into parser - - - string - - - - $sql - '' - string - - - - parse_join - \Query_Parser::parse_join() - - Public parser method for seting the parse string - - - string - - - - $sql - - string - - - - filter_array - \Query_Parser::filter_array() - - Returns a more useful match array - - - array - - - array - - - - $array - - array - - - - eJy1Vm1v2zYQ/iz9ihvgVVL8orTol3VNnCzJCgxFk3kZNiz2VFo+W2xkUSUpt17V/fYdqRe/JAtSrEtgWz4+x7t77jnSL4d5krvhwYELB/BzgXJND+b5R4lYGeCHgqczlBDCOdNsyhTC6VRpyWLNRQav2Rpl7XWSs/iWLdBxmr3ghBU6EdJxrvlS6GQNPw3gNyYlZnY1Fvla8kWinbPmCfw4gGeHT59B33w8t7iUZ7fgOInWuXoRhguuk2I6iMUyZCvO9HPKJNzETHmMmcIKT/A84anShVygyMhpUNyGsZhhOJuyWb8Gk2PoumEI/a/25zbM/qp5yvUazlKmFGgBOZNEo3qfQpyyQqGCuZCQS5GjTNeAKmY5zxbAZ5hpPuco1R7FsKlWFdMdY1R3zFYU25CV/cpElfDJdR2TmEPOI1zgR0pHa5RZlcWKSS4KBWqdafYRiONcZJSGMg7W6YQgQD1ka/M1dJ1c8hXTCJ0l03EStdsdVSjfdRxvXmRWMB4cHYPn37D+X6f9Pw7730WT7tj3BwfDYBwEXs9gN2XfRfcJPhgG3QppCGNa1Lij8vTNefnkybD8uxzT/7Ac/1mG5fHRsHxJr375bXk5Ksfd8s3ldTn+xpiPy98vR57rBN/fYcUWgw+VXUxJPHXVeH+5ymZW2YO94u6uNeXcXaE2THmGs72FnbTPKJyWRUwbhBSDZjcXPNNAr1pyclMMfWdLILzRWYekuFtUkz9EUdxs6xsYVel5get8oqxoWl6h3tLxjlpIFriIKkmwNPW9t96goxOu+se7OrnZiGMyIFTP5kPvW2DcQilv0oOr0cWr6JeL6+hydH4xIh6+JN6WwB6MuN2r/xqzleqDETcKuC/ehnNc0USTLzWPaRBZjHZ4haTBJyMBO/MiTZv4pmuPo79bPpK10n9UqUH3LffuYWonvX9jo1X9A2QI0IkUxSKhT2yGtgcsm8GCiLJGoTRITHHFaBzauXZ2wzXzS0nmfjViFtADb85TSjOyRi/Yz9MI4bOZw697ebRzfVWNZDXBsES6UGe22wq1EYApsb5RdNX8Lx1y6x29o9PCzng93nWV+yeA1b1Euk+zPSL+Zx5GNqYCRg2VCHTekIaqdm7O5e3CrRE67Rqc1Gnfd3m1ZGw326+cG0Iy/FDZ27O+0iE1A1mc1GhgCjpSfCAv67bldzMhT/C5arY3sACGFn9zOIEX9skwbJhsaW43qCj+bH+pXJDExRze28u9UseAfs/9A+b49sg= - - - - Query - Free Query Builder / Database Abstraction Layer - - - - - - - - Driver_Interface - \Driver_Interface - - PDO Interface to implement for database drivers - - - - - - __construct - \Driver_Interface::__construct() - - Constructor/Connection method - - - string - - - \[string] - - - \[string] - - - \[array] - - - void - - - - $dsn - - string - - - $username - NULL - \[string] - - - $password - NULL - \[string] - - - $driver_options - array() - \[array] - - - - beginTransaction - \Driver_Interface::beginTransaction() - - Begin a transaction - - - bool - - - - - commit - \Driver_Interface::commit() - - Commit a transaction - - - bool - - - - - errorCode - \Driver_Interface::errorCode() - - Return the current error code - - - mixed - - - - - errorInfo - \Driver_Interface::errorInfo() - - Return information about the current error - - - array - - - - - exec - \Driver_Interface::exec() - - Execute an SQL statement and return the number of affected rows - - - string - - - int - - - - $statement - - string - - - - getAttribute - \Driver_Interface::getAttribute() - - Get a connection attribute for the current db driver - - - int - - - - - $attribute - - int - - - - rollback - \Driver_Interface::rollback() - - Rollback a transaction - - - bool - - - - - setAttribute - \Driver_Interface::setAttribute() - - Set a connection attribute - - - int - - - mixed - - - bool - - - - $attribute - - int - - - $value - - mixed - - - - eJytVU1P20AQPTsS/2EOOQQEcYs4tUUFElpRRbQUqh6qKtpdT+wV9q61H4Go6n/v2OvECU6KKppL7J1589587Pjd+zIr93rxwcFeDw7gxqNZVE/12weDGI7gwss8QQMxjJljnFmEc26dYcJJrWDCFmhWuLOSiXuWYhSt4sEZ8y7TJoruZKFdtoBPQ/jOjEEVzEKXCyPTzEWj5RMMxD4cv3p9DEfV30lwzKW6hyjKnCvtmzhOpcs8HwpdxGwumTshOfEabS4FKosBQP5lJnPrvElRK0IN/X0sdIJxwlly1DhXyHivR2WJ4ei//eqATZ2/jD/DlXJoZkwgOA2yKHMsUDmYaQPJssaJkXM0tlNZWMvQer48HbfupF+uCML5tGX8VYmJajURxRhpRb30wmkT07PC0NUCqWVJ7RL8iN6wAshXqhT6iVUb5z+C4Sf0vUWjWIE7zCWz9kGbZNNM08AWZA1JT3VZibCNj0FqmoK5lgFF+UWl59QxmHkV9E6nYpnIoBJ32Ao5vf42mRy2zM17TfmUEU7D+WB//+1mnS4wlQoY0NwrG0Z/vTqNRq51vlMjr0LctfjBU46RLgrpXkYi6hid0F8D1GUIwldXzwEaQ/NW3YAtHIV8xN3VrqEjQu7ikYpmuWC1M+Pauy7zFtK69H8nvaLAHdLLRxTeITAFtzcTmlHmwoViKgHTZq58wWmR6Rmw2YwGHcmqH+zuKV9F2tQpm4OtKknLoAU+lQofsWqwaG8ac0TGK/nV9V8vU8KbJdAVSAqgv0KuqyueaV2K7nyJG7QhOn3Uec5ptbxsGE0TpdOx251VeD7NYKqzhP6c5R7/QZHdnv5hE6nS+bte/pc0OjQozXpY7dNh/c38A1caIYA= - - - - Query - Free Query Builder / Database Abstraction Layer - - - - - - - - Query_Builder_Interface - \Query_Builder_Interface - - Interface defining the Query Builder class - - - - - - select - \Query_Builder_Interface::select() - - Specifies rows to select in a query - - - string - - - \Query_Builder - - - - $fields - - string - - - - select_max - \Query_Builder_Interface::select_max() - - Selects the maximum value of a field from a query - - - string - - - string - - - \Query_Builder - - - - $field - - string - - - $as - FALSE - string - - - - select_min - \Query_Builder_Interface::select_min() - - Selects the minimum value of a field from a query - - - string - - - string - - - \Query_Builder - - - - $field - - string - - - $as - FALSE - string - - - - select_avg - \Query_Builder_Interface::select_avg() - - Selects the average value of a field from a query - - - string - - - string - - - \Query_Builder - - - - $field - - string - - - $as - FALSE - string - - - - select_sum - \Query_Builder_Interface::select_sum() - - Selects the sum of a field from a query - - - string - - - string - - - \Query_Builder - - - - $field - - string - - - $as - FALSE - string - - - - distinct - \Query_Builder_Interface::distinct() - - Adds the 'distinct' keyword to a query - - - \Query_Builder - - - - - explain - \Query_Builder_Interface::explain() - - Shows the query plan for the query - - - \Query_Builder - - - - - from - \Query_Builder_Interface::from() - - Specify the database table to select from - - - string - - - \Query_Builder - - - - $tblname - - string - - - - like - \Query_Builder_Interface::like() - - Creates a Like clause in the sql statement - - - string - - - mixed - - - string - - - \Query_Builder - - - - $field - - string - - - $val - - mixed - - - $pos - 'both' - string - - - - or_like - \Query_Builder_Interface::or_like() - - Generates an OR Like clause - - - string - - - mixed - - - string - - - \Query_Builder - - - - $field - - string - - - $val - - mixed - - - $pos - 'both' - string - - - - not_like - \Query_Builder_Interface::not_like() - - Generates a NOT LIKE clause - - - string - - - mixed - - - string - - - \Query_Builder - - - - $field - - string - - - $val - - mixed - - - $pos - 'both' - string - - - - or_not_like - \Query_Builder_Interface::or_not_like() - - Generates a OR NOT LIKE clause - - - string - - - mixed - - - string - - - \Query_Builder - - - - $field - - string - - - $val - - mixed - - - $pos - 'both' - string - - - - having - \Query_Builder_Interface::having() - - Generates a 'Having' clause - - - mixed - - - mixed - - - \Query_Builder - - - - $key - - mixed - - - $val - array() - mixed - - - - or_having - \Query_Builder_Interface::or_having() - - Generates a 'Having' clause prefixed with 'OR' - - - mixed - - - mixed - - - \Query_Builder - - - - $key - - mixed - - - $val - array() - mixed - - - - where - \Query_Builder_Interface::where() - - Specify condition(s) in the where clause of a query -Note: this function works with key / value, or a -passed array with key / value pairs - - - mixed - - - mixed - - - bool - - - \Query_Builder - - - - $key - - mixed - - - $val - array() - mixed - - - $escape - NULL - bool - - - - or_where - \Query_Builder_Interface::or_where() - - Where clause prefixed with "OR" - - - string - - - mixed - - - \Query_Builder - - - - $key - - string - - - $val - array() - mixed - - - - where_in - \Query_Builder_Interface::where_in() - - Where clause with 'IN' statement - - - mixed - - - mixed - - - \Query_Builder - - - - $field - - mixed - - - $val - array() - mixed - - - - or_where_in - \Query_Builder_Interface::or_where_in() - - Where in statement prefixed with "or" - - - string - - - mixed - - - \Query_Builder - - - - $field - - string - - - $val - array() - mixed - - - - where_not_in - \Query_Builder_Interface::where_not_in() - - WHERE NOT IN (FOO) clause - - - string - - - mixed - - - \Query_Builder - - - - $field - - string - - - $val - array() - mixed - - - - or_where_not_in - \Query_Builder_Interface::or_where_not_in() - - OR WHERE NOT IN (FOO) clause - - - string - - - mixed - - - \Query_Builder - - - - $field - - string - - - $val - array() - mixed - - - - set - \Query_Builder_Interface::set() - - Sets values for inserts / updates / deletes - - - mixed - - - mixed - - - \Query_Builder - - - - $key - - mixed - - - $val - NULL - mixed - - - - join - \Query_Builder_Interface::join() - - Creates a join phrase in a compiled query - - - string - - - string - - - string - - - \Query_Builder - - - - $table - - string - - - $condition - - string - - - $type - '' - string - - - - group_by - \Query_Builder_Interface::group_by() - - Group the results by the selected field(s) - - - mixed - - - \Query_Builder - - - - $field - - mixed - - - - order_by - \Query_Builder_Interface::order_by() - - Order the results by the selected field(s) - - - string - - - string - - - \Query_Builder - - - - $field - - string - - - $type - "" - string - - - - limit - \Query_Builder_Interface::limit() - - Set a limit on the current sql statement - - - int - - - int - - - string - - - - $limit - - int - - - $offset - FALSE - int - - - - group_start - \Query_Builder_Interface::group_start() - - Adds a paren to the current query for query grouping - - - \Query_Builder - - - - - or_group_start - \Query_Builder_Interface::or_group_start() - - Adds a paren to the current query for query grouping, -prefixed with 'OR' - - - \Query_Builder - - - - - or_not_group_start - \Query_Builder_Interface::or_not_group_start() - - Adds a paren to the current query for query grouping, -prefixed with 'OR NOT' - - - \Query_Builder - - - - - group_end - \Query_Builder_Interface::group_end() - - Ends a query group - - - \Query_Builder - - - - - get - \Query_Builder_Interface::get() - - Select and retrieve all records from the current table, and/or -execute current compiled query - - - - int - - - int - - - \PDOStatement - - - - $table - '' - mixed - - - $limit - FALSE - int - - - $offset - FALSE - int - - - - get_where - \Query_Builder_Interface::get_where() - - Convience method for get() with a where clause - - - string - - - array - - - int - - - int - - - \PDOStatement - - - - $table - - string - - - $where - array() - array - - - $limit - FALSE - int - - - $offset - FALSE - int - - - - count_all - \Query_Builder_Interface::count_all() - - Retreive the number of rows in the selected table - - - string - - - int - - - - $table - - string - - - - count_all_results - \Query_Builder_Interface::count_all_results() - - Retrieve the number of results for the generated query - used -in place of the get() method - - - string - - - int - - - - $table - '' - string - - - - insert - \Query_Builder_Interface::insert() - - Creates an insert clause, and executes it - - - string - - - mixed - - - \PDOStatement - - - - $table - - string - - - $data - array() - mixed - - - - insert_batch - \Query_Builder_Interface::insert_batch() - - Creates and executes a batch insertion query - - - string - - - array - - - \PDOStatement - - - - $table - - string - - - $data - array() - array - - - - update - \Query_Builder_Interface::update() - - Creates an update clause, and executes it - - - string - - - mixed - - - \PDOStatement - - - - $table - - string - - - $data - array() - mixed - - - - delete - \Query_Builder_Interface::delete() - - Deletes data from a table - - - string - - - mixed - - - \PDOStatement - - - - $table - - string - - - $where - '' - mixed - - - - get_compiled_select - \Query_Builder_Interface::get_compiled_select() - - Returns the generated 'select' sql query - - - string - - - bool - - - string - - - - $table - '' - string - - - $reset - TRUE - bool - - - - get_compiled_insert - \Query_Builder_Interface::get_compiled_insert() - - Returns the generated 'insert' sql query - - - string - - - bool - - - string - - - - $table - - string - - - $reset - TRUE - bool - - - - get_compiled_update - \Query_Builder_Interface::get_compiled_update() - - Returns the generated 'update' sql query - - - string - - - bool - - - string - - - - $table - '' - string - - - $reset - TRUE - bool - - - - get_compiled_delete - \Query_Builder_Interface::get_compiled_delete() - - Returns the generated 'delete' sql query - - - string - - - bool - - - string - - - - $table - "" - string - - - $reset - TRUE - bool - - - - reset_query - \Query_Builder_Interface::reset_query() - - Clear out the class variables, so the next query can be run - - - void - - - - - eJzVW1tz2kYUfoZfcerxDDiDrTaTp7RMkyZO4xabxk4mj8xKWmBrsavsrrCZTv97z14EAoNtEUty/QJIeznn23P5zpH8y6/pNG0HL1604QV8yqhc4Bfz/YOk1F2A3zKWxFRCAO+JJiFRFN6GSksSaSY4DMiCSj/rTUqiazKhrVa+FrwhmZ4K2Wp9ZjOhpwv44wS+Eikpt3cjkS4km0x1613+DbrREbz88aeXcGw+XtlxCePX0GpNtU7V6yCYMD3NwpNIzAIyZ0S/QkmC1Z4JiyhX1I3H4emUJUpnckIFx0kn2XUQiZgGcUjiYz8YJwbtdhDA8ZP9tXNkz7imckwiCjEdM874BPR0E98oIUptAAkrnVQWrl0c+XlWbrbcYO3eaLXxP+1262mVM8v9AFc0oZG22zKqnnoPXA8RbKH+VymN2Bi3ACluFGgByu3MOBD4ZmHCcXYsoifJDNBGDdKHOCuJlbsjKZoB30CwZSBspVmIpgDjjDvDdut3/fSjn58cwIJyditljWJGbtksm8GcJBkFMUbtrAQwlmL2KFW33SD76j9CeTwGPbNM/8PbwdVpfWigtzwrNBhvEA0yp9IEgOeCBplPGkRDoV00jwFKUTMGb+PYAdCJmdIMxenANV3cCBmbuHgHghI65Qt2qz3EqQ3hqIGVFNKEcBgLubq0l/D0FhdC/6xWdpuHFlbUOOdD+JHQQk4yprjLBHWYcDKjpbUza3bz2RWo6NJ5Z8CuaQdmFElbXGE6fycp0ZjMCZgNDffJEEfM5daxvyUIF96fUa4f7cozdktjOMTYuG14Ksp7eIKirXwbF+7ZdfqdEJlsp1Iz+51yDPUWIQ7DyyJKDQIi5Oh5YAIXw88wOPvztHlMuNDPBRS0k+eDC9pKI9C4OPYRy0KUvPI4VoS/4zbt7MDeQ4yZ+j7gSyA8tdt1zYoO2j7W1WTRParN4DY0hlRieWv0ucH6HDrDy07lIKCZ1YmDz5Jfp1TWkSZzthEJHjOjb1cd5VnyxsiQI2958JI6wYXQ9DWOYmqFFPLDa+VOBpGCwFURPUQQiJ2UEqXwGCx4d8bhXSbVfsfproZCJHBIVUTS8uzHKrvliHv5itCHiy+DQaWm/7WI+LqtHwwvD3YF2yc19l1A1Ke48+2zi85ujuZVfDDLlDWAUbH6rld5dLqluptnL+TOs39KCPLTbwaFj6eXp5ZenF1A98NwePS9FKP04Rs60YTqSKsa1X557vUC4FLdEFON9J3qcxGbFqysIe9RrVzeUbYxwLiiEi8FkKWxJR8BxFhra7pnSirV59GFeFtHnlkVx38LjDvpVBJXHBMkArOUJajKvW0u24/YdmPJI7bOWuyRmI2EXbdhr7B+zy3X71Rc/UiRpZYNSaqyBC0kdK0Z14hBnKyvIGt6OEWVUHpith2FC++K1UYfaR4O7aPig03PvQ5cGHlWuucHfXBQcd9Xo/UnbMY0CMd/o8w8RdT3d4sYDji00+5cFeMxuvaa/g6Ynd0gXKXrFuvl0ytr97ro6+KutXJzYudVx13bWibI9RFZ088s4ux6tSYau28TL9VevVrnQXhssuJe8z4a9Vw5dE8xWy57/x+VNWRnb4UNUalN6VNulS5o9R0WSXlchbRFb6a3NMrsljXQKPs4gvAYkwfGNjqnQJIEf0QYxpV7ZFY0Ep/HcUIgLFBe2tWI+wnIXeZRLgD/9X54VQzl287J0DG7DZKLnl/bheHqo3KBowk+Z5RH1J+i9Swj25FzIbLWn3k0UXPNl0M7t2oY815CTt7sz0JjpSFkL9FSKUNLNYbJs1mI9EeM3Wsf+QOinPos8XsAXI8L2wlHJDKuR+gbHo7KNbS+uKGh53f5k9CJ77R6X4NjQEtyRM5UBYl5rQenuaHG8JwlPikcIy/UyuXqqXy4L/m8/9iQlMciNIOdTwXvOJTn+eZRbVkXcRKs/MOsUUvDYYVCQWcCIdHR1Etl5CtXAvrIsj8QI7t/o3D46r9Jo3ASNIDCe9fusC8d5O+6PDb8rWldyC2PV9s1WzZzRSXRwL9X+Glg4iSKV0vh47ZSG3G34xJNx9aY5dzNPe3A6FmmxDRJOSdYo/z9wwLXscv1P19+qTwDbwPDhYFmwNiMxc0i4YJAM0isBaDnYBYuNDQDxlpY6h8cVA2Gi03nTEU0SQinIlPVx6Z3CSVIEDPtSjXzmjjMiWRGZ9UD5ep8Tm/zIj/CTBlSkBm/UwnPBYt3AGuBG9kVTAn8r30ZHotrwzHt1VHo3ypfvm1+Yv574D9rha3q - - - - Query - Free Query Builder / Database Abstraction Layer - - - - - - - - - \SQL_Interface - Abstract_SQL - \Abstract_SQL - - parent for database manipulation subclasses - - - - - - limit - \Abstract_SQL::limit() - - Limit clause - - - string - - - int - - - int - - - string - - - - $sql - - string - - - $limit - - int - - - $offset - FALSE - int - - - - eJytk11r2zAUhq8VyH84lF4kobG20qtupe3WBDI8SklhN4Mgy7ItYkuaPgqh5L9PX05XdlvfWHr9nkevjuSvt6pT0wleLKYTWMCTY/oQRnG21owlCb453tdMA4YHYklFDIP7ylhNqOVSQEkOTJ/q7oizndQIPfNB2u4APwr4RbRmIn2mUh00bzuLvo8jmNE5XH76fAnL8LpKxp6LPSDUWavMNcYtt52rCioHTF44sVd+aXyKHOyUCcNSgferjvfGOt0yKXxV4faYyprhuiL1MptTpSJ0T1pfeaLh6cS3BcPyw54IzH1WxDfDQiM11GM/ByK4cj2JDTWuoj0xhpm3ruaQ8M+OvW1UHzR/Ydrk7CQfDkTK6ax226cS+KB6Nvj1DfjpbiMs0w2hDF5DRBQzIk8v+cAjwIU2Iciyz6HJAB7IRQvn5k//Tud+X+d9KP1flk1j2Khr5o9GZE7UfG6kXOVPBhon0s2KpFlY5SJjL0bOzfq+3K7mvsgHRyh4oLiBs9+i3PzcPMNr8h/PvsR9Id7AjJudcAPTnM4yZR4AifCGgMf1ersKiGSKDISOCZSTB3eQo3qMt2UlapANjN3feUcRf7C/TLP1uw== - - - - Query - Free Query Builder / Database Abstraction Layer - - - - - - - - - DB_Util - \DB_Util - - Abstract class defining database / table creation methods - - - - - - $conn - - - Reference to the current connection object - - - - - __construct - \DB_Util::__construct() - - Save a reference to the connection object for later use - - - object - - - - $conn - - object - - - - __call - \DB_Util::__call() - - Enable calling driver methods - - - string - - - array - - - mixed - - - - $method - - string - - - $args - - array - - - - create_table - \DB_Util::create_table() - - Convienience public function to generate sql for creating a db table - - - string - - - array - - - array - - - array - - - string - - - - $name - - string - - - $fields - - array - - - $constraints - array() - array - - - $indexes - array() - array - - - - delete_table - \DB_Util::delete_table() - - Drop the selected table - - - string - - - string - - - - $name - - string - - - - backup_structure - \DB_Util::backup_structure() - - Return an SQL file with the database table structure - - - - string - - - - - backup_data - \DB_Util::backup_data() - - Return an SQL file with the database data as insert statements - - - - string - - - - - eJy1Vltv2zYUfpZ+xalhQHLgWFvRp2Zum4s3oMjQ1c2wh6AwKOlY5iJTGklldYP89x2Soiw79tYBaWDENHku3/nOhfzpbb2qw+TkJIQT+Nig3NDCrH+WiG4DLhpe5ighgSumWcoUwnmqtGSZ5pWAa7ZB2Wq9q1l2xwoMAm8L3rFGryoZBDd8XenVBt5P4A8mJQp7mlX1RvJipYNLv4I4G8HLH358Cafm65WVK7m4gyBYaV2r10lScL1q0klWrRN2z5l+RUiSrc+SZygUOnkSr1e8VLqRBVaClCbNXZJVOSZ5yvLTVpgUkzBMEjh9tr/QM+v5gqxkSkGOSy64KCD3hCZAixIhk8gsq2sk1nK1xytsQ1RN6jevJL9HqWwAbNfT1cXid81LeAjDwGAJSHWOSyT6MwRdgV6R08akg1QqIdAltUr/pJURT8KgJvtMIwyNwFnP0id2j8BAPjG4bwiWlYSSbEhoiGnStfoUlmRrL2PNe5dNSmmBZSOcmcWCDimyJtOxlRuFwUMYBEO94ur0jdmBqQcYPBqMz5vILuaZcIliZWkzaLnv0rUXGSE2QkN33D+hDmAbGDJZKLctkeqT8s6/YH6cBPIat9bGTrslolU3AguiWC6M1sJ6id3/HlVjj2jkjXwX0oy5F9va/9Vz9L1Sc1mJe46C21LcJ49Ks0CB0hSy+qu0Fem6jRLEIE9dBx7LoGBrPJC/JccyVwcOXLkyLvShUy5y/IK9cmnT57wdSb9FiwsLM7aAxh7A+IDbqUv7aLzn1O/7DsqqslkLVyrUQ+2paXOTqDlWsmCCf0UgoxUw0Zpz1nL4myYxOBu0R6yu7QBz2rMCduzfml8G+efOkxMMgkhvaoxg+gYmk8m4290G9PTMQtjbpqgCAoEsW8UtOcAUeL9GeGg8GTkTfvBf+ExrHJW6daiNdGzNwovptHM2grfOGbyGKDJ2TI8FfBlTW+C61pu4n7BRh6kLoHfqo7AR2H0j7uQPwCNoPeo+t8NRaRvNo4dChL2vuPD5c/eSJjlql4LalS72zrjapaSHsVc/BqSwEGtZ1WrLMiEh/WgQTYZiQl9n3e6EuONKIQ12q+M5HRn6BvCwu/s4IDIHg39T78e9b6R/1pnqJVjdWqpI5qzH0S9+cJjLzQ8Pe9H567pa2t/tCCFkJEThXs5n5zczuDm/uJ6BjZ3KgsKH2BJgxSgAvq5Leo7E0Rjo46GM+iLRKLJA20Fhtv3MbqffFUXoAGJJ1ym15jcOtG+ZPTnZ3J09u/dOdDX/8NvTOKM9jHMnTUPk08drWHK6SO38MLC7t5B7CbnLvpG9APzb5jjs7vWzjz+lp1JTLzqjbsD9L1hmYeqb01tRavJLBbHGdr4/F0DjxGJ7NC/RmchNZeXpoqFH3ISe6v8AAo1lCQ== - - - - Query - Free Query Builder / Database Abstraction Layer - - - - - - - - Table_Builder_Interface - \Table_Builder_Interface - - Abstract class defining database / table creation methods - - - - - - __construct - \Table_Builder_Interface::__construct() - - Constructor - - - string - - - array - - - \Abstract_Driver - - - - $name - - string - - - $options - array() - array - - - $driver - null - \Abstract_Driver - - - - eJytUsluGzEMPUtfwYMPthFbSZBTF2RzC6TopUCAHgcciZ4RPCMNtBgYBPn3SrPYhs/VRRT5SD4+6ttjV3dcrNcc1vAnkuuTke2fjmh0wEvUjSIHAnYYsERP8Fz64FAGbQ38xp7clPXUoTxgRYzNteAJY6itY+xdtzbUPfzawl90jswQlbbrna7qwF5nC5ZyBfe3d/ewydfDgGu0OQBjdQid/yJEpUMdy620rcCjxvCQmIhzz0ZLMp5GfIJ3tW58iK4ia1LSNh6EtIqEKlFtJnBKFJwLAZv/dvis7KwXyAa9B0V7bbSpQM2CCkhGQyAd4aBqS0k15a90hfOIPpaz8z2nFtOahjG0CeT2KK9ixdvJ/8E5y+RYqvVqTaIXZbAuvwdf6uiwheTPPBcGW7r0pwViDwvbZbL+MjKPWuycPqZfs1DDnSGCsy6WSW7YRzN+nqKQc/Pl0OTmVBS+j12WqxsYa13Qn6omjIlNs/rK0/nMy/thFNj9qGZRTmOf5Njm3/4PewjmJg== - - - - Query - Free Query Builder / Database Abstraction Layer - - - - - - - - \PDO - \Driver_Interface - Abstract_Driver - \Abstract_Driver - - Base Database class - Extends PDO to simplify cross-database issues - - - - - $statement - - - Reference to the last executed query - - - \PDOStatement - - - - - $escape_char - '"' - - Character to escape indentifiers - - - string - - - - - $sql - - - Reference to sql class - - - \SQL_Interface - - - - - $util - - - Reference to util class - - - \DB_Util - - - - - $last_query - - - Last query executed - - - string - - - - - $table_prefix - '' - - Prefix to apply to table names - - - string - - - - - __construct - \Abstract_Driver::__construct() - - PDO constructor wrapper - - - string - - - string - - - string - - - array - - - - $dsn - - string - - - $username - NULL - string - - - $password - NULL - string - - - $driver_options - array() - array - - - - prepare_query - \Abstract_Driver::prepare_query() - - Simplifies prepared statements for database queries - - - string - - - array - - - \PDOStatement - - - \InvalidArgumentException - - - - $sql - - string - - - $data - - array - - - - prepare_execute - \Abstract_Driver::prepare_execute() - - Create and execute a prepared statement with the provided parameters - - - string - - - array - - - \PDOStatement - - - - $sql - - string - - - $params - - array - - - - affected_rows - \Abstract_Driver::affected_rows() - - Returns number of rows affected by an INSERT, UPDATE, DELETE type query - - - int - - - - - quote_table - \Abstract_Driver::quote_table() - - Quote database table name, and set prefix - - - string - - - string - - - - $table - - string - - - - _prefix - \Abstract_Driver::_prefix() - - Sets the table prefix on the passed string - - - string - - - string - - - - $str - - string - - - - quote_ident - \Abstract_Driver::quote_ident() - - Surrounds the string with the databases identifier escape characters - - - mixed - - - string - - - - $ident - - mixed - - - - _quote - \Abstract_Driver::_quote() - - Helper method for quote_ident - - - mixed - - - mixed - - - - $str - - mixed - - - - get_schemas - \Abstract_Driver::get_schemas() - - Return schemas for databases that list them - - - array - - - - - get_tables - \Abstract_Driver::get_tables() - - Return list of tables for the current database - - - array - - - - - get_dbs - \Abstract_Driver::get_dbs() - - Return list of dbs for the current connection, if possible - - - array - - - - - get_views - \Abstract_Driver::get_views() - - Return list of views for the current database - - - array - - - - - get_sequences - \Abstract_Driver::get_sequences() - - Return list of sequences for the current database, if they exist - - - array - - - - - get_functions - \Abstract_Driver::get_functions() - - Return list of function for the current database - - - array - - - - - get_procedures - \Abstract_Driver::get_procedures() - - Return list of stored procedures for the current database - - - array - - - - - get_triggers - \Abstract_Driver::get_triggers() - - Return list of triggers for the current database - - - array - - - - - get_system_tables - \Abstract_Driver::get_system_tables() - - Retreives an array of non-user-created tables for -the connection/database - - - array - - - - - get_columns - \Abstract_Driver::get_columns() - - Retrieve column information for the current database table - - - string - - - array - - - - $table - - string - - - - get_types - \Abstract_Driver::get_types() - - Retrieve list of data types for the database - - - array - - - - - driver_query - \Abstract_Driver::driver_query() - - Method to simplify retreiving db results for meta-data queries - - - string - - - bool - - - array - - - - $sql - - string - - - $filtered_index - TRUE - bool - - - - num_rows - \Abstract_Driver::num_rows() - - Return the number of rows returned for a SELECT query - - - - int - - - - - truncate - \Abstract_Driver::truncate() - - Empty the passed table - - - string - - - void - - - - $table - - string - - - - insert_batch - \Abstract_Driver::insert_batch() - - Create sql for batch insert - - - string - - - array - - - string - - - - $table - - string - - - $data - array() - array - - - - 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 - - - - Query - Free Query Builder / Database Abstraction Layer - - - - - - - - - \Table_Builder_Interface - Table_Builder - \Table_Builder - - Abstract class defining database / table creation methods - - - - - - $name - '' - - The name of the current table - - - string - - - - - $driver - NULL - - Driver for the current db - - - \Driver_Interface - - - - - $table_options - array() - - Options for the current table - - - array - - - - - __construct - \Table_Builder::__construct() - - Constructor - - - string - - - array - - - \Driver_Interface - - - \Table_Builder - - - - $name - - string - - - $options - array() - array - - - $driver - NULL - \Driver_Interface - - - - add_column - \Table_Builder::add_column() - - - - - - $column_name - - - - - $type - NULL - - - - $options - array() - - - - - remove_column - \Table_Builder::remove_column() - - - - - - $column_name - - - - - - rename_column - \Table_Builder::rename_column() - - - - - - $old_name - - - - - $new_name - - - - - - change_column - \Table_Builder::change_column() - - - - - - $column_name - - - - - $new_column_type - - - - - $options - array() - - - - - has_column - \Table_Builder::has_column() - - - - - - $column_name - - - - - $options - array() - - - - - add_index - \Table_Builder::add_index() - - - - - - $columns - - - - - $options - array() - - - - - remove_index - \Table_Builder::remove_index() - - - - - - $columns - - - - - $options - array() - - - - - remove_index_by_name - \Table_Builder::remove_index_by_name() - - - - - - $name - - - - - - has_index - \Table_Builder::has_index() - - - - - - $columns - - - - - $options - array() - - - - - add_foreign_key - \Table_Builder::add_foreign_key() - - - - - - $columns - - - - - $referenced_table - - - - - $referenced_columns - array('id') - - - - $options - array() - - - - - drop_foreign_key - \Table_Builder::drop_foreign_key() - - - - - - $columns - - - - - $constraint - NULL - - - - - has_foreign_key - \Table_Builder::has_foreign_key() - - - - - - $columns - - - - - $constraint - NULL - - - - - exists - \Table_Builder::exists() - - - - - - - drop - \Table_Builder::drop() - - - - - - - rename - \Table_Builder::rename() - - - - - - $new_table_name - - - - - - get_columns - \Table_Builder::get_columns() - - - - - - - create - \Table_Builder::create() - - - - - - - update - \Table_Builder::update() - - - - - - - save - \Table_Builder::save() - - - - - - - reset - \Table_Builder::reset() - - - - - - - eJy9V9tu2zgQfaa+YgIYiBzU0W7Rp+5mm16BtmmLBbLYR4EixxYRiRJIyo1Q5N/Lm2THsWOksOsXU8OZM8NzhiL196u2bJPs7CyBM/i3Q9XbgRt/UIjBAG86UXFUkME7amhBNcLrQhtFmRGNhCvao4pRly1lN3SBhAxYcEk7UzaKkGtRN6bs4dM5/E+VQulnWdP2SixKQ94OI0jZFJ7/8edzmLm/F96vEvIGCCmNafXLLFsIU3bFOWvqjC4FNS9sJdkqZyUYSo3B37q3pai06dQCG2mDzrubjDUcM15QPovONjBLkiyD2cF+ycDswBewimoNHOdCCrkAPhCagR1UCEwh9azWaFnjeoNXWC1Rd8VgvHaheZTJLyOkuWcHUbcV1ijNxkT+URpUc8oQfiQJcRUTm+C6RJC0RmjmYOyYdU4zE+r0HpdLqsCuyy7EPWcJaVVjkBnkMPGhF3B6+tca5jsllraSeaPuQfJihRdcVjWNyGJJDcKEB4gL+Prf1dU69rfW8aYfgG/UazuP9pug3idvIsJFcEqnHv6w/TCW+9ZmMqpjplHuORTYUkXrSGmgcN3uq4JJLHN9ZpO0gabgo9B2vtzokshAV9juh3knw17OczbUlfr8z8Z8K1qe7cwXZZkm5EdCyMSUQs/+iZ3g4RyjRMwhhRPAujV9OsBPbZCPGsK2apLXaPdwus1lVanVjZC7tUxC57KrqjRW+SDVWHx0GOMjc97NGu8O3g8O7sT2QtXVEr7ELX/wnttUmXJudXY500n4z6PWpm8xirhNeS9s4GETU2HdLHEb7KNBzmEMaio+FCLx+75gVlK52JoxxkeLW9MTF1NSvQP3MZRjtMZHyfH293aGcCmHdetfa4ODYeRF76kPb6M9kj0p6zHU+tAoFAsJn7H/vZrNQ+L8Bvv19Suco91jDHnu35X3TdFvZOdU8NPpE7Xiqml3ZQ9HCRX2EF47F3bL9wswxxDRn5Oz74LjeAk7uoZ4K7TR6R6iH5sPr9LUv/jCubhnwyzQDB2whnscSl+ze3fao9Ppb9H4GF1dy/d4aLqM84QMF45BJneBIK8gWldYhLwcjEMJ/sYTbQo1GmfaoaCfHSu6c98i7yX3F3CvaNFVtivVuftk+wnccskZ - - - - Query - Free Query Builder / Database Abstraction Layer - - - - - - - - \InvalidArgumentException - BadDBDriverException - \BadDBDriverException - - Generic exception for bad drivers - - - - - - - - Connection_Manager - \Connection_Manager - - Connection manager class to manage connections for the -Query method - - - - - - $connections - array() - - Map of named database connections - - - array - - - - - $instance - null - - Class instance variable - - - \Connection_Manager - - - - - __construct - \Connection_Manager::__construct() - - Private constructor to prevent multiple instances - - - - - - __clone - \Connection_Manager::__clone() - - Private clone method to prevent cloning - - - - - - __wakeup - \Connection_Manager::__wakeup() - - Make sure serialize/deseriaze doesn't work - - - - \DomainException - - - - - get_instance - \Connection_Manager::get_instance() - - Return a connection manager instance - - - - \Connection_Manager - - - - - get_connection - \Connection_Manager::get_connection() - - Returns the connection specified by the name given - - - mixed - - - \Query_Builder - - - \InvalidArgumentException - - - - $name - '' - mixed - - - - connect - \Connection_Manager::connect() - - Parse the passed parameters and return a connection - - - array - object - - - \Query_Builder - - - \BadConnectionException - - - - $params - - array|object - - - - parse_params - \Connection_Manager::parse_params() - - Parses params into a dsn and option array - - - \ArrayObject - - - \BadDBDriverException - - - - $params - - \ArrayObject - - - - create_dsn - \Connection_Manager::create_dsn() - - Create the dsn from the db type and params - - - string - - - array - object - - - string - - - - $dbtype - - string - - - $params - - array|object - - - - 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 - - - - Query - Free Query Builder / Database Abstraction Layer - - - - - - - - SQL_Interface - \SQL_Interface - - parent for database manipulation subclasses - - - - - - limit - \SQL_Interface::limit() - - Get database specific sql for limit clause - - - - string - - - int - - - int - - - string - - - - $sql - - string - - - $limit - - int - - - $offset - FALSE - int - - - - explain - \SQL_Interface::explain() - - Modify the query to get the query plan - - - string - - - string - - - - $sql - - string - - - - random - \SQL_Interface::random() - - Get the sql for random ordering - - - - string - - - - - db_list - \SQL_Interface::db_list() - - Returns sql to list other databases - - - string - - - - - table_list - \SQL_Interface::table_list() - - Returns sql to list tables - - - string - - - - - system_table_list - \SQL_Interface::system_table_list() - - Returns sql to list system tables - - - string - - - - - view_list - \SQL_Interface::view_list() - - Returns sql to list views - - - string - - - - - trigger_list - \SQL_Interface::trigger_list() - - Returns sql to list triggers - - - string - - - - - function_list - \SQL_Interface::function_list() - - Return sql to list functions - - - NULL - - - - - procedure_list - \SQL_Interface::procedure_list() - - Return sql to list stored procedures - - - string - - - - - sequence_list - \SQL_Interface::sequence_list() - - Return sql to list sequences - - - string - - - - - type_list - \SQL_Interface::type_list() - - Return sql to list database field types - - - string - array - - - - - column_list - \SQL_Interface::column_list() - - Get information about the columns in the -specified table - - - string - - - string - - - - $table - - string - - - - eJytVk1v1DAQPSe/Yg49bKt2A1VPfIgW+iHQglQK4rhynElibWK7/ihEwH9n7CS7rdoVWcRe1pmd997Msz3ZV290rdPs4CCFA7j2aDpahPWlQewD8NaLpkADGZwzx3JmEc5y6wzjTigJC9ahGVCnzLtamST5Ilrl6g4+zOEbMwZl/JUr3RlR1S55N65gxvfh+NnzYzgKXycxrxFyBUlSO6ftiyyrhKt9PueqzdidYO6EZLOx2JDNUVrs8yld16KxzpsKlSTQ3K8yrgrMipwVR0NyBGrGV6wi4MiVpWmWwdF/+6Sjs5qRBQ5KZaAYPWyZFNo3LJpofc4bZi3a0cmhONj0STlj8NyIOzQ2liykQ1MyjnBzvVi+Xz/9TNMkyCeEvUK3EbYauSgFB3vbxJIa0QoHpO/JGEqPkFM27HH/RB2wFigiZAV7hLwfphJgL7I8iqqytDiEDdKuyIEkhLI00T6nLYHSy/40RZZZEDgcKA9HkteXZ4ubi/2X9/r6qApRduBqhNt4Vp2CinrdBHTD5KanLV1MKQx/EJWQsbQHNVwNeqObhslCtaAM3ZmB7ilDp2j2VLMHcp8jzkY56rYR1gFdNdycLLuRnCJS5MtA8ncVYm92JY+Yify2sw7bf5Lpoctd1O4Eft9RJUCmekXDrQo3dDe3etRWjQcSI+qxxqevi8UWhXExTcI6ZbAAbRTHwptdd2WNm6iGdGUl33nvB9g0kfUULAU2BbhOb9X7RS8u1m3bKgI+oRiGgZA0Btp+rrNc+X48cNX4lk6JkOExJg+DmByOB3fbmFr/OM2PXqivrceGCn+HN9uFLECVwY/l+q0xpz8AfwATFHEP - - - - Query - Free Query Builder / Database Abstraction Layer - - - - - - - - - \Query_Builder_Interface - Query_Builder - \Query_Builder - - Convienience class for creating sql queries - also the class that -instantiates the specific db driver - - - - - - $select_string - '' - - Compiled 'select' clause - - - \type - - - - - $from_string - - - Compiled 'from' clause - - - \type - - - - - $set_string - - - Compiled arguments for insert / update - - - string - - - - - $order_string - - - Order by clause - - - string - - - - - $group_string - - - Group by clause - - - string - - - - - $set_array_keys - array() - - Keys for insert/update statement - - - array - - - - - $order_array - array() - - Key/val pairs for order by clause - - - array - - - - - $group_array - array() - - Key/val pairs for group by clause - - - array - - - - - $values - array() - - Values to apply to prepared statements - - - array - - - - - $where_values - array() - - Values to apply to where clauses in prepared statements - - - array - - - - - $limit - - - Value for limit string - - - \type - - - - - $offset - - - Value for offset in limit string - - - int - - - - - $query_map - array() - - Query component order mapping -for complex select queries - Format: -array( - 'type' => 'where', - 'conjunction' => ' AND ', - 'string' => 'k=?' -) - - array - - - - - $having_map - - - Map for having clause - - - array - - - - - $conn_name - "" - - Convenience property for connection management - - - string - - - - - $queries - - - List of queries executed - - - array - - - - - $explain - - - Whether to do only an explain on the query - - - bool - - - - - $db - - - The current database driver - - - \Driver_Interface - - - - - $parser - - - Query parser class instance - - - \Query_Parser - - - - - $util - - - Alias to $this->db->util - - - \DB_Util - - - - - $sql - - - Alias to $this->db->sql - - - \SQL_Interface - - - - - __construct - \Query_Builder::__construct() - - Constructor - - - \Abstract_driver - - - \ArrayObject - - - - $db - - \Abstract_driver - - - $params - - \ArrayObject - - - - __destruct - \Query_Builder::__destruct() - - Destructor - - - - - _select - \Query_Builder::_select() - - Method to simplify select_ methods - - - string - - - string - - - string - - - - $field - - string - - - $as - FALSE - string - - - - select - \Query_Builder::select() - - Specifies rows to select in a query - - - string - - - \Query_Builder - - - - $fields - - string - - - - select_max - \Query_Builder::select_max() - - Selects the maximum value of a field from a query - - - string - - - string - - - \Query_Builder - - - - $field - - string - - - $as - FALSE - string - - - - select_min - \Query_Builder::select_min() - - Selects the minimum value of a field from a query - - - string - - - string - - - \Query_Builder - - - - $field - - string - - - $as - FALSE - string - - - - select_avg - \Query_Builder::select_avg() - - Selects the average value of a field from a query - - - string - - - string - - - \Query_Builder - - - - $field - - string - - - $as - FALSE - string - - - - select_sum - \Query_Builder::select_sum() - - Selects the sum of a field from a query - - - string - - - string - - - \Query_Builder - - - - $field - - string - - - $as - FALSE - string - - - - distinct - \Query_Builder::distinct() - - Adds the 'distinct' keyword to a query - - - \Query_Builder - - - - - explain - \Query_Builder::explain() - - Tell the database to give you the query plan instead of result set - - - \Query_Builder - - - - - from - \Query_Builder::from() - - Specify the database table to select from - - - string - - - \Query_Builder - - - - $tblname - - string - - - - _like - \Query_Builder::_like() - - Simplify 'like' methods - - - string - - - mixed - - - string - - - string - - - string - - - \Query_Builder - - - - $field - - string - - - $val - - mixed - - - $pos - - string - - - $like - 'LIKE' - string - - - $conj - 'AND' - string - - - - like - \Query_Builder::like() - - Creates a Like clause in the sql statement - - - string - - - mixed - - - string - - - \Query_Builder - - - - $field - - string - - - $val - - mixed - - - $pos - 'both' - string - - - - or_like - \Query_Builder::or_like() - - Generates an OR Like clause - - - string - - - mixed - - - string - - - \Query_Builder - - - - $field - - string - - - $val - - mixed - - - $pos - 'both' - string - - - - not_like - \Query_Builder::not_like() - - Generates a NOT LIKE clause - - - string - - - mixed - - - string - - - \Query_Builder - - - - $field - - string - - - $val - - mixed - - - $pos - 'both' - string - - - - or_not_like - \Query_Builder::or_not_like() - - Generates a OR NOT LIKE clause - - - string - - - mixed - - - string - - - \Query_Builder - - - - $field - - string - - - $val - - mixed - - - $pos - 'both' - string - - - - _having - \Query_Builder::_having() - - Simplify building having clauses - - - mixed - - - mixed - - - string - - - \Query_Builder - - - - $key - - mixed - - - $val - array() - mixed - - - $conj - 'AND' - string - - - - having - \Query_Builder::having() - - Generates a 'Having' clause - - - mixed - - - mixed - - - \Query_Builder - - - - $key - - mixed - - - $val - array() - mixed - - - - or_having - \Query_Builder::or_having() - - Generates a 'Having' clause prefixed with 'OR' - - - mixed - - - mixed - - - \Query_Builder - - - - $key - - mixed - - - $val - array() - mixed - - - - _where - \Query_Builder::_where() - - Do all the repeditive stuff for where/having type methods - - - mixed - - - mixed - - - array - - - - $key - - mixed - - - $val - array() - mixed - - - - _where_string - \Query_Builder::_where_string() - - Simplify generating where string - - - mixed - - - mixed - - - string - - - \Query_Builder - - - - $key - - mixed - - - $val - array() - mixed - - - $conj - 'AND' - string - - - - _where_in - \Query_Builder::_where_in() - - Simplify where_in methods - - - mixed - - - mixed - - - string - - - string - - - \Query_Builder - - - - $key - - mixed - - - $val - array() - mixed - - - $in - 'IN' - string - - - $conj - 'AND' - string - - - - where - \Query_Builder::where() - - Specify condition(s) in the where clause of a query -Note: this function works with key / value, or a -passed array with key / value pairs - - - mixed - - - mixed - - - mixed - - - \Query_Builder - - - - $key - - mixed - - - $val - array() - mixed - - - $escape - NULL - mixed - - - - or_where - \Query_Builder::or_where() - - Where clause prefixed with "OR" - - - string - - - mixed - - - \Query_Builder - - - - $key - - string - - - $val - array() - mixed - - - - where_in - \Query_Builder::where_in() - - Where clause with 'IN' statement - - - mixed - - - mixed - - - \Query_Builder - - - - $field - - mixed - - - $val - array() - mixed - - - - or_where_in - \Query_Builder::or_where_in() - - Where in statement prefixed with "or" - - - string - - - mixed - - - \Query_Builder - - - - $field - - string - - - $val - array() - mixed - - - - where_not_in - \Query_Builder::where_not_in() - - WHERE NOT IN (FOO) clause - - - string - - - mixed - - - \Query_Builder - - - - $field - - string - - - $val - array() - mixed - - - - or_where_not_in - \Query_Builder::or_where_not_in() - - OR WHERE NOT IN (FOO) clause - - - string - - - mixed - - - \Query_Builder - - - - $field - - string - - - $val - array() - mixed - - - - set - \Query_Builder::set() - - Sets values for inserts / updates / deletes - - - mixed - - - mixed - - - \Query_Builder - - - - $key - - mixed - - - $val - NULL - mixed - - - - join - \Query_Builder::join() - - Creates a join phrase in a compiled query - - - string - - - string - - - string - - - \Query_Builder - - - - $table - - string - - - $condition - - string - - - $type - '' - string - - - - group_by - \Query_Builder::group_by() - - Group the results by the selected field(s) - - - mixed - - - \Query_Builder - - - - $field - - mixed - - - - order_by - \Query_Builder::order_by() - - Order the results by the selected field(s) - - - string - - - string - - - \Query_Builder - - - - $field - - string - - - $type - "" - string - - - - limit - \Query_Builder::limit() - - Set a limit on the current sql statement - - - int - - - int - - - \Query_Builder - - - - $limit - - int - - - $offset - FALSE - int - - - - group_start - \Query_Builder::group_start() - - Adds a paren to the current query for query grouping - - - \Query_Builder - - - - - or_group_start - \Query_Builder::or_group_start() - - Adds a paren to the current query for query grouping, -prefixed with 'OR' - - - \Query_Builder - - - - - or_not_group_start - \Query_Builder::or_not_group_start() - - Adds a paren to the current query for query grouping, -prefixed with 'OR NOT' - - - \Query_Builder - - - - - group_end - \Query_Builder::group_end() - - Ends a query group - - - \Query_Builder - - - - - get - \Query_Builder::get() - - Select and retrieve all records from the current table, and/or -execute current compiled query - - - - int - - - int - - - \PDOStatement - - - - $table - '' - mixed - - - $limit - FALSE - int - - - $offset - FALSE - int - - - - get_where - \Query_Builder::get_where() - - Convience method for get() with a where clause - - - string - - - array - - - int - - - int - - - \PDOStatement - - - - $table - - string - - - $where - array() - array - - - $limit - FALSE - int - - - $offset - FALSE - int - - - - count_all - \Query_Builder::count_all() - - Retreive the number of rows in the selected table - - - string - - - int - - - - $table - - string - - - - count_all_results - \Query_Builder::count_all_results() - - Retrieve the number of results for the generated query - used -in place of the get() method - - - string - - - int - - - - $table - '' - string - - - - insert - \Query_Builder::insert() - - Creates an insert clause, and executes it - - - string - - - mixed - - - \PDOStatement - - - - $table - - string - - - $data - array() - mixed - - - - insert_batch - \Query_Builder::insert_batch() - - Creates and executes a batch insertion query - - - string - - - array - - - \PDOStatement - - - - $table - - string - - - $data - array() - array - - - - update - \Query_Builder::update() - - Creates an update clause, and executes it - - - string - - - mixed - - - \PDOStatement - - - - $table - - string - - - $data - array() - mixed - - - - delete - \Query_Builder::delete() - - Deletes data from a table - - - string - - - mixed - - - \PDOStatement - - - - $table - - string - - - $where - '' - mixed - - - - _get_compile - \Query_Builder::_get_compile() - - Helper function for returning sql strings - - - string - - - string - - - bool - - - - - $type - - string - - - $table - - string - - - $reset - - bool - - - - get_compiled_select - \Query_Builder::get_compiled_select() - - Returns the generated 'select' sql query - - - string - - - bool - - - string - - - - $table - '' - string - - - $reset - TRUE - bool - - - - get_compiled_insert - \Query_Builder::get_compiled_insert() - - Returns the generated 'insert' sql query - - - string - - - bool - - - string - - - - $table - - string - - - $reset - TRUE - bool - - - - get_compiled_update - \Query_Builder::get_compiled_update() - - Returns the generated 'update' sql query - - - string - - - bool - - - string - - - - $table - '' - string - - - $reset - TRUE - bool - - - - get_compiled_delete - \Query_Builder::get_compiled_delete() - - Returns the generated 'delete' sql query - - - string - - - bool - - - string - - - - $table - "" - string - - - $reset - TRUE - bool - - - - reset_query - \Query_Builder::reset_query() - - Clear out the class variables, so the next query can be run - - - void - - - - - _run - \Query_Builder::_run() - - Executes the compiled query - - - string - - - string - - - string - - - array - null - - - \PDOStatement - - - - $type - - string - - - $table - - string - - - $sql - NULL - string - - - $vals - NULL - array|null - - - - __call - \Query_Builder::__call() - - Calls a function further down the inheritence chain - - - string - - - array - - - mixed - - - \BadMethodCallException - - - - $name - - string - - - $params - - array - - - - _append_query - \Query_Builder::_append_query() - - Convert the prepared statement into readable sql - - - array - - - string - - - string - - - void - - - - $vals - - array - - - $sql - - string - - - $total_time - - string - - - - _append_map - \Query_Builder::_append_map() - - Add an additional set of mapping pairs to a internal map - - - string - - - string - - - string - - - void - - - - $conjunction - '' - string - - - $string - '' - string - - - $type - '' - string - - - - _compile_type - \Query_Builder::_compile_type() - - Sub-method for generating sql strings - - - string - - - string - - - string - - - - $type - '' - string - - - $table - '' - string - - - - _compile - \Query_Builder::_compile() - - String together the sql statements for sending to the db - - - string - - - string - - - \$string - - - - $type - '' - string - - - $table - '' - string - - - - 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 - - - - Query - Free Query Builder / Database Abstraction Layer - - - - - - - - \Abstract_Driver - SQLite - \SQLite - - SQLite specific class - Extends PDO to simplify cross-database issues - - - - - $statement - - - Reference to the last executed sql query - - - \PDOStatement - - - - - __construct - \SQLite::__construct() - - Open SQLite Database - - - string - - - string - - - string - - - array - - - - $dsn - - string - - - $user - NULL - string - - - $pass - NULL - string - - - $driver_options - array() - array - - - - truncate - \SQLite::truncate() - - Empty a table - - - string - - - - $table - - string - - - - get_tables - \SQLite::get_tables() - - List tables for the current database - - - mixed - - - - - get_system_tables - \SQLite::get_system_tables() - - List system tables for the current database - - - string[] - - - - - insert_batch - \SQLite::insert_batch() - - Create sql for batch insert - - - string - - - array - - - string - - - - $table - - string - - - $data - array() - array - - - - eJy1VlFv4zYMfrZ/BVEEiFMk8Xa4p9zatUtSDEPW7poc9jAMPllWYqG2rEp0cV7R/z5KtpOul24YcM1LDIr8SH38SPuHH3Wuw/j0NIRT+FgL09CDe74yQrQG+KmWRSYMxLBgyFJmBVymFg3jKCsFK9YI00VdaMbv2E4EQY8FF6zGvDJBsJFlhXkDv0zhd2aMUP6UV7oxcpdjMO+fIOIjePfd9+9g4v7ee79CqjsIghxR21kc7yTmdTrlVRmzB8nwPVUSH3IWkgtlRetP7jqXhcXa7ESlKGha38W8ykScpSybdM4UGIdhHMPkm/3Cntn1x5VEAVYLLreSAy+YtS84g0P5tk5748LIB2GsL85H9VjiCwqV2X0rktYTHsMwcFkDAroVW0FEcwFYAeYCCAApUvAaRQb2voB7n5ScfcDFAzPw2+JmjQxFKRQ6axwG2lQouIsZ2P7ow7NEN1qovrBeJAdQzQwrgcqUageDzKpj5tqSio7YtWPqmZ2kwxpC8bdNKu00aPsy65SaCdtatdJMEk6HaGqOkcs7btOcXX9arcYtdPd8FPXMW6PRKAwewyAgaSzW1yAtWFnqooHPRCDdeBZrhnmMFcnpM/lRnUTPbPY8+0nn+ujKeDrpCulqGH0IgyfH5rfV3r47y1JjAwyoL8WrbdkfHuGR7qA4tT1qvQ58dC3PmSX4ze2n6/nlZgmOvlL+xVzsuHVMawRVga21rgzCtjJej6TbmhVAY1wylU3Jd+BEeQbDxXK1JKir25tf4WQ4bRNPhydDJ7tggLm0k/O9FimiM3k9Rw5l5D2NoLFX8DLgjRlfSZozX7Ld35XXbukhZF/NR1djKb+I7JUO7AQmLV7Usd8R1V/svpice4ekoNxRe/mBofzHqdkzk6XJVhYoTOS8J+dbgTy/LIqI1sBsdrXczH9OLtfrm/loDEPFSjF8a7l68mxjqVP/m8NWzX/8+S80tsgv2IzjTsqVosF2enbp2qFNStqatFm7CXH3xpyhWwTVFphqgNYBqZrRop0eiG2Xx/AfGG/O3dwIhr5wz1nKqJkg6e1m8D8H/+WGJY6PcPsKs22OxCfs1sS4xfh6i25Ijo49VSE8uC8MpjWBuZj+RbWVRqTSZM863fPqFrZn8Yle1kuVuSZ0JLfre0qfNH8DnkaIkg== - - - - Query - Free Query Builder / Database Abstraction Layer - - - - - - - - \Abstract_SQL - SQLite_SQL - \SQLite_SQL - - SQLite Specific SQL - - - - - - explain - \SQLite_SQL::explain() - - Get the query plan for the sql query - - - string - - - string - - - - $sql - - string - - - - random - \SQLite_SQL::random() - - Random ordering keyword - - - string - - - - - db_list - \SQLite_SQL::db_list() - - Returns sql to list other databases - - - NULL - - - - - table_list - \SQLite_SQL::table_list() - - Returns sql to list tables - - - string - - - - - system_table_list - \SQLite_SQL::system_table_list() - - Overridden in SQLite class - - - string - - - - - view_list - \SQLite_SQL::view_list() - - Returns sql to list views - - - string - - - - - trigger_list - \SQLite_SQL::trigger_list() - - Returns sql to list triggers - - - NULL - - - - - function_list - \SQLite_SQL::function_list() - - Return sql to list functions - - - NULL - - - - - procedure_list - \SQLite_SQL::procedure_list() - - Return sql to list stored procedures - - - NULL - - - - - sequence_list - \SQLite_SQL::sequence_list() - - Return sql to list sequences - - - NULL - - - - - type_list - \SQLite_SQL::type_list() - - SQL to show list of field types - - - string[] - - - - - column_list - \SQLite_SQL::column_list() - - SQL to show infromation about columns in a table - - - string - - - string - - - - $table - - string - - - - eJzNV21P2zAQ/uz8ilM0KQWNZkN82kCj0IwxlRZCEaBpQm7iNhaJHWwHqBD/fee8wGDtRCXe+sXO5Z7zPXe583X9W57kjr+87MAyHBRMTXFj998VY5UAtgqexkyBD11q6IhqBp2RNopGhksBPTplqkZt5jQ6pxNGSGMLNmlhEqkIGfJMmmQKP9twTJVionwbyXyq+CQxZLvZQStagtVPn1dhxS5rpV7KxTkQkhiT6y++P+EmKUbtSGY+veTUrKEn/v2ZKY+Y0KzSR/U84ak2hZowKRDULs79SMbMj0c0XqmVEeg7ju/DyrP9nCayhwc9bhgc5iziYx7Z50cRg3vndTFqhF3FL5nSpWtRSrWuLZ3hAuzaMBHru2SUwhvHIfZQgpZ2mAGTMLgo05inVMBYqlKkL9JKbBVLZXRE0QzQFBcT+IAKlVgxjJuo5VbkOyQvRhg0GBei+gTYNRrnomVRSw65cQipYW5wst/r7Pbh4CgITwH3fbixarfuV4fcWmefN+B35EMqYpmBVPjpWkbnbHqFD/d8n0JMlUZaDzl5EHb63cFea8l7aQ7lgbrMlpGQcm0AawhrMa4rUf/Dp3/U681hE4/OrIlHdCzgDXig/+kM9/+bjhIzi8P6+rotKULIYdALtofgCpox1wq+h4M9cPFkWzYZ1YapUn78IwgDcM00Z+6GV1r2rHwQdoMQtk5rE9ANDrcdNP7CIRpgnSsex0wAF02/KEt+sRDpKTLMzuZG6o2yfcnZ1YJMLGSBXMOsRMPfWYYN8KxR7xXSOfOLx9ttYrv5AiVbY940kw9INJ4txKLZvB8a2kjFYsiVjFhcqMX66B3qHfFheJuLaDEeDeiNaNhxBf3Xibyqr7YxjDlLY7DlOq9b/Po9r1QQNIsJzpp02vJ2+8NgJwi9j+CFQadn12FwMrTrVm+w5S29IlsuxkpmtHSbjmRhIJJpkWG/wN5Pq2tu3mB29/JpXbQyXMWlwj4aZvbDzs5ep75a0THZcr12pdn23GbEucXBOBCxTVHdYXFp43+HPxdyKDQ= - - - - Query - Free Query Builder / Database Abstraction Layer - - - - - - - - \DB_Util - SQLite_Util - \SQLite_Util - - SQLite-specific backup, import and creation methods - - - - - - create_table - \SQLite_Util::create_table() - - Convenience public function to create a new table - - - - string - - - array - - - array - - - array - - - string - - - - $name - - string - - - $columns - - array - - - $constraints - array() - array - - - $indexes - array() - array - - - - delete_table - \SQLite_Util::delete_table() - - SQL to drop the specified table - - - string - - - string - - - - $name - - string - - - - backup_data - \SQLite_Util::backup_data() - - Create an SQL backup file for the current database's data - - - - array - - - string - - - - $excluded - array() - array - - - - backup_structure - \SQLite_Util::backup_structure() - - Create an SQL backup file for the current database's structure - - - string - - - - - query - - - - - - - - - - - - quote - - - - - - - - - - - - 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 - - - - Query - Free Query Builder / Database Abstraction Layer - - - - - - - - \Abstract_SQL - Firebird_SQL - \Firebird_SQL - - Firebird Specific SQL - - - - - - limit - \Firebird_SQL::limit() - - Limit clause - - - string - - - int - - - int - - - string - - - - $sql - - string - - - $limit - - int - - - $offset - FALSE - int - - - - explain - \Firebird_SQL::explain() - - Get the query plan for the sql query - - - string - - - string - - - - $sql - - string - - - - random - \Firebird_SQL::random() - - Random ordering keyword - - - string - - - - - db_list - \Firebird_SQL::db_list() - - Returns sql to list other databases - - - NULL - - - - - table_list - \Firebird_SQL::table_list() - - Returns sql to list tables - - - string - - - - - system_table_list - \Firebird_SQL::system_table_list() - - Returns sql to list system tables - - - string - - - - - view_list - \Firebird_SQL::view_list() - - Returns sql to list views - - - string - - - - - trigger_list - \Firebird_SQL::trigger_list() - - Returns sql to list triggers - - - string - - - - - function_list - \Firebird_SQL::function_list() - - Return sql to list functions - - - string - - - - - procedure_list - \Firebird_SQL::procedure_list() - - Return sql to list stored procedures - - - string - - - - - sequence_list - \Firebird_SQL::sequence_list() - - Return sql to list sequences - - - string - - - - - column_list - \Firebird_SQL::column_list() - - Return sql to list columns of the specified table - - - string - - - string - - - - $table - - string - - - - type_list - \Firebird_SQL::type_list() - - SQL to show list of field types - - - string - - - - - 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 - - - - Query - Free Query Builder / Database Abstraction Layer - - - - - - - - \PDOStatement - Firebird_Result - \Firebird_Result - - Firebird result class to emulate PDOStatement Class - only implements -data-fetching methods - - - - - - $statement - - - Reference to fbird resource - - - resource - - - - - $row - - - Current row in result array - - - int - - - - - $result - array() - - Data pulled from query - - - mixed - - - - - __construct - \Firebird_Result::__construct() - - Create the object by passing the resource for -the query - - - resource - - - - $link - - resource - - - - bindColumn - \Firebird_Result::bindColumn() - - Invalidate method for data consistency - - - mixed - - - mixed - - - int - - - mixed - - - array - - - NULL - - - - $column - - mixed - - - $param - - mixed - - - $type - NULL - int - - - $maxlen - NULL - mixed - - - $driverdata - NULL - array - - - - bindParam - \Firebird_Result::bindParam() - - Invalidate method for data consistency - - - mixed - - - mixed - - - int - - - mixed - - - array - - - NULL - - - - $parameter - - mixed - - - $variable - - mixed - - - $data_type - NULL - int - - - $maxlen - NULL - mixed - - - $driverdata - NULL - array - - - - bindValue - \Firebird_Result::bindValue() - - Invalidate method for data consistency - - - mixed - - - mixed - - - int - - - NULL - - - - $parameter - - mixed - - - $variable - - mixed - - - $data_type - NULL - int - - - - execute - \Firebird_Result::execute() - - Run a prepared statement query - - - array - - - \Firebird_Result - - - - $args - NULL - array - - - - fetch - \Firebird_Result::fetch() - - Emulate PDO fetch public function - - - int - - - mixed - - - mixed - - - mixed - - - - $fetch_style - \PDO::FETCH_ASSOC - int - - - $cursor_orientation - \PDO::FETCH_ORI_NEXT - mixed - - - $cursor_offset - NULL - mixed - - - - fetchAll - \Firebird_Result::fetchAll() - - Emulate PDO fetchAll public function - - - int - - - mixed - - - mixed - - - mixed - - - - $fetch_style - \PDO::FETCH_ASSOC - int - - - $statement - NULL - mixed - - - $ctor_args - NULL - mixed - - - - fetchColumn - \Firebird_Result::fetchColumn() - - Emulate PDOStatement::fetchColumn - - - int - - - mixed - - - - $column_num - 0 - int - - - - fetchObject - \Firebird_Result::fetchObject() - - Emulate PDOStatement::fetchObject, but only for the default use - - - string - - - array - - - \stdClass - - - - $class_name - 'stdClass' - string - - - $ctor_args - array() - array - - - - rowCount - \Firebird_Result::rowCount() - - Return the number of rows affected by the previous query - - - int - - - - - errorCode - \Firebird_Result::errorCode() - - Method to emulate PDOStatement->errorCode - - - string - - - - - errorInfo - \Firebird_Result::errorInfo() - - Method to emulate PDO->errorInfo / PDOStatement->errorInfo - - - array - - - - - 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 - - - - Query - Free Query Builder / Database Abstraction Layer - - - - - - - - \Abstract_Driver - Firebird - \Firebird - - Firebird Database class - PDO-firebird isn't stable, so this is a wrapper of the fbird_ public functions. - - - - - $statement - NULL - - Reference to the last query executed - - - object - - - - - $statement_link - NULL - - Reference to the resource returned by -the last query executed - - - resource - - - - - $trans - NULL - - Reference to the current transaction - - - resource - - - - - $conn - NULL - - Reference to the connection resource - - - resource - - - - - __construct - \Firebird::__construct() - - Open the link to the database - - - string - - - string - - - string - - - array - - - - $dbpath - - string - - - $user - 'SYSDBA' - string - - - $pass - 'masterkey' - string - - - $options - array() - array - - - - truncate - \Firebird::truncate() - - Empty a database table - - - string - - - - $table - - string - - - - exec - \Firebird::exec() - - Execute an sql statement and return number of affected rows - - - string - - - int - - - - $sql - - string - - - - getAttribute - \Firebird::getAttribute() - - Implement for compatibility with PDO - - - int - - - mixed - - - - $attribute - - int - - - - inTransaction - \Firebird::inTransaction() - - Return whether the current statement is in a transaction - - - bool - - - - - lastInsertId - \Firebird::lastInsertId() - - Returns the last value of the specified generator - - - string - - - mixed - - - - $name - NULL - string - - - - query - \Firebird::query() - - Wrapper public function to better match PDO - - - string - - - \Firebird_Result - - - \PDOException - - - - $sql - '' - string - - - - prepare - \Firebird::prepare() - - Emulate PDO prepare - - - string - - - array - - - \Firebird_Result - - - \PDOException - - - - $query - - string - - - $options - array() - array - - - - beginTransaction - \Firebird::beginTransaction() - - Start a database transaction - - - boolean - null - - - - - commit - \Firebird::commit() - - Commit a database transaction - - - bool - - - - - rollBack - \Firebird::rollBack() - - Rollback a transaction - - - bool - - - - - setAttribute - \Firebird::setAttribute() - - Set a connection attribute - - - int - - - mixed - - - bool - - - - $attribute - - int - - - $value - - mixed - - - - prepare_execute - \Firebird::prepare_execute() - - Prepare and execute a query - - - string - - - array - - - \Firebird_Result - - - - $sql - - string - - - $args - - array - - - - quote - \Firebird::quote() - - Method to emulate PDO->quote - - - string - - - int - - - string - - - - $str - - string - - - $param_type - \PDO::PARAM_STR - int - - - - errorInfo - \Firebird::errorInfo() - - Method to emulate PDO->errorInfo / PDOStatement->errorInfo - - - array - - - - - errorCode - \Firebird::errorCode() - - Method to emulate PDO->errorCode - - - array - - - - - prepare_query - \Firebird::prepare_query() - - Bind a prepared query with arguments for executing - - - string - - - array - - - NULL - - - - $sql - - string - - - $params - - array - - - - insert_batch - \Firebird::insert_batch() - - Create sql for batch insert - - - string - - - array - - - string - - - - $table - - string - - - $data - array() - array - - - - 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 - - - - Query - Free Query Builder / Database Abstraction Layer - - - - - - - - \DB_Util - Firebird_Util - \Firebird_Util - - Firebird-specific backup, import and creation methods - - - - - - backup_structure - \Firebird_Util::backup_structure() - - Create an SQL backup file for the current database's structure - - - - string - - - - - backup_data - \Firebird_Util::backup_data() - - Create an SQL backup file for the current database's data - - - - array - - - bool - - - string - - - - $exclude - array() - array - - - $system_tables - FALSE - bool - - - - get_system_tables - - - - - - - - - - - - get_tables - - - - - - - - - - - - query - - - - - - - - - - - - - Implement Backup structure function - - eJytVlFz2kYQfpZ+xZZhKskDKMnkyQ6pMeCUDoba4PYhyTAn6UBXS3fy6WSHyfi/d+9OEtjjdqbT8ILY291vv/12T3z4pUgLNzw5ceEErisq9/igny8lpdYAFxXLEiohhAlRJCIlhVFUKklixQSHOdlTWUedFyS+IzvqOE0uOCeVSoV0nDXLhUr38NsA/iRSUm5OY1HsJdulyhk3T+DHAbx78/Yd9PXXe+OXMX4HjpMqVZSnYbhjKq2iQSzykDwwot5jJeEBM2Mx5SW1/uhepCwrVSV3VHAMGlR3YSwSGiYRSfq1MwaGrhuG0P9hH7fp7CWTNGIy6ZcFjdmWxRBho6qiBywvhFRAeAKxpMR0NKfYsaR80VM40CurqDFOJHugsjRmGwfYXLKHHVWbcl8qmm9QtIyWfvC602unIvqLxgruNaKPUjO+g255nwWmSXFGyrLltLlVLAP6TVGelDC5sL+/u66jyTuYdayJUeQIq+t5zRy2LKOwFRJUSiGu9EAoSOoB80pA1CpGyahJca7lGgukiqRnOy4au6Tow8HWqE2h6xRVhJrCtuJ2Qi3ips2IXJ3vruOg1uvlZAmzvMhorvEvbG2tZ5sDvWskzztznSfN7sdOyv/rln7U0f/erIJIktfSd+m3OKuSZyeREBnqfDw1/7nLuhK/ST40WH7Qe5F1eDmar6YHGSZUUZkzTuExZXEK1guUgAoX03HY1n+eAIZDWN/c6hQmh9Nt7JbeJqe47H5Xpazsf3xlF7Ciw1ljDFBa1NZxaGZgX2R+JcIGWBKXLEMWICplVKrD9qKCRHBPwSPhynKBn4Dmhdq3fQr+kUfCtsjdGnutaAfcLsIVFdK7zzBGD6ct5hO1VWg5zOBQgn21e40eaNGGJjOQEtkdiqizrabz6Xit76+b5RV0vAHqn2NMMPA6eg3QUx53xt4X5qKwp4i3qT3wq/9xS1WcjrLM/32yPD29nK7Hv25Gq9VyHJi6zSiYXpEk0eprBmb02fbQU2ClbZ+OwAM/FhVXfgMWwAd4G0AsuGK8om3iBYns9oisyjlwkmNhkbkDlb7f9Nkd3ZcgtjWuLBVI8WiY2CjN5NwKo11bzM9vvtYMugxfJVJtMK4V0T+wq5db57eOuFNo0JdPqV1aXZrOaWEwl5bGauPon+14PJCswjk0LhZEo1xXAkHsmc7AKU1oosmqfUGNF06h3uZCYLDqgXczueh6Aa7VEJrdbBGfQ+ak8C2tn43sGHyv8Ty9U7aO14M8PT3eM6cnt6W0qV8zOHazxWp6s4bZYr18MXTg4298ZWZ4wflep9fR6Wpp9HkAf4zmt9MV+EduvQZz4AVn3pl73MXF7XzeWI6U+/zVjGxblanWFnu8cIMhdL7wL3w1XeNtNFqsRuP1bLk4+8I7LTw6dBD/KHkwQNt4eXU1W5912kWur9ij9OY986T/kUzx3wFO5bZ541b4hh3gH7e/ASJv4eg= - - - - Query - Free Query Builder / Database Abstraction Layer - - - - - - - - \Abstract_Driver - PgSQL - \PgSQL - - PostgreSQL specifc class - Extends PDO to simplify cross-database issues - - - - - __construct - \PgSQL::__construct() - - Connect to a PosgreSQL database - - - string - - - string - - - string - - - array - - - - $dsn - - string - - - $username - null - string - - - $password - null - string - - - $options - array() - array - - - - truncate - \PgSQL::truncate() - - Empty a table - - - string - - - - $table - - string - - - - get_schemas - \PgSQL::get_schemas() - - Get a list of schemas for the current connection - - - array - - - - - eJy1VE1z2jAQPcu/YsukY8gE3GZyItCWgtOmpeQDOrl0xiNkYWtiS44kp2Uy+e9d2QaSTNJTygXJ+/bp7duVBh+LtPCC/X0P9uGi5HqNC7c+0ZzXH+BzKbKYawhgQi1dUsNhtDRWU2aFkjCla66brE8FZdc04YRsuOATLW2qNCELkSubruFbD66o1lxWUaaKtRZJasl4s4I268Dhu/eH0HV/RxUuE/IaCEmtLUw/CBJh03LZYyoP6K2g9giVBLszM8G4NLzGI7xIRWZsqROuJCb1yuuAqZgH8ZLG3QaMiYHnBQF0X+3nbZw9V8Ymms8vpmAKzsSKAcuoMU9sg10FplxuPk60uOXaVPqqLDhPHBP/Y7mMzbYZUQ2EO88j7lyCPGMlJWcWrALqVDQi4qaRDlPhUIGmOSCRkAnsxUY+97k0XEua8+diBQr7rXT8MIZtpmuAPVW4STEuFHikKJdoOaxKWQ9QFDEMWl0y23YnH+wOGsoyyw525M2+5t3QDqttu9PxyJ1HiFhBG9kKZRo2v0jMTeZ3YDgcwsloOg87VYUwbEJ9v+f2x+gbQeFc2n7/H6Ie6DnYiugce+TeGf+687NtZJgXdo09xL5lL7ZtG3zGZSxFMmp5u0Y1Zu1h+c6HxeXP2Xi0CKHlQ68hwoXf8o8dyqbCdD/cuOlsu5T/Xe0XbrHWTBgLagWGpTynBlZKg005sNI9HxZYPdxY3c4QzfGay3pCXnAi4TZqKNuPbRgMBng7cE/m4TQcL2ByOl+cznDRqhNc+1twcnn2A1pFElU2mZZLuPoaXoaPYbOzBUxPv4duyn5Fb30HG80mj0Fv0HwhsbKcOnGNMN9DHdU8NvU0HYirGx49bcQ9PluhjJ1X1UBHNa6Hb/tftUCs/w== - - - - Query - Free Query Builder / Database Abstraction Layer - - - - - - - \Abstract_SQL - PgSQL_SQL - \PgSQL_SQL - - PostgreSQL specifc SQL - - - - - - explain - \PgSQL_SQL::explain() - - Get the query plan for the sql query - - - string - - - string - - - - $sql - - string - - - - random - \PgSQL_SQL::random() - - Random ordering keyword - - - string - - - - - db_list - \PgSQL_SQL::db_list() - - Returns sql to list other databases - - - string - - - - - table_list - \PgSQL_SQL::table_list() - - Returns sql to list tables - - - string - - - - - system_table_list - \PgSQL_SQL::system_table_list() - - Returns sql to list system tables - - - string - - - - - view_list - \PgSQL_SQL::view_list() - - Returns sql to list views - - - string - - - - - trigger_list - \PgSQL_SQL::trigger_list() - - Returns sql to list triggers - - - string - - - - - function_list - \PgSQL_SQL::function_list() - - Return sql to list functions - - - NULL - - - - - procedure_list - \PgSQL_SQL::procedure_list() - - Return sql to list stored procedures - - - string - - - - - sequence_list - \PgSQL_SQL::sequence_list() - - Return sql to list sequences - - - string - - - - - column_list - \PgSQL_SQL::column_list() - - Return sql to list columns of the specified table - - - string - - - string - - - - $table - - string - - - - type_list - \PgSQL_SQL::type_list() - - SQL to show list of field types - - - string - - - - - eJzVV21v2zYQ/iz9ipsxQHaQWG3RT22GzU7UdYMbp3a2bl8m0BItEZYolqSSGFn223sUJfkl62oHnbPlS2jquTvecy88nn4vUuH6R0cuHMH7ksolLsz6jaTUbsCwZFlMJfhwTjSZEUVhMFNakkizgsOILKmspX4gpU4LCY5zxfJCp0v4uQ8fiJSUV5+jQiwlS1LtnDUr6EY9ePHs+Qs4Mf9eVriM8QUqSbUW6pXvJ0yn5awfFblPrhnRL9Gu35zWoCPK8VQVHuEiZZnSpUxowVGoXy78qIipH89IfFKDUdB3Xd+Hk6/25zY8XhZKJ5JO349ACRqxeQS4bigSJFqQhMLq/KqcNZvnkl1TqarTRRlRCi4TlA2NLnqrKY9VS361eee6jjHroKIfqQadUvhYhU1khMMcg2G21MfMbhtgBcZzSJIDqmI8gW8RYLclReZ4vW+2fNcR5Qxpg3nJbcjpLSpnvGukeq5z5zpOLdYJfrscDX66gF+DyXA8DeDOYO47r13n3pz06/Ldej4hPC5yKCTmqXFnQZc3+GPl7C5eyUpJd9MhDyaDi/Pxu27P+7d9qAyqKlS6gIwpDVhCWHhxXXZqP3/iWWiUbDl0enpqktFxnGkwCs6uoIPqOclpB95Mxu+gI5KwMdgxsA9vg0mwhroYXwEGuOtpmmMaaPrMO27Xz72ekRlPzoMJDH9fExtMz1w0/AQkoi/ZvtxVMrvRZ6GVk2bbksg4Vl5OjK5QRSnNSadvkWqdVCurlwIJ+g684QAr5mowHAWeAWHiNZBaR02++eh0PYxUhJHKisQ7Bu+hSa/3+okoV0uFGfEo5q1o+F8NwP+A/GtGb/Yk3Yj8I9nQsm2gW+2iMrjOqmVgvV3sTFpL+8rON3+B9wdKepudZQV4wtaCI0xi7uv9mouV2im7j76U0vUJNpK61v/IpnEwLjeobNh5yOXFL6PRZ5hsFn9HpRE7vBtKF5LGIGQR0biU+3a/Vm631ieLUjO+W/OrsZuFWo2nLHp0qrRNEjtoWMY6rEsWe2mdhd7h2uBmICjOuzza+/qpxXbjPzK80myLfsObmd07BrDGdo1eMB5Xt810q6M1mg7a0DZIi4qszLHHFXP7arDpgflcXYKfezu0H3ej2BqxBFvZL9CMkzzjJAtFoZjRcFzlZ63GMGY3zNRaXeUb32M6J2Wm7R5TIS+zzNisQSkxTylsljm5ZXmZhxnliU7tV17m+J6IQiGRB4WW2xg/LIZ+zd0q3qu5xAT7zrp6vxnzbdcOUSzm2YgBV2lxU78y5oBBzjDKSN6+d5kp/N3GtKXYmhvq5oJVgT+qGWz9EmvgzfX/Z+itt5t2ZpttVVEj2DJ5j8/8gMfGTZFgtmOoORN9kYpPj7yRSA== - - - - Query - Free Query Builder / Database Abstraction Layer - - - - - - - - \DB_Util - PgSQL_Util - \PgSQL_Util - - Posgres-specific backup, import and creation methods - - - - - - backup_structure - \PgSQL_Util::backup_structure() - - Create an SQL backup file for the current database's structure - - - string - - - - - backup_data - \PgSQL_Util::backup_data() - - Create an SQL backup file for the current database's data - - - array - - - string - - - - $exclude - array() - array - - - - query - - - - - - - - - - - - get_tables - - - - - - - - - - - - - Implement Backup function - - eJytVk1z2zYQPZO/YqPRlKRHEpNMTnac2pbk1h3VsiO5PSQZDUSCImqSoPHhWJPxf8/iQ5Tq9tJpfDEJ7L59+94C1Puf27IN06OjEI7gVlOxxQfzfCkodQtwoVmVUwEpTIgiayIpnK+lEiRTjDcwI1sqfNZZS7J7sqFBsMOCM6JVyUUQLFnNVbmF30bwJxGCNnY34+1WsE2pgvHuCeIsgbev37yFofn3zsZVrLmHICiVauVxmm6YKvV6lPE6JY+MqHfIJN3XrFhGG0ldPIa3Jauk0mJDeYNJI32fZjynab4m+dAHY2IahmkKwx/2F+6UveFyI6gcypZmrGAZrFEn3Q6A1S0XCkiTQyYosYLWFAXL5QtJYd+d1Ovd4kSwRyqkXXZ5ULMnmsODiY7RJdZsoC8fquQwBvUnW9hQtUJDKyrjxHafVURKuNksbmerO8UqoE+KNrmEyYV7/xaGgWkpQKyx4UuROmC4bwgKVlEouABVUsi0sVlB7scmkoCEdIZGUANhYc4ExfcGHFWzlIZBq9foChS6cTPm0FddNvINvoVBgG4t55M5XNVtRWtT68Lz8JkY4/Gj6CQMng3/H+vw/9PDPO6laIkgtTenT5+ySuf0P4tkIONd9qkFixOvV9/ZDafQVyWTww+HI3ASOkUvWaXwuHOtLGufsuUact5ECr6SRmEkK2J4BbRu1bYrZ+rYQgeVLINVzooi9ouDrjmsGVhTgj6Wa7Va4aRijjHLkfmFOhamKyskJVkJfP0XzQwJXDELO2QgEjvbk/Boi+lsOl6aW+3j/HfoRSOUscacZBT1zFhgpDhUxR0ee2rcLtZb+QhzjD8UVGXleVXFN5P58fHldDn+dXW+WMzHTkRDfGK1InkOitsO7CiwYq8pMOnkMxm4EWdcNyreFUvgPbxJIOONYo2mDtjzvL6bzbpK12TtxotXum6gITXGrO3xVub0m717upXAC09ESAWCf7WALsuAnjmnTGhH4tPrL76lPsM7UqgV5nWuxvt2/fQbfBeIs4oL5kxKE9IZtZPSOIVYxitnVmBeu3l5JJXGobQhroipcqs5FnF7BqGhNMfLDptV25b+E6UmbeyY/mStHUD0YCCiZAAe+l9zIjMgURcTdlErf6PiUF1dL6Yfl3B1vZy/GCmI8R1v9go/MXHUG/QMktfZ7Cfwx/nsbrqA+CBssCs3ipKT6CQ8JLa3+282fPpiB7JjZZt5Dl9M7D758IyNTqH3ufnc9DoG+NpDCgf4ycisdUfU30EHKPZGfTbfzCl+wHC82g2urjR+Kkbmd8V3GURxaA== - - - - Query - Free Query Builder / Database Abstraction Layer - - - - - - - - \Abstract_Driver - MySQL - \MySQL - - MySQL specific class - Extends PDO to simplify cross-database issues - - - - - $escape_char - '`' - - Set the backtick as the MySQL escape character - - - string - - - - - __construct - \MySQL::__construct() - - Connect to MySQL Database - - - string - - - string - - - string - - - array - - - - $dsn - - string - - - $username - null - string - - - $password - null - string - - - $options - array() - array - - - - truncate - \MySQL::truncate() - - Empty a table - - - string - - - - $table - - string - - - - eJytVFFv2jAQfnZ+xQlVClRAtqoPEx1dGVCpE9C1pJr2lBrHEIvgpLbTLar633d2Euimrk/NS3y+u+87f3f25y95knvB8bEHx3BTcFXiwq4vFefVBnwtRBpzBQFMqKErqjmMVtooyozIJMxoyVWddZFTtqUbTkiDBRe0MEmmCAnFLjNJCd/68IMqxaXzsiwvldgkhoybFbRZB04+fDyBnv2durhUyC0QkhiT60EQbIRJilWfZbuAPgpqTrGS4MCZCsal5lU8hueJSLUp1IZnEpP6xTZgWcyDeEXjXh2MiYHnBQH03u3zGmXn5fJmBjrnTKwFA5ZSrf+RDA7V62LVbE6UeORKu9pcVg3FfxsuY71vRFQFwpPnEctJEGfJDZiEwwqxjGBboNrZNYJmNOfAEmrzsYOY4tIuHqkCRBVyY+3AI7nKDMeYGI6qrMhmwRD8e//sBeE4kxLjwGQ1RzMvB+wc2XY1OhzFWr62XWiuJN3x13w5avArU/FLH04TLeEoy+086qboYoWNhXUhqzGNIoZOowpm2pa4e+AZyiJNuwfs2v4bdujMdqfjkSePEJyTRl8rhubu2HfhZe8TesUa2jFfC8njtv99cj0YzH+iINEoDG+jq8VVGI2v5/PRYuJbPAdIGiLU1VFFO47z2m6263raNpS8BQnDc2gtpyEsRvPpsioJxtez2Sicgu9Mv9W1MJ3OGf6evbpgFCfPdC2Ovyv1Q+p3YDgcwuVotpx2XL9s151r4PetbftPsA1cmsHgDY1fyNvda2r5Lf07X7r9QE53uSmBAk5h+t8h3DtfGRo8imTUYBdcVN37I5MI3Tt/sBe23Qpv7xZjq+39UxX1fN+qDvaMr8lUxpCtwUkWxe6S9vHJ/QP5G5Og - - - - Query - Free Query Builder / Database Abstraction Layer - - - - - - - - \Abstract_SQL - MySQL_SQL - \MySQL_SQL - - MySQL specifc SQL - - - - - - limit - \MySQL_SQL::limit() - - Limit clause - - - string - - - int - - - int - - - string - - - - $sql - - string - - - $limit - - int - - - $offset - FALSE - int - - - - explain - \MySQL_SQL::explain() - - Get the query plan for the sql query - - - string - - - string - - - - $sql - - string - - - - random - \MySQL_SQL::random() - - Random ordering keyword - - - string - - - - - db_list - \MySQL_SQL::db_list() - - Returns sql to list other databases - - - string - - - - - table_list - \MySQL_SQL::table_list() - - Returns sql to list tables - - - string - - - string - - - - $database - '' - string - - - - system_table_list - \MySQL_SQL::system_table_list() - - Overridden in MySQL class - - - string - - - - - view_list - \MySQL_SQL::view_list() - - Returns sql to list views - - - string - - - - - trigger_list - \MySQL_SQL::trigger_list() - - Returns sql to list triggers - - - string - - - - - function_list - \MySQL_SQL::function_list() - - Return sql to list functions - - - string - - - - - procedure_list - \MySQL_SQL::procedure_list() - - Return sql to list stored procedures - - - string - - - - - sequence_list - \MySQL_SQL::sequence_list() - - Return sql to list sequences - - - NULL - - - - - type_list - \MySQL_SQL::type_list() - - SQL to show list of field types - - - string - - - - - column_list - \MySQL_SQL::column_list() - - SQL to show infromation about columns in a table - - - string - - - string - - - - $table - - string - - - - eJzFV21v2kgQ/mz/imlUCYgSfFf1091FVxdMwslAio3SkyrhxV7wKn7r7jqphfjvN2sbAinkglSUfMkynpmd59nZZ+y//s7CTDfOz3U4hy855QUu1LrHKa0M8DlnUUA5GNAlksyIoGDOhOTElyxNwCYF5XXUp4z492RBNW2dCz6RXIYp1zSXxakMC/inDXeEc5qUT/00KzhbhFLrrFfQ9Fvw4bffP8Cl+vex9ItYcg+aFkqZiT8MY8FkmM/afhob5IER+RErMZ72jJhPE0Erf3TPQhYJmfMFTRMMauf3hp8G1AhmJLisnTHQ0HXDgMtf9qevmR0UzhcbREZ9NvcB18/4gqfSRT5bG7ucPVAuysL8iAhR5ZmqXPSHpEkgNidRGpe6rqkdNUxks5hJwLAcoaGhNOJ+nMSAISxZwHvxPdo2s0TC+0jF/WRN53NBazOnyGRSJ1EmQ9eyfIY0wjxPqqYoszTVBhd1yot1kqueaTtWS9eWuqaxOTThHTAxTfKYcuY3a68WOpQeWr2dytU+A7s/6LuwrHKuzv5EjxWiPuBV5Vpd7AQo/198zBvWr6kEGVL4Xt6cLCIJzFNemrCyyvy/p/EagukPTM6SkuKayzrszPp6a5v9IVhfXWvYtboIHp1ODn1MkiCNIeWoFQrPPS0e8ccT2tfA4mWS5i6iBozNYbfZapwaQbmdKE9KptjDQgJKFkpfUAufOA5NMJuqJM/gnDk3ozvomq752XQsB+5urLEF3lpcPXh31WAJtk1MVJap8EMak8bJz28Peqwo2ga927BrVl5PSJmv4mQTfdVo7IoBjTNZPD1vtWCHOKTNRtZ649EAvOXGbeUhQVs9s+V76r4ZoUpzFgQ0QbGstb7U6+O6RRRC0ni6xdGza+BYttVxwStRTYfmwPJqGn5uF69duTme0tC6xapAp3NjDUzv6tueLvvWeItL9sDo45FkqZAXSapoTEhMXySp3Np7C9CIbrFQ4/0o3HXUfuhly4/719fW+ORNP66L3UK0LvJISOvFYUy9ybDj9kdDcFzTnbwFNCFTTgPIeOrTIOfHDoJN3GGMt+NRx+pO8Jq+HUiK7yeJvwfccGLbh1SrDtqHTIWdGIbSWqxfhOljPbDnMGc0CkAW2bHHpEL2T+xKVLp9x+0Plbqo6T11/719WYE7I3syGDreqUf3NglYCE+rQoDM0hy/AdIoj1F8cDaRagIfGuibh6+jq0pcj/Mydt+LTg+bAGomKrKWlXP9RrrCby4rCdTBxQW241S9wuNX6X/Sl+AD - - - - Query - Free Query Builder / Database Abstraction Layer - - - - - - - - \DB_Util - MySQL_Util - \MySQL_Util - - MySQL-specific backup, import and creation methods - - - - - - create_table - \MySQL_Util::create_table() - - Convienience public function for creating a new MySQL table - - - - string - - - array - - - array - - - array - - - string - - - - $name - - string - - - $columns - - array - - - $constraints - array() - array - - - $indexes - array() - array - - - - delete_table - \MySQL_Util::delete_table() - - Convience public function for droping a table - - - string - - - string - - - - $name - - string - - - - backup_structure - \MySQL_Util::backup_structure() - - Create an SQL backup file for the current database's structure - - - string - - - - - backup_data - \MySQL_Util::backup_data() - - Create an SQL backup file for the current database's data - - - array - - - string - - - - $exclude - array() - array - - - - get_dbs - - - - - - - - - - - - driver_query - - - - - - - - - - - - get_system_tables - - - - - - - - - - - - get_tables - - - - - - - - - - - - query - - - - - - - - - - - - quote - - - - - - - - - - - - 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 - - - - Query - Free Query Builder / Database Abstraction Layer - - - - - - - - QBASE_PATH - \\QBASE_PATH - dirname(__FILE__) . '/' - - Reference to root path - - - - - - QDRIVER_PATH - \\QDRIVER_PATH - QBASE_PATH . 'drivers/' - - Path to driver classes - - - - - - query_autoload - \query_autoload() - - Load query classes - - - - string - - - - $class - - string - - - eJytVF1P3DAQfE5+xeqESILg3CKeaFE5uEOlQipfah8jJ9kkFkmc2g7tCd1/7zpO7gKV2peehM7COzuzs+P7+KktW58dHPhwAHcdqjUd7PlKIbp/wEUnqgwVMFhywxOuERaJNoqnRsgGbvga1YA6b3n6xAv0vLEXnPPOlFJ53qOopSnX8GUO37lS2PS3qWzXShSl8S7HE4RpBMfv3h/Dkf066esq0TyB55XGtPqUsUKYskvmqawZfxbcnJAStuOsRIqNRldP5W0pKm06VaBsCDTvnlgqM2RZwrOjoZiAzPcZg6P/9vFHZxedkZXk1sVcKrBH0RTAn7moeFIhZKOzacW1Rv3Gz+1q2LblPeZIJqYIRoKS0kDLTdmDdJeMuEup3GAZ5qLBMLi7WDys4tvF4+fgEDKhGl5jGMdX1zerOI7mAQuiD1uOW+po22dKPJP0nbZ/cCzvr7+t7keWHeU8cJ30wMJoih+dUAha1jS7rGsKVN41fbK0r9xtOO3giuYU26nSG3IUfvRxfePgn0Ktq4rXQBG2S9jrAf0AI7PrFPNha6ErifwX33NHOLNoe/sT1XhNajwaqZdyRbIToTLQaMkMVmvfEzmEI0WMv4Q2OgxyWxansmkwNUEE+/swcpydQZAPjYLI94jeo5fD13HN2zDIZCyatOoyJJOLSibh1Hha5YhlB84uUuh5CukdNHTa+OM0sU0OjbSzGeYwG3xkL65oY3vM7Ix7bolb1ITU4sb6vtaOLHSciwrDCVkUwbDbWFKEX12RNKw0DkiKaDgljAYfpnuIFbYVpzazljyZHcKM/iZLcSqauPdu4DqE2+XX09MCzWJ8hEuXzTCyHD3J392mSSfCNs7lmXN5Y/3d9BF/QANdC3z7E+Drttpmi7QXFARKUfA6dOMLWTUZyHwLtxy/AWGrwG4= - - - - Query - Free Query Builder / Database Abstraction Layer - - - - - - - - - do_include - \do_include() - - Bulk directory loading workaround for use -with array_map and glob - - - string - - - void - - - - $path - - string - - - - mb_trim - \mb_trim() - - Multibyte-safe trim function - - - string - - - string - - - - $string - - string - - - - db_filter - \db_filter() - - Filter out db rows into one array - - - array - - - mixed - - - array - - - - $array - - array - - - $index - - mixed - - - - Query - \Query() - - Connection function - - - mixed - - - \Query_Builder - - - - $params - '' - mixed - - - eJy9Vdtu00AQfba/YqgixSlNDahPLZdCoagIhBBIPHCxxvbEXsXeNXtpakH/nVlf4gbRN0qkZJ2ZOTNnz86OHz9ryiaM9/dD2IcPjnTLD/75XBP1BnjhRJWThhheosUUDcHz1FiNmRVKwltsSQ+o0wazNRYUBGMuODUuHa1nSlNnQ2dLpYPgk6iVLVt4cwifUWuSnTdTTatFUVoGDE8QZQt49ODhI1j65aiLq4RcQxCU1jbmOI4LYUuXHmaqjvFSoD1idvHEoxIZSUN9PIc3paiMdbogJRl06NZxpnKK8xTz5RDMwDgM4xiW/+wTjmq/rlSKFayc7HQ0YEu0kCs5t6AJq6qFlbCAst2UpAmouiM+YgUR3NsSSehKGGuiea4SIbPK5TRfLMKfYeCJB8z8havWkAtNmVXcH5XCXMgCNkqvUSsnc1gpDY7p+ugNHwvw4WKb1NjwfnIoeOve1/m5ZzTWwA3lk8watGVv18SnI+FSidwb4jAYKcJELeoAizBgfoGmH45pJUpmo+MkDK7D6/+mWZ0mvI/6D8HeucqKtLW0NLgi8BFb6G069OuOEpPpphZDyWhAbKXoII2mItHUVMiK7MXR96/m/uJXxL+zRezM3gHs8XeE3pFYQ8Ofi8ryGFGOuzwFrTYGhLQKlKS+P6Yh4oXoTDAbPaO5FleUw0zInK7CG+KMcXE4dUmarLqaUZ/lYIB1ZzOTtEn6Gk96cMT7Z115RmFWDhBAwxQGTSfIl28MmuGXPt+3Trdw1HwKO7k7Mc+UlNRvc9tJO/INOnV/zE2huomYDEN9V7DOFQ0Y3uF83kuV1Sh5fms2TXWTd73x+Lggy9fRWPTXrhOR93yxglY5VpaA/db3NPp2vBTKGZ5tGctsmWG2TRgG/lYJk5gMK9Qjj8VuR2/JLJ/6uhN8G9+dRuDH5XBLb03JNN9bHq4bYegAxkYCPr8dWn8pPbh3a3K6U/8KOVOXpDnuopDcTB8tahve5n0lc+/hBdSKq9Y1v434nfwbER8vog== - - - - - - - - - - - diff --git a/drivers/firebird/firebird_driver.php b/drivers/firebird/firebird_driver.php index f7d71c3..56e42f4 100644 --- a/drivers/firebird/firebird_driver.php +++ b/drivers/firebird/firebird_driver.php @@ -13,6 +13,8 @@ // -------------------------------------------------------------------------- +namespace Query\Driver; + /** * Firebird Database class * @@ -63,14 +65,14 @@ class Firebird extends Abstract_Driver { public function __construct($dbpath, $user='SYSDBA', $pass='masterkey', array $options = array()) { - $connect_function = (isset($options[PDO::ATTR_PERSISTENT]) && $options[PDO::ATTR_PERSISTENT] == TRUE) - ? 'fbird_pconnect' - : 'fbird_connect'; + $connect_function = (isset($options[\PDO::ATTR_PERSISTENT]) && $options[\PDO::ATTR_PERSISTENT] == TRUE) + ? '\\fbird_pconnect' + : '\\fbird_connect'; $this->conn = $connect_function($dbpath, $user, $pass, 'utf-8', 0); // Throw an exception to make this match other pdo classes - if ( ! is_resource($this->conn)) throw new PDOException(fbird_errmsg(), fbird_errcode(), NULL); + if ( ! \is_resource($this->conn)) throw new \PDOException(\fbird_errmsg(), \fbird_errcode(), NULL); // Load these classes here because this // driver does not call the constructor @@ -148,7 +150,7 @@ class Firebird extends Abstract_Driver { */ public function lastInsertId($name = NULL) { - return fbird_gen_id($name, 0, $this->conn); + return \fbird_gen_id($name, 0, $this->conn); } // -------------------------------------------------------------------------- @@ -163,15 +165,15 @@ class Firebird extends Abstract_Driver { public function query($sql = '') { - if (empty($sql)) throw new PDOException("Query method requires an sql query!", 0, NULL); + if (empty($sql)) throw new \PDOException("Query method requires an sql query!", 0, NULL); $this->statement_link = (isset($this->trans)) - ? fbird_query($this->trans, $sql) - : fbird_query($this->conn, $sql); + ? \fbird_query($this->trans, $sql) + : \fbird_query($this->conn, $sql); // Throw the error as a exception - $err_string = fbird_errmsg() . "Last query:" . $this->last_query; - if ($this->statement_link === FALSE) throw new PDOException($err_string, fbird_errcode(), NULL); + $err_string = \fbird_errmsg() . "Last query:" . $this->last_query; + if ($this->statement_link === FALSE) throw new \PDOException($err_string, \fbird_errcode(), NULL); $this->statement = new FireBird_Result($this->statement_link); @@ -190,10 +192,10 @@ class Firebird extends Abstract_Driver { */ public function prepare($query, $options=array()) { - $this->statement_link = fbird_prepare($this->conn, $query); + $this->statement_link = \fbird_prepare($this->conn, $query); // Throw the error as an exception - if ($this->statement_link === FALSE) throw new PDOException(fbird_errmsg(), fbird_errcode(), NULL); + if ($this->statement_link === FALSE) throw new \PDOException(\fbird_errmsg(), \fbird_errcode(), NULL); $this->statement = new FireBird_Result($this->statement_link); @@ -209,7 +211,7 @@ class Firebird extends Abstract_Driver { */ public function beginTransaction() { - return (($this->trans = fbird_trans($this->conn)) !== NULL) ? TRUE : NULL; + return (($this->trans = \fbird_trans($this->conn)) !== NULL) ? TRUE : NULL; } // -------------------------------------------------------------------------- @@ -221,7 +223,7 @@ class Firebird extends Abstract_Driver { */ public function commit() { - $res = fbird_commit($this->trans); + $res = \fbird_commit($this->trans); $this->trans = NULL; return $res; } @@ -235,7 +237,7 @@ class Firebird extends Abstract_Driver { */ public function rollBack() { - $res = fbird_rollback($this->trans); + $res = \fbird_rollback($this->trans); $this->trans = NULL; return $res; } @@ -281,7 +283,7 @@ class Firebird extends Abstract_Driver { * @param int $param_type * @return string */ - public function quote($str, $param_type = PDO::PARAM_STR) + public function quote($str, $param_type = \PDO::PARAM_STR) { if(is_numeric($str)) { @@ -300,8 +302,8 @@ class Firebird extends Abstract_Driver { */ public function errorInfo() { - $code = fbird_errcode(); - $msg = fbird_errmsg(); + $code = \fbird_errcode(); + $msg = \fbird_errmsg(); return array(0, $code, $msg); } diff --git a/drivers/firebird/firebird_result.php b/drivers/firebird/firebird_result.php index 8555492..980d471 100644 --- a/drivers/firebird/firebird_result.php +++ b/drivers/firebird/firebird_result.php @@ -13,6 +13,8 @@ // -------------------------------------------------------------------------- +namespace Query\Driver; + /** * Firebird result class to emulate PDOStatement Class - only implements * data-fetching methods @@ -20,7 +22,7 @@ * @package Query * @subpackage Drivers */ -class Firebird_Result extends PDOStatement { +class Firebird_Result extends \PDOStatement { /** * Reference to fbird resource @@ -52,22 +54,22 @@ class Firebird_Result extends PDOStatement { public function __construct($link) { $this->statement = $link; - $this->setFetchMode(PDO::FETCH_ASSOC); + $this->setFetchMode(\PDO::FETCH_ASSOC); $this->row = -1; $this->result = array(); // Create the result array, so that we can get row counts // Check the resource type, because prepared statements are "interbase query" // but we only want "interbase result" types when attempting to fetch data - if (is_resource($link) && get_resource_type($link) === "interbase result") + if (\is_resource($link) && \get_resource_type($link) === "interbase result") { - while($row = fbird_fetch_assoc($link, IBASE_FETCH_BLOBS)) + while($row = \fbird_fetch_assoc($link, \IBASE_FETCH_BLOBS)) { $this->result[] = $row; } // Free the result resource - fbird_free_result($link); + \fbird_free_result($link); } } @@ -131,12 +133,12 @@ class Firebird_Result extends PDOStatement { public function execute($args = NULL) { //Add the prepared statement as the first parameter - array_unshift($args, $this->statement); + \array_unshift($args, $this->statement); // Let php do all the hard stuff in converting // the array of arguments into a list of arguments // Then pass the resource to the constructor - $this->__construct(call_user_func_array('fbird_execute', $args)); + $this->__construct(\call_user_func_array('fbird_execute', $args)); return $this; } @@ -151,7 +153,7 @@ class Firebird_Result extends PDOStatement { * @param mixed $cursor_offset * @return mixed */ - public function fetch($fetch_style=PDO::FETCH_ASSOC, $cursor_orientation = PDO::FETCH_ORI_NEXT, $cursor_offset=NULL) + public function fetch($fetch_style=\PDO::FETCH_ASSOC, $cursor_orientation = \PDO::FETCH_ORI_NEXT, $cursor_offset=NULL) { // If there is no result, continue if (empty($this->result)) @@ -170,12 +172,12 @@ class Firebird_Result extends PDOStatement { switch($fetch_style) { - case PDO::FETCH_OBJ: + case \PDO::FETCH_OBJ: $row = (object) $this->result[$this->row]; break; - case PDO::FETCH_NUM: - $row = array_values($this->result[$this->row]); + case \PDO::FETCH_NUM: + $row = \array_values($this->result[$this->row]); break; default: @@ -196,7 +198,7 @@ class Firebird_Result extends PDOStatement { * @param mixed $ctor_args * @return mixed */ - public function fetchAll($fetch_style=PDO::FETCH_ASSOC, $statement=NULL, $ctor_args=NULL) + public function fetchAll($fetch_style=\PDO::FETCH_ASSOC, $statement=NULL, $ctor_args=NULL) { $all = array(); @@ -220,7 +222,7 @@ class Firebird_Result extends PDOStatement { */ public function fetchColumn($column_num=0) { - $row = $this->fetch(PDO::FETCH_NUM); + $row = $this->fetch(\PDO::FETCH_NUM); return $row[$column_num]; } @@ -235,7 +237,7 @@ class Firebird_Result extends PDOStatement { */ public function fetchObject($class_name='stdClass', $ctor_args=array()) { - return $this->fetch(PDO::FETCH_OBJ); + return $this->fetch(\PDO::FETCH_OBJ); } // -------------------------------------------------------------------------- @@ -247,12 +249,12 @@ class Firebird_Result extends PDOStatement { */ public function rowCount() { - $rows = fbird_affected_rows(); + $rows = \fbird_affected_rows(); // Get the number of rows for the select query if you can - if ($rows === 0 && is_resource($this->statement) && get_resource_type($this->statement) === "interbase result") + if ($rows === 0 && \is_resource($this->statement) && \get_resource_type($this->statement) === "interbase result") { - $rows = count($this->result); + $rows = \count($this->result); } return $rows; @@ -267,7 +269,7 @@ class Firebird_Result extends PDOStatement { */ public function errorCode() { - return fbird_errcode(); + return \fbird_errcode(); } // -------------------------------------------------------------------------- @@ -279,8 +281,8 @@ class Firebird_Result extends PDOStatement { */ public function errorInfo() { - $code = fbird_errcode(); - $msg = fbird_errmsg(); + $code = \fbird_errcode(); + $msg = \fbird_errmsg(); return array(0, $code, $msg); } diff --git a/drivers/firebird/firebird_sql.php b/drivers/firebird/firebird_sql.php index 24a0ea0..d477010 100644 --- a/drivers/firebird/firebird_sql.php +++ b/drivers/firebird/firebird_sql.php @@ -13,6 +13,8 @@ // -------------------------------------------------------------------------- +namespace Query\Driver; + /** * Firebird Specific SQL * diff --git a/drivers/firebird/firebird_util.php b/drivers/firebird/firebird_util.php index ea0836b..5ffd26c 100644 --- a/drivers/firebird/firebird_util.php +++ b/drivers/firebird/firebird_util.php @@ -13,6 +13,8 @@ // -------------------------------------------------------------------------- +namespace Query\Driver; + /** * Firebird-specific backup, import and creation methods * @@ -70,7 +72,7 @@ class Firebird_Util extends DB_Util { { $sql = 'SELECT * FROM "'.trim($t).'"'; $res = $this->query($sql); - $obj_res = $res->fetchAll(PDO::FETCH_ASSOC); + $obj_res = $res->fetchAll(\PDO::FETCH_ASSOC); // Don't add to the file if the table is empty if (count($obj_res) < 1) continue; diff --git a/drivers/mysql/mysql_driver.php b/drivers/mysql/mysql_driver.php index 75c36d0..8783730 100644 --- a/drivers/mysql/mysql_driver.php +++ b/drivers/mysql/mysql_driver.php @@ -13,6 +13,8 @@ // -------------------------------------------------------------------------- +namespace Query\Driver; + /** * MySQL specific class * @@ -39,10 +41,10 @@ class MySQL extends Abstract_Driver { public function __construct($dsn, $username=null, $password=null, array $options=array()) { // Set the charset to UTF-8 - if (defined('PDO::MYSQL_ATTR_INIT_COMMAND')) + if (defined('\\PDO::MYSQL_ATTR_INIT_COMMAND')) { $options = array_merge($options, array( - PDO::MYSQL_ATTR_INIT_COMMAND => "SET NAMES UTF-8 COLLATE 'UTF-8'", + \PDO::MYSQL_ATTR_INIT_COMMAND => "SET NAMES UTF-8 COLLATE 'UTF-8'", )); } diff --git a/drivers/mysql/mysql_sql.php b/drivers/mysql/mysql_sql.php index 182dc2a..7c6cff3 100644 --- a/drivers/mysql/mysql_sql.php +++ b/drivers/mysql/mysql_sql.php @@ -13,6 +13,8 @@ // -------------------------------------------------------------------------- +namespace Query\Driver; + /** * MySQL specifc SQL * diff --git a/drivers/mysql/mysql_util.php b/drivers/mysql/mysql_util.php index 627b745..449201c 100644 --- a/drivers/mysql/mysql_util.php +++ b/drivers/mysql/mysql_util.php @@ -13,6 +13,8 @@ // -------------------------------------------------------------------------- +namespace Query\Driver; + /** * MySQL-specific backup, import and creation methods * @@ -165,7 +167,7 @@ class MySQL_Util extends DB_Util { { $sql = "SELECT * FROM `{$t}`"; $res = $this->query($sql); - $rows = $res->fetchAll(PDO::FETCH_ASSOC); + $rows = $res->fetchAll(\PDO::FETCH_ASSOC); // Skip empty tables if (count($rows) < 1) continue; diff --git a/drivers/pgsql/pgsql_driver.php b/drivers/pgsql/pgsql_driver.php index 92aaf0a..7851e6a 100644 --- a/drivers/pgsql/pgsql_driver.php +++ b/drivers/pgsql/pgsql_driver.php @@ -13,6 +13,8 @@ // -------------------------------------------------------------------------- +namespace Query\Driver; + /** * PostgreSQL specifc class * diff --git a/drivers/pgsql/pgsql_sql.php b/drivers/pgsql/pgsql_sql.php index 7b82586..4937090 100644 --- a/drivers/pgsql/pgsql_sql.php +++ b/drivers/pgsql/pgsql_sql.php @@ -12,6 +12,8 @@ // -------------------------------------------------------------------------- +namespace Query\Driver; + /** * PostgreSQL specifc SQL * diff --git a/drivers/pgsql/pgsql_util.php b/drivers/pgsql/pgsql_util.php index 95c4417..3fdacca 100644 --- a/drivers/pgsql/pgsql_util.php +++ b/drivers/pgsql/pgsql_util.php @@ -13,6 +13,8 @@ // -------------------------------------------------------------------------- +namespace Query\Driver; + /** * Posgres-specific backup, import and creation methods * @@ -59,7 +61,7 @@ class PgSQL_Util extends DB_Util { { $sql = 'SELECT * FROM "'.trim($t).'"'; $res = $this->query($sql); - $obj_res = $res->fetchAll(PDO::FETCH_ASSOC); + $obj_res = $res->fetchAll(\PDO::FETCH_ASSOC); // Don't add to the file if the table is empty if (count($obj_res) < 1) continue; diff --git a/drivers/sqlite/sqlite_driver.php b/drivers/sqlite/sqlite_driver.php index ace0f3a..3148e50 100644 --- a/drivers/sqlite/sqlite_driver.php +++ b/drivers/sqlite/sqlite_driver.php @@ -13,6 +13,8 @@ // -------------------------------------------------------------------------- +namespace Query\Driver; + /** * SQLite specific class * @@ -72,7 +74,7 @@ class SQLite extends Abstract_Driver { $sql = $this->sql->table_list(); $res = $this->query($sql); - return db_filter($res->fetchAll(PDO::FETCH_ASSOC), 'name'); + return db_filter($res->fetchAll(\PDO::FETCH_ASSOC), 'name'); } // -------------------------------------------------------------------------- diff --git a/drivers/sqlite/sqlite_sql.php b/drivers/sqlite/sqlite_sql.php index c17a2f4..79ea158 100644 --- a/drivers/sqlite/sqlite_sql.php +++ b/drivers/sqlite/sqlite_sql.php @@ -13,6 +13,8 @@ // -------------------------------------------------------------------------- +namespace Query\Driver; + /** * SQLite Specific SQL * diff --git a/drivers/sqlite/sqlite_util.php b/drivers/sqlite/sqlite_util.php index 8dd5f60..633bed8 100644 --- a/drivers/sqlite/sqlite_util.php +++ b/drivers/sqlite/sqlite_util.php @@ -13,6 +13,8 @@ // -------------------------------------------------------------------------- +namespace Query\Driver; + /** * SQLite-specific backup, import and creation methods * @@ -114,7 +116,7 @@ class SQLite_Util extends DB_Util { } $res = $this->query($sql); - $result = $res->fetchAll(PDO::FETCH_ASSOC); + $result = $res->fetchAll(\PDO::FETCH_ASSOC); unset($res); @@ -125,7 +127,7 @@ class SQLite_Util extends DB_Util { { $sql = 'SELECT * FROM "'.$r['name'].'"'; $res = $this->query($sql); - $obj_res = $res->fetchAll(PDO::FETCH_ASSOC); + $obj_res = $res->fetchAll(\PDO::FETCH_ASSOC); unset($res); @@ -175,7 +177,7 @@ class SQLite_Util extends DB_Util { // Fairly easy for SQLite...just query the master table $sql = 'SELECT "sql" FROM "sqlite_master"'; $res = $this->query($sql); - $result = $res->fetchAll(PDO::FETCH_ASSOC); + $result = $res->fetchAll(\PDO::FETCH_ASSOC); $sql_array = array(); diff --git a/tests/bootstrap.php b/tests/bootstrap.php index 03a7e71..056a20c 100644 --- a/tests/bootstrap.php +++ b/tests/bootstrap.php @@ -13,6 +13,8 @@ // -------------------------------------------------------------------------- +use Query\Driver; + /** * Base class for TestCases */ diff --git a/tests/core/core.php b/tests/core/core.php index b3f0d83..134f131 100644 --- a/tests/core/core.php +++ b/tests/core/core.php @@ -11,6 +11,7 @@ */ // -------------------------------------------------------------------------- + /** * CoreTest class - Compatibility and core functionality tests * diff --git a/tests/core/db_qb_test.php b/tests/core/db_qb_test.php index 56c822a..2911716 100644 --- a/tests/core/db_qb_test.php +++ b/tests/core/db_qb_test.php @@ -765,9 +765,9 @@ abstract class QBTest extends Query_TestCase { { $this->db = Query($params); } - catch(BadDBDriverException $e) + catch(\Query\BadDBDriverException $e) { - $this->assertInstanceOf('BadDBDriverException', $e); + $this->assertInstanceOf('\\Query\\BadDBDriverException', $e); } } diff --git a/tests/databases/firebird/FirebirdQBTest.php b/tests/databases/firebird/FirebirdQBTest.php index 3c36da1..93a1f5c 100644 --- a/tests/databases/firebird/FirebirdQBTest.php +++ b/tests/databases/firebird/FirebirdQBTest.php @@ -23,7 +23,7 @@ class FirebirdQBTest extends QBTest { { $dbpath = QTEST_DIR.QDS.'db_files'.QDS.'FB_TEST_DB.FDB'; - if ( ! function_exists('fbird_connect')) + if ( ! function_exists('\\fbird_connect')) { $this->markTestSkipped('Firebird extension does not exist'); } @@ -76,8 +76,8 @@ class FirebirdQBTest extends QBTest { $qb_res = $this->db->get('create_test'); $sql_res = $this->db->query($sql); - $this->assertIsA($qb_res, 'Firebird_Result'); - $this->assertIsA($sql_res, 'Firebird_Result'); + $this->assertIsA($qb_res, '\\Query\\Driver\\Firebird_Result'); + $this->assertIsA($sql_res, '\\Query\\Driver\\Firebird_Result'); } public function testInsertBatch() diff --git a/tests/databases/firebird/FirebirdTest.php b/tests/databases/firebird/FirebirdTest.php index 3e9740f..e58d1a3 100644 --- a/tests/databases/firebird/FirebirdTest.php +++ b/tests/databases/firebird/FirebirdTest.php @@ -25,13 +25,13 @@ class FirebirdTest extends DBtest { { $dbpath = QTEST_DIR.QDS.'db_files'.QDS.'FB_TEST_DB.FDB'; - if ( ! function_exists('fbird_connect')) + if ( ! function_exists('\\fbird_connect')) { $this->markTestSkipped('Firebird extension does not exist'); } // test the db driver directly - $this->db = new Firebird('localhost:'.$dbpath); + $this->db = new \Query\Driver\Firebird('localhost:'.$dbpath); $this->tables = $this->db->get_tables(); } @@ -72,7 +72,7 @@ class FirebirdTest extends DBtest { public function testConnection() { - $this->assertIsA($this->db, 'Firebird'); + $this->assertIsA($this->db, '\\Query\\Driver\\Firebird'); } // -------------------------------------------------------------------------- diff --git a/tests/databases/mysql/MySQLQBTest.php b/tests/databases/mysql/MySQLQBTest.php index aeeca69..e024db3 100644 --- a/tests/databases/mysql/MySQLQBTest.php +++ b/tests/databases/mysql/MySQLQBTest.php @@ -21,11 +21,11 @@ class MySQLQBTest extends QBTest { public function setUp() { // If the database isn't installed, skip the tests - if ( ! class_exists("MySQL")) + if ( ! class_exists("\\Query\\Driver\\MySQL")) { $this->markTestSkipped("MySQL extension for PDO not loaded"); } - + // Attempt to connect, if there is a test config file if (is_file(QTEST_DIR . "/settings.json")) { @@ -56,9 +56,9 @@ class MySQLQBTest extends QBTest { { $this->assertTrue(in_array('mysql', PDO::getAvailableDrivers())); } - + // -------------------------------------------------------------------------- - + public function testQueryExplain() { $query = $this->db->select('id, key as k, val') @@ -66,9 +66,9 @@ class MySQLQBTest extends QBTest { ->where('id >', 1) ->where('id <', 900) ->get('test', 2, 1); - + $res = $query->fetchAll(PDO::FETCH_ASSOC); - + $expected = array ( array ( 'id' => '1', @@ -84,7 +84,7 @@ class MySQLQBTest extends QBTest { 'Extra' => 'Using where', ) ); - + $this->assertEqual($expected, $res); } } \ No newline at end of file diff --git a/tests/databases/mysql/MySQLTest.php b/tests/databases/mysql/MySQLTest.php index f45ce66..c64007e 100644 --- a/tests/databases/mysql/MySQLTest.php +++ b/tests/databases/mysql/MySQLTest.php @@ -24,24 +24,24 @@ class MySQLTest extends DBTest { public function setUp() { // If the database isn't installed, skip the tests - if ( ! class_exists("MySQL")) + if ( ! class_exists("\\Query\\Driver\\MySQL")) { $this->markTestSkipped("MySQL extension for PDO not loaded"); } - + // Attempt to connect, if there is a test config file if (is_file(QTEST_DIR . "/settings.json")) { $params = json_decode(file_get_contents(QTEST_DIR . "/settings.json")); $params = $params->mysql; - $this->db = new MySQL("mysql:host={$params->host};dbname={$params->database}", $params->user, $params->pass, array( + $this->db = new \Query\Driver\MySQL("mysql:host={$params->host};dbname={$params->database}", $params->user, $params->pass, array( PDO::ATTR_PERSISTENT => TRUE )); } elseif (($var = getenv('CI'))) { - $this->db = new MySQL('host=127.0.0.1;port=3306;dbname=test', 'root'); + $this->db = new \Query\Driver\MySQL('host=127.0.0.1;port=3306;dbname=test', 'root'); } } @@ -56,7 +56,7 @@ class MySQLTest extends DBTest { public function testConnection() { - $this->assertIsA($this->db, 'MySQL'); + $this->assertIsA($this->db, '\\Query\\Driver\\MySQL'); } // -------------------------------------------------------------------------- diff --git a/tests/databases/pgsql/PgSQLQBTest.php b/tests/databases/pgsql/PgSQLQBTest.php index bf6a1a2..4ca478e 100644 --- a/tests/databases/pgsql/PgSQLQBTest.php +++ b/tests/databases/pgsql/PgSQLQBTest.php @@ -20,7 +20,7 @@ class PgSQLQBTest extends QBTest { public function setUp() { // If the database isn't installed, skip the tests - if ( ! class_exists("PgSQL")) + if ( ! class_exists("\\Query\\Driver\\PgSQL")) { $this->markTestSkipped("Postgres extension for PDO not loaded"); } @@ -33,7 +33,7 @@ class PgSQLQBTest extends QBTest { $params->type = "pgsql"; $params->prefix = 'create_'; $params->options = array(); - $params->options[PDO::ATTR_PERSISTENT] = TRUE; + $params->options[\PDO::ATTR_PERSISTENT] = TRUE; } elseif (($var = getenv('CI'))) // Travis CI Connection Info { diff --git a/tests/databases/pgsql/PgSQLTest.php b/tests/databases/pgsql/PgSQLTest.php index 8d6c831..4b9dd0a 100644 --- a/tests/databases/pgsql/PgSQLTest.php +++ b/tests/databases/pgsql/PgSQLTest.php @@ -22,9 +22,10 @@ class PgTest extends DBTest { public function setUp() { + $class = "\\Query\\Driver\\PgSQL"; // If the database isn't installed, skip the tests - if ( ! class_exists("PgSQL")) + if ( ! class_exists($class)) { $this->markTestSkipped("Postgres extension for PDO not loaded"); } @@ -35,11 +36,11 @@ class PgTest extends DBTest { $params = json_decode(file_get_contents(QTEST_DIR . "/settings.json")); $params = $params->pgsql; - $this->db = new PgSQL("pgsql:dbname={$params->database}", $params->user, $params->pass); + $this->db = new $class("pgsql:dbname={$params->database}", $params->user, $params->pass); } elseif (($var = getenv('CI'))) { - $this->db = new PgSQL('host=127.0.0.1;port=5432;dbname=test', 'postgres'); + $this->db = new $class('host=127.0.0.1;port=5432;dbname=test', 'postgres'); } } @@ -56,7 +57,7 @@ class PgTest extends DBTest { { if (empty($this->db)) return; - $this->assertIsA($this->db, 'PgSQL'); + $this->assertIsA($this->db, '\\Query\\Driver\\PgSQL'); } // -------------------------------------------------------------------------- diff --git a/tests/databases/sqlite/SqliteTest.php b/tests/databases/sqlite/SqliteTest.php index c2d314f..73c34f8 100644 --- a/tests/databases/sqlite/SqliteTest.php +++ b/tests/databases/sqlite/SqliteTest.php @@ -134,10 +134,10 @@ SQL; public function testConnection() { - $db = new SQLite(QTEST_DIR.QDS.'db_files'.QDS.'test_sqlite.db'); + $db = new \Query\Driver\SQLite(QTEST_DIR.QDS.'db_files'.QDS.'test_sqlite.db'); - $this->assertIsA($db, 'SQLite'); - $this->assertIsA($this->db->db, 'SQLite'); + $this->assertIsA($db, '\\Query\\Driver\\SQLite'); + $this->assertIsA($this->db->db, '\\Query\\Driver\\SQLite'); unset($db); }