This file is indexed.

/usr/lib/python2.7/dist-packages/trytond/modules/product_cost_history/product.xml is in tryton-modules-product-cost-history 3.4.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. -->
<tryton>
    <data>

        <record model="ir.ui.view" id="product_cost_history_view_tree">
            <field name="model">product.product.cost_history</field>
            <field name="type">tree</field>
            <field name="name">product_cost_history_tree</field>
        </record>

        <record model="ir.ui.view" id="product_cost_history_view_graph">
            <field name="model">product.product.cost_history</field>
            <field name="type">graph</field>
            <field name="name">product_cost_history_graph</field>
        </record>

        <record model="ir.action.act_window" id="act_product_cost_history_form">
            <field name="name">Product Cost History</field>
            <field name="res_model">product.product.cost_history</field>
        </record>
        <record model="ir.action.act_window.view" id="act_product_cost_history_form_view1">
            <field name="sequence" eval="10"/>
            <field name="view" ref="product_cost_history_view_tree"/>
            <field name="act_window" ref="act_product_cost_history_form"/>
        </record>
        <record model="ir.action.act_window.view" id="act_product_cost_history_form_view2">
            <field name="sequence" eval="20"/>
            <field name="view" ref="product_cost_history_view_graph"/>
            <field name="act_window" ref="act_product_cost_history_form"/>
        </record>

        <record model="ir.action.wizard" id="wizard_product_cost_history_open">
            <field name="name">Cost History</field>
            <field name="wiz_name">product.product.cost_history.open</field>
            <field name="model">product.product</field>
        </record>
        <record model="ir.action.keyword"
                id="act_product_cost_history_keyword1">
            <field name="keyword">form_relate</field>
            <field name="model">product.product,-1</field>
            <field name="action" ref="wizard_product_cost_history_open"/>
        </record>

    </data>
</tryton>