~gnomefreak/firefox-extensions/firegpg.ubuntu

« back to all changes in this revision

Viewing changes to content/password.js

  • Committer: John Vivirito
  • Date: 2008-08-12 11:47:33 UTC
  • Revision ID: gnomefreak@ubuntu.com-20080812114733-hn73tjxi26ylibrf
* import of upstream source version 0.5.1

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/* ***** BEGIN LICENSE BLOCK *****
 
2
 *   Version: MPL 1.1/GPL 2.0/LGPL 2.1
 
3
 *
 
4
 * The contents of this file are subject to the Mozilla Public License Version
 
5
 * 1.1 (the "License"); you may not use this file except in compliance with
 
6
 * the License. You may obtain a copy of the License at
 
7
 * http://www.mozilla.org/MPL/
 
8
 *
 
9
 * Software distributed under the License is distributed on an "AS IS" basis,
 
10
 * WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License
 
11
 * for the specific language governing rights and limitations under the
 
12
 * License.
 
13
 *
 
14
 * The Original Code is FireGPG.
 
15
 *
 
16
 * The Initial Developer of the Original Code is
 
17
 * FireGPG Team.
 
18
 * Portions created by the Initial Developer are Copyright (C) 2007
 
19
 * the Initial Developer. All Rights Reserved.
 
20
 *
 
21
 * Contributor(s):
 
22
 *
 
23
 * Alternatively, the contents of this file may be used under the terms of
 
24
 * either the GNU General Public License Version 2 or later (the "GPL"), or
 
25
 * the GNU Lesser General Public License Version 2.1 or later (the "LGPL"),
 
26
 * in which case the provisions of the GPL or the LGPL are applicable instead
 
27
 * of those above. If you wish to allow use of your version of this file only
 
28
 * under the terms of either the GPL or the LGPL, and not to allow others to
 
29
 * use your version of this file under the terms of the MPL, indicate your
 
30
 * decision by deleting the provisions above and replace them with the notice
 
31
 * and other provisions required by the GPL or the LGPL. If you do not delete
 
32
 * the provisions above, a recipient may use your version of this file under
 
33
 * the terms of any one of the MPL, the GPL or the LGPL.
 
34
 *
 
35
 * ***** END LICENSE BLOCK ***** */
 
36
 
 
37
/*
 
38
    Function: onLoad
 
39
 
 
40
    This function is called when the password.xul form is show.
 
41
    It's init the differents objets (like the translated strings).
 
42
 
 
43
    Parameters:
 
44
        win - The form herself.
 
45
        window.arguments[0].password -  The password to pre-set.
 
46
        window.arguments[0].save_password -  The default value of the savepassword checkbox.
 
47
        window.arguments[0].question -  The text to show for the prompt.
 
48
        window.arguments[0].domain - _Optional_. Say the password is asked form this page and disable the savepassword checkbox.
 
49
*/
 
50
function onLoad(win)
 
51
{
 
52
        if(window.arguments == undefined)
 
53
                return;
 
54
 
 
55
        document.getElementById('password-textbox').value = window.arguments[0].password;
 
56
        document.getElementById('save-password-checkbox').checked = window.arguments[0].save_password;
 
57
        document.getElementById('description').value = window.arguments[0].question;
 
58
 
 
59
    if (window.arguments[0].domain == undefined)
 
60
        window.arguments[0].domain = false;
 
61
 
 
62
    if (window.arguments[0].domain != false)
 
63
    {
 
64
        document.getElementById('save-password-checkbox').disabled = true;
 
65
        document.getElementById('save-password-checkbox').label = 'FireGPG\'s api called form ' + window.arguments[0].domain;
 
66
    }
 
67
 
 
68
    if (window.arguments[0].nosavecheckbox != false) {
 
69
        document.getElementById('save-password-checkbox').style.display = 'none';
 
70
    }
 
71
}
 
72
 
 
73
/*
 
74
    Function: onAccept
 
75
 
 
76
    This function is called when the _Ok_ button is pressed.
 
77
    It's prepare the differents data to return them.
 
78
*/
 
79
function onAccept()
 
80
{
 
81
        if(window.arguments == undefined)
 
82
                return true;
 
83
 
 
84
        /* the password */
 
85
        var password = document.getElementById('password-textbox').value;
 
86
        window.arguments[0].password = password; /* TODO supprimer youMustEnterPassword de la traduction ? */
 
87
 
 
88
        window.arguments[0].result = true;
 
89
        window.arguments[0].save_password = document.getElementById('save-password-checkbox').checked ? true : false;
 
90
 
 
91
        return true;
 
92
}
 
93
 
 
94
// vim:ai:noet:sw=4:ts=4:sts=4:tw=0:fenc=utf-8