This file is indexed.

/usr/share/bibledit/collaboration/settings.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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
<h3>translate("Repository setup")</h3>
<p>translate("Bible"): ##object##</p>
<br>
<form action="?object=##object##" name="url" method="post">
  <h4>translate ("Step 1")</h4>
  <p>translate("URL for the git repository:")</p>
  <p><input type="text" name="url" value="##url##" class="width100" /></p>
  
  <h4>translate ("Step 2")</h4>
  <p>translate("The source for the data.")</p>
  
  <p>
    <input type="radio" name="source" value="bibledit" checked>
    translate ("Bibledit.")
    translate ("Take your own data in Bibledit as the source.")
    translate ("This means that your data is taken as it is, and that this is copied to the repository, overwriting whatever is there in the repository now.")
  </p>
  <p>
    <input type="radio" name="source" value="repository">
    translate ("Repository.")
    translate ("Take the data in the repository as the source.")
    translate ("This means that the data in the repository is left as it is, and that a copy of that data overwrites your own data in Bibledit.")
  </p>

  <h4>translate ("Step 3")</h4>
  <p>translate("Subsequent sending and/or receiving.")</p>
  <p>
    <input type="radio" name="readwrite" value="send" checked>
    translate ("Send data to repository only.")
    translate ("After the setup is complete, Bibledit will only send the data to the repository.")
    translate ("It won't receive any data from the repositoroy.")
  </p>
  <p>
    <input type="radio" name="readwrite" value="sendreceive">
    translate ("Send data to and receive it from the repository.")
    translate ("After the setup is complete, Bibledit will send data to the repository, and receive data from the repository.")
  </p>

  <h4>translate ("Step 4")</h4>
  <p><input type="submit" name="submit" value=translate("Submit") /></p>
</form>
<hr>
<p>translate("Example URLs:")</p>
<p>
<ul>
  <li>translate("USB drive"): file:///media/usbstick/repository</li>
  <li>translate("Open network repository"): git://192.168.0.1/repository</li>
  <li>translate("Password protected network repository"): https://username:password@github.com/joe/repo.git</li>
  <li>translate("Secured network repository"): ssh://username@git.code.sf.net/p/repo/code</li>
</ul>
</p>