This file is indexed.

/usr/share/doc/renaissance-doc/examples/Examples/Applications/Finger/Preferences.gsmarkup is in renaissance-doc 0.9.0-4build2.

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
58
59
60
61
62
63
64
65
66
67
68
<?xml version="1.0"?>
<!DOCTYPE gsmarkup>

<gsmarkup>
  <objects>
    <panel title="Preferences" id="panel">
      <vbox>
	<box title="Finger Command">
	  <hbox>
	    <textField id="finger" width="150" nextKeyView="#ping" />
	    <button title="File Panel..." tag="0"
		    action="changePreference:" target="#NSOwner" />
	  </hbox>
	</box>

	<box title="Ping Command">
	  <hbox>
	    <textField id="ping" width="150" nextKeyView="traceroute" />
	    <button title="File Panel..." tag="1"
		    action="changePreference:" target="#NSOwner" />
	  </hbox>
	</box>

	<box title="Traceroute Command">
	  <hbox>
	    <textField id="traceroute" width="150" nextKeyView="whois" />
	    <button title="File Panel..." tag="2"
		    action="changePreference:" target="#NSOwner" />
	  </hbox>
	</box>

	<box title="Whois Command">
	  <hbox>
	    <textField id="whois" width="150" nextKeyView="#finger" />
	    <button title="File Panel..." tag="3"
		    action="changePreference:" target="#NSOwner" />
	  </hbox>
	</box>

	<box title="Button size">
	  <hbox>
	    <popUpButton id="size" action="set:" target="#NSOwner" 
			 halign="wexpand">
	      <popUpButtonItem title="Large" />
	      <popUpButtonItem title="Small" />
	    </popUpButton>
	  </hbox>
	</box>

	<hbox type="proportional" halign="right">
	  <button title="Default" action="resetToDefault:" target="#NSOwner" halign="wexpand" />
	  <button title="Set" id="set" action="set:" target="#NSOwner" halign="wexpand" />
	</hbox>

      </vbox>
    </panel>
  </objects>
  
  <connectors>
    <outlet source="#NSOwner" target="#panel" key="pan" />
    <outlet source="#NSOwner" target="#finger" key="fingerCommand" />
    <outlet source="#NSOwner" target="#ping" key="pingCommand" />
    <outlet source="#NSOwner" target="#traceroute" key="tracerouteCommand" />
    <outlet source="#NSOwner" target="#whois" key="whoisCommand" />
    <outlet source="#NSOwner" target="#size" key="buttonsSize" />
    <outlet source="#NSOwner" target="#set" key="setButton" />
  </connectors>
</gsmarkup>