This file is indexed.

/usr/lib/python2.7/dist-packages/trytond/modules/calendar_todo/view/todo_form.xml is in tryton-modules-calendar-todo 4.2.0-1.

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
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
<?xml version="1.0"?>
<!-- This file is part of Tryton.  The COPYRIGHT file at the top level of
this repository contains the full copyright notices and license terms. -->
<form>
    <label name="summary"/>
    <field name="summary"/>
    <label name="recurrence"/>
    <field name="recurrence"/>
    <notebook colspan="4">
        <page string="General" id="general">
            <label name="location"/>
            <field name="location"/>
            <label name="status"/>
            <field name="status"/>
            <label name="classification"/>
            <field name="classification"/>
            <label name="calendar"/>
            <field name="calendar"/>
            <label name="dtstart"/>
            <field name="dtstart"/>
            <label name="due"/>
            <field name="due"/>
            <label name="percent_complete"/>
            <field name="percent_complete"/>
            <label name="completed"/>
            <field name="completed"/>
            <separator name="description" colspan="4"/>
            <field name="description" colspan="4"/>
        </page>
        <page string="Categories" id="categories">
            <field name="categories" colspan="4"/>
        </page>
        <page string="Attendees" id="attendees">
            <label name="organizer"/>
            <field name="organizer"/>
            <field name="attendees" colspan="4"/>
        </page>
        <page string="Occurences" id="occurences">
            <field name="rrules" colspan="2"/>
            <field name="rdates" colspan="2"/>
            <field name="exrules" colspan="2"/>
            <field name="exdates" colspan="2"/>
            <field name="occurences" colspan="4"
                view_ids="calendar_todo.todo_view_tree_occurence"/>
        </page>
    </notebook>
</form>