Mercurial > public > sg101
view forums/management/commands/topic_export.py @ 693:ad69236e8501
For issue #52, update many 3rd party Javascript libraries.
Updated to jquery 1.10.2, jquery ui 1.10.3.
This broke a lot of stuff.
- Found a newer version of the jquery cycle all plugin (3.0.3).
- Updated JPlayer to 2.4.0.
- Updated to MarkItUp 1.1.14. This also required me to add multiline attributes
set to true on various buttons in the markdown set.
- As per a stackoverflow post, added some code to get multiline titles in
a jQuery UI dialog. They removed that functionality but allow you to put it
back.
Tweaked the MarkItUp preview CSS to show blockquotes in italic.
Did not update TinyMCE at this time. I'm not using the JQuery version and this
version appears to work ok for now.
What I should do is make a repo for MarkItUp and do a vendor branch thing so
I don't have to futz around diffing directories to figure out if I'll lose
changes when I update.
author | Brian Neal <bgneal@gmail.com> |
---|---|
date | Wed, 04 Sep 2013 19:55:20 -0500 |
parents | 91de9b15b410 |
children | 4aadaf3bc234 |
line wrap: on
line source
""" topic_export.py A management command to export a forum topic by rendering it through a given template. """ from __future__ import with_statement from optparse import make_option import re from django.core.management.base import LabelCommand, CommandError from django.template.loader import render_to_string, TemplateDoesNotExist from forums.models import Topic SRC_RE = re.compile(r'src="/media/') SRC_REPL = 'src="http://surfguitar101.com/media/' class Command(LabelCommand): help = "Exports a forum topic thread by rendering it through a given template" option_list = LabelCommand.option_list + ( make_option('-t', '--template', default='forums/topic_export.html', help='template to render'), make_option('-o', '--output', default=None, help='output filename [default: stdout]'), ) def handle_label(self, tid, **opts): """Fetch the topic and related posts. Render through a template. Optionally write content to an output file. """ try: tid = int(tid) except ValueError: raise CommandError('topic ID must be an integer') template_name = opts['template'] output_filename = opts['output'] try: topic = Topic.objects.get(pk=tid) except Topic.DoesNotExist: raise CommandError('topic ID does not exist') posts = topic.posts.select_related('user') try: content = render_to_string(template_name, {'topic': topic, 'posts': posts}) except TemplateDoesNotExist: raise CommandError('template does not exist') # fix up smiley images content = SRC_RE.sub(SRC_REPL, content) content = content.encode('utf-8') if output_filename: with open(output_filename, 'w') as fp: fp.write(content) else: self.stdout.write(content)