Skip to content

Commit

Permalink
Set up autoloader
Browse files Browse the repository at this point in the history
  • Loading branch information
timw4mail committed May 21, 2012
1 parent 9688f8b commit 2c67dd0
Show file tree
Hide file tree
Showing 36 changed files with 106 additions and 49 deletions.
30 changes: 22 additions & 8 deletions autoload.php
Original file line number Diff line number Diff line change
Expand Up @@ -42,20 +42,34 @@ function do_include($path)
}
}

// Load base classes
array_map('do_include', glob(QBASE_PATH.'classes/*.php'));

// Load PDO Drivers
foreach(pdo_drivers() as $d)
/**
* Load a Query class
*
* @param string $class
*/
function query_autoload($class)
{
$dir = QDRIVER_PATH.$d;
$class = strtolower($class);
$class_path = QBASE_PATH . "classes/{$class}.php";

$driver_path = QDRIVER_PATH . "{$class}";

if(is_dir($dir))
if (is_file($class_path))
{
array_map('do_include', glob($dir.'/*.php'));
require_once($class_path);
}
elseif (is_dir($driver_path))
{
if (in_array($class, pdo_drivers()))
{
array_map('do_include', glob("{$driver_path}/*.php"));
}
}
}

// Set up autoloader
spl_autoload_register('query_autoload');

// Load Firebird driver, if applicable
if (function_exists('fbird_connect'))
{
Expand Down
2 changes: 1 addition & 1 deletion docs/classes/DB_PDO.html
Original file line number Diff line number Diff line change
Expand Up @@ -707,7 +707,7 @@ <h2>Reference to the last executed query</h2>
<div class="row"><footer class="span12">
Template is built using <a href="http://twitter.github.com/bootstrap/">Twitter Bootstrap 2</a> and icons provided by <a href="http://glyphicons.com/">Glyphicons</a>.<br>
Documentation is powered by <a href="http://www.phpdoc.org/">phpDocumentor 2.0.0a2</a> and<br>
generated on 2012-05-15T15:40:47-04:00.<br></footer></div>
generated on 2012-05-21T15:17:51-04:00.<br></footer></div>
</div>
</body>
</html>
2 changes: 1 addition & 1 deletion docs/classes/DB_Reg.html
Original file line number Diff line number Diff line change
Expand Up @@ -153,7 +153,7 @@ <h2>Static array of connections</h2>
<div class="row"><footer class="span12">
Template is built using <a href="http://twitter.github.com/bootstrap/">Twitter Bootstrap 2</a> and icons provided by <a href="http://glyphicons.com/">Glyphicons</a>.<br>
Documentation is powered by <a href="http://www.phpdoc.org/">phpDocumentor 2.0.0a2</a> and<br>
generated on 2012-05-15T15:40:47-04:00.<br></footer></div>
generated on 2012-05-21T15:17:51-04:00.<br></footer></div>
</div>
</body>
</html>
2 changes: 1 addition & 1 deletion docs/classes/DB_SQL.html
Original file line number Diff line number Diff line change
Expand Up @@ -299,7 +299,7 @@ <h3>Returns</h3>
<div class="row"><footer class="span12">
Template is built using <a href="http://twitter.github.com/bootstrap/">Twitter Bootstrap 2</a> and icons provided by <a href="http://glyphicons.com/">Glyphicons</a>.<br>
Documentation is powered by <a href="http://www.phpdoc.org/">phpDocumentor 2.0.0a2</a> and<br>
generated on 2012-05-15T15:40:47-04:00.<br></footer></div>
generated on 2012-05-21T15:17:51-04:00.<br></footer></div>
</div>
</body>
</html>
2 changes: 1 addition & 1 deletion docs/classes/DB_Util.html
Original file line number Diff line number Diff line change
Expand Up @@ -210,7 +210,7 @@ <h2>Reference to the current connection object</h2>
<div class="row"><footer class="span12">
Template is built using <a href="http://twitter.github.com/bootstrap/">Twitter Bootstrap 2</a> and icons provided by <a href="http://glyphicons.com/">Glyphicons</a>.<br>
Documentation is powered by <a href="http://www.phpdoc.org/">phpDocumentor 2.0.0a2</a> and<br>
generated on 2012-05-15T15:40:47-04:00.<br></footer></div>
generated on 2012-05-21T15:17:51-04:00.<br></footer></div>
</div>
</body>
</html>
2 changes: 1 addition & 1 deletion docs/classes/Firebird.html
Original file line number Diff line number Diff line change
Expand Up @@ -869,7 +869,7 @@ <h2>Reference to the current transaction</h2>
<div class="row"><footer class="span12">
Template is built using <a href="http://twitter.github.com/bootstrap/">Twitter Bootstrap 2</a> and icons provided by <a href="http://glyphicons.com/">Glyphicons</a>.<br>
Documentation is powered by <a href="http://www.phpdoc.org/">phpDocumentor 2.0.0a2</a> and<br>
generated on 2012-05-15T15:40:47-04:00.<br></footer></div>
generated on 2012-05-21T15:17:51-04:00.<br></footer></div>
</div>
</body>
</html>
2 changes: 1 addition & 1 deletion docs/classes/Firebird_Result.html
Original file line number Diff line number Diff line change
Expand Up @@ -505,7 +505,7 @@ <h2>Reference to fbird resource</h2>
<div class="row"><footer class="span12">
Template is built using <a href="http://twitter.github.com/bootstrap/">Twitter Bootstrap 2</a> and icons provided by <a href="http://glyphicons.com/">Glyphicons</a>.<br>
Documentation is powered by <a href="http://www.phpdoc.org/">phpDocumentor 2.0.0a2</a> and<br>
generated on 2012-05-15T15:40:47-04:00.<br></footer></div>
generated on 2012-05-21T15:17:51-04:00.<br></footer></div>
</div>
</body>
</html>
2 changes: 1 addition & 1 deletion docs/classes/Firebird_SQL.html
Original file line number Diff line number Diff line change
Expand Up @@ -309,7 +309,7 @@ <h3>Returns</h3>
<div class="row"><footer class="span12">
Template is built using <a href="http://twitter.github.com/bootstrap/">Twitter Bootstrap 2</a> and icons provided by <a href="http://glyphicons.com/">Glyphicons</a>.<br>
Documentation is powered by <a href="http://www.phpdoc.org/">phpDocumentor 2.0.0a2</a> and<br>
generated on 2012-05-15T15:40:47-04:00.<br></footer></div>
generated on 2012-05-21T15:17:51-04:00.<br></footer></div>
</div>
</body>
</html>
2 changes: 1 addition & 1 deletion docs/classes/Firebird_Util.html
Original file line number Diff line number Diff line change
Expand Up @@ -213,7 +213,7 @@ <h2>Reference to the current connection object</h2>
<div class="row"><footer class="span12">
Template is built using <a href="http://twitter.github.com/bootstrap/">Twitter Bootstrap 2</a> and icons provided by <a href="http://glyphicons.com/">Glyphicons</a>.<br>
Documentation is powered by <a href="http://www.phpdoc.org/">phpDocumentor 2.0.0a2</a> and<br>
generated on 2012-05-15T15:40:47-04:00.<br></footer></div>
generated on 2012-05-21T15:17:51-04:00.<br></footer></div>
</div>
</body>
</html>
2 changes: 1 addition & 1 deletion docs/classes/MySQL.html
Original file line number Diff line number Diff line change
Expand Up @@ -905,7 +905,7 @@ <h2>Reference to the last executed query</h2>
<div class="row"><footer class="span12">
Template is built using <a href="http://twitter.github.com/bootstrap/">Twitter Bootstrap 2</a> and icons provided by <a href="http://glyphicons.com/">Glyphicons</a>.<br>
Documentation is powered by <a href="http://www.phpdoc.org/">phpDocumentor 2.0.0a2</a> and<br>
generated on 2012-05-15T15:40:47-04:00.<br></footer></div>
generated on 2012-05-21T15:17:51-04:00.<br></footer></div>
</div>
</body>
</html>
2 changes: 1 addition & 1 deletion docs/classes/MySQL_SQL.html
Original file line number Diff line number Diff line change
Expand Up @@ -314,7 +314,7 @@ <h3>Returns</h3>
<div class="row"><footer class="span12">
Template is built using <a href="http://twitter.github.com/bootstrap/">Twitter Bootstrap 2</a> and icons provided by <a href="http://glyphicons.com/">Glyphicons</a>.<br>
Documentation is powered by <a href="http://www.phpdoc.org/">phpDocumentor 2.0.0a2</a> and<br>
generated on 2012-05-15T15:40:47-04:00.<br></footer></div>
generated on 2012-05-21T15:17:51-04:00.<br></footer></div>
</div>
</body>
</html>
2 changes: 1 addition & 1 deletion docs/classes/MySQL_Util.html
Original file line number Diff line number Diff line change
Expand Up @@ -209,7 +209,7 @@ <h2>Reference to the current connection object</h2>
<div class="row"><footer class="span12">
Template is built using <a href="http://twitter.github.com/bootstrap/">Twitter Bootstrap 2</a> and icons provided by <a href="http://glyphicons.com/">Glyphicons</a>.<br>
Documentation is powered by <a href="http://www.phpdoc.org/">phpDocumentor 2.0.0a2</a> and<br>
generated on 2012-05-15T15:40:47-04:00.<br></footer></div>
generated on 2012-05-21T15:17:51-04:00.<br></footer></div>
</div>
</body>
</html>
2 changes: 1 addition & 1 deletion docs/classes/ODBC.html
Original file line number Diff line number Diff line change
Expand Up @@ -907,7 +907,7 @@ <h2>Reference to the last executed query</h2>
<div class="row"><footer class="span12">
Template is built using <a href="http://twitter.github.com/bootstrap/">Twitter Bootstrap 2</a> and icons provided by <a href="http://glyphicons.com/">Glyphicons</a>.<br>
Documentation is powered by <a href="http://www.phpdoc.org/">phpDocumentor 2.0.0a2</a> and<br>
generated on 2012-05-15T15:40:47-04:00.<br></footer></div>
generated on 2012-05-21T15:17:51-04:00.<br></footer></div>
</div>
</body>
</html>
2 changes: 1 addition & 1 deletion docs/classes/ODBC_SQL.html
Original file line number Diff line number Diff line change
Expand Up @@ -309,7 +309,7 @@ <h3>Returns</h3>
<div class="row"><footer class="span12">
Template is built using <a href="http://twitter.github.com/bootstrap/">Twitter Bootstrap 2</a> and icons provided by <a href="http://glyphicons.com/">Glyphicons</a>.<br>
Documentation is powered by <a href="http://www.phpdoc.org/">phpDocumentor 2.0.0a2</a> and<br>
generated on 2012-05-15T15:40:47-04:00.<br></footer></div>
generated on 2012-05-21T15:17:51-04:00.<br></footer></div>
</div>
</body>
</html>
2 changes: 1 addition & 1 deletion docs/classes/ODBC_Util.html
Original file line number Diff line number Diff line change
Expand Up @@ -204,7 +204,7 @@ <h2>Reference to the current connection object</h2>
<div class="row"><footer class="span12">
Template is built using <a href="http://twitter.github.com/bootstrap/">Twitter Bootstrap 2</a> and icons provided by <a href="http://glyphicons.com/">Glyphicons</a>.<br>
Documentation is powered by <a href="http://www.phpdoc.org/">phpDocumentor 2.0.0a2</a> and<br>
generated on 2012-05-15T15:40:47-04:00.<br></footer></div>
generated on 2012-05-21T15:17:51-04:00.<br></footer></div>
</div>
</body>
</html>
2 changes: 1 addition & 1 deletion docs/classes/PgSQL.html
Original file line number Diff line number Diff line change
Expand Up @@ -907,7 +907,7 @@ <h2>Reference to the last executed query</h2>
<div class="row"><footer class="span12">
Template is built using <a href="http://twitter.github.com/bootstrap/">Twitter Bootstrap 2</a> and icons provided by <a href="http://glyphicons.com/">Glyphicons</a>.<br>
Documentation is powered by <a href="http://www.phpdoc.org/">phpDocumentor 2.0.0a2</a> and<br>
generated on 2012-05-15T15:40:47-04:00.<br></footer></div>
generated on 2012-05-21T15:17:51-04:00.<br></footer></div>
</div>
</body>
</html>
2 changes: 1 addition & 1 deletion docs/classes/PgSQL_SQL.html
Original file line number Diff line number Diff line change
Expand Up @@ -309,7 +309,7 @@ <h3>Returns</h3>
<div class="row"><footer class="span12">
Template is built using <a href="http://twitter.github.com/bootstrap/">Twitter Bootstrap 2</a> and icons provided by <a href="http://glyphicons.com/">Glyphicons</a>.<br>
Documentation is powered by <a href="http://www.phpdoc.org/">phpDocumentor 2.0.0a2</a> and<br>
generated on 2012-05-15T15:40:47-04:00.<br></footer></div>
generated on 2012-05-21T15:17:51-04:00.<br></footer></div>
</div>
</body>
</html>
2 changes: 1 addition & 1 deletion docs/classes/PgSQL_Util.html
Original file line number Diff line number Diff line change
Expand Up @@ -209,7 +209,7 @@ <h2>Reference to the current connection object</h2>
<div class="row"><footer class="span12">
Template is built using <a href="http://twitter.github.com/bootstrap/">Twitter Bootstrap 2</a> and icons provided by <a href="http://glyphicons.com/">Glyphicons</a>.<br>
Documentation is powered by <a href="http://www.phpdoc.org/">phpDocumentor 2.0.0a2</a> and<br>
generated on 2012-05-15T15:40:47-04:00.<br></footer></div>
generated on 2012-05-21T15:17:51-04:00.<br></footer></div>
</div>
</body>
</html>
2 changes: 1 addition & 1 deletion docs/classes/Query_Builder.html
Original file line number Diff line number Diff line change
Expand Up @@ -1223,7 +1223,7 @@ <h2>Values to apply to prepared statements</h2>
<div class="row"><footer class="span12">
Template is built using <a href="http://twitter.github.com/bootstrap/">Twitter Bootstrap 2</a> and icons provided by <a href="http://glyphicons.com/">Glyphicons</a>.<br>
Documentation is powered by <a href="http://www.phpdoc.org/">phpDocumentor 2.0.0a2</a> and<br>
generated on 2012-05-15T15:40:47-04:00.<br></footer></div>
generated on 2012-05-21T15:17:51-04:00.<br></footer></div>
</div>
</body>
</html>
2 changes: 1 addition & 1 deletion docs/classes/SQLite.html
Original file line number Diff line number Diff line change
Expand Up @@ -922,7 +922,7 @@ <h2>Reference to the last executed sql query</h2>
<div class="row"><footer class="span12">
Template is built using <a href="http://twitter.github.com/bootstrap/">Twitter Bootstrap 2</a> and icons provided by <a href="http://glyphicons.com/">Glyphicons</a>.<br>
Documentation is powered by <a href="http://www.phpdoc.org/">phpDocumentor 2.0.0a2</a> and<br>
generated on 2012-05-15T15:40:47-04:00.<br></footer></div>
generated on 2012-05-21T15:17:51-04:00.<br></footer></div>
</div>
</body>
</html>
2 changes: 1 addition & 1 deletion docs/classes/SQLite_SQL.html
Original file line number Diff line number Diff line change
Expand Up @@ -309,7 +309,7 @@ <h3>Returns</h3>
<div class="row"><footer class="span12">
Template is built using <a href="http://twitter.github.com/bootstrap/">Twitter Bootstrap 2</a> and icons provided by <a href="http://glyphicons.com/">Glyphicons</a>.<br>
Documentation is powered by <a href="http://www.phpdoc.org/">phpDocumentor 2.0.0a2</a> and<br>
generated on 2012-05-15T15:40:47-04:00.<br></footer></div>
generated on 2012-05-21T15:17:51-04:00.<br></footer></div>
</div>
</body>
</html>
2 changes: 1 addition & 1 deletion docs/classes/SQLite_Util.html
Original file line number Diff line number Diff line change
Expand Up @@ -209,7 +209,7 @@ <h2>Reference to the current connection object</h2>
<div class="row"><footer class="span12">
Template is built using <a href="http://twitter.github.com/bootstrap/">Twitter Bootstrap 2</a> and icons provided by <a href="http://glyphicons.com/">Glyphicons</a>.<br>
Documentation is powered by <a href="http://www.phpdoc.org/">phpDocumentor 2.0.0a2</a> and<br>
generated on 2012-05-15T15:40:47-04:00.<br></footer></div>
generated on 2012-05-21T15:17:51-04:00.<br></footer></div>
</div>
</body>
</html>
2 changes: 1 addition & 1 deletion docs/classes/Settings.html
Original file line number Diff line number Diff line change
Expand Up @@ -245,7 +245,7 @@ <h2>Singleton instance</h2>
<div class="row"><footer class="span12">
Template is built using <a href="http://twitter.github.com/bootstrap/">Twitter Bootstrap 2</a> and icons provided by <a href="http://glyphicons.com/">Glyphicons</a>.<br>
Documentation is powered by <a href="http://www.phpdoc.org/">phpDocumentor 2.0.0a2</a> and<br>
generated on 2012-05-15T15:40:47-04:00.<br></footer></div>
generated on 2012-05-21T15:17:51-04:00.<br></footer></div>
</div>
</body>
</html>
2 changes: 1 addition & 1 deletion docs/deprecated.html
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@
<div class="row"><footer class="span12">
Template is built using <a href="http://twitter.github.com/bootstrap/">Twitter Bootstrap 2</a> and icons provided by <a href="http://glyphicons.com/">Glyphicons</a>.<br>
Documentation is powered by <a href="http://www.phpdoc.org/">phpDocumentor 2.0.0a2</a> and<br>
generated on 2012-05-15T15:40:47-04:00.<br></footer></div>
generated on 2012-05-21T15:17:52-04:00.<br></footer></div>
</div>
</body>
</html>
2 changes: 1 addition & 1 deletion docs/errors.html
Original file line number Diff line number Diff line change
Expand Up @@ -94,7 +94,7 @@
<div class="row"><footer class="span12">
Template is built using <a href="http://twitter.github.com/bootstrap/">Twitter Bootstrap 2</a> and icons provided by <a href="http://glyphicons.com/">Glyphicons</a>.<br>
Documentation is powered by <a href="http://www.phpdoc.org/">phpDocumentor 2.0.0a2</a> and<br>
generated on 2012-05-15T15:40:47-04:00.<br></footer></div>
generated on 2012-05-21T15:17:52-04:00.<br></footer></div>
</div>
</body>
</html>
2 changes: 1 addition & 1 deletion docs/graph_class.html
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@
</script><div class="row"><footer class="span12">
Template is built using <a href="http://twitter.github.com/bootstrap/">Twitter Bootstrap 2</a> and icons provided by <a href="http://glyphicons.com/">Glyphicons</a>.<br>
Documentation is powered by <a href="http://www.phpdoc.org/">phpDocumentor 2.0.0a2</a> and<br>
generated on 2012-05-15T15:40:47-04:00.<br></footer></div>
generated on 2012-05-21T15:17:52-04:00.<br></footer></div>
</div>
</body>
</html>
2 changes: 1 addition & 1 deletion docs/markers.html
Original file line number Diff line number Diff line change
Expand Up @@ -164,7 +164,7 @@
<div class="row"><footer class="span12">
Template is built using <a href="http://twitter.github.com/bootstrap/">Twitter Bootstrap 2</a> and icons provided by <a href="http://glyphicons.com/">Glyphicons</a>.<br>
Documentation is powered by <a href="http://www.phpdoc.org/">phpDocumentor 2.0.0a2</a> and<br>
generated on 2012-05-15T15:40:47-04:00.<br></footer></div>
generated on 2012-05-21T15:17:52-04:00.<br></footer></div>
</div>
</body>
</html>
15 changes: 14 additions & 1 deletion docs/namespaces/default.html
Original file line number Diff line number Diff line change
Expand Up @@ -106,6 +106,19 @@ <h4>$path</h4>
</div>
</div></div>
</div>
<a name="query_autoload" id="query_autoload"></a><div class="element clickable function query_autoload" data-toggle="collapse" data-target=".query_autoload .collapse">
<h2>Load a Query class</h2>
<pre>query_autoload(string $class) </pre>
<div class="labels"></div>
<div class="row collapse"><div class="span8">
<p class="long_description"></p>
<h3>Parameters</h3>
<div class="subelement argument">
<h4>$class</h4>
<code>string</code>
</div>
</div></div>
</div>
<h3>
<i class="icon-custom icon-class"></i> Classes and interfaces</h3>
<a name="DB_PDO" id="DB_PDO"></a><div class="element ajax clickable class" href="../classes/DB_PDO.html">
Expand Down Expand Up @@ -284,7 +297,7 @@ <h2>Path to driver classes</h2>
<div class="row"><footer class="span12">
Template is built using <a href="http://twitter.github.com/bootstrap/">Twitter Bootstrap 2</a> and icons provided by <a href="http://glyphicons.com/">Glyphicons</a>.<br>
Documentation is powered by <a href="http://www.phpdoc.org/">phpDocumentor 2.0.0a2</a> and<br>
generated on 2012-05-15T15:40:47-04:00.<br></footer></div>
generated on 2012-05-21T15:17:51-04:00.<br></footer></div>
</div>
</body>
</html>
2 changes: 1 addition & 1 deletion docs/packages/.html
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@
<div class="row"><footer class="span12">
Template is built using <a href="http://twitter.github.com/bootstrap/">Twitter Bootstrap 2</a> and icons provided by <a href="http://glyphicons.com/">Glyphicons</a>.<br>
Documentation is powered by <a href="http://www.phpdoc.org/">phpDocumentor 2.0.0a2</a> and<br>
generated on 2012-05-15T15:40:47-04:00.<br></footer></div>
generated on 2012-05-21T15:17:51-04:00.<br></footer></div>
</div>
</body>
</html>
2 changes: 1 addition & 1 deletion docs/packages/Default.html
Original file line number Diff line number Diff line change
Expand Up @@ -95,7 +95,7 @@ <h2>Path to driver classes</h2>
<div class="row"><footer class="span12">
Template is built using <a href="http://twitter.github.com/bootstrap/">Twitter Bootstrap 2</a> and icons provided by <a href="http://glyphicons.com/">Glyphicons</a>.<br>
Documentation is powered by <a href="http://www.phpdoc.org/">phpDocumentor 2.0.0a2</a> and<br>
generated on 2012-05-15T15:40:47-04:00.<br></footer></div>
generated on 2012-05-21T15:17:51-04:00.<br></footer></div>
</div>
</body>
</html>
2 changes: 1 addition & 1 deletion docs/packages/Query.Drivers.html
Original file line number Diff line number Diff line change
Expand Up @@ -212,7 +212,7 @@ <h1>SQLite_Util<a href="../classes/SQLite_Util.html">¶</a>
<div class="row"><footer class="span12">
Template is built using <a href="http://twitter.github.com/bootstrap/">Twitter Bootstrap 2</a> and icons provided by <a href="http://glyphicons.com/">Glyphicons</a>.<br>
Documentation is powered by <a href="http://www.phpdoc.org/">phpDocumentor 2.0.0a2</a> and<br>
generated on 2012-05-15T15:40:47-04:00.<br></footer></div>
generated on 2012-05-21T15:17:51-04:00.<br></footer></div>
</div>
</body>
</html>
2 changes: 1 addition & 1 deletion docs/packages/Query.Helper Classes.html
Original file line number Diff line number Diff line change
Expand Up @@ -98,7 +98,7 @@ <h1>Settings<a href="../classes/Settings.html">¶</a>
<div class="row"><footer class="span12">
Template is built using <a href="http://twitter.github.com/bootstrap/">Twitter Bootstrap 2</a> and icons provided by <a href="http://glyphicons.com/">Glyphicons</a>.<br>
Documentation is powered by <a href="http://www.phpdoc.org/">phpDocumentor 2.0.0a2</a> and<br>
generated on 2012-05-15T15:40:47-04:00.<br></footer></div>
generated on 2012-05-21T15:17:51-04:00.<br></footer></div>
</div>
</body>
</html>
2 changes: 1 addition & 1 deletion docs/packages/Query.Query.html
Original file line number Diff line number Diff line change
Expand Up @@ -116,7 +116,7 @@ <h1>Query_Builder<a href="../classes/Query_Builder.html">¶</a>
<div class="row"><footer class="span12">
Template is built using <a href="http://twitter.github.com/bootstrap/">Twitter Bootstrap 2</a> and icons provided by <a href="http://glyphicons.com/">Glyphicons</a>.<br>
Documentation is powered by <a href="http://www.phpdoc.org/">phpDocumentor 2.0.0a2</a> and<br>
generated on 2012-05-15T15:40:47-04:00.<br></footer></div>
generated on 2012-05-21T15:17:51-04:00.<br></footer></div>
</div>
</body>
</html>

0 comments on commit 2c67dd0

Please sign in to comment.