This file is indexed.

/usr/share/sreview/templates/schedule/index.html.ep is in sreview-web 0.3.0-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
%layout 'admin';
<h1>Schedule management</h1>
<p>Possitble actions:</p>
<dl>
  <dt>GET /admin/schedule/talk/list</dt>
  <dd>Creates a JSON list of all talk IDs with their titles and upstream IDs in the current event</dd>
  <dd>GET /admin/schedule/talk/:id</dd>
  <dd>Returns all the details on the given talk</dd>
  <dt>DELETE /admin/schedule/talk/:id</dt>
  <dd>Delete the talk with the given ID</dd>
  <dt>PUT /admin/schedule/talk/</dt>
  <dd>Create a new talk (requires JSON object)</dd>
  <dt>PUT /admin/schedule/talk/:id</dt>
  <dd>Update the data of the talk with the given ID</dd>
  <dt>GET /admin/schedule/speaker/list</dt>
  <dd>Retrieves a list of all known speakers, with their ID and name</dd>
  <dt>PUT /admin/schedule/speaker/</dt>
  <dd>Create a new speaker (requires JSON object)</dd>
</dl>