This file is indexed.

/usr/share/bibledit/notes/comment.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
<p><a href="index">translate("Back to notes list")</a></p>
<p>translate("Summary"): ##summary##</p>
<div>##content##</div>
<hr>
<form style="border:1px #bbb solid;" action="comment" name="form" method="post">
  <p>translate("Add a comment to this note:")</p>
  <textarea name="comment" id="comment" 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>
  <input type="hidden" name="id" value=##id## />
</form>
<script src="/nicedit/nicedit.min.js?##VERSION##"></script>
<script type="text/javascript">
  area1 = new nicEditor({fullPanel : true}).panelInstance('comment',{hasPanel : true});
  $ ("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).ready (function () {
    $ (".nicEdit-main").focus ();
  });
</script>