This file is indexed.

/usr/share/xul-ext/tbdialout/content/options.xul is in xul-ext-tbdialout 1.7.2-2.

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
 71
 72
 73
 74
 75
 76
 77
 78
 79
 80
 81
 82
 83
 84
 85
 86
 87
 88
 89
 90
 91
 92
 93
 94
 95
 96
 97
 98
 99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
<?xml-stylesheet href="chrome://global/skin/" type="text/css"?>
<!-- ***** BEGIN LICENSE BLOCK *****
  -   Version: MPL 1.1/GPL 2.0/LGPL 2.1
  -
  - The contents of this file are subject to the Mozilla Public License Version
  - 1.1 (the "License"); you may not use this file except in compliance with
  - the License. You may obtain a copy of the License at
  - http://www.mozilla.org/MPL/
  - 
  - Software distributed under the License is distributed on an "AS IS" basis,
  - WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License
  - for the specific language governing rights and limitations under the
  - License.
  -
  - The Original Code is TBDialOut.
  -
  - The Initial Developer of the Original Code is
  - Chris Hastie. http://www.oak-wood.co.uk
  - Portions created by the Initial Developer are Copyright (C) 2010
  - the Initial Developer. All Rights Reserved.
  -
  - TBDialOut was inspired by VOIP3 Dialer by MSelector, although the code
  - has largely been rewritten. http://www.mselector.com
  -
  - Contributor(s):
  -
  - Alternatively, the contents of this file may be used under the terms of
  - either the GNU General Public License Version 2 or later (the "GPL"), or
  - the GNU Lesser General Public License Version 2.1 or later (the "LGPL"),
  - in which case the provisions of the GPL or the LGPL are applicable instead
  - of those above. If you wish to allow use of your version of this file only
  - under the terms of either the GPL or the LGPL, and not to allow others to
  - use your version of this file under the terms of the MPL, indicate your
  - decision by deleting the provisions above and replace them with the notice
  - and other provisions required by the GPL or the LGPL. If you do not delete
  - the provisions above, a recipient may use your version of this file under
  - the terms of any one of the MPL, the GPL or the LGPL.
  - 
  - ***** END LICENSE BLOCK ***** -->
