This file is indexed.

/usr/share/pyshared/trytond/modules/project_plan/view/work_form.xml is in tryton-modules-project-plan 3.0.0-2.

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
<?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. -->
<data>
    <xpath expr="/form/notebook/page[@id='children']" position="after">
        <page string="Plan" id="plan">
            <label name="constraint_start_date"/>
            <field name="constraint_start_date"/>
            <label name="constraint_finish_date"/>
            <field name="constraint_finish_date"/>
            <label name="early_start_date"/>
            <field name="early_start_date"/>
            <label name="early_finish_date"/>
            <field name="early_finish_date"/>
            <label name="late_start_date"/>
            <field name="late_start_date"/>
            <label name="late_finish_date"/>
            <field name="late_finish_date"/>
            <label name="actual_start_date"/>
            <field name="actual_start_date"/>
            <label name="actual_finish_date"/>
            <field name="actual_finish_date"/>
            <label name="duration"/>
            <field name="duration" widget="float_time" float_time="company_work_time"/>
            <newline/>
            <field name="predecessors" colspan="2"/>
            <field name="successors" colspan="2"/>
        </page>
        <page string="Allocations" id="allocations"
            states="{'invisible': Not(Equal(Eval('type'), 'task'))}" >
            <field name="allocations" colspan="4"/>
        </page>
    </xpath>
</data>