Diese Webseite funktioniert besser mit JavaScript.
Startseite
Hilfe
Anmelden
ben
/
earwigbot
Mirror von
https://github.com/earwig/earwigbot
Beobachten
1
Favorisieren
1
Fork
0
Code
Releases
4
Aktivität
Quellcode durchsuchen
restructuring everything for unit tests, etc; bot doesn't work anymore, but I'll fix that in a bit
tags/v0.1^2
Ben Kurtovic
vor 13 Jahren
Ursprung
15001bf513
Commit
68af0e796f
49 geänderte Dateien
mit
1 neuen
und
0 gelöschten
Zeilen
Geteilte Ansicht
Diff-Optionen
Statistiken anzeigen
Patch-Datei herunterladen
Vergleichs-Datei herunterladen
+0
-0
bot/__init__.py
+0
-0
bot/blowfish.py
+1
-0
bot/classes/__init__.py
+0
-0
bot/classes/base_command.py
+0
-0
bot/classes/base_task.py
+0
-0
bot/classes/connection.py
+0
-0
bot/classes/data.py
+0
-0
bot/classes/rc.py
+0
-0
bot/commands/__init__.py
+0
-0
bot/commands/_old.py
+0
-0
bot/commands/afc_report.py
+0
-0
bot/commands/afc_status.py
+0
-0
bot/commands/calc.py
+0
-0
bot/commands/chanops.py
+0
-0
bot/commands/crypt.py
+0
-0
bot/commands/git.py
+0
-0
bot/commands/help.py
+0
-0
bot/commands/link.py
+0
-0
bot/commands/remind.py
+0
-0
bot/commands/rights.py
+0
-0
bot/commands/tasks.py
+0
-0
bot/commands/test.py
+0
-0
bot/config.py
+0
-0
bot/frontend.py
+0
-0
bot/main.py
+0
-0
bot/tasks/__init__.py
+0
-0
bot/tasks/afc_catdelink.py
+0
-0
bot/tasks/afc_copyvios.py
+0
-0
bot/tasks/afc_dailycats.py
+0
-0
bot/tasks/afc_statistics.py
+0
-0
bot/tasks/afc_undated.py
+0
-0
bot/tasks/blptag.py
+0
-0
bot/tasks/feed_dailycats.py
+0
-0
bot/tasks/wrongmime.py
+0
-0
bot/watcher.py
+0
-0
bot/watcher_logic.py
+0
-0
bot/wiki/__init__.py
+0
-0
bot/wiki/category.py
+0
-0
bot/wiki/constants.py
+0
-0
bot/wiki/exceptions.py
+0
-0
bot/wiki/functions.py
+0
-0
bot/wiki/page.py
+0
-0
bot/wiki/site.py
+0
-0
bot/wiki/user.py
+0
-0
+0
-0
+0
-0
+0
-0
+0
-0
core/__init__.py → bot/__init__.py
Datei anzeigen
lib/blowfish.py → bot/blowfish.py
Datei anzeigen
irc/classes/__init__.py → bot/classes/__init__.py
Datei anzeigen
@@ -1,4 +1,5 @@
from base_command import *
from base_task import *
from connection import *
from data import *
from rc import *
irc/classes/base_command.py → bot/classes/base_command.py
Datei anzeigen
wiki/base_task.py → bot/classes/base_task.py
Datei anzeigen
irc/classes/connection.py → bot/classes/connection.py
Datei anzeigen
irc/classes/data.py → bot/classes/data.py
Datei anzeigen
irc/classes/rc.py → bot/classes/rc.py
Datei anzeigen
irc/command_handler.py → bot/commands/__init__.py
Datei anzeigen
irc/commands/_old.py → bot/commands/_old.py
Datei anzeigen
irc/commands/afc_report.py → bot/commands/afc_report.py
Datei anzeigen
irc/commands/afc_status.py → bot/commands/afc_status.py
Datei anzeigen
irc/commands/calc.py → bot/commands/calc.py
Datei anzeigen
irc/commands/chanops.py → bot/commands/chanops.py
Datei anzeigen
irc/commands/crypt.py → bot/commands/crypt.py
Datei anzeigen
irc/commands/git.py → bot/commands/git.py
Datei anzeigen
irc/commands/help.py → bot/commands/help.py
Datei anzeigen
irc/commands/link.py → bot/commands/link.py
Datei anzeigen
irc/commands/remind.py → bot/commands/remind.py
Datei anzeigen
irc/commands/rights.py → bot/commands/rights.py
Datei anzeigen
irc/commands/tasks.py → bot/commands/tasks.py
Datei anzeigen
irc/commands/test.py → bot/commands/test.py
Datei anzeigen
core/config.py → bot/config.py
Datei anzeigen
irc/frontend.py → bot/frontend.py
Datei anzeigen
core/main.py → bot/main.py
Datei anzeigen
wiki/task_manager.py → bot/tasks/__init__.py
Datei anzeigen
wiki/tasks/afc_catdelink.py → bot/tasks/afc_catdelink.py
Datei anzeigen
wiki/tasks/afc_copyvios.py → bot/tasks/afc_copyvios.py
Datei anzeigen
wiki/tasks/afc_dailycats.py → bot/tasks/afc_dailycats.py
Datei anzeigen
wiki/tasks/afc_statistics.py → bot/tasks/afc_statistics.py
Datei anzeigen
wiki/tasks/afc_undated.py → bot/tasks/afc_undated.py
Datei anzeigen
wiki/tasks/blptag.py → bot/tasks/blptag.py
Datei anzeigen
wiki/tasks/feed_dailycats.py → bot/tasks/feed_dailycats.py
Datei anzeigen
wiki/tasks/wrongmime.py → bot/tasks/wrongmime.py
Datei anzeigen
irc/watcher.py → bot/watcher.py
Datei anzeigen
irc/watcher_logic.py → bot/watcher_logic.py
Datei anzeigen
wiki/tools/__init__.py → bot/wiki/__init__.py
Datei anzeigen
wiki/tools/category.py → bot/wiki/category.py
Datei anzeigen
wiki/tools/constants.py → bot/wiki/constants.py
Datei anzeigen
wiki/tools/exceptions.py → bot/wiki/exceptions.py
Datei anzeigen
wiki/tools/functions.py → bot/wiki/functions.py
Datei anzeigen
wiki/tools/page.py → bot/wiki/page.py
Datei anzeigen
wiki/tools/site.py → bot/wiki/site.py
Datei anzeigen
wiki/tools/user.py → bot/wiki/user.py
Datei anzeigen
+ 0
- 0
Datei anzeigen
+ 0
- 0
Datei anzeigen
+ 0
- 0
Datei anzeigen
+ 0
- 0
Datei anzeigen
+ 0
- 0
Datei anzeigen
Verfassen
Vorschau
Laden…
Abbrechen
Speichern