This file is indexed.

/usr/lib/python2.7/dist-packages/trytond/ir/view/sequence_form.xml is in tryton-server 3.4.0-3+deb8u3.

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
<?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 string="Sequences">
    <label name="name"/>
    <field name="name" colspan="3"/>
    <label name="code"/>
    <field name="code"/>
    <label name="active"/>
    <field name="active"/>
    <label name="prefix"/>
    <field name="prefix"/>
    <label name="suffix"/>
    <field name="suffix"/>
    <label name="type"/>
    <field name="type"/>
    <group string="Incremental" id="incremental" colspan="4"
        states="{'invisible': Not(In(Eval('type'), ['incremental']))}">
        <label name="padding"/>
        <field name="padding" />
        <label name="number_increment"/>
        <field name="number_increment"/>
        <label name="number_next"/>
        <field name="number_next"/>
    </group>
    <group string="Timestamp" id="timestamp" colspan="4"
        states="{'invisible': Not(In(Eval('type'), ['decimal timestamp', 'hexadecimal timestamp']))}">
        <label name="timestamp_rounding"/>
        <field name="timestamp_rounding"/>
        <label name="timestamp_offset"/>
        <field name="timestamp_offset"/>
        <label name="last_timestamp"/>
        <field name="last_timestamp"/>
    </group>
    <separator string="Legend (Placeholders for prefix, suffix)" colspan="4"
        id="legend"/>
    <label string="Year:" id="label_year"/>
    <label string="${year}" colspan="3" xalign="0.0" xexpand="1" id="year"/>
    <label string="Month:" id="label_month"/>
    <label string="${month}" colspan="3" xalign="0.0" xexpand="1" id="month"/>
    <label string="Day:" id="label_day"/>
    <label string="${day}" colspan="3" xalign="0.0" xexpand="1" id="day"/>
</form>