This file is indexed.

/usr/share/pyshared/zope/app/applicationcontrol/browser/servercontrol.pt is in python-zope.app.applicationcontrol 3.5.10-0ubuntu1.

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
<html metal:use-macro="context/@@standard_macros/view" i18n:domain="zope">
<head>
  <title i18n:translate="">Zope Stub Server Controller</title>
</head>
<body>
<div metal:fill-slot="body">

  <div class="message"
    i18n:translate=""
    tal:define="status view/action"
    tal:condition="status"
    tal:content="status">
   </div>

  <form name="servercontrol" action="servercontrol.html" method="post">
    <div class="row">
        <div class="label"
            i18n:translate="">Countdown until restart or shutdown</div>
        <div class="field">
            <input type="text" name="time:int" size="5" value="0" />
            &nbsp;<span i18n:translate="">seconds</span>
            <p i18n:translate="">
              If you specify a time of 0 seconds, then the server
              will be shutdown or restarted immediately.
            </p>
        </div>
    </div>

    <div class="row">
        <div class="controls">
            <input type="submit" name="restart" value="Restart server"
                i18n:attributes="value" />
            &nbsp;
            <input type="submit" name="shutdown" value="Shutdown server"
                i18n:attributes="value" />
        </div>
    </div>
  </form>

</div>
</body>
</html>