This file is indexed.

/usr/share/recoll/examples/fragbuts.xml is in recoll 1.22.4-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
<?xml version="1.0" encoding="UTF-8"?>
<!-- Example file for configuring the "Query fragments" window.
     Each <buttons> or <radiobuttons> element defines a lines of buttons
     Each active button adds a query language fragment to the current query
     before execution. 
-->

<fragbuts version="1.0">

  <radiobuttons>
    <!-- Actually useful: toggle WEB queue results inclusion -->
    <fragbut>
      <label>Include Web Results</label>
      <frag></frag>
    </fragbut>

    <fragbut>
      <label>Exclude Web Results</label>
      <frag>-rclbes:BGL</frag>
    </fragbut>

    <fragbut>
      <label>Only Web Results</label>
      <frag>rclbes:BGL</frag>
    </fragbut>

  </radiobuttons>

  <buttons>

    <fragbut>
      <label>Example: Year 2010</label>
      <frag>date:2010-01-01/2010-12-31</frag>
    </fragbut>

    <fragbut>
      <label>Example: c++ files</label>
      <frag>ext:cpp OR ext:cxx</frag>
    </fragbut>

    <fragbut>
      <label>Example: My Great Directory</label>
      <frag>dir:/my/great/directory</frag>
    </fragbut>

  </buttons>

  <buttons>

    <fragbut>
      <label>Check the manual (Query Fragments Window section) for explanations</label>
      <frag></frag>
    </fragbut>

  </buttons>

</fragbuts>