This file is indexed.

/usr/lib/python2.7/dist-packages/trytond/ir/ui/calendar.rnc is in tryton-server 3.8.3-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
namespace a = "http://relaxng.org/ns/compatibility/annotations/1.0"

calendar = element calendar { attlist.calendar, field* }
attlist.calendar &=
  attribute dtstart { text }
attlist.calendar &=
  attribute dtend { text }?
attlist.calendar &=
  [ a:defaultValue = "Unknown" ] attribute string { text }?
field = element field { attlist.field, empty }
attlist.field &= attribute name { text }
data = element data { attlist.data, xpath* }
attlist.data &= empty

xpath = element xpath {
    attlist.xpath, ( field )*
  }
attlist.xpath &= attribute expr { text }
attlist.xpath &=
  [ a:defaultValue = "inside" ]
  attribute position { "inside"
      | "replace"
      | "replace_attributes"
      | "after"
      | "before" }?

start = data | calendar