2009-03-09 17:47:21 +00:00
|
|
|
"""
|
|
|
|
views for django-markitup
|
|
|
|
|
2009-03-18 16:40:42 +00:00
|
|
|
Time-stamp: <2009-03-18 11:24:32 carljm views.py>
|
2009-03-09 17:47:21 +00:00
|
|
|
|
|
|
|
"""
|
|
|
|
from django.template.context import RequestContext
|
|
|
|
from django.shortcuts import render_to_response
|
|
|
|
|
2009-03-18 16:40:42 +00:00
|
|
|
from markitup.markup import filter_func
|
2011-11-08 03:40:14 +00:00
|
|
|
from django.views.decorators.csrf import csrf_exempt
|
2009-03-18 16:40:42 +00:00
|
|
|
|
2011-11-08 03:40:14 +00:00
|
|
|
@csrf_exempt
|
2009-03-18 16:40:42 +00:00
|
|
|
def apply_filter(request):
|
|
|
|
markup = filter_func(request.POST.get('data', ''))
|
2009-03-09 17:47:21 +00:00
|
|
|
return render_to_response( 'markitup/preview.html',
|
|
|
|
{'preview':markup},
|
|
|
|
context_instance=RequestContext(request))
|