common/tags.py
author Adrien Di Mascio <Adrien.DiMascio@logilab.fr>
Fri, 20 Feb 2009 17:38:38 +0100
branchtls-sprint
changeset 909 4685a8c21d73
parent 895 e78ae38506db
child 980 59552ba2015f
permissions -rw-r--r--
select needs to accept an id

from logilab.mtconverter import html_escape
from cubicweb.common.uilib import simple_sgml_tag
class tag(object):
    def __init__(self, name):
        self.name = name
        
    def __call__(self, __content=None, **attrs):
        return simple_sgml_tag(self.name, __content, **attrs)

input = tag('input')
textarea = tag('textarea')
a = tag('a')
span = tag('span')
img = tag('img')
label = tag('label')
option = tag('option')

def select(name, id=None, multiple=False, options=[]):
    attrs = {}
    if multiple:
        attrs['multiple'] = 'multiple'
    if id:
        attrs['id'] = id
    html = [u'<select name="%s" %s>' % (name,
                                        ' '.join('%s="%s"' % kv for kv in attrs.items()))]
    html += options
    html.append(u'</select>')
    return u'\n'.join(html)