This file is indexed.

/usr/share/xul-ext/password-editor/content/pwdedit.xul is in xul-ext-password-editor 2.9.6-1.

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
<?xml version="1.0" encoding="UTF-8"?>
<!--
    Saved Password Editor, extension for Gecko applications
    Copyright (C) 2015  Daniel Dawson <danielcdawson@gmail.com>

    This program is free software: you can redistribute it and/or modify
    it under the terms of the GNU General Public License as published by
    the Free Software Foundation, either version 3 of the License, or
    (at your option) any later version.

    This program is distributed in the hope that it will be useful,
    but WITHOUT ANY WARRANTY; without even the implied warranty of
    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
    GNU General Public License for more details.

    You should have received a copy of the GNU General Public License
    along with this program.  If not, see <http://www.gnu.org/licenses/>.
-->

<?xml-stylesheet href="chrome://global/skin/" type="text/css"?>
<?xml-stylesheet href="chrome://savedpasswordeditor/skin/qtextbox.css"
                 type="text/css"?>

<!DOCTYPE dialog SYSTEM "chrome://savedpasswordeditor/locale/pwdedit.dtd">

<dialog id="pwdedit"
        xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"
        title="&savedpasswordeditor.title;"
        buttons="accept,cancel"
        ondialogaccept="return setNewSignon();">
  <stringbundleset id="stringbundleset">
    <stringbundle id="general-string-bundle"
                  src="chrome://savedpasswordeditor/locale/spe.properties"/>
    <stringbundle id="pwdedit-string-bundle"
                 src="chrome://savedpasswordeditor/locale/pwdedit.properties"/>
  </stringbundleset>
  <script type="text/javascript" src="pwdedit.js"/>
  <dialogheader id="header"/>
  <groupbox id="type_groupbox">
    <caption id="type_caption" label="&signontype.label;"/>
    <radiogroup id="type_group" oncommand="handle_typeSelect();">
      <radio id="type_form" label="&type_form.label;"
             accesskey="&type_form.accesskey;"
             tooltiptext="&type_form.tooltip;"/>
      <radio id="type_annotated" label="&type_annotated.label;"
             accesskey="&type_annotated.accesskey;"
             tooltiptext="&type_annotated.tooltip;"/>
    </radiogroup>
  </groupbox>
  <grid>
    <columns>
      <column/>
      <column flex="1"/>
      <column/>
    </columns>
    <rows>
      <row align="center">
        <label control="hostname_text" value="&hostname.label;"
               tooltiptext="&hostname.tooltip;"/>
        <textbox id="hostname_text" class="qtextbox"
                 tooltiptext="&hostname.tooltip;"/>
      </row>
      <row align="center">
        <label id="formSubmitURL_lbl" control="formSubmitURL_text"
               value="&formSubmitURL.label;"
               tooltiptext="&formSubmitURL.tooltip;"/>
        <textbox id="formSubmitURL_text" class="qtextbox"
                 tooltiptext="&formSubmitURL.tooltip;"/>
      </row>
      <row align="center">
        <label id="httpRealm_lbl" control="httpRealm_text"
               value="&annotation.label;"
               tooltiptext="&annotation.tooltip;"/>
        <textbox id="httpRealm_text" class="qtextbox"
                 tooltiptext="&annotation.tooltip;"/>
      </row>
      <row align="center">
        <label control="username_text" value="&username.label;"
               tooltiptext="&username.tooltip;"/>
        <textbox id="username_text" class="qtextbox"
                 tooltiptext="&username.tooltip;"/>
      </row>
      <row align="center">
        <label control="password_text" value="&password.label;"
               tooltiptext="&password.tooltip;"/>
        <textbox persist="type" id="password_text" class="qtextbox"
                 tooltiptext="&password.tooltip;"/>
        <button id="showPassword_btn" label="&showPassword.label;"
                accesskey="&showPassword.accesskey;"
                tooltiptext="&showPassword.tooltip;"
                oncommand="togglePasswordView();"/>
        <button id="hidePassword_btn" label="&hidePassword.label;"
                accesskey="&hidePassword.accesskey;"
                tooltiptext="&showPassword.tooltip;"
                oncommand="togglePasswordView();" hidden="true"/>
      </row>
      <row align="center">
        <label id="usernameField_lbl" control="usernameField_text"
               value="&usernameField.label;"
               tooltiptext="&usernameField.tooltip;"/>
        <textbox id="usernameField_text" class="qtextbox"
                 tooltiptext="&usernameField.tooltip;"/>
      </row>
      <row align="center">
        <label id="passwordField_lbl" control="passwordField_text"
               align="center" value="&passwordField.label;"
               tooltiptext="&passwordField.tooltip;"/>
        <textbox id="passwordField_text" class="qtextbox"
                 tooltiptext="&passwordField.tooltip;"/>
      </row>
    </rows>
  </grid>
  <hbox id="guessFromPage_box">
    <button id="guessFromPage_btn" label="&guessfrompage.label;"
            accesskey="&guessfrompage.accesskey;"
            tooltiptext="&guessfrompage.tooltip;"
            oncommand="guessParameters();" flex="1"/>
    <button id="prevForm_btn" label="&prevform.label;"
            accesskey="&prevform.accesskey;"
            tooltiptext="&prevform.tooltip;" oncommand="prevForm();"
            hidden="true" flex="1"/>
    <button id="nextForm_btn" label="&nextform.label;"
            accesskey="&nextform.accesskey;"
            tooltiptext="&nextform.tooltip;" oncommand="nextForm();"
            hidden="true" flex="1"/>
  </hbox>
</dialog>