Mercurial > p > roundup > code
comparison roundup/cgi/templating.py @ 3972:eee76dd4a09f
'Make a Copy' failed with more than one person in nosy list [SF#1906147]
| author | Richard Jones <richard@users.sourceforge.net> |
|---|---|
| date | Fri, 07 Mar 2008 00:35:47 +0000 |
| parents | ff3a8b7d1819 |
| children | 13161539e5bd |
comparison
equal
deleted
inserted
replaced
| 3971:ff3a8b7d1819 | 3972:eee76dd4a09f |
|---|---|
| 2132 return [value.value for value in value] | 2132 return [value.value for value in value] |
| 2133 else: | 2133 else: |
| 2134 value = value.value.strip() | 2134 value = value.value.strip() |
| 2135 if not value: | 2135 if not value: |
| 2136 return [] | 2136 return [] |
| 2137 return value.split(',') | 2137 return [v.strip() for v in value.split(',')] |
| 2138 | 2138 |
| 2139 class HTMLRequest(HTMLInputMixin): | 2139 class HTMLRequest(HTMLInputMixin): |
| 2140 """The *request*, holding the CGI form and environment. | 2140 """The *request*, holding the CGI form and environment. |
| 2141 | 2141 |
| 2142 - "form" the CGI form as a cgi.FieldStorage | 2142 - "form" the CGI form as a cgi.FieldStorage |
