This file is indexed.

/usr/share/freemedforms/forms/subforms/fortestonly/grouptest/central.xml is in freemedforms-emr-resources 0.9.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
 58
 59
 60
 61
 62
 63
 64
 65
 66
 67
 68
 69
 70
 71
 72
 73
 74
 75
 76
 77
 78
 79
 80
 81
 82
 83
 84
 85
 86
 87
 88
 89
 90
 91
 92
 93
 94
 95
 96
 97
 98
 99
100
101
102
103
104
105
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE FreeMedForms>

<FreeMedForms>

  <formdescription>
    <!-- Non translatable values -->
    <authors>Eric Maeker, MD</authors>
    <version>0.9.4</version>
    <fmfv>0.7.0</fmfv>
    <cdate>2012-01-17</cdate>
    <lmdate>2012-01-17</lmdate>
    <icon>test.png</icon>
    <weblink></weblink>
    <bibliography pmid=""></bibliography>

    <!-- Translatable values -->
    <license>GPLv3</license>
    <description lang="fr">Test du group widget</description>
    <description lang="xx">Group widget test</description>
    <category lang="xx">Test</category>
    <category lang="fr">Test</category>
    <specialties lang="fr">Test</specialties>
    <specialties lang="xx">Test</specialties>

  </formdescription>


  <MedForm name="Test::GroupTest">
    <label lang="xx">Group widget test</label>
    <label lang="fr">Test du group widget</label>
    <options>col=2;DontPrintEmptyValues;UseFormNameAsNameSpace</options>

    <Item type="group" name="Test1_1">
      <label lang="xx">This is a simple group widget</label>
      <Item type="helptext" name="Test1_1HT">
        <label lang="xx">This is a simple group widget. One column.</label>
      </Item>
    </Item>

    <Item type="group" name="Test1_2">
      <label lang="xx">This is a simple compact group widget</label>
      <options>compact</options>
      <Item type="helptext" name="Test1_2HT">
        <label lang="xx">This is a simple compact group widget. One column.</label>
      </Item>
    </Item>

    <Item type="group" name="Test2">
      <label lang="xx">This is a another group widget</label>
      <column>2</column>
      <Item type="helptext" name="Test2_1HT">
        <label lang="xx">This is a simple group widget. Two columns.</label>
      </Item>
      <Item type="helptext" name="Test2_2HT">
        <label lang="xx">The second column content.</label>
      </Item>
    </Item>

    <Item type="group" name="Test3">
      <label lang="xx">This is a checkable group widget</label>
      <options>checkable</options>
      <Item type="helptext" name="Test3HT">
        <label lang="xx">This is a checkabke group widget. One column.</label>
      </Item>
    </Item>

    <Item type="group" name="Test4_1">
      <label lang="xx">This is a collapsible group widget (not expanded at startup)</label>
      <options>collapsible</options>
      <Item type="helptext" name="Test4_1HT">
        <label lang="xx">This is a collapsible group widget (not expanded at startup). One column.</label>
      </Item>
    </Item>

    <Item type="group" name="Test4_2">
      <label lang="xx">This is a collapsible group widget (expanded at startup)</label>
      <options>collapsible;expanded</options>
      <Item type="helptext" name="Test4_2HT">
        <label lang="xx">This is a collapsible group widget (expanded at startup). One column.</label>
      </Item>
    </Item>

    <Item type="group" name="Test5">
      <label lang="xx">This is a collapsible group widget (expanded at startup by onload script)</label>
      <options>collapsible</options>
      <Item type="helptext" name="Test5_1HT">
        <label lang="xx">This is a collapsible group widget (expanded at startup by onload script). One column.</label>
      </Item>

      <Item type="helptext" name="Test5_2HT">
        <label lang="xx">script uses: item.checked = true/false;</label>
      </Item>

      <script>
        <onload>freemedforms.forms.namespaceInUse = "";
                var collapsible = freemedforms.forms.item("Test::GroupTest::Test5");
                collapsible.checked = true;
        </onload>
      </script>
    </Item>

 </MedForm>

</FreeMedForms>