This file is indexed.

/usr/lib/thunderbird-addons/extensions/{a62ef8ec-5fdc-40c2-873c-223b8a6925cc}/chrome/gdata-provider/content/gdata-calendar-creation.xul is in xul-ext-gdata-provider 1:52.7.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
<?xml version="1.0" encoding="UTF-8"?>
<!-- This Source Code Form is subject to the terms of the Mozilla Public
   - License, v. 2.0. If a copy of the MPL was not distributed with this
   - file, You can obtain one at http://mozilla.org/MPL/2.0/. -->

<!DOCTYPE overlay [
  <!ENTITY % gdata SYSTEM "chrome://gdata-provider/locale/gdata.dtd"> %gdata;
  <!ENTITY % calendarCreation SYSTEM "chrome://calendar/locale/calendarCreation.dtd" > %calendarCreation;
]>

<?xml-stylesheet href="chrome://calendar/skin/calendar-management.css" type="text/css"?>
<?xml-stylesheet href="chrome://calendar/content/widgets/calendar-widget-bindings.css" type="text/css"?>
<?xml-stylesheet href="chrome://gdata-provider/skin/gdata-bindings.css" type="text/css"?>

<overlay id="gdataCalendarCreation"
         xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul">
  <script type="application/javascript" src="chrome://gdata-provider/content/gdata-calendar-creation.js"/>
  <radiogroup id="calendar-format">
    <radio value="gdata" label="&gdata-provider.label;"/>
  </radiogroup>

  <wizard id="calendar-wizard">
    <description id="gdata-nextstep-description" hidden="true">&gdata.wizard.nextstep.description;</description>

    <wizardpage id="gdata-session"
                pageid="gdata-session"
                onpageshow="gdataSessionShow(); checkRequired()"
                description="&wizard.description;">
       <description>&gdata.wizard.session.description;</description>
       <radiogroup id="gdata-session-group" onselect="checkRequired()">
         <hbox id="session-new">
           <radio value=""/>
           <textbox id="gdata-session-name"
                    type="email"
                    onfocus="gdataFocusNewSession()"
                    oninput="gdataFocusNewSession(); checkRequired();"
                    flex="1"/>
         </hbox>
       </radiogroup>
    </wizardpage>
    <wizardpage id="gdata-calendars"
                pageid="gdata-calendars"
                onpageshow="gdataCalendarsShow(); checkRequired()"
                onpageadvanced="return gdataCalendarsAdvance()"
                description="&wizard.description;">
      <description>&gdata.wizard.calendars.description;</description>
      <calendar-list-tree type="gdata" id="calendar-list" flex="1"
                          onselect="checkRequired();" hideheader="true"
                          onclick="checkRequired()"/>
    </wizardpage>
  </wizard>
</overlay>