annotate gpp/core/views.py @ 133:c515b7401078

Use the new common way to apply markItUp to textareas and to get the smiley and markdown help dialogs for all the remaining apps except for forums and comments.
author Brian Neal <bgneal@gmail.com>
date Fri, 27 Nov 2009 00:21:47 +0000
parents 2d299909e074
children ab7830b067b3
rev   line source
bgneal@127 1 """
bgneal@127 2 Views for the core application. These are mainly shared, common views
bgneal@127 3 used by multiple applications.
bgneal@127 4 """
bgneal@127 5 from django.shortcuts import render_to_response
bgneal@127 6 from django.template import RequestContext
bgneal@127 7 from django.contrib.auth.decorators import login_required
bgneal@127 8 from django.views.decorators.http import require_GET
bgneal@127 9
bgneal@127 10 @login_required
bgneal@127 11 @require_GET
bgneal@127 12 def markdown_help(request):
bgneal@127 13 """
bgneal@127 14 This view provides the Markdown help cheat sheet. It is expected
bgneal@127 15 to be called via AJAX.
bgneal@127 16 """
bgneal@127 17 return render_to_response('core/markdown_help.html')