<?xml version="1.0" encoding="UTF-8"?>
<commit>
  <added type="array"/>
  <modified type="array">
    <modified>
      <diff>@@ -20,3 +20,5 @@ vendors/ruckusing/logs/development.log
 
 # HTML webroot cache
 app/webroot/cache/*
+
+app/plugins/*</diff>
      <filename>.gitignore</filename>
    </modified>
    <modified>
      <diff>@@ -1,136 +1,136 @@
-&lt;?php
-/* SVN FILE: $Id: database.php.default 4605 2007-03-09 23:26:37Z phpnut $ */
-/**
- * This is core configuration file.
- *
- * Use it to configure core behaviour ofCake.
- *
- * PHP versions 4 and 5
- *
- * CakePHP(tm) :  Rapid Development Framework &lt;http://www.cakephp.org/&gt;
- * Copyright 2005-2007, Cake Software Foundation, Inc.
- *								1785 E. Sahara Avenue, Suite 490-204
- *								Las Vegas, Nevada 89104
- *
- * Licensed under The MIT License
- * Redistributions of files must retain the above copyright notice.
- *
- * @filesource
- * @copyright		Copyright 2005-2007, Cake Software Foundation, Inc.
- * @link				http://www.cakefoundation.org/projects/info/cakephp CakePHP(tm) Project
- * @package			cake
- * @subpackage		cake.app.config
- * @since			CakePHP(tm) v 0.2.9
- * @version			$Revision: 4605 $
- * @modifiedby		$LastChangedBy: phpnut $
- * @lastmodified	$Date: 2007-03-09 17:26:37 -0600 (Fri, 09 Mar 2007) $
- * @license			http://www.opensource.org/licenses/mit-license.php The MIT License
- */
-/**
- * In this file you set up your database connection details.
- *
- * @package		cake
- * @subpackage	cake.config
- */
-/**
- * Database configuration class.
- * You can specify multiple configurations for production, development and testing.
- *
- * driver =&gt; The name of a supported driver; valid options are as follows:
- *		mysql 		- MySQL 4 &amp; 5,
- *		mysqli 		- MySQL 4 &amp; 5 Improved Interface (PHP5 only),
- *		sqlite		- SQLite (PHP5 only),
- *		postgres	- PostgreSQL 7 and higher,
- *		mssql		- Microsoft SQL Server 2000 and higher,
- *		db2			- IBM DB2, Cloudscape, and Apache Derby (http://php.net/ibm-db2)
- *		oracle		- Oracle 8 and higher
- *		adodb-[drivername]	- ADOdb interface wrapper (see below),
- *		pear-[drivername]	- PEAR::DB wrapper
- *
- * You can add custom database drivers (or override existing drivers) by adding the
- * appropriate file to app/models/datasources/dbo.  Drivers should be named 'dbo_x.php',
- * where 'x' is the name of the database.
- *
- * persistent =&gt; true / false
- * Determines whether or not the database should use a persistent connection 
- *
- * connect =&gt;
- * ADOdb set the connect to one of these
- *	(http://phplens.com/adodb/supported.databases.html) and
- *	append it '|p' for persistent connection. (mssql|p for example, or just mssql for not persistent)
- * For all other databases, this setting is deprecated.
- *
- * host =&gt;
- * the host you connect to the database
- * To add a port number use 'port' =&gt; #
- *
- * prefix =&gt;
- * Uses the given prefix for all the tables in this database.  This setting can be overridden
- * on a per-table basis with the Model::$tablePrefix property.
- * 
- * domain =&gt;
- * (Added by Wildflower.) If the $_SERVER['SERVER_NAME'] matches this value the config with it 
- * will be used. www. prefix is stripped when matching the domain names, so always use the domain
- * name without it as a value.
- */
-class DATABASE_CONFIG {
-    
-	/**
-     * This is the default configuration
-     *
-     * @var array
-     */
-	public $default = array(
-		'driver' =&gt; 'mysqli',
-	    'encoding' =&gt; 'utf8',
-		'persistent' =&gt; false,
-		'host' =&gt; 'localhost',
-		'login' =&gt; 'root',
-		'password' =&gt; '',
-		'database' =&gt; 'wildflower',
-	    'port' =&gt; 3306
-	);
-	
-	/**
-	 * This is for unit tests
-	 *
-	 * @var array
-	 */
-	public $test_suite = array(
-		'driver' =&gt; 'mysqli',
-	    'encoding' =&gt; 'utf8',
-        'persistent' =&gt; false,
-        'host' =&gt; 'localhost',
-        'login' =&gt; 'root',
-        'password' =&gt; '',
-        'database' =&gt; 'test_wildflower',
-	    'port' =&gt; 3306
-	);
-	
-    /**
-     * Sets the default database config based on domain name
-     *
-     * Useful when you want to keep all the server configurations 
-     * (local dev, production) here and let the app decide what to
-     * use.
-     *
-     * @return void
-     */
-    function __construct() {
-        $domain = getenv('SERVER_NAME');
-        // Remove www. prefix from domain
-        if (strpos('www.', $domain) === 0) {
-            $domain = substr($domain, 4);
-        }
-        foreach ($this as $key =&gt; $value) {
-            if (!isset($value['domain'])) {
-                continue;
-            }
-    
-            if ($value['domain'] === $domain) {
-                $this-&gt;default = $this-&gt;{$key};
-            }
-        }
-    }
-
-}
+&lt;?php
+/* SVN FILE: $Id: database.php.default 4605 2007-03-09 23:26:37Z phpnut $ */
+/**
+ * This is core configuration file.
+ *
+ * Use it to configure core behaviour ofCake.
+ *
+ * PHP versions 4 and 5
+ *
+ * CakePHP(tm) :  Rapid Development Framework &lt;http://www.cakephp.org/&gt;
+ * Copyright 2005-2007, Cake Software Foundation, Inc.
+ *								1785 E. Sahara Avenue, Suite 490-204
+ *								Las Vegas, Nevada 89104
+ *
+ * Licensed under The MIT License
+ * Redistributions of files must retain the above copyright notice.
+ *
+ * @filesource
+ * @copyright		Copyright 2005-2007, Cake Software Foundation, Inc.
+ * @link				http://www.cakefoundation.org/projects/info/cakephp CakePHP(tm) Project
+ * @package			cake
+ * @subpackage		cake.app.config
+ * @since			CakePHP(tm) v 0.2.9
+ * @version			$Revision: 4605 $
+ * @modifiedby		$LastChangedBy: phpnut $
+ * @lastmodified	$Date: 2007-03-09 17:26:37 -0600 (Fri, 09 Mar 2007) $
+ * @license			http://www.opensource.org/licenses/mit-license.php The MIT License
+ */
+/**
+ * In this file you set up your database connection details.
+ *
+ * @package		cake
+ * @subpackage	cake.config
+ */
+/**
+ * Database configuration class.
+ * You can specify multiple configurations for production, development and testing.
+ *
+ * driver =&gt; The name of a supported driver; valid options are as follows:
+ *		mysql 		- MySQL 4 &amp; 5,
+ *		mysqli 		- MySQL 4 &amp; 5 Improved Interface (PHP5 only),
+ *		sqlite		- SQLite (PHP5 only),
+ *		postgres	- PostgreSQL 7 and higher,
+ *		mssql		- Microsoft SQL Server 2000 and higher,
+ *		db2			- IBM DB2, Cloudscape, and Apache Derby (http://php.net/ibm-db2)
+ *		oracle		- Oracle 8 and higher
+ *		adodb-[drivername]	- ADOdb interface wrapper (see below),
+ *		pear-[drivername]	- PEAR::DB wrapper
+ *
+ * You can add custom database drivers (or override existing drivers) by adding the
+ * appropriate file to app/models/datasources/dbo.  Drivers should be named 'dbo_x.php',
+ * where 'x' is the name of the database.
+ *
+ * persistent =&gt; true / false
+ * Determines whether or not the database should use a persistent connection 
+ *
+ * connect =&gt;
+ * ADOdb set the connect to one of these
+ *	(http://phplens.com/adodb/supported.databases.html) and
+ *	append it '|p' for persistent connection. (mssql|p for example, or just mssql for not persistent)
+ * For all other databases, this setting is deprecated.
+ *
+ * host =&gt;
+ * the host you connect to the database
+ * To add a port number use 'port' =&gt; #
+ *
+ * prefix =&gt;
+ * Uses the given prefix for all the tables in this database.  This setting can be overridden
+ * on a per-table basis with the Model::$tablePrefix property.
+ * 
+ * domain =&gt;
+ * (Added by Wildflower.) If the $_SERVER['SERVER_NAME'] matches this value the config with it 
+ * will be used. www. prefix is stripped when matching the domain names, so always use the domain
+ * name without it as a value.
+ */
+class DATABASE_CONFIG {
+    
+	/**
+     * This is the default configuration
+     *
+     * @var array
+     */
+	public $default = array(
+		'driver' =&gt; 'mysqli',
+	    'encoding' =&gt; 'utf8',
+		'persistent' =&gt; false,
+		'host' =&gt; 'localhost',
+		'login' =&gt; 'root',
+		'password' =&gt; '',
+		'database' =&gt; 'wildflower',
+	    'port' =&gt; 3306
+	);
+	
+	/**
+	 * This is for unit tests
+	 *
+	 * @var array
+	 */
+	public $test_suite = array(
+		'driver' =&gt; 'mysqli',
+	    'encoding' =&gt; 'utf8',
+        'persistent' =&gt; false,
+        'host' =&gt; 'localhost',
+        'login' =&gt; 'root',
+        'password' =&gt; '',
+        'database' =&gt; 'test_wildflower',
+	    'port' =&gt; 3306
+	);
+	
+    /**
+     * Sets the default database config based on domain name
+     *
+     * Useful when you want to keep all the server configurations 
+     * (local dev, production) here and let the app decide what to
+     * use.
+     *
+     * @return void
+     */
+    function __construct() {
+        $domain = getenv('SERVER_NAME');
+        // Remove www. prefix from domain
+        if (strpos('www.', $domain) === 0) {
+            $domain = substr($domain, 4);
+        }
+        foreach ($this as $key =&gt; $value) {
+            if (!isset($value['domain'])) {
+                continue;
+            }
+    
+            if ($value['domain'] === $domain) {
+                $this-&gt;default = $this-&gt;{$key};
+            }
+        }
+    }
+
+}</diff>
      <filename>app/config/database.php</filename>
    </modified>
  </modified>
  <removed type="array"/>
  <parents type="array">
    <parent>
      <id>42566f293d7243f0a953cd73f76a23a1801bbcf3</id>
    </parent>
  </parents>
  <author>
    <name>majic3</name>
    <email>info@majic3.com</email>
  </author>
  <url>http://github.com/klevo/wildflower/commit/a985c7b2447446e153ca8a0cd345ccc6e5493360</url>
  <id>a985c7b2447446e153ca8a0cd345ccc6e5493360</id>
  <committed-date>2009-08-20T21:21:50-07:00</committed-date>
  <authored-date>2009-08-20T21:21:50-07:00</authored-date>
  <message>added plugins to gitignore list &amp;&amp; uncfg'd db</message>
  <tree>d9cb579d34c60176f23d2babb4f793670ea785ac</tree>
  <committer>
    <name>majic3</name>
    <email>info@majic3.com</email>
  </committer>
</commit>
