X-Git-Url: https://git.mdrn.pl/wolnelektury.git/blobdiff_plain/70880645deaf4929456d51fd8bbeba07f324b040..HEAD:/src/picture/tasks.py diff --git a/src/picture/tasks.py b/src/picture/tasks.py index ff9aa1357..b44c96e3a 100644 --- a/src/picture/tasks.py +++ b/src/picture/tasks.py @@ -1,9 +1,7 @@ -# This file is part of Wolnelektury, licensed under GNU Affero GPLv3 or later. -# Copyright © Fundacja Nowoczesna Polska. See NOTICE for more information. +# This file is part of Wolne Lektury, licensed under GNU Affero GPLv3 or later. +# Copyright © Fundacja Wolne Lektury. See NOTICE for more information. # import json -from traceback import print_exc - from celery import shared_task from django.core.files.base import ContentFile from django.template.loader import render_to_string @@ -20,14 +18,3 @@ def generate_picture_html(picture_id): 'themes': areas_json['themes'], }) pic.html_file.save("%s.html" % pic.slug, ContentFile(html_text)) - - -@shared_task -def index_picture(picture_id, picture_info=None, **kwargs): - from picture.models import Picture - try: - return Picture.objects.get(id=picture_id).search_index(picture_info, **kwargs) - except Exception as e: - print("Exception during index: %s" % e) - print_exc() - raise e