This file is indexed.

/usr/lib/python3/dist-packages/formencode/tests/htmlfill_data/data-schema1.txt is in python3-formencode 1.3.0-0ubuntu5.

This file is owned by root:root, with mode 0o644.

The actual contents of the file can be viewed below.

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
<form>
<input type="text" form:required=t name="v">
<input type="text" form:required="no" name="v2">
<input type="text" form:validate="regex:[a-z]*" name="username"
 form:message="lower case only!">
<input type="text" form:validate="email" form:required="no"
 name="email">
<input type="text" form:validate="dateconverter" name="birth">
<input type="text" name="whatever">
</form>
----
<form>
<input type="text" name="v" value="">
<input type="text" name="v2" value="">
<input type="text" name="username" value="">
<input type="text" name="email" value="">
<input type="text" name="birth" value="">
<input type="text" name="whatever" value="">
</form>
----
def check(parser, schema):
    assert schema
    names = sorted(schema.fields)
    assert names == 'birth email username v v2 whatever'.split()