This file is indexed.

/usr/share/doc/renaissance-doc/examples/Examples/Applications/CurrencyConverter/CurrencyConverter.gsmarkup is in renaissance-doc 0.9.0-4build7.

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

<gsmarkup>
  <objects>
    <!-- application window -->
    <window title="CurrencyConverter.app" closable="no" 
	    autosaveName="main">
      <vbox> 

	<hbox>
	  <label>EUROs to convert:</label>
	  <textField id="euro" nextKeyView="#exchangeRate" 
		     delegate="#NSOwner" width="100" />
	</hbox>

	<hbox>
	  <label>Exchange rate per 1 EURO:</label>
	  <textField id="exchangeRate" nextKeyView="#euro" 
		     delegate="#NSOwner" width="100" />
	</hbox>

	<hbox>
	  <label>Amount in other currency:</label>
	  <textField editable="no" id="result" width="100" />
	</hbox>

      </vbox>
    </window>
  </objects>

  <!-- outlets -->
  <connectors>
    <outlet source="#NSOwner" target="#euro" key="euroField" />
    <outlet source="#NSOwner" target="#exchangeRate" key="rateField" />
    <outlet source="#NSOwner" target="#result" key="resultField" />
  </connectors>
</gsmarkup>