This file is indexed.

/usr/share/pyshared/trytond/modules/project_plan/work.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
<?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. -->
<tryton>
    <data>

        <record model="ir.ui.view" id="work_view_form">
            <field name="model">project.work</field>
            <field name="inherit" ref="project.work_view_form"/>
            <field name="name">work_form</field>
        </record>

        <record model="ir.action.wizard" id="wizard_leveling">
            <field name="name">Tasks Leveling</field>
            <field name="wiz_name">project_plan.work.leveling</field>
            <field name="model">project.work</field>
        </record>
        <record model="ir.action.keyword" id="leveling_keyword">
            <field name="keyword">form_action</field>
            <field name="model">project.work,-1</field>
            <field name="action" ref="wizard_leveling"/>
        </record>

    </data>
</tryton>