~ubuntu-branches/ubuntu/precise/kompozer/precise

« back to all changes in this revision

Viewing changes to mozilla/toolkit/components/passwordmgr/resources/content/passwordManager.xul

  • Committer: Bazaar Package Importer
  • Author(s): Anthony Yarusso
  • Date: 2007-08-27 01:11:03 UTC
  • Revision ID: james.westby@ubuntu.com-20070827011103-2jgf4s6532gqu2ka
Tags: upstream-0.7.10
ImportĀ upstreamĀ versionĀ 0.7.10

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
<?xml version="1.0"?> <!-- -*- Mode: SGML; indent-tabs-mode: nil -*- -->
 
2
# The contents of this file are subject to the Netscape Public
 
3
# License Version 1.1 (the "License"); you may not use this file
 
4
# except in compliance with the License. You may obtain a copy of
 
5
# the License at http://www.mozilla.org/NPL/
 
6
 
7
# Software distributed under the License is distributed on an "AS
 
8
# IS" basis, WITHOUT WARRANTY OF ANY KIND, either express or
 
9
# implied. See the License for the specific language governing
 
10
# rights and limitations under the License.
 
11
 
12
# The Original Code is Mozilla Communicator client code, released
 
13
# March 31, 1998.
 
14
 
15
# The Initial Developer of the Original Code is Netscape
 
16
# Communications Corporation. Portions created by Netscape are
 
17
# Copyright (C) 1998-1999 Netscape Communications Corporation. All
 
18
# Rights Reserved.
 
19
 
20
# Contributor(s):
 
21
#   Ben Goodger
 
22
#   Brian Ryner <bryner@brianryner.com>
 
23
 
 
24
<?xml-stylesheet href="chrome://global/skin/" type="text/css"?>
 
25
 
 
26
<!DOCTYPE dialog SYSTEM "chrome://passwordmgr/locale/passwordManager.dtd" >
 
27
 
 
28
<dialog id="signonviewer"
 
29
        title="&windowtitle.label;"
 
30
        xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"
 
31
        buttons="accept"
 
32
        onload="Startup()"
 
33
        onunload="Shutdown()"
 
34
        persist="screenX screenY width height">
 
35
 
 
36
  <script src="chrome://passwordmgr/content/passwordManager.js"/>
 
37
 
 
38
  <stringbundle id="signonBundle"
 
39
                src="chrome://passwordmgr/locale/passwordmgr.properties"/>
 
40
 
 
41
  <tabbox id="tabbox" flex="1">
 
42
    <tabs>
 
43
      <tab id="signonsTab" label="&tab.signonsstored.label;"/>
 
44
      <tab id="signonsitesTab" label="&tab.signonsnotstored.label;"/>
 
45
    </tabs>
 
46
    <tabpanels id="panel" flex="1">
 
47
      <!-- saved signons -->
 
48
      <vbox id="savedsignons" flex="1">
 
49
          <description>&spiel.signonsstored.label;</description>
 
50
          <separator class="thin"/>
 
51
          <tree id="signonsTree" flex="1" style="height: 10em;" hidecolumnpicker="true"
 
52
                onkeypress="HandleSignonKeyPress(event)"
 
53
                onselect="SignonSelected();">
 
54
            <treecols>
 
55
              <treecol id="siteCol" label="&treehead.site.label;" flex="5"
 
56
                           onclick="SignonColumnSort('host');" persist="width"/>
 
57
              <splitter class="tree-splitter"/>
 
58
              <treecol id="userCol" label="&treehead.username.label;" flex="2"
 
59
                           onclick="SignonColumnSort('user');" persist="width"/>
 
60
              <splitter class="tree-splitter"/>
 
61
              <treecol id="passwordCol" label="&treehead.password.label;" flex="2"
 
62
                           onclick="SignonColumnSort('password');" persist="width"
 
63
                           hidden="true"/>
 
64
            </treecols>
 
65
            <treechildren/>
 
66
          </tree>
 
67
          <separator class="thin"/>
 
68
          <hbox>
 
69
            <button id="removeSignon" disabled="true"
 
70
                          label="&remove.label;" oncommand="DeleteSignon();"/>
 
71
            <button id="removeAllSignons"
 
72
                          label="&removeall.label;"
 
73
                          oncommand="DeleteAllSignons();"/>
 
74
            <spacer flex="1"/>
 
75
            <button id="togglePasswords"
 
76
                          oncommand="TogglePasswordVisible();"/>
 
77
          </hbox>
 
78
      </vbox>
 
79
      <!-- rejected signon sites -->
 
80
      <vbox id="rejectedsites" flex="1">
 
81
          <description>&spiel.signonsnotstored.label;</description>
 
82
          <separator class="thin"/>
 
83
          <tree id="rejectsTree" flex="1" style="height: 10em;" hidecolumnpicker="true"
 
84
                    onkeypress="HandleRejectKeyPress(event)"
 
85
                    onselect="RejectSelected();">
 
86
            <treecols>
 
87
              <treecol id="rejectCol" label="&treehead.site.label;" flex="5"
 
88
                           onclick="RejectColumnSort('host');"/>
 
89
            </treecols>
 
90
            <treechildren/>
 
91
          </tree>
 
92
          <separator class="thin"/>
 
93
          <hbox>
 
94
            <button id="removeReject" disabled="true"
 
95
                          label="&remove.label;" oncommand="DeleteReject();"/>
 
96
            <button id="removeAllRejects"
 
97
                          label="&removeall.label;"
 
98
                          oncommand="DeleteAllRejects();"/>
 
99
          </hbox>
 
100
      </vbox>
 
101
    </tabpanels>
 
102
  </tabbox>   
 
103
</dialog>