X-Git-Url: https://git.mdrn.pl/edumed.git/blobdiff_plain/045df7c750b525bc5efab353bee21bbe9eac9b4e..d555d988764995ea1f9f5ece46f453a66f09b334:/catalogue/management/commands/republish.py diff --git a/catalogue/management/commands/republish.py b/catalogue/management/commands/republish.py deleted file mode 100644 index 5c3b429..0000000 --- a/catalogue/management/commands/republish.py +++ /dev/null @@ -1,26 +0,0 @@ -# -*- coding: utf-8 -*- -# This file is part of EduMed, licensed under GNU Affero GPLv3 or later. -# Copyright © Fundacja Nowoczesna Polska. See NOTICE for more information. -# -from django.core.management.base import BaseCommand - - -class Command(BaseCommand): - help = 'Republishes all lessons.' - - def handle(self, **options): - from catalogue.models import Lesson - from curriculum.models import Level - - for lesson in Lesson.objects.all(): - print - print 'Republishing: %s' % lesson.slug - # try: - lesson.republish(repackage_level=False) - # except BaseException as e: - # print '!!!!!! EXCEPTION !!!!!!' - # print e - - print 'Rebuilding levels...' - for level in Level.objects.all(): - level.build_packages()