This file is indexed.

/usr/lib/python3/dist-packages/trytond/modules/party/view/contact_mechanism_form.xml is in tryton-modules-party 4.6.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
<?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 col="6">
    <label name="party"/>
    <field name="party" colspan="5"/>
    <label name="type"/>
    <field name="type"/>
    <group col="2" colspan="2" id="value">
        <label name="other_value"/>
        <field name="other_value"/>
        <label name="website"/>
        <field name="website" widget="url"/>
        <label name="email"/>
        <field name="email" widget="email"/>
        <label name="skype"/>
        <field name="skype" widget="callto"/>
        <label name="sip"/>
        <field name="sip" widget="sip"/>
    </group>
    <group col="-1" colspan="2" id="checkboxes">
        <label name="active"/>
        <field name="active" 
            xexpand="0" width="25"/>
        <!-- Add here some checkboxes ! -->
    </group>
    <separator name="comment" colspan="6"/>
    <field name="comment" colspan="6"/>
</form>