From 8036b457711f6978b3bdefb41b5e98da46ff85d0 Mon Sep 17 00:00:00 2001 From: Thomas Leonard Date: Wed, 2 Apr 2008 21:09:51 +0100 Subject: [PATCH] Renamed rox.shell to roxshell. --- bin/shell | 2 +- rox/shell/__init__.py | 0 {rox => roxshell}/__init__.py | 0 {rox/shell => roxshell}/app.py | 0 {rox/shell => roxshell}/cli.py | 0 {rox/shell => roxshell}/commands.py | 0 {rox/shell => roxshell}/directory.py | 0 {rox/shell => roxshell}/line.py | 0 {rox/shell => roxshell}/shell.py | 0 {rox/shell => roxshell}/support.py | 0 {rox/shell => roxshell}/ui.xml | 0 11 files changed, 1 insertion(+), 1 deletion(-) delete mode 100644 rox/shell/__init__.py rename {rox => roxshell}/__init__.py (100%) rename {rox/shell => roxshell}/app.py (100%) rename {rox/shell => roxshell}/cli.py (100%) rename {rox/shell => roxshell}/commands.py (100%) rename {rox/shell => roxshell}/directory.py (100%) rename {rox/shell => roxshell}/line.py (100%) rename {rox/shell => roxshell}/shell.py (100%) rename {rox/shell => roxshell}/support.py (100%) rename {rox/shell => roxshell}/ui.xml (100%) diff --git a/bin/shell b/bin/shell index e02f2fe..28e8886 100755 --- a/bin/shell +++ b/bin/shell @@ -2,5 +2,5 @@ import sys, os sys.path.insert(0, os.path.join(os.path.dirname(__file__), '..')) -from rox.shell import cli +from roxshell import cli cli.main(sys.argv[1:]) diff --git a/rox/shell/__init__.py b/rox/shell/__init__.py deleted file mode 100644 index e69de29..0000000 diff --git a/rox/__init__.py b/roxshell/__init__.py similarity index 100% rename from rox/__init__.py rename to roxshell/__init__.py diff --git a/rox/shell/app.py b/roxshell/app.py similarity index 100% rename from rox/shell/app.py rename to roxshell/app.py diff --git a/rox/shell/cli.py b/roxshell/cli.py similarity index 100% rename from rox/shell/cli.py rename to roxshell/cli.py diff --git a/rox/shell/commands.py b/roxshell/commands.py similarity index 100% rename from rox/shell/commands.py rename to roxshell/commands.py diff --git a/rox/shell/directory.py b/roxshell/directory.py similarity index 100% rename from rox/shell/directory.py rename to roxshell/directory.py diff --git a/rox/shell/line.py b/roxshell/line.py similarity index 100% rename from rox/shell/line.py rename to roxshell/line.py diff --git a/rox/shell/shell.py b/roxshell/shell.py similarity index 100% rename from rox/shell/shell.py rename to roxshell/shell.py diff --git a/rox/shell/support.py b/roxshell/support.py similarity index 100% rename from rox/shell/support.py rename to roxshell/support.py diff --git a/rox/shell/ui.xml b/roxshell/ui.xml similarity index 100% rename from rox/shell/ui.xml rename to roxshell/ui.xml -- 2.11.4.GIT