<?xml-stylesheet href="chrome://tbdialout/skin/options.css" type="text/css"?>
<!DOCTYPE prefwindow SYSTEM "chrome://tbdialout/locale/prefwindow.dtd">
<prefwindow id="tbdialoutPreferences" xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul" title="&tbdoprefwindow.title;" buttons="accept,cancel" onunload="tbdialoutprefs.savePasswords();" >
  <prefpane id="tbdialoutPrefPane1" label="&tbdopane1.title;" onpaneload="tbdialoutprefs.onLoad()" >

    <preferences>
      <preference id="proto_pref" name="extensions.tbdialout.proto" type="string"/>
      <preference id="prefix_pref" name="extensions.tbdialout.prefix" type="string"/>
      <preference id="plus_pref" name="extensions.tbdialout.plus" type="string"/>
      <preference id="customurl_pref" name="extensions.tbdialout.customurl" type="string"/>
      <preference id="customuser_pref" name="extensions.tbdialout.customuser" type="string"/>
      <preference id="custominbackground_pref" name="extensions.tbdialout.custominbackground" type="bool" />
      <preference id="amichannel_pref" name="extensions.tbdialout.ami.channel" type="string"/>
      <preference id="amicontext_pref" name="extensions.tbdialout.ami.context" type="string"/>
      <preference id="amihost_pref" name="extensions.tbdialout.ami.host" type="string"/>
      <preference id="amiport_pref" name="extensions.tbdialout.ami.port" type="int"/>
      <preference id="amiuser_pref" name="extensions.tbdialout.ami.user" type="string"/>
      <preference id="amicallerid_pref" name="extensions.tbdialout.ami.callerid" type="string"/>
    </preferences>
    <commandset><command id="custominbackground_change" oncommand="tbdialoutprefs.setCustomAuthViz()"/></commandset>
    <grid flex="1">

      <columns>
        <column flex="1"/>
        <column flex="2"/>
      </columns>

      <rows>
        <row align="center">
          <label control="proto_menu" value="&tbdoproto_menu.label;:" accesskey="&tbdoproto_menu.accesskey;"/>
          <menulist id="proto_menu" preference="proto_pref" oncommand="tbdialoutprefs.setCustomOptViz()">
            <menupopup>
                <menuitem label="tel:" value="tel:"/>
                <menuitem label="sip:" value="sip:"/>
                <menuitem label="callto:" value="callto:"/>
                <menuitem label="&tbdocustomurl_menu.label;" value="custom" />
                <menuitem label="&tbdoasteriskami_menu.label;" value="asteriskami" />
            </menupopup>
          </menulist>
        </row>

        <row align="center">
          <label control="plus_text" value="&tbdoplus_text.label;:" accesskey="&tbdoplus_text.accesskey;"/>
          <textbox id="plus_text" preference="plus_pref" size="2" />
        </row>

        <row align="center">
          <label control="prefix_text" value="&tbdoprefix_text.label;:" accesskey="&tbdoprefix_text.accesskey;"/>
          <textbox id="prefix_text" preference="prefix_pref" size="2" />
        </row>

      </rows>
    </grid>

    <groupbox id="tbdialout-options-customoptions">
      <caption label="&tbdocustomurl_boxcaption.label;" />
      <label class="tbdocustomoptions" value="&tbdocustomhint_text;" />
      <grid flex="1">
        <columns>
          <column flex="1"/>
          <column flex="4"/>
        </columns>

        <rows>
          <row align="center">
            <label class="tbdocustomoptions" control="customurl_text" value="&tbdocustomurl_text.label;:" accesskey="&tbdocustomurl_text.accesskey;"/>
            <textbox class="tbdocustomoptions" id="customurl_text" preference="customurl_pref" size="35" />
          </row>
          <row align="center">
            <label class="tbdocustomoptions" control="customuser_text" value="&tbdocustomuser_text.label;:" accesskey="&tbdocustomuser_text.accesskey;"/>
            <textbox class="tbdocustomoptions" id="customuser_text" preference="customuser_pref" size="15" />
          </row>
          <row align="center">
            <label class="tbdocustomoptions" control="custompass_text" value="&tbdocustompass_text.label;:" accesskey="&tbdocustompass_text.accesskey;"/>
            <textbox class="tbdocustomoptions" id="custompass_text" size="15" type="password" />
            <image id="tbdo-opt-custompass-img" class="alert-icon" height="24" width="24" onclick="tbdialoutprefs.openPassWarn();" tooltiptext="&tbdconfighelp_text.label;" />
          </row>
          <row align="center">
            <!-- <label class="tbdocustomoptions" control="customexternalapp_cb" value="&tbdocustomexternalapp_cb.label;:" accesskey="&tbdocustomexternalapp_cb.accesskey;"/> -->
            <checkbox class="tbdocustomoptions" id="custominbackground_cb" preference="custominbackground_pref" label="&tbdocustominbackground_cb.label;" accesskey="&tbdocustominbackground_cb.accesskey;" command="custominbackground_change" />
          </row>
        </rows>
      </grid>
    </groupbox>

    <groupbox id="tbdialout-options-amioptions">
      <caption label="&tbdoami_boxcaption.label;" />

      <grid flex="1">
        <columns>
          <column flex="1"/>
          <column flex="4"/>
        </columns>

        <rows>
          <row align="center">
            <label class="tbdoamioptions" control="amihost_text" value="&tbdoamihost_text.label;:" accesskey="&tbdoamihost_text.accesskey;"/>
            <textbox class="tbdoamioptions" id="amihost_text" preference="amihost_pref" size="25" />
          </row>
          <row align="center">
            <label class="tbdoamioptions" control="amiport_text" value="&tbdoamiport_text.label;:" accesskey="&tbdoamiport_text.accesskey;"/>
            <textbox class="tbdoamioptions" id="amiport_text" preference="amiport_pref" size="5" />
          </row>
          <row align="center">
            <label class="tbdoamioptions" control="amiuser_text" value="&tbdoamiuser_text.label;:" accesskey="&tbdoamiuser_text.accesskey;"/>
            <textbox class="tbdoamioptions" id="amiuser_text" preference="amiuser_pref" size="15" />
          </row>
          <row align="center">
            <label class="tbdoamioptions" control="amisecret_text" value="&tbdoamisecret_text.label;:" accesskey="&tbdoamisecret_text.accesskey;"/>
            <textbox class="tbdoamioptions" id="amisecret_text" size="15" type="password" />
            <image id="tbdo-opt-amisecret-img" class="alert-icon" height="24" width="24" onclick="tbdialoutprefs.openPassWarn();" tooltiptext="&tbdconfighelp_text.label;" />
          </row>
          <row align="center">
            <label class="tbdoamioptions" control="amichannel_text" value="&tbdoamichannel_text.label;:" accesskey="&tbdoamichannel_text.accesskey;"/>
            <textbox class="tbdoamioptions" id="amichannel_text" preference="amichannel_pref" size="15" />
          </row>
          <row align="center">
            <label class="tbdoamioptions" control="amicontext_text" value="&tbdoamicontext_text.label;:" accesskey="&tbdoamicontext_text.accesskey;"/>
            <textbox class="tbdoamioptions" id="amicontext_text" preference="amicontext_pref" size="15" />
          </row>
          <row align="center">
            <label class="tbdoamioptions" control="amicallerid_text" value="&tbdoamicallerid_text.label;:" accesskey="&tbdoamicallerid_text.accesskey;"/>
            <textbox class="tbdoamioptions" id="amicallerid_text" preference="amicallerid_pref" size="15" />
          </row>
        </rows>
      </grid>
    </groupbox>
  <hbox flex="1" align="start">
      <image id="tbdo-opt-help-img" class="message-icon" height="24" width="24" tooltiptext="&tbdconfighelp_text.label;"  onclick="tbdialoutprefs.openHelp();" />
      <label id="tbdo-opt-help-txt" class="text-link" onclick="tbdialoutprefs.openHelp();" value="&tbdconfighelp_text.label;" />
  </hbox>
  </prefpane>
  <script src="options.js"/>
  <script src="utils.js"/>
</prefwindow>