This file is indexed.

/usr/share/bibledit/notes/create.html is in bibledit-data 5.0.453-3.

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
<form style="border:1px #bbb solid;" action="create"  name="form" method="post">
  <p>
    translate("Create consultation note for")
    ##passage##
  </p>
  <p>translate("Summary"):</p>
  <p><input type="text" name="summary" maxlength="100" class="width100" value="##summary##"/></p>
  <p>translate("Body"): </p>
  <textarea name="contents" class="width100">##contents##</textarea>
  <p>
    <input type="submit" name="submit" value="translate("Save")" onClick="this.value = 'translate ("Please wait")'; return true;" />
    <input type="submit" name="cancel" value="translate("Cancel")" />
  </p>
  <input type="hidden" name="bible" value="##bible##" />
  <input type="hidden" name="book" value="##book##" />
  <input type="hidden" name="chapter" value="##chapter##" />
  <input type="hidden" name="verse" value="##verse##" />
</form>
<script src="/nicedit/nicedit.min.js?##VERSION##"></script>
<script type="text/javascript">
	bkLib.onDomLoaded (function () { nicEditors.allTextAreas () });
  $ ("body").on ("paste", function (e) {
    var data = e.originalEvent.clipboardData.getData ('Text');
    e.preventDefault();
    data = data.replace (/\n/g, "<br>");
    document.execCommand ("insertHTML", false, data);
  });
  document.form.summary.focus();
</script>