This file is indexed.

/usr/share/pyshared/zope/dublincore/browser/edit.pt is in python-zope.dublincore 3.8.2-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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
<html metal:use-macro="context/@@standard_macros/view"
    i18n:domain="zope">
<body>
<div metal:fill-slot="body">

  <form action="request/URL"
     tal:attributes="action request/URL"
     tal:define="data view/edit"
     method="post"
     >

    <p tal:condition="data/message"
       tal:content="data/message"
       i18n:translate="">Message here</p>

    <div class="row">
      <div class="label" i18n:translate="">Title</div>
      <div class="field">
        <input type="text" name="dctitle" size="50" value="Title"
               tal:attributes="value data/dctitle" />
      </div>
    </div>

    <div class="row">
      <div class="label" i18n:translate="">Description</div>
      <div class="field">
        <textarea name="dcdescription" rows="12" cols="45"
                  tal:content="data/dcdescription">Blah Blah</textarea>
      </div>
    </div>

    <div class="row">
      <div class="label" i18n:translate="">Created</div>
      <div class="field" tal:content="data/created">2000-01-01 01:01:01</div>
    </div>
    <div class="row">
      <div class="label" i18n:translate="">Content Last Modified</div>
      <div class="field" tal:content="data/modified">2000-01-01 01:01:01</div>
    </div>
    <div class="row">
      <div class="label" i18n:translate="">Creator</div>
      <div class="field">
        <span tal:repeat="creator data/creators"
              tal:content="creator">Bart Simpson</span>
      </div>
    </div>

    <div class="row">
      <div class="controls">
        <input type="reset" value="Refresh"
            i18n:attributes="value refresh-button" />
        <input type="submit" name="save" value="Save"
            i18n:attributes="value save-changes-button"/>
      </div>
    </div>

  </form>

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