File: data-fill4.txt

package info (click to toggle)
python-formencode 2.1.1-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 1,852 kB
  • sloc: python: 6,772; makefile: 130; sh: 96; javascript: 61
file content (30 lines) | stat: -rw-r--r-- 1,184 bytes parent folder | download | duplicates (9)
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
<form>
<input type="text" name="name" value="fill">
<select name="occupation" multiple="multiple">
 <option value="">Default</option>
 <option value="Crazy Cultist">Crazy cultist</option>
 <option value="Crazy">Crazy</option>
</select>
<textarea cols=20 style="width: 100%" name="address">An address</textarea>
<input type="radio" name="living" value="yes">
<input type="radio" name="living" value="no">
<input type="checkbox" name="nice_guy" checked="checked">
----
<form>
<input type="text" name="name" value="Bob Jones">
<select name="occupation" multiple="multiple">
 <option value="">Default</option>
 <option value="Crazy Cultist" selected="selected">Crazy cultist</option>
 <option value="Crazy" selected="selected">Crazy</option>
</select>
<textarea cols="20" style="width: 100%" name="address">14 W. Canal
New Guinea</textarea>
<input type="radio" name="living" value="yes">
<input type="radio" name="living" value="no" checked="checked">
<input type="checkbox" name="nice_guy">
----
defaults = {'name': 'Bob Jones',
            'occupation': ['Crazy Cultist','Crazy'],
            'address': '14 W. Canal\nNew Guinea',
            'living': 'no',
            'nice_guy': 0}