This file is indexed.

/usr/share/doc/renaissance-doc/examples/Examples/Applications/Ink/Document.gsmarkup is in renaissance-doc 0.9.0-4build3.

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
<?xml version="1.0"?>
<!DOCTYPE gsmarkup>

<gsmarkup>
  <objects>
    <window id="win">
     
      <scrollView id="scv" width="500" height="400" 
		  hasHorizontalScroller="NO" border="none">

	<textView id="tv" delegate="#NSOwner" 
		  richText="YES" usesFontPanel="YES" 
		  allowsUndo="YES" usesRuler="YES"/>

      </scrollView>
      
    </window>
  </objects>

  <!-- outlets -->
  <connectors>
    <!-- This outlet is compulsory in Document-based applications -->
    <outlet source="#NSOwner" target="#win" key="window"/>

    <!-- These outlets are our own custom outlets -->
    <outlet source="#NSOwner" target="#win" key="win"/>
    <outlet source="#NSOwner" target="#tv"  key="tv"/>
    <outlet source="#NSOwner" target="#scv" key="scv"/>
  </connectors>
</gsmarkup>