annotate band/management/commands/untextile.py @ 95:7b52e8ef01ec

For Django 1.5: Remove usage of django.contrib.markup. Since we were only using Textile in one place, decided to stop using it altogether. Wrote a management command, untextile, to convert the gallery models' description fields from textile to raw HTML. This should be run one time before going live with Django 1.5.
author Brian Neal <bgneal@gmail.com>
date Wed, 28 Aug 2013 19:22:23 -0500
parents
children
rev   line source
bgneal@95 1 """
bgneal@95 2 untextile.py - A command to remove the use of Textile by updating the models.
bgneal@95 3
bgneal@95 4 """
bgneal@95 5 import textile
bgneal@95 6
bgneal@95 7 from django.core.management.base import NoArgsCommand
bgneal@95 8 from photologue.models import Gallery
bgneal@95 9
bgneal@95 10
bgneal@95 11 class Command(NoArgsCommand):
bgneal@95 12 help = 'Updates models by un-textiling text fields'
bgneal@95 13
bgneal@95 14 def handle_noargs(self, **options):
bgneal@95 15
bgneal@95 16 for gallery in Gallery.objects.all():
bgneal@95 17 gallery.description = textile.textile(gallery.description,
bgneal@95 18 encoding='utf-8',
bgneal@95 19 output='utf-8')
bgneal@95 20 gallery.save()