From 43a73f368f5d7d351b5d0eeeaa2d59c15f3a24ac Mon Sep 17 00:00:00 2001 From: "Brian S. Stephan" Date: Sun, 16 Mar 2014 09:16:20 -0500 Subject: [PATCH] move irc bot into its own directory getting ready to make this thing a django app, which will hopefully actually be effective as an idea --- DrBotIRC.py => dr.botzo/DrBotIRC.py | 0 Module.py => dr.botzo/Module.py | 0 dr.botzo.cfg.example => dr.botzo/dr.botzo.cfg.example | 0 dr.botzo.py => dr.botzo/dr.botzo.py | 0 {extlib => dr.botzo/extlib}/__init__.py | 0 {extlib => dr.botzo/extlib}/irclib.py | 0 logging.cfg => dr.botzo/logging.cfg | 0 {modules => dr.botzo/modules}/Achievements.py | 0 {modules => dr.botzo/modules}/Acro.py | 0 {modules => dr.botzo/modules}/Babelfish.py | 0 {modules => dr.botzo/modules}/Countdown.py | 0 {modules => dr.botzo/modules}/Dice.py | 0 {modules => dr.botzo/modules}/Dispatch.py | 0 {modules => dr.botzo/modules}/Echo.py | 0 {modules => dr.botzo/modules}/EightBall.py | 0 {modules => dr.botzo/modules}/Facts.py | 0 {modules => dr.botzo/modules}/IrcAdmin.py | 0 {modules => dr.botzo/modules}/Karma.py | 0 {modules => dr.botzo/modules}/Markov.py | 0 {modules => dr.botzo/modules}/Pi.py | 0 {modules => dr.botzo/modules}/Seen.py | 0 {modules => dr.botzo/modules}/Storycraft.py | 0 {modules => dr.botzo/modules}/TextTransform.py | 0 {modules => dr.botzo/modules}/TopicDump.py | 0 {modules => dr.botzo/modules}/Twitter.py | 0 {modules => dr.botzo/modules}/Weather.py | 0 {modules => dr.botzo/modules}/__init__.py | 0 {web => dr.botzo/old-web}/__init__.py | 0 {web => dr.botzo/old-web}/dr.botzo.wsgi | 0 {web => dr.botzo/old-web}/index/views.py | 0 {web => dr.botzo/old-web}/karma/__init__.py | 0 {web => dr.botzo/old-web}/karma/models.py | 0 {web => dr.botzo/old-web}/karma/tests.py | 0 {web => dr.botzo/old-web}/karma/urls.py | 0 {web => dr.botzo/old-web}/karma/views.py | 0 {web => dr.botzo/old-web}/manage.py | 0 {web => dr.botzo/old-web}/settings.py | 0 {web => dr.botzo/old-web}/static/storycraft/page.css | 0 {web => dr.botzo/old-web}/storycraft/__init__.py | 0 {web => dr.botzo/old-web}/storycraft/models.py | 0 {web => dr.botzo/old-web}/storycraft/urls.py | 0 {web => dr.botzo/old-web}/storycraft/views.py | 0 {web => dr.botzo/old-web}/templates/index.html | 0 {web => dr.botzo/old-web}/templates/karma/givers.html | 0 {web => dr.botzo/old-web}/templates/karma/index.html | 0 {web => dr.botzo/old-web}/templates/karma/key_detail.html | 0 {web => dr.botzo/old-web}/templates/karma/stats.html | 0 {web => dr.botzo/old-web}/templates/storycraft/game_index.html | 0 {web => dr.botzo/old-web}/templates/storycraft/index.html | 0 {web => dr.botzo/old-web}/templates/storycraft/tmpl_footer.html | 0 .../old-web}/templates/storycraft/tmpl_game_story.html | 0 .../old-web}/templates/storycraft/tmpl_game_summary.html | 0 {web => dr.botzo/old-web}/urls.py | 0 53 files changed, 0 insertions(+), 0 deletions(-) rename DrBotIRC.py => dr.botzo/DrBotIRC.py (100%) rename Module.py => dr.botzo/Module.py (100%) rename dr.botzo.cfg.example => dr.botzo/dr.botzo.cfg.example (100%) rename dr.botzo.py => dr.botzo/dr.botzo.py (100%) rename {extlib => dr.botzo/extlib}/__init__.py (100%) rename {extlib => dr.botzo/extlib}/irclib.py (100%) rename logging.cfg => dr.botzo/logging.cfg (100%) rename {modules => dr.botzo/modules}/Achievements.py (100%) rename {modules => dr.botzo/modules}/Acro.py (100%) rename {modules => dr.botzo/modules}/Babelfish.py (100%) rename {modules => dr.botzo/modules}/Countdown.py (100%) rename {modules => dr.botzo/modules}/Dice.py (100%) rename {modules => dr.botzo/modules}/Dispatch.py (100%) rename {modules => dr.botzo/modules}/Echo.py (100%) rename {modules => dr.botzo/modules}/EightBall.py (100%) rename {modules => dr.botzo/modules}/Facts.py (100%) rename {modules => dr.botzo/modules}/IrcAdmin.py (100%) rename {modules => dr.botzo/modules}/Karma.py (100%) rename {modules => dr.botzo/modules}/Markov.py (100%) rename {modules => dr.botzo/modules}/Pi.py (100%) rename {modules => dr.botzo/modules}/Seen.py (100%) rename {modules => dr.botzo/modules}/Storycraft.py (100%) rename {modules => dr.botzo/modules}/TextTransform.py (100%) rename {modules => dr.botzo/modules}/TopicDump.py (100%) rename {modules => dr.botzo/modules}/Twitter.py (100%) rename {modules => dr.botzo/modules}/Weather.py (100%) rename {modules => dr.botzo/modules}/__init__.py (100%) rename {web => dr.botzo/old-web}/__init__.py (100%) rename {web => dr.botzo/old-web}/dr.botzo.wsgi (100%) rename {web => dr.botzo/old-web}/index/views.py (100%) rename {web => dr.botzo/old-web}/karma/__init__.py (100%) rename {web => dr.botzo/old-web}/karma/models.py (100%) rename {web => dr.botzo/old-web}/karma/tests.py (100%) rename {web => dr.botzo/old-web}/karma/urls.py (100%) rename {web => dr.botzo/old-web}/karma/views.py (100%) rename {web => dr.botzo/old-web}/manage.py (100%) rename {web => dr.botzo/old-web}/settings.py (100%) rename {web => dr.botzo/old-web}/static/storycraft/page.css (100%) rename {web => dr.botzo/old-web}/storycraft/__init__.py (100%) rename {web => dr.botzo/old-web}/storycraft/models.py (100%) rename {web => dr.botzo/old-web}/storycraft/urls.py (100%) rename {web => dr.botzo/old-web}/storycraft/views.py (100%) rename {web => dr.botzo/old-web}/templates/index.html (100%) rename {web => dr.botzo/old-web}/templates/karma/givers.html (100%) rename {web => dr.botzo/old-web}/templates/karma/index.html (100%) rename {web => dr.botzo/old-web}/templates/karma/key_detail.html (100%) rename {web => dr.botzo/old-web}/templates/karma/stats.html (100%) rename {web => dr.botzo/old-web}/templates/storycraft/game_index.html (100%) rename {web => dr.botzo/old-web}/templates/storycraft/index.html (100%) rename {web => dr.botzo/old-web}/templates/storycraft/tmpl_footer.html (100%) rename {web => dr.botzo/old-web}/templates/storycraft/tmpl_game_story.html (100%) rename {web => dr.botzo/old-web}/templates/storycraft/tmpl_game_summary.html (100%) rename {web => dr.botzo/old-web}/urls.py (100%) diff --git a/DrBotIRC.py b/dr.botzo/DrBotIRC.py similarity index 100% rename from DrBotIRC.py rename to dr.botzo/DrBotIRC.py diff --git a/Module.py b/dr.botzo/Module.py similarity index 100% rename from Module.py rename to dr.botzo/Module.py diff --git a/dr.botzo.cfg.example b/dr.botzo/dr.botzo.cfg.example similarity index 100% rename from dr.botzo.cfg.example rename to dr.botzo/dr.botzo.cfg.example diff --git a/dr.botzo.py b/dr.botzo/dr.botzo.py similarity index 100% rename from dr.botzo.py rename to dr.botzo/dr.botzo.py diff --git a/extlib/__init__.py b/dr.botzo/extlib/__init__.py similarity index 100% rename from extlib/__init__.py rename to dr.botzo/extlib/__init__.py diff --git a/extlib/irclib.py b/dr.botzo/extlib/irclib.py similarity index 100% rename from extlib/irclib.py rename to dr.botzo/extlib/irclib.py diff --git a/logging.cfg b/dr.botzo/logging.cfg similarity index 100% rename from logging.cfg rename to dr.botzo/logging.cfg diff --git a/modules/Achievements.py b/dr.botzo/modules/Achievements.py similarity index 100% rename from modules/Achievements.py rename to dr.botzo/modules/Achievements.py diff --git a/modules/Acro.py b/dr.botzo/modules/Acro.py similarity index 100% rename from modules/Acro.py rename to dr.botzo/modules/Acro.py diff --git a/modules/Babelfish.py b/dr.botzo/modules/Babelfish.py similarity index 100% rename from modules/Babelfish.py rename to dr.botzo/modules/Babelfish.py diff --git a/modules/Countdown.py b/dr.botzo/modules/Countdown.py similarity index 100% rename from modules/Countdown.py rename to dr.botzo/modules/Countdown.py diff --git a/modules/Dice.py b/dr.botzo/modules/Dice.py similarity index 100% rename from modules/Dice.py rename to dr.botzo/modules/Dice.py diff --git a/modules/Dispatch.py b/dr.botzo/modules/Dispatch.py similarity index 100% rename from modules/Dispatch.py rename to dr.botzo/modules/Dispatch.py diff --git a/modules/Echo.py b/dr.botzo/modules/Echo.py similarity index 100% rename from modules/Echo.py rename to dr.botzo/modules/Echo.py diff --git a/modules/EightBall.py b/dr.botzo/modules/EightBall.py similarity index 100% rename from modules/EightBall.py rename to dr.botzo/modules/EightBall.py diff --git a/modules/Facts.py b/dr.botzo/modules/Facts.py similarity index 100% rename from modules/Facts.py rename to dr.botzo/modules/Facts.py diff --git a/modules/IrcAdmin.py b/dr.botzo/modules/IrcAdmin.py similarity index 100% rename from modules/IrcAdmin.py rename to dr.botzo/modules/IrcAdmin.py diff --git a/modules/Karma.py b/dr.botzo/modules/Karma.py similarity index 100% rename from modules/Karma.py rename to dr.botzo/modules/Karma.py diff --git a/modules/Markov.py b/dr.botzo/modules/Markov.py similarity index 100% rename from modules/Markov.py rename to dr.botzo/modules/Markov.py diff --git a/modules/Pi.py b/dr.botzo/modules/Pi.py similarity index 100% rename from modules/Pi.py rename to dr.botzo/modules/Pi.py diff --git a/modules/Seen.py b/dr.botzo/modules/Seen.py similarity index 100% rename from modules/Seen.py rename to dr.botzo/modules/Seen.py diff --git a/modules/Storycraft.py b/dr.botzo/modules/Storycraft.py similarity index 100% rename from modules/Storycraft.py rename to dr.botzo/modules/Storycraft.py diff --git a/modules/TextTransform.py b/dr.botzo/modules/TextTransform.py similarity index 100% rename from modules/TextTransform.py rename to dr.botzo/modules/TextTransform.py diff --git a/modules/TopicDump.py b/dr.botzo/modules/TopicDump.py similarity index 100% rename from modules/TopicDump.py rename to dr.botzo/modules/TopicDump.py diff --git a/modules/Twitter.py b/dr.botzo/modules/Twitter.py similarity index 100% rename from modules/Twitter.py rename to dr.botzo/modules/Twitter.py diff --git a/modules/Weather.py b/dr.botzo/modules/Weather.py similarity index 100% rename from modules/Weather.py rename to dr.botzo/modules/Weather.py diff --git a/modules/__init__.py b/dr.botzo/modules/__init__.py similarity index 100% rename from modules/__init__.py rename to dr.botzo/modules/__init__.py diff --git a/web/__init__.py b/dr.botzo/old-web/__init__.py similarity index 100% rename from web/__init__.py rename to dr.botzo/old-web/__init__.py diff --git a/web/dr.botzo.wsgi b/dr.botzo/old-web/dr.botzo.wsgi similarity index 100% rename from web/dr.botzo.wsgi rename to dr.botzo/old-web/dr.botzo.wsgi diff --git a/web/index/views.py b/dr.botzo/old-web/index/views.py similarity index 100% rename from web/index/views.py rename to dr.botzo/old-web/index/views.py diff --git a/web/karma/__init__.py b/dr.botzo/old-web/karma/__init__.py similarity index 100% rename from web/karma/__init__.py rename to dr.botzo/old-web/karma/__init__.py diff --git a/web/karma/models.py b/dr.botzo/old-web/karma/models.py similarity index 100% rename from web/karma/models.py rename to dr.botzo/old-web/karma/models.py diff --git a/web/karma/tests.py b/dr.botzo/old-web/karma/tests.py similarity index 100% rename from web/karma/tests.py rename to dr.botzo/old-web/karma/tests.py diff --git a/web/karma/urls.py b/dr.botzo/old-web/karma/urls.py similarity index 100% rename from web/karma/urls.py rename to dr.botzo/old-web/karma/urls.py diff --git a/web/karma/views.py b/dr.botzo/old-web/karma/views.py similarity index 100% rename from web/karma/views.py rename to dr.botzo/old-web/karma/views.py diff --git a/web/manage.py b/dr.botzo/old-web/manage.py similarity index 100% rename from web/manage.py rename to dr.botzo/old-web/manage.py diff --git a/web/settings.py b/dr.botzo/old-web/settings.py similarity index 100% rename from web/settings.py rename to dr.botzo/old-web/settings.py diff --git a/web/static/storycraft/page.css b/dr.botzo/old-web/static/storycraft/page.css similarity index 100% rename from web/static/storycraft/page.css rename to dr.botzo/old-web/static/storycraft/page.css diff --git a/web/storycraft/__init__.py b/dr.botzo/old-web/storycraft/__init__.py similarity index 100% rename from web/storycraft/__init__.py rename to dr.botzo/old-web/storycraft/__init__.py diff --git a/web/storycraft/models.py b/dr.botzo/old-web/storycraft/models.py similarity index 100% rename from web/storycraft/models.py rename to dr.botzo/old-web/storycraft/models.py diff --git a/web/storycraft/urls.py b/dr.botzo/old-web/storycraft/urls.py similarity index 100% rename from web/storycraft/urls.py rename to dr.botzo/old-web/storycraft/urls.py diff --git a/web/storycraft/views.py b/dr.botzo/old-web/storycraft/views.py similarity index 100% rename from web/storycraft/views.py rename to dr.botzo/old-web/storycraft/views.py diff --git a/web/templates/index.html b/dr.botzo/old-web/templates/index.html similarity index 100% rename from web/templates/index.html rename to dr.botzo/old-web/templates/index.html diff --git a/web/templates/karma/givers.html b/dr.botzo/old-web/templates/karma/givers.html similarity index 100% rename from web/templates/karma/givers.html rename to dr.botzo/old-web/templates/karma/givers.html diff --git a/web/templates/karma/index.html b/dr.botzo/old-web/templates/karma/index.html similarity index 100% rename from web/templates/karma/index.html rename to dr.botzo/old-web/templates/karma/index.html diff --git a/web/templates/karma/key_detail.html b/dr.botzo/old-web/templates/karma/key_detail.html similarity index 100% rename from web/templates/karma/key_detail.html rename to dr.botzo/old-web/templates/karma/key_detail.html diff --git a/web/templates/karma/stats.html b/dr.botzo/old-web/templates/karma/stats.html similarity index 100% rename from web/templates/karma/stats.html rename to dr.botzo/old-web/templates/karma/stats.html diff --git a/web/templates/storycraft/game_index.html b/dr.botzo/old-web/templates/storycraft/game_index.html similarity index 100% rename from web/templates/storycraft/game_index.html rename to dr.botzo/old-web/templates/storycraft/game_index.html diff --git a/web/templates/storycraft/index.html b/dr.botzo/old-web/templates/storycraft/index.html similarity index 100% rename from web/templates/storycraft/index.html rename to dr.botzo/old-web/templates/storycraft/index.html diff --git a/web/templates/storycraft/tmpl_footer.html b/dr.botzo/old-web/templates/storycraft/tmpl_footer.html similarity index 100% rename from web/templates/storycraft/tmpl_footer.html rename to dr.botzo/old-web/templates/storycraft/tmpl_footer.html diff --git a/web/templates/storycraft/tmpl_game_story.html b/dr.botzo/old-web/templates/storycraft/tmpl_game_story.html similarity index 100% rename from web/templates/storycraft/tmpl_game_story.html rename to dr.botzo/old-web/templates/storycraft/tmpl_game_story.html diff --git a/web/templates/storycraft/tmpl_game_summary.html b/dr.botzo/old-web/templates/storycraft/tmpl_game_summary.html similarity index 100% rename from web/templates/storycraft/tmpl_game_summary.html rename to dr.botzo/old-web/templates/storycraft/tmpl_game_summary.html diff --git a/web/urls.py b/dr.botzo/old-web/urls.py similarity index 100% rename from web/urls.py rename to dr.botzo/old-web/urls.py