Beispiel #1
0
    def handle(self, *args, **options):
        from tendenci.apps.photos.models import Image
        from tendenci.apps.photos.utils.caching import cache_photo_size

        for photo in Image.objects.all().order_by('-pk'):

            cache_kwargs_list = []
            cache_kwargs_list.append({
                "id": photo.pk,
                "size": "422x700",
                "constrain": True
            })
            cache_kwargs_list.append({
                "id": photo.pk,
                "size": "102x78",
                "crop": True
            })
            cache_kwargs_list.append({
                "id": photo.pk,
                "size": "640x640",
                "constrain": True
            })

            for cache_kwargs in cache_kwargs_list:
                cache_photo_size(**cache_kwargs)

            print(photo.pk)
Beispiel #2
0
    def handle(self, photo_id, **options):
        from tendenci.apps.photos.utils.caching import cache_photo_size

        cache_kwargs_list = []
        cache_kwargs_list.append({"id": photo_id, "size": "422x700", "constrain": True})
        cache_kwargs_list.append({"id": photo_id, "size": "102x78", "crop": True})
        cache_kwargs_list.append({"id": photo_id, "size": "640x640", "constrain": True})

        for cache_kwargs in cache_kwargs_list:
            cache_photo_size(**cache_kwargs)
Beispiel #3
0
    def handle(self, photo_id, **options):
        from tendenci.apps.photos.utils.caching import cache_photo_size

        cache_kwargs_list = []
        cache_kwargs_list.append({"id": photo_id, "size": "422x700", "constrain": True})
        cache_kwargs_list.append({"id": photo_id, "size": "102x78", "crop": True})
        cache_kwargs_list.append({"id": photo_id, "size": "640x640", "constrain": True})

        for cache_kwargs in cache_kwargs_list:
            cache_photo_size(**cache_kwargs)
Beispiel #4
0
    def handle(self, *args, **options):
        from tendenci.apps.photos.models import Image
        from tendenci.apps.photos.utils.caching import cache_photo_size

        for photo in Image.objects.all().order_by('-pk'):

            cache_kwargs_list = []
            cache_kwargs_list.append({"id": photo.pk, "size": "422x700", "constrain": True})
            cache_kwargs_list.append({"id": photo.pk, "size": "102x78", "crop": True})
            cache_kwargs_list.append({"id": photo.pk, "size": "640x640", "constrain": True})

            for cache_kwargs in cache_kwargs_list:
                cache_photo_size(**cache_kwargs)

            print photo.pk