~ubuntu-branches/ubuntu/edgy/libcgi-formbuilder-perl/edgy

« back to all changes in this revision

Viewing changes to t/1a-test22.html

  • Committer: Bazaar Package Importer
  • Author(s): Jonas Smedegaard
  • Date: 2006-05-28 15:47:27 UTC
  • mfrom: (1.1.2 upstream) (2.1.1 etch)
  • Revision ID: james.westby@ubuntu.com-20060528154727-u26u5nqd0btamxpm
Tags: 3.03.01-1
* New upstream release.
  + optgroups bugfix for complex arrays.
  + removal of HTML::Entities support due to utf8 issues. Closes:
    bug#338369 (thanks to Todd Charron <tcharron@badkarma.mine.nu> for
    reporting, and to several others for working on workarounds).
  + new es_ES Messages module with better translations
  + a patch from Mark Hedges to enable plugin modules for mailresults()
* Update local cdbs snippet copyright-check.mk:
  + Broaden scan to also look for "(c)" by default.
  + Make egrep options configurable.
* Bump up standards-version to 3.7.2 (no changes needed).
* Update debian/copyright_hints (nothing remarkable).
* Bump up debian/watch to version 3 syntax, and use uversionmangle
  instead of multiple parantheses (both work using uscan locally, but
  the later hopefully works with qa.debian.org too).

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
<form action="TEST" method="post">
 
2
<div>
 
3
<input id="_submitted" name="_submitted" type="hidden" value="1" />
 
4
<table>
 
5
<tr valign="top">
 
6
  <td>Favorite Color</td>
 
7
  <td><table>
 
8
  <tr>
 
9
    <td><input id="favorite_color_red" name="favorite_color" type="radio" value="red" /></td>
 
10
    <td><label for="favorite_color_red">red</label></td>
 
11
  </tr>
 
12
  <tr>
 
13
    <td><input id="favorite_color_green" name="favorite_color" type="radio" value="green" /></td>
 
14
    <td><label for="favorite_color_green">green</label></td>
 
15
  </tr>
 
16
  <tr>
 
17
    <td><input id="favorite_color_blue" name="favorite_color" type="radio" value="blue" /></td>
 
18
    <td><label for="favorite_color_blue">blue</label></td>
 
19
  </tr>
 
20
  <tr>
 
21
    <td><input id="favorite_color_yellow" name="favorite_color" type="radio" value="yellow" /></td>
 
22
    <td><label for="favorite_color_yellow">yellow</label></td>
 
23
  </tr>
 
24
  <tr>
 
25
    <td><input id="_favorite_color" name="favorite_color" type="radio" value="_other_favorite_color" /></td>
 
26
    <td><label for="_favorite_color">Other:</label></td>
 
27
  </tr>
 
28
  </table> <input id="_other_favorite_color" name="_other_favorite_color" type="text" /></td>
 
29
</tr>
 
30
<tr valign="top">
 
31
  <td align="center" colspan="2"><input id="_submit" name="_submit" type="submit" value="Submit" /></td>
 
32
</tr>
 
33
</table>
 
34
</div>
 
35
</form>