Move django-inteacting tools to be management commands
authorMagnus Hagander <magnus@hagander.net>
Thu, 28 Apr 2016 14:56:34 +0000 (16:56 +0200)
committerMagnus Hagander <magnus@hagander.net>
Sat, 14 May 2016 17:49:13 +0000 (19:49 +0200)
commitf3e1a189b4a089bc85dffac90d1ab682ac9e9537
tree98caa1fcb256d719bef5cdd8b7b5214dc65b2797
parenta8500c385347fbc73ffc8f8eda0bc51e808e1e91
Move django-inteacting tools to be management commands

Much easier to execute them in the correct environment now that we have
proper management commands in django.
12 files changed:
pgweb/core/management/__init__.py [new file with mode: 0644]
pgweb/core/management/commands/__init__.py [new file with mode: 0644]
pgweb/core/management/commands/cleanup_old_records.py [new file with mode: 0644]
pgweb/core/management/commands/fetch_rss_feeds.py [new file with mode: 0644]
pgweb/core/management/commands/moderation_report.py [new file with mode: 0644]
pgweb/mailqueue/management/__init__.py [new file with mode: 0644]
pgweb/mailqueue/management/commands/__init__.py [new file with mode: 0644]
pgweb/mailqueue/management/commands/send_queued_mail.py [new file with mode: 0755]
tools/mailqueue/send_queued_mail.py [deleted file]
tools/misc/cleanup_old_records.py [deleted file]
tools/moderation/moderation_report.py [deleted file]
tools/rss/fetch_rss_feeds.py [deleted file]