2011-07-31 10:46:29 +02:00
|
|
|
#!/usr/bin/env python
|
|
|
|
# -*- coding: utf-8 -*-
|
|
|
|
"""
|
|
|
|
openslides.template
|
|
|
|
~~~~~~~~~~~~~~~~~~~
|
|
|
|
|
2012-04-25 22:29:19 +02:00
|
|
|
Useful template functions for OpenSlides.
|
2011-07-31 10:46:29 +02:00
|
|
|
|
2012-04-25 22:29:19 +02:00
|
|
|
:copyright: 2011, 2012 by OpenSlides team, see AUTHORS.
|
2011-07-31 10:46:29 +02:00
|
|
|
:license: GNU GPL, see LICENSE for more details.
|
|
|
|
"""
|
|
|
|
|
|
|
|
from django.template.loader_tags import BlockNode, ExtendsNode
|
|
|
|
from django.template import loader, Context, RequestContext, TextNode
|
|
|
|
from django.http import HttpResponse
|
|
|
|
|
2012-03-18 17:11:58 +01:00
|
|
|
|
|
|
|
class Tab(object):
|
|
|
|
def __init__(self, title='', url='', permission='', selected=False):
|
|
|
|
self.selected = False
|
|
|
|
self.title = title
|
|
|
|
self.permission = permission
|
|
|
|
self.selected = selected
|
|
|
|
self.url = url
|
|
|
|
|
|
|
|
|
2011-07-31 10:46:29 +02:00
|
|
|
def get_template(template):
|
|
|
|
if isinstance(template, (tuple, list)):
|
|
|
|
return loader.select_template(template)
|
|
|
|
return loader.get_template(template)
|
|
|
|
|
2012-03-18 17:11:58 +01:00
|
|
|
|
2011-07-31 10:46:29 +02:00
|
|
|
class BlockNotFound(Exception):
|
|
|
|
pass
|
|
|
|
|
2012-03-18 17:11:58 +01:00
|
|
|
|
2011-07-31 10:46:29 +02:00
|
|
|
def render_template_block(template, block, context):
|
|
|
|
"""
|
|
|
|
Renders a single block from a template. This template should have previously been rendered.
|
|
|
|
"""
|
|
|
|
return render_template_block_nodelist(template.nodelist, block, context)
|
|
|
|
|
2012-03-18 17:11:58 +01:00
|
|
|
|
2011-07-31 10:46:29 +02:00
|
|
|
def render_template_block_nodelist(nodelist, block, context):
|
|
|
|
for node in nodelist:
|
|
|
|
if isinstance(node, BlockNode) and node.name == block:
|
|
|
|
return node.render(context)
|
|
|
|
for key in ('nodelist', 'nodelist_true', 'nodelist_false'):
|
|
|
|
if hasattr(node, key):
|
|
|
|
try:
|
|
|
|
return render_template_block_nodelist(getattr(node, key), block, context)
|
|
|
|
except:
|
|
|
|
pass
|
|
|
|
for node in nodelist:
|
|
|
|
if isinstance(node, ExtendsNode):
|
|
|
|
try:
|
|
|
|
return render_template_block(node.get_parent(context), block, context)
|
|
|
|
except BlockNotFound:
|
|
|
|
pass
|
|
|
|
raise BlockNotFound
|
|
|
|
|
2012-03-18 17:11:58 +01:00
|
|
|
|
2011-07-31 10:46:29 +02:00
|
|
|
def render_block_to_string(template_name, block, dictionary=None, context_instance=None):
|
|
|
|
"""
|
|
|
|
Loads the given template_name and renders the given block with the given dictionary as
|
|
|
|
context. Returns a string.
|
|
|
|
"""
|
|
|
|
dictionary = dictionary or {}
|
|
|
|
t = get_template(template_name)
|
|
|
|
if context_instance:
|
|
|
|
context_instance.update(dictionary)
|
|
|
|
else:
|
|
|
|
context_instance = Context(dictionary)
|
|
|
|
t.render(context_instance)
|
|
|
|
return render_template_block(t, block, context_instance)
|
|
|
|
|
2012-03-18 17:11:58 +01:00
|
|
|
|
2011-07-31 10:46:29 +02:00
|
|
|
def direct_block_to_template(request, template, block, extra_context=None, mimetype=None, **kwargs):
|
|
|
|
"""
|
|
|
|
Render a given block in a given template with any extra URL parameters in the context as
|
|
|
|
``{{ params }}``.
|
|
|
|
"""
|
|
|
|
if extra_context is None:
|
|
|
|
extra_context = {}
|
|
|
|
dictionary = {'params': kwargs}
|
|
|
|
for key, value in extra_context.items():
|
|
|
|
if callable(value):
|
|
|
|
dictionary[key] = value()
|
|
|
|
else:
|
|
|
|
dictionary[key] = value
|
|
|
|
c = RequestContext(request, dictionary)
|
|
|
|
t = get_template(template)
|
|
|
|
t.render(c)
|
|
|
|
return HttpResponse(render_template_block(t, block, c), mimetype=mimetype)
|