This file is indexed.

/usr/lib/thunderbird-addons/extensions/{e2fda1a4-762b-4020-b5ad-a41df1933103}/chrome/calendar/skin/calendar/printing/calHtmlExport.html is in xul-ext-lightning 1:24.4.0+build1-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
62
63
64
65
66
67
68
69
70
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN"
   "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
  <head>
    <title id="title"></title>
    <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"/>
    <style type="text/css" id="sheet">
      .vevent {
        border: 1px solid black;
        padding: 0;
        margin-bottom: 10px;
      }

      .key {
        font-style: italic;
        margin-left: 3px;
      }

      .value {
        margin-left: 20px;
      }

      abbr {
        border: none;
      }

      .summarykey {
        display: none;
      }

      .summary {
        font-weight: bold;
        margin: 0;
        padding: 3px;
      }

      .description {
        white-space: pre-wrap;
      }
    </style>
  </head>
  <body id="item-container">
    <!-- Note on the use of the summarykey class:
         This node is hidden by default for better readability. If you would
         like to show the key, remove the display style above. -->
    <div id="templates">
      <div class="vevent" id="item-template">
        <div class="row summaryrow">
          <div class="key summarykey"></div>
          <div class="value summary"></div>
        </div>
        <div class="row intervalrow">
          <div class="key intervalkey"></div>
          <div class="value">
            <abbr class="dtstart"></abbr>
          </div>
        </div>
        <div class="row locationrow">
          <div class="key locationkey"></div>
          <div class="value location"></div>
        </div>
        <div class="row descriptionrow">
          <div class="key descriptionkey"></div>
          <div class="value description"></div>
        </div>

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