Commit: 828bc989d320b38f141486ce962173d33ce7c57a
Author: Nate Abele | Date: 2010-03-08 11:49:24 -0500
diff --git a/libraries/lithium/console/command/FindDeps.php b/libraries/lithium/console/command/FindDeps.php
deleted file mode 100755
index 2f1433d..0000000
--- a/libraries/lithium/console/command/FindDeps.php
+++ /dev/null
@@ -1,55 +0,0 @@
-<?php
-/**
- * Lithium: the most rad php framework
- *
- * @copyright Copyright 2009, Union of RAD (http://union-of-rad.org)
- * @license http://opensource.org/licenses/bsd-license.php The BSD License
- */
-
-namespace lithium\console\command;
-
-use \lithium\core\Libraries;
-use \lithium\analysis\Inspector;
-
-/**
- * Adds headers and docblocks to classes and methods.
- */
-class FindDeps extends \lithium\console\Command {
-
- public function run() {
- $classes = Libraries::find('lithium', array('recursive' => true, 'exclude' => '/Test$/'));
- $dependencies = array();
-
- foreach ($classes as $class) {
- list(, $ns) = explode('\\', $class);
- if ($depends = Inspector::dependencies($class)) {
- foreach ($depends as $d) {
- list(, $dependNs) = explode('\\', $d);
- $dependencies[$ns][] = $dependNs;
-
- // if ($dependNs == 'http') {
- // $this->out("{$class} : {$d}");
- // }
- }
- $dependencies[$ns] = array_filter(array_unique($dependencies[$ns]));
- }
- }
-
- foreach ($dependencies as $ns => $list) {
- if ($ns == 'tests') { // || $ns == 'core'
- continue;
- }
- $this->out("{$ns}");
-
- foreach ($list as $d) {
- $this->out(" - {$d}");
- }
- }
- echo "\n\n";
- }
-
- public function help() {
- }
-}
-
-?>
\ No newline at end of file
diff --git a/libraries/lithium/readme.wiki b/libraries/lithium/readme.wiki
deleted file mode 100755
index 5de3cea..0000000
--- a/libraries/lithium/readme.wiki
+++ /dev/null
@@ -1,5 +0,0 @@
-
-
-# The Filter System
-
-Lithium's filter system is
\ No newline at end of file