This file is indexed.

/usr/share/doc/renaissance-doc/examples/Examples/Classes/GSVBox/GSHBox.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
<?xml version="1.0"?>
<!DOCTYPE gsmarkup>

<gsmarkup>
  <objects>
    <window title="GSHBox Demo" x="300" y="300">
      <vbox>
	<hbox type="proportional" halign="center">
	  <button title="Add view" action="addViewToHBox:" target="#NSOwner" halign="wexpand" />
	  <button title="Remove view" action="removeViewFromHBox:" target="#NSOwner" halign="wexpand" />
	</hbox>
	<scrollView width="200" height="100">
	  <hbox id="hbox">
	    <colorWell width="50" height="50" />
	  </hbox>
	</scrollView>
      </vbox>
    </window>
  </objects>

  <connectors>
    <!-- executes [#NSOwner -setHbox: #hbox]; -->
    <outlet source="#NSOwner" target="#hbox" key="hbox" />
  </connectors>
</gsmarkup>