Mercurial > p > roundup > code
diff roundup/cgi/templating.py @ 5988:39b8bc511ed7
Fix html generation errors for boolean options.
Code was generating xhtml form for html4 output.
In xhtml, Boolean attributes like 'disabled', 'required' are
represented with a value that is the same as the attribute name. E.G.
<input required="required" ...>. Html 5 (and 4) represents the same as
<input required ...> .
Recognize booleans in one of two ways:
value is None
value is the same as the attribute name
Make html4 and xhtml variants of cgi_escape_attrs. Have input_htmlp4
and input_xhtml call the proper variant. Also set HTMLInputMixin
property cgi_escape_atrs to select proper one similar to self.input
definition. Then replace calls to cgi_escape_attr with
self.cgi_escape_attrs to get correct output.
| author | John Rouillard <rouilj@ieee.org> |
|---|---|
| date | Sat, 14 Dec 2019 16:18:15 -0500 |
| parents | fe334430ca07 |
| children | b0940ad50f43 |
line wrap: on
line diff
--- a/roundup/cgi/templating.py Tue Nov 26 20:47:34 2019 -0500 +++ b/roundup/cgi/templating.py Sat Dec 14 16:18:15 2019 -0500 @@ -437,19 +437,42 @@ except KeyError: pass -def cgi_escape_attrs(**attrs): +def html4_cgi_escape_attrs(**attrs): + ''' Boolean attributes like 'disabled', 'required' + are represented without a value. E.G. + <input required ..> not <input required="required" ...> + The latter is xhtml. Recognize booleans by: + value is None + value is the same as the atribute + Code can use either method to indicate a pure boolean. + ''' + return ' '.join(['%s="%s"'%(k,html_escape(str(v), True)) + if v != None and k != v else '%s'%(k) + for k,v in sorted(attrs.items())]) + +def xhtml_cgi_escape_attrs(**attrs): + ''' Boolean attributes like 'disabled', 'required' + are represented with a value that is the same as + the attribute name.. E.G. + <input required="required" ...> not <input required ..> + The latter is html4 or 5. Recognize booleans by: + value is None + value is the same as the atribute + Code can use either method to indicate a pure boolean. + ''' return ' '.join(['%s="%s"'%(k,html_escape(str(v), True)) - for k,v in sorted(attrs.items())]) + if v != None else '%s="%s"'%(k,k) + for k,v in sorted(attrs.items())]) def input_html4(**attrs): """Generate an 'input' (html4) element with given attributes""" _set_input_default_args(attrs) - return '<input %s>'%cgi_escape_attrs(**attrs) + return '<input %s>'%html4_cgi_escape_attrs(**attrs) def input_xhtml(**attrs): """Generate an 'input' (xhtml) element with given attributes""" _set_input_default_args(attrs) - return '<input %s/>'%cgi_escape_attrs(**attrs) + return '<input %s/>'%xhtml_cgi_escape_attrs(**attrs) class HTMLInputMixin(object): """ requires a _client property """ @@ -459,8 +482,10 @@ html_version = self._client.instance.config.HTML_VERSION if html_version == 'xhtml': self.input = input_xhtml + self.cgi_escape_attrs=xhtml_cgi_escape_attrs else: self.input = input_html4 + self.cgi_escape_attrs=html4_cgi_escape_attrs # self._context is used for translations. # will be initialized by the first call to .gettext() self._context = None @@ -767,7 +792,7 @@ onclick = "javascript:help_window('%s', '%s', '%s');return false;" % \ (help_url, width, height) return '<a class="classhelp" href="%s" onclick="%s" %s>%s</a>' % \ - (help_url, onclick, cgi_escape_attrs(**html_kwargs), + (help_url, onclick, self.cgi_escape_attrs(**html_kwargs), self._(label)) def submit(self, label=''"Submit New Entry", action="new"): @@ -1604,7 +1629,7 @@ value = '"'.join(value.split('"')) name = self._formname - passthrough_args = cgi_escape_attrs(**kwargs) + passthrough_args = self.cgi_escape_attrs(**kwargs) return ('<textarea %(passthrough_args)s name="%(name)s" id="%(name)s"' ' rows="%(rows)s" cols="%(cols)s">' '%(value)s</textarea>') % locals() @@ -2181,7 +2206,7 @@ value = None linkcl = self._db.getclass(self._prop.classname) - l = ['<select %s>'%cgi_escape_attrs(name = self._formname, + l = ['<select %s>'%self.cgi_escape_attrs(name = self._formname, **html_kwargs)] k = linkcl.labelprop(1) s = '' @@ -2443,7 +2468,7 @@ # The "no selection" option. height += 1 height = min(height, 7) - l = ['<select multiple %s>'%cgi_escape_attrs(name = self._formname, + l = ['<select multiple %s>'%self.cgi_escape_attrs(name = self._formname, size = height, **html_kwargs)] k = linkcl.labelprop(1)
