File: forms.py

package info (click to toggle)
python-django-formfieldset 0%2Bgit20090520-621cb58-1
  • links: PTS, VCS
  • area: main
  • in suites: jessie, jessie-kfreebsd, squeeze, wheezy
  • size: 56 kB
  • ctags: 30
  • sloc: python: 215; makefile: 10
file content (188 lines) | stat: -rw-r--r-- 8,061 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
from django import forms as django_forms
from django.utils.html import escape
from django.utils.safestring import mark_safe
from django.utils.encoding import force_unicode


class Fieldset(object):
    "Simple iterable for holding fieldset information."

    def __init__(self, form, name=None, fields=(),
                 description=None, extra_content={}):
        self.form = form
        self.name = name
        self.fields = fields
        self.description = description
        self.extra_content = extra_content

    def __iter__(self):
        "Iterates through fields in the fieldset."
        for field in self.fields:
            yield django_forms.forms.BoundField(self.form,
                                                self.form.fields[field],
                                                field)

    def html_output(self, normal_row, error_row, row_ender, help_text_html,
                    errors_on_separate_row, top_errors=[], hidden_fields=[],
                    stand_alone=True, error_class=django_forms.util.ErrorList,
                    label_suffix=':'):
        output = []
        for bf in self:
            # Escape and cache in local variable.
            bf_errors = error_class([escape(error) for error in bf.errors])
            if bf.is_hidden:
                if bf_errors:
                    top_errors.extend(
                        [u'(Hidden field %s) %s' % (bf.name, force_unicode(e))
                            for e in bf_errors])
                hidden_fields.append(unicode(bf))
            else:
                if errors_on_separate_row and bf_errors:
                    output.append(error_row % force_unicode(bf_errors))
                if bf.label:
                    label = escape(force_unicode(bf.label))
                    # Only add the suffix if the label does not end in
                    # punctuation.
                    if label_suffix:
                        if label[-1] not in ':?.!':
                            label += label_suffix
                    label = bf.label_tag(label) or ''
                else:
                    label = ''
                if bf.field.help_text:
                    help_text = help_text_html % force_unicode(
                                                    bf.field.help_text)
                else:
                    help_text = u''
                output.append(normal_row % {'errors': force_unicode(bf_errors),
                                            'label': force_unicode(label),
                                            'field': unicode(bf),
                                            'help_text': help_text})
            if stand_alone:
                if top_errors:
                    output.insert(0, error_row % force_unicode(top_errors))
                if hidden_fields:
                    # Insert any hidden fields in the last row.
                    str_hidden = u''.join(hidden_fields)
                    if output:
                        last_row = output[-1]
                        # Chop off the trailing row_ender (e.g. '</td></tr>')
                        # and insert the hidden fields.
                        output[-1] = last_row[:-len(row_ender)] + \
                                     str_hidden + row_ender
                    else:
                        # If there aren't any rows in the output, just append
                        # the hidden fields.
                        output.append(str_hidden)
        return output

    def as_table(self):
        fields = self.html_output(
            u'<tr><th>%(label)s</th>'
                u'<td>%(errors)s%(field)s%(help_text)s</td></tr>',
            u'<tr><td colspan="2">%s</td></tr>',
            '</td></tr>',
            u'<br />%s',
            False,
            stand_alone=True)
        description = ''
        if self.description is not None:
            description = self.description
        return mark_safe(
            u'<tr><th colspan="2">'
            u'<h2>%(name)s</h2>%(description)s</th></tr>%(fields)s'
                    % {'name': self.name,
                       'description': description,
                       'fields': u'\n'.join(fields),
                      })


class FieldsetMixin(object):
    def iter_fieldsets(self):
        "Iterates fieldsets."
        for name, options in self.fieldsets:
            yield Fieldset(self, name, **options)

    def _html_fieldset_output(self,
                              fieldset_row,
                              normal_row,
                              error_row,
                              row_ender,
                              help_text_html,
                              errors_on_separate_row):
        "Helper function for outputting fieldsets as HTML. " \
        "Used by as_fieldset_table(), as_fieldset_ul(), as_fieldset_p()."

        # Errors that should be displayed above all fields.
        top_errors = self.non_field_errors()
        output, hidden_fields = [], []
        for fieldset in self.iter_fieldsets():
            fieldset_output = fieldset.html_output(
                normal_row,
                error_row,
                row_ender,
                help_text_html,
                errors_on_separate_row,
                top_errors,
                hidden_fields,
                stand_alone=False,
                error_class=self.error_class,
                label_suffix=self.label_suffix)
            if fieldset.description:
                description = help_text_html % force_unicode(
                                                         fieldset.description)
            else:
                description = u''
            output.append(fieldset_row % {
                                    'name': fieldset.name,
                                    'description': description,
                                    'fields': u'\n'.join(fieldset_output)})
        if top_errors:
            output.insert(0, error_row % force_unicode(top_errors))
        if hidden_fields: # Insert any hidden fields in the last row.
            str_hidden = u''.join(hidden_fields)
            if output:
                last_row = output[-1]
                # Chop off the trailing row_ender (e.g. '</td></tr>') and
                # insert the hidden fields.
                output[-1] = last_row[:-len(row_ender)] + str_hidden + \
                                                                     row_ender
            else:
                # If there aren't any rows in the output, just append the
                # hidden fields.
                output.append(str_hidden)
        return mark_safe(u'\n'.join(output))

    def as_fieldset_table(self):
        "Returns this form's fieldsets rendered as HTML <tr>s -- " \
        "excluding the <table></table>."
        return self._html_fieldset_output(
            u'<tr><th colspan="2"><h2>%(name)s</h2>%(description)s</th></tr>%(fields)s',
            u'<tr><th>%(label)s</th><td>%(errors)s%(field)s%(help_text)s' \
                                                                u'</td></tr>',
            u'<tr><td colspan="2">%s</td></tr>',
            '</td></tr>',
            u'<br />%s',
            False)

    def as_fieldset_ul(self):
        "Returns this form's fieldsets rendered as HTML <li>s -- " \
        "excluding the <ul></ul>."
        return self._html_fieldset_output(
            u'<li>\n<h2>%(name)s</h2>%(description)s\n<ul>\n%(fields)s\n'\
                                                              u'</ul>\n</li>',
            u'<li>%(errors)s%(label)s %(field)s%(help_text)s</li>',
            u'<li>%s</li>',
            '</li></ul></li>',
            u' %s',
            False)

    def as_fieldset_p(self):
        "Returns this form's fieldsets rendered as HTML <p>s."
        return self._html_fieldset_output(
            u'<div>\n<h2>%(name)s</h2>%(description)s\n%(fields)s\n</div>',
            u'<p>%(label)s %(field)s%(help_text)s</p>',
            u'%s',
            u'</p></div>',
            u' %s',
            True)