Commit ad6ede98 authored by Florent Guillaume's avatar Florent Guillaume

Collector #1576: Fixed Z Search Interface to use proper HTML.

parent a5a21a67
...@@ -40,7 +40,9 @@ Zope Changes ...@@ -40,7 +40,9 @@ Zope Changes
text/<foo> types text/<foo> types
Bugs fixed Bugs fixed
- Collector #1576: Fixed Z Search Interface to use proper HTML.
- Collector #1127: strftime did not take timezone into account. - Collector #1127: strftime did not take timezone into account.
- Collector #1569/DateTime: Added a new ISO8601-method that will - Collector #1569/DateTime: Added a new ISO8601-method that will
......
...@@ -169,7 +169,7 @@ def default_input_form(id,arguments,action='query', ...@@ -169,7 +169,7 @@ def default_input_form(id,arguments,action='query',
lambda a: lambda a:
('<tr> <th>%s</th>\n' ('<tr> <th>%s</th>\n'
' <td><input name="%s"\n' ' <td><input name="%s"\n'
' width=30 value="%s">' ' size="30" value="%s">'
' </td></tr>' ' </td></tr>'
% (nicify(a[0]), % (nicify(a[0]),
( (
......
...@@ -173,7 +173,7 @@ def default_input_form(arguments,action='query', ...@@ -173,7 +173,7 @@ def default_input_form(arguments,action='query',
lambda a: lambda a:
('<tr><th>%s</th>\n' ('<tr><th>%s</th>\n'
' <td><input name="%s"\n' ' <td><input name="%s"\n'
' width=30 value="%s">' ' size="30" value="%s">'
'</td></tr>' '</td></tr>'
% (nicify(a[0]), % (nicify(a[0]),
( (
...@@ -223,7 +223,7 @@ def default_input_zpt_form(arguments,action='query', ...@@ -223,7 +223,7 @@ def default_input_zpt_form(arguments,action='query',
lambda a: lambda a:
('<tr><th>%s</th>\n' ('<tr><th>%s</th>\n'
' <td><input name="%s"\n' ' <td><input name="%s"\n'
' width=30 value="%s">' ' size="30" value="%s">'
'</td></tr>' '</td></tr>'
% (nicify(a[0]), % (nicify(a[0]),
( (
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment