X-Git-Url: https://git.mdrn.pl/redakcja.git/blobdiff_plain/1d07e208b0897af64f71755c974762bc7cd19ca0..22aac0da99594406b261f14c135812c855c196ef:/apps/api/views.py diff --git a/apps/api/views.py b/apps/api/views.py deleted file mode 100644 index b96fc470..00000000 --- a/apps/api/views.py +++ /dev/null @@ -1,41 +0,0 @@ -# Create your views here. - -from django.http import HttpResponse -from librarian import html -from lxml import etree -from StringIO import StringIO -import re - -LINE_SWAP_EXPR = re.compile(r'/\s', re.MULTILINE | re.UNICODE); - -def render(request): - style_filename = html.get_stylesheet('partial') - - data = request.POST['fragment'] - path = request.POST['part'] - - base, me = path.rsplit('/', 1) - match = re.match(r'([^\[]+)\[(\d+)\]', me) - tag, pos = match.groups() - - print "Redner:", path, base, tag, pos - - style = etree.parse(style_filename) - - data = LINE_SWAP_EXPR.sub(u'
\n', data) - doc = etree.parse( StringIO(data) ) - - opts = { - 'with-paths': 'boolean(1)', - 'base-path': "'%s'" % base, - 'base-offset': pos, - } - - print opts - - result = doc.xslt(style, **opts) - - print result - - return HttpResponse( - etree.tostring(result, encoding=unicode, pretty_print=True) ) \ No newline at end of file