This file is indexed.

/usr/share/bibledit/public/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
<p>translate("Create feedback on") ##passage##</p>
<p>##versetext##</p>
<br>
<form action="create" name="form" method="post">
  <p>translate("Summary (no more than 30 characters long)"):</p>
  <p><input type="text" name="summary" maxlength="30"/></p>
  <p>translate("Your feedback"): </p>
  <textarea name="contents" class="width100"></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>
</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>