home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
GameStar 2005 October
/
Gamestar_77_2005-10_dvd.iso
/
Programy
/
nsb-install-8-0.exe
/
chrome
/
toolkit.jar
/
content
/
mozapps
/
autofill
/
passcardOverlay.xul
< prev
next >
Wrap
Extensible Markup Language
|
2005-07-29
|
5KB
|
128 lines
<?xml version="1.0"?>
<!DOCTYPE window [
<!ENTITY % afDTD SYSTEM "chrome://mozapps/locale/autofill/autofill.dtd">
%afDTD;
<!ENTITY % pmDTD SYSTEM "chrome://passwordmgr/locale/passwordManager.dtd">
%pmDTD;
]>
<overlay id="passcardOverlay"
xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul">
<box id="passcardPanel" flex="1">
<!-- list of passcards -->
<vbox flex="1">
<!-- saved signons -->
<tree id="signonsTree" flex="1" style="height: 12em;" hidecolumnpicker="true"
seltype="single" onkeypress="HandleSignonKeyPress(event)"
onselect="SelectTree(this);">
<treecols>
<treecol id="passcardCol" label="&treehead.passcard.label;" flex="2" style="font-weight: bold;"
onclick="SignonColumnSort('passcard');" persist="width"/>
</treecols>
<treechildren/>
</tree> <!-- end saved signons -->
<!-- rejected signon sites -->
<tree id="rejectsTree" flex="1" style="height: 11em;" hidecolumnpicker="true"
seltype="single" onkeypress="HandleRejectKeyPress(event)"
onselect="SelectTree(this);">
<treecols>
<treecol id="rejectCol" label="&treehead.site.label;" flex="5" style="font-weight: bold;"
onclick="RejectColumnSort('host');"/>
</treecols>
<treechildren/>
</tree> <!-- end rejected signon sites -->
<hbox>
<button id="removeSignon" disabled="true"
label="&remove.label;" oncommand="DeleteItem();"/>
<button id="removeAllSignons" disabled="true"
label="&removeall.label;" oncommand="DeleteAllItems();"/>
</hbox>
</vbox> <!-- end list of passcards -->
<!-- passcard details and advanced view -->
<deck id="detail-deck" flex="1">
<vbox align="center">
<spacer flex="1"/>
<hbox>
<spacer flex="1"/>
<description flex="1">&deck.nopasscard.label;</description>
<spacer flex="1"/>
</hbox>
<!-- MERC JVL : Removed (4/14/05)
<separator orient="vertical"/>
<description id="noLoginPasscardMsg" flex="1" hidden="true">&deck.notloggedin.label;</description>
-->
<spacer flex="1"/>
</vbox>
<tabbox id="detail-tabbox" flex="1">
<tabs id="detail-tabs" onselect="OnSelectPasscardTab(this);">
<tab id="details-tab" label="&details.tab.title;"/>
<tab id="advanced-tab" label="&advanced.tab.title;"/>
</tabs>
<tabpanels flex="1">
<!-- details view -->
<tabpanel flex="1">
<vbox flex="1">
<hbox>
<label id="passcard-site-label" value="Site:" minwidth="50"/>
<description id="passcard-site-description" flex="1" style="font-weight: bold;"><site></description>
</hbox>
<hbox>
<label id="passcard-userID-label" value="&default.userID.label;" control="passcard-userID-edit" minwidth="50"/>
<textbox id="passcard-userID-edit" maxlength="50" flex="1" oninput="SetUserID(this);EnableProtect()"/>
</hbox>
<hbox>
<label id="passcard-password-label" value="&default.password.label;" control="passcard-password-edit" minwidth="50"/>
<textbox id="passcard-password-edit" maxlength="20" flex="1" oninput="SetPassword(this);EnableProtect()" type="password"/>
</hbox>
<separator orient="horizontal" class="thin"/>
<description id="passcard-autologin-description">&autologin.menulist.description;</description>
<hbox>
<spacer minwidth="60"/>
<menulist id="passcard-autologin-menulist" oncommand="SetAutologin(this);" flex="1">
<menupopup>
<menuitem label="&autologin.displayprompt.label;"/>
<menuitem label="&autologin.fill.label;"/>
<menuitem label="&autologin.fillandsubmit.label;"/>
<menuitem label="&autologin.donothing.label;"/>
</menupopup>
</menulist>
</hbox>
<checkbox id="passcard-protect-checkbox" label="&protect.checkbox.label;" oncommand="SetProtect(this);"/>
<button id="passcard-setAsDefault-button" label="&default.button.label;" oncommand="SetAsDefault(this);"/>
</vbox>
</tabpanel> <!-- end details view -->
<!-- advanced view -->
<tabpanel flex="1">
<deck id="advancedFieldsDeck" flex="1">
<!-- no fields deck -->
<vbox flex="1">
<spacer flex="1"/>
<hbox>
<spacer flex="1"/>
<description>There are no additional fields for this Passcard.</description>
<spacer flex="1"/>
</hbox>
<spacer flex="1"/>
</vbox>
<!-- advanced fields deck -->
<vbox flex="1">
<tree id="advancedFieldsTree" flex="1" hidecolumnpicker="true">
<treecols>
<treecol id="advancedFieldsTree-keyCol"
label="Name"
flex="1"/>
<treecol id="advancedFieldsTree-valCol"
label="Value"
flex="1"/>
</treecols>
<treechildren id="advancedFieldsTreeChildren"/>
</tree>
</vbox>
</deck>
</tabpanel> <!-- end advanced view -->
</tabpanels>
</tabbox>
</deck> <!-- end passcard details and advanced view -->
</box>
</overlay>