This file is indexed.

/usr/share/pyshared/trytond/modules/calendar_scheduling/res.xml is in tryton-modules-calendar-scheduling 2.2.2-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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
<?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="user_view_form">
            <field name="model">res.user</field>
            <field name="type">form</field>
            <field name="inherit" ref="res.user_view_form"/>
            <field name="arch" type="xml">
                <![CDATA[
                <data>
                    <xpath expr="/form/notebook" position="inside">
                        <page string="Notifications"
                            id="notification" col="2">
                            <separator string="Calendar Email Notifications"
                                id="calendar_email_notification" colspan="2"/>
                            <label name="calendar_email_notification_new"/>
                            <field name="calendar_email_notification_new"/>
                            <label name="calendar_email_notification_update"/>
                            <field name="calendar_email_notification_update"/>
                            <label name="calendar_email_notification_cancel"/>
                            <field name="calendar_email_notification_cancel"/>
                            <label name="calendar_email_notification_partstat"/>
                            <field name="calendar_email_notification_partstat"/>
                        </page>
                    </xpath>
                </data>
                ]]>
            </field>
        </record>

        <record model="ir.ui.view" id="user_view_form_preferences">
            <field name="model">res.user</field>
            <field name="type">form</field>
            <field name="inherit" ref="res.user_view_form_preferences"/>
            <field name="arch" type="xml">
                <![CDATA[
                <data>
                    <xpath expr="/form/notebook" position="inside">
                        <page string="Notifications"
                            id="notification" col="2">
                            <separator string="Calendar Email Notifications"
                                id="calendar_email_notification" colspan="2"/>
                            <label name="calendar_email_notification_new"/>
                            <field name="calendar_email_notification_new"/>
                            <label name="calendar_email_notification_update"/>
                            <field name="calendar_email_notification_update"/>
                            <label name="calendar_email_notification_cancel"/>
                            <field name="calendar_email_notification_cancel"/>
                            <label name="calendar_email_notification_partstat"/>
                            <field name="calendar_email_notification_partstat"/>
                        </page>
                    </xpath>
                </data>
                ]]>
            </field>
        </record>

    </data>
</tryton>