summaryrefslogtreecommitdiff
path: root/frontend/beta/js/Clipperz/PM/Components/Panels
Unidiff
Diffstat (limited to 'frontend/beta/js/Clipperz/PM/Components/Panels') (more/less context) (ignore whitespace changes)
-rw-r--r--frontend/beta/js/Clipperz/PM/Components/Panels/AccountPanel.js22
-rw-r--r--frontend/beta/js/Clipperz/PM/Components/Panels/BasePanel.js22
-rw-r--r--frontend/beta/js/Clipperz/PM/Components/Panels/ContactsPanel.js22
-rw-r--r--frontend/beta/js/Clipperz/PM/Components/Panels/DataPanel.js22
-rw-r--r--frontend/beta/js/Clipperz/PM/Components/Panels/LoginPanel.js22
-rw-r--r--frontend/beta/js/Clipperz/PM/Components/Panels/LogoutPanel.js22
-rw-r--r--frontend/beta/js/Clipperz/PM/Components/Panels/MainPanel.js22
-rw-r--r--frontend/beta/js/Clipperz/PM/Components/Panels/ToolsPanel.js22
8 files changed, 80 insertions, 96 deletions
diff --git a/frontend/beta/js/Clipperz/PM/Components/Panels/AccountPanel.js b/frontend/beta/js/Clipperz/PM/Components/Panels/AccountPanel.js
index f7991f1..defce91 100644
--- a/frontend/beta/js/Clipperz/PM/Components/Panels/AccountPanel.js
+++ b/frontend/beta/js/Clipperz/PM/Components/Panels/AccountPanel.js
@@ -1,150 +1,148 @@
1/* 1/*
2 2
3Copyright 2008-2011 Clipperz Srl 3Copyright 2008-2013 Clipperz Srl
4 4
5This file is part of Clipperz Community Edition. 5This file is part of Clipperz, the online password manager.
6Clipperz Community Edition is an online password manager.
7For further information about its features and functionalities please 6For further information about its features and functionalities please
8refer to http://www.clipperz.com. 7refer to http://www.clipperz.com.
9 8
10* Clipperz Community Edition is free software: you can redistribute 9* Clipperz is free software: you can redistribute it and/or modify it
11 it and/or modify it under the terms of the GNU Affero General Public 10 under the terms of the GNU Affero General Public License as published
12 License as published by the Free Software Foundation, either version 11 by the Free Software Foundation, either version 3 of the License, or
13 3 of the License, or (at your option) any later version. 12 (at your option) any later version.
14 13
15* Clipperz Community Edition is distributed in the hope that it will 14* Clipperz is distributed in the hope that it will be useful, but
16 be useful, but WITHOUT ANY WARRANTY; without even the implied 15 WITHOUT ANY WARRANTY; without even the implied warranty of
17 warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. 16 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
18 See the GNU Affero General Public License for more details. 17 See the GNU Affero General Public License for more details.
19 18
20* You should have received a copy of the GNU Affero General Public 19* You should have received a copy of the GNU Affero General Public
21 License along with Clipperz Community Edition. If not, see 20 License along with Clipperz. If not, see http://www.gnu.org/licenses/.
22 <http://www.gnu.org/licenses/>.
23 21
24*/ 22*/
25 23
26if (typeof(Clipperz) == 'undefined') { Clipperz = {}; } 24if (typeof(Clipperz) == 'undefined') { Clipperz = {}; }
27if (typeof(Clipperz.PM) == 'undefined') { Clipperz.PM = {}; } 25if (typeof(Clipperz.PM) == 'undefined') { Clipperz.PM = {}; }
28if (typeof(Clipperz.PM.Components) == 'undefined') { Clipperz.PM.Components = {}; } 26if (typeof(Clipperz.PM.Components) == 'undefined') { Clipperz.PM.Components = {}; }
29if (typeof(Clipperz.PM.Components.Panels) == 'undefined') { Clipperz.PM.Components.Panels = {}; } 27if (typeof(Clipperz.PM.Components.Panels) == 'undefined') { Clipperz.PM.Components.Panels = {}; }
30 28
31//############################################################################# 29//#############################################################################
32 30
33Clipperz.PM.Components.Panels.AccountPanel = function(anElement, args) { 31Clipperz.PM.Components.Panels.AccountPanel = function(anElement, args) {
34//MochiKit.Logging.logDebug(">>> new AccountPanel"); 32//MochiKit.Logging.logDebug(">>> new AccountPanel");
35 args = args || {}; 33 args = args || {};
36 34
37 Clipperz.PM.Components.Panels.AccountPanel.superclass.constructor.call(this, anElement, args); 35 Clipperz.PM.Components.Panels.AccountPanel.superclass.constructor.call(this, anElement, args);
38 36
39 Clipperz.NotificationCenter.register(null, 'setupDone', this, 'render'); 37 Clipperz.NotificationCenter.register(null, 'setupDone', this, 'render');
40 38
41 this._shouldLoadLoginHistory = true; 39 this._shouldLoadLoginHistory = true;
42 40
43 //this.render(); 41 //this.render();
44//MochiKit.Logging.logDebug("<<< new AccountPanel"); 42//MochiKit.Logging.logDebug("<<< new AccountPanel");
45 43
46 return this; 44 return this;
47} 45}
48 46
49//============================================================================= 47//=============================================================================
50 48
51YAHOO.extendX(Clipperz.PM.Components.Panels.AccountPanel, Clipperz.PM.Components.Panels.BasePanel, { 49YAHOO.extendX(Clipperz.PM.Components.Panels.AccountPanel, Clipperz.PM.Components.Panels.BasePanel, {
52 50
53 'toString': function() { 51 'toString': function() {
54 return "Clipperz.PM.Components.AccountPanel component"; 52 return "Clipperz.PM.Components.AccountPanel component";
55 }, 53 },
56 54
57 //------------------------------------------------------------------------- 55 //-------------------------------------------------------------------------
58 56
59 'render': function() { 57 'render': function() {
60 var errorMessageActor; 58 var errorMessageActor;
61 varchangePasswordButton; 59 varchangePasswordButton;
62 var deleteAccountButton; 60 var deleteAccountButton;
63 61
64try { 62try {
65//MochiKit.Logging.logDebug(">>> AccountPanel.render"); 63//MochiKit.Logging.logDebug(">>> AccountPanel.render");
66 Clipperz.NotificationCenter.unregister(this); 64 Clipperz.NotificationCenter.unregister(this);
67 MochiKit.Signal.disconnectAllTo(this); 65 MochiKit.Signal.disconnectAllTo(this);
68 66
69 this.element().update(""); 67 this.element().update("");
70 Clipperz.YUI.DomHelper.append(this.element().dom, {tag:'table', border:'0', cellspacing:'0', cellpadding:'0', children:[ 68 Clipperz.YUI.DomHelper.append(this.element().dom, {tag:'table', border:'0', cellspacing:'0', cellpadding:'0', children:[
71 {tag:'tbody', children:[ 69 {tag:'tbody', children:[
72 {tag:'tr', children:[ 70 {tag:'tr', children:[
73 {tag:'td', valign:'top', width:'200', children:[ 71 {tag:'td', valign:'top', width:'200', children:[
74 {tag:'ul', id:"accountSubMenu", cls:'subMenu', children:[ 72 {tag:'ul', id:"accountSubMenu", cls:'subMenu', children:[
75 {tag:'li', id:'changePassphraseTab', htmlString:Clipperz.PM.Strings['changePasswordTabLabel']}, 73 {tag:'li', id:'changePassphraseTab', htmlString:Clipperz.PM.Strings['changePasswordTabLabel']},
76 {tag:'li', id:'manageOTPTab', htmlString:Clipperz.PM.Strings['manageOTPTabLabel']}, 74 {tag:'li', id:'manageOTPTab', htmlString:Clipperz.PM.Strings['manageOTPTabLabel']},
77 {tag:'li', id:'accountPreferencesTab', htmlString:Clipperz.PM.Strings['accountPreferencesLabel']}, 75 {tag:'li', id:'accountPreferencesTab', htmlString:Clipperz.PM.Strings['accountPreferencesLabel']},
78 {tag:'li', id:'loginHistoryTab', htmlString:Clipperz.PM.Strings['accountLoginHistoryLabel']}, 76 {tag:'li', id:'loginHistoryTab', htmlString:Clipperz.PM.Strings['accountLoginHistoryLabel']},
79 {tag:'li', id:'deleteAccountTab', htmlString:Clipperz.PM.Strings['deleteAccountTabLabel']} 77 {tag:'li', id:'deleteAccountTab', htmlString:Clipperz.PM.Strings['deleteAccountTabLabel']}
80 // {tag:'li', id:'paidAccountTab'), htmlString:Clipperz.PM.Strings['paidAccountTabLabel']} 78 // {tag:'li', id:'paidAccountTab'), htmlString:Clipperz.PM.Strings['paidAccountTabLabel']}
81 ]} 79 ]}
82 ]}, 80 ]},
83 {tag:'td', valign:'top', children:[ 81 {tag:'td', valign:'top', children:[
84 {tag:'ul', cls:'clipperzTabPanels', children:[ 82 {tag:'ul', cls:'clipperzTabPanels', children:[
85 {tag:'li', id:this.getId('changePassphrasePanel'), children:[ 83 {tag:'li', id:this.getId('changePassphrasePanel'), children:[
86 {tag:'div', cls:'clipperzSubPanel', children:[ 84 {tag:'div', cls:'clipperzSubPanel', children:[
87 {tag:'h5', htmlString:Clipperz.PM.Strings['changePasswordTabTitle']}, 85 {tag:'h5', htmlString:Clipperz.PM.Strings['changePasswordTabTitle']},
88 {tag:'div', cls:'panelBody', id:'changePassphraseBlock', children:[ 86 {tag:'div', cls:'panelBody', id:'changePassphraseBlock', children:[
89 {tag:'form', id:this.getId('changePassphraseForm'), children:[ 87 {tag:'form', id:this.getId('changePassphraseForm'), children:[
90 {tag:'h5', cls:'errorMessage', id:this.getId('changePassphrase_errorMessage')}, 88 {tag:'h5', cls:'errorMessage', id:this.getId('changePassphrase_errorMessage')},
91 {tag:'table', cls:'panelBody', children:[ 89 {tag:'table', cls:'panelBody', children:[
92 {tag:'tr', children:[ 90 {tag:'tr', children:[
93 {tag:'td', children:[ 91 {tag:'td', children:[
94 {tag:'span', cls:'formLabel', htmlString:Clipperz.PM.Strings['changePasswordFormUsernameLabel']} 92 {tag:'span', cls:'formLabel', htmlString:Clipperz.PM.Strings['changePasswordFormUsernameLabel']}
95 ]}, 93 ]},
96 {tag:'td', children:[ 94 {tag:'td', children:[
97 {tag:'input', type:'text', name:'username', id:this.getId('changePassphrase_username')} 95 {tag:'input', type:'text', name:'username', id:this.getId('changePassphrase_username')}
98 ]} 96 ]}
99 ]}, 97 ]},
100 {tag:'tr', children:[ 98 {tag:'tr', children:[
101 {tag:'td', children:[ 99 {tag:'td', children:[
102 {tag:'span', cls:'formLabel', htmlString:Clipperz.PM.Strings['changePasswordFormOldPassphraseLabel']} 100 {tag:'span', cls:'formLabel', htmlString:Clipperz.PM.Strings['changePasswordFormOldPassphraseLabel']}
103 ]}, 101 ]},
104 {tag:'td', children:[ 102 {tag:'td', children:[
105 {tag:'input', type:'password', name:'oldPassphrase', id:this.getId('changePassphrase_oldPassphrase')} 103 {tag:'input', type:'password', name:'oldPassphrase', id:this.getId('changePassphrase_oldPassphrase')}
106 ]} 104 ]}
107 ]}, 105 ]},
108 {tag:'tr', children:[ 106 {tag:'tr', children:[
109 {tag:'td', children:[ 107 {tag:'td', children:[
110 {tag:'span', cls:'formLabel', htmlString:Clipperz.PM.Strings['changePasswordFormNewPassphraseLabel']} 108 {tag:'span', cls:'formLabel', htmlString:Clipperz.PM.Strings['changePasswordFormNewPassphraseLabel']}
111 ]}, 109 ]},
112 {tag:'td', children:[ 110 {tag:'td', children:[
113 {tag:'input', type:'password', name:'newPassphrase', id:this.getId('changePassphrase_newPassphrase')} 111 {tag:'input', type:'password', name:'newPassphrase', id:this.getId('changePassphrase_newPassphrase')}
114 ]} 112 ]}
115 ]}, 113 ]},
116 {tag:'tr', children:[ 114 {tag:'tr', children:[
117 {tag:'td', children:[ 115 {tag:'td', children:[
118 {tag:'span', cls:'formLabel', htmlString:Clipperz.PM.Strings['changePasswordFormRetypePassphraseLabel']} 116 {tag:'span', cls:'formLabel', htmlString:Clipperz.PM.Strings['changePasswordFormRetypePassphraseLabel']}
119 ]}, 117 ]},
120 {tag:'td', children:[ 118 {tag:'td', children:[
121 {tag:'input', type:'password', name:'renewPassphrase', id:this.getId('changePassphrase_renewPassphrase')} 119 {tag:'input', type:'password', name:'renewPassphrase', id:this.getId('changePassphrase_renewPassphrase')}
122 ]} 120 ]}
123 ]}, 121 ]},
124 {tag:'tr', children:[ 122 {tag:'tr', children:[
125 {tag:'td', align:'right', children:[ 123 {tag:'td', align:'right', children:[
126 {tag:'input', type:'checkbox', id:this.getId('changePassphrase_safetyCheck')} 124 {tag:'input', type:'checkbox', id:this.getId('changePassphrase_safetyCheck')}
127 ]}, 125 ]},
128 {tag:'td', children:[ 126 {tag:'td', children:[
129 {tag:'span', htmlString:Clipperz.PM.Strings['changePasswordFormSafetyCheckboxLabel']} 127 {tag:'span', htmlString:Clipperz.PM.Strings['changePasswordFormSafetyCheckboxLabel']}
130 ]} 128 ]}
131 ]} 129 ]}
132 ]}, 130 ]},
133 {tag:'div', cls:'clipperzSubPanelButtonBox', children:[ 131 {tag:'div', cls:'clipperzSubPanelButtonBox', children:[
134 {tag:'div', id:this.getId('changePassphraseButton')} 132 {tag:'div', id:this.getId('changePassphraseButton')}
135 ]} 133 ]}
136 ]} 134 ]}
137 ]} 135 ]}
138 ]} 136 ]}
139 ]}, 137 ]},
140 {tag:'li', id:this.getId('manageOTPPanel'), children:[ 138 {tag:'li', id:this.getId('manageOTPPanel'), children:[
141 {tag:'div', cls:'clipperzSubPanel', children:[ 139 {tag:'div', cls:'clipperzSubPanel', children:[
142 {tag:'h5', htmlString:Clipperz.PM.Strings['manageOTPTabTitle']}, 140 {tag:'h5', htmlString:Clipperz.PM.Strings['manageOTPTabTitle']},
143 {tag:'div', cls:'panelDescription', htmlString:Clipperz.PM.Strings['manageOTPTabDescription']}, 141 {tag:'div', cls:'panelDescription', htmlString:Clipperz.PM.Strings['manageOTPTabDescription']},
144 {tag:'div', id:'OTPComponent'} 142 {tag:'div', id:'OTPComponent'}
145 ]} 143 ]}
146 ]}, 144 ]},
147 {tag:'li', id:this.getId('accountPreferencesPanel'), children:[ 145 {tag:'li', id:this.getId('accountPreferencesPanel'), children:[
148 {tag:'div', cls:'clipperzSubPanel', children:[ 146 {tag:'div', cls:'clipperzSubPanel', children:[
149 {tag:'h5', htmlString:Clipperz.PM.Strings['accountPreferencesTabTitle']}, 147 {tag:'h5', htmlString:Clipperz.PM.Strings['accountPreferencesTabTitle']},
150 {tag:'div', cls:'panelBody', id:this.getId('preferencesPanelBody')} 148 {tag:'div', cls:'panelBody', id:this.getId('preferencesPanelBody')}
diff --git a/frontend/beta/js/Clipperz/PM/Components/Panels/BasePanel.js b/frontend/beta/js/Clipperz/PM/Components/Panels/BasePanel.js
index 15dd622..f36e8b0 100644
--- a/frontend/beta/js/Clipperz/PM/Components/Panels/BasePanel.js
+++ b/frontend/beta/js/Clipperz/PM/Components/Panels/BasePanel.js
@@ -1,93 +1,91 @@
1/* 1/*
2 2
3Copyright 2008-2011 Clipperz Srl 3Copyright 2008-2013 Clipperz Srl
4 4
5This file is part of Clipperz Community Edition. 5This file is part of Clipperz, the online password manager.
6Clipperz Community Edition is an online password manager.
7For further information about its features and functionalities please 6For further information about its features and functionalities please
8refer to http://www.clipperz.com. 7refer to http://www.clipperz.com.
9 8
10* Clipperz Community Edition is free software: you can redistribute 9* Clipperz is free software: you can redistribute it and/or modify it
11 it and/or modify it under the terms of the GNU Affero General Public 10 under the terms of the GNU Affero General Public License as published
12 License as published by the Free Software Foundation, either version 11 by the Free Software Foundation, either version 3 of the License, or
13 3 of the License, or (at your option) any later version. 12 (at your option) any later version.
14 13
15* Clipperz Community Edition is distributed in the hope that it will 14* Clipperz is distributed in the hope that it will be useful, but
16 be useful, but WITHOUT ANY WARRANTY; without even the implied 15 WITHOUT ANY WARRANTY; without even the implied warranty of
17 warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. 16 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
18 See the GNU Affero General Public License for more details. 17 See the GNU Affero General Public License for more details.
19 18
20* You should have received a copy of the GNU Affero General Public 19* You should have received a copy of the GNU Affero General Public
21 License along with Clipperz Community Edition. If not, see 20 License along with Clipperz. If not, see http://www.gnu.org/licenses/.
22 <http://www.gnu.org/licenses/>.
23 21
24*/ 22*/
25 23
26if (typeof(Clipperz) == 'undefined') { Clipperz = {}; } 24if (typeof(Clipperz) == 'undefined') { Clipperz = {}; }
27if (typeof(Clipperz.PM) == 'undefined') { Clipperz.PM = {}; } 25if (typeof(Clipperz.PM) == 'undefined') { Clipperz.PM = {}; }
28if (typeof(Clipperz.PM.Components) == 'undefined') { Clipperz.PM.Components = {}; } 26if (typeof(Clipperz.PM.Components) == 'undefined') { Clipperz.PM.Components = {}; }
29if (typeof(Clipperz.PM.Components.Panels) == 'undefined') { Clipperz.PM.Components.Panels = {}; } 27if (typeof(Clipperz.PM.Components.Panels) == 'undefined') { Clipperz.PM.Components.Panels = {}; }
30 28
31//var _Clipperz_PM_Components_Panels_base_id_ = 0; 29//var _Clipperz_PM_Components_Panels_base_id_ = 0;
32 30
33//############################################################################# 31//#############################################################################
34 32
35Clipperz.PM.Components.Panels.BasePanel = function(anElement, args) { 33Clipperz.PM.Components.Panels.BasePanel = function(anElement, args) {
36 args = args || {}; 34 args = args || {};
37 35
38 Clipperz.PM.Components.Panels.BasePanel.superclass.constructor.call(this, anElement, args); 36 Clipperz.PM.Components.Panels.BasePanel.superclass.constructor.call(this, anElement, args);
39 37
40 this._user = args.user || null; 38 this._user = args.user || null;
41 this._delegate = args.delegate || null; 39 this._delegate = args.delegate || null;
42 this._tabPanelController = null; 40 this._tabPanelController = null;
43 //Clipperz.NotificationCenter.register(null, 'switchLanguage', this, 'switchLanguageHandler'); 41 //Clipperz.NotificationCenter.register(null, 'switchLanguage', this, 'switchLanguageHandler');
44 42
45 //this._ids = {}; 43 //this._ids = {};
46 44
47 return this; 45 return this;
48} 46}
49 47
50//============================================================================= 48//=============================================================================
51 49
52YAHOO.extendX(Clipperz.PM.Components.Panels.BasePanel, Clipperz.PM.Components.BaseComponent, { 50YAHOO.extendX(Clipperz.PM.Components.Panels.BasePanel, Clipperz.PM.Components.BaseComponent, {
53 51
54 'toString': function() { 52 'toString': function() {
55 return "Clipperz.PM.Components.Panels.BasePanel component"; 53 return "Clipperz.PM.Components.Panels.BasePanel component";
56 }, 54 },
57 55
58 //------------------------------------------------------------------------- 56 //-------------------------------------------------------------------------
59 57
60 'user': function() { 58 'user': function() {
61 return this._user; 59 return this._user;
62 }, 60 },
63 61
64 'setUser': function(aValue) { 62 'setUser': function(aValue) {
65 this._user = aValue; 63 this._user = aValue;
66 }, 64 },
67 65
68 //------------------------------------------------------------------------- 66 //-------------------------------------------------------------------------
69 67
70 'delegate': function() { 68 'delegate': function() {
71 return this._delegate; 69 return this._delegate;
72 }, 70 },
73 71
74 'setDelegate': function(aValue) { 72 'setDelegate': function(aValue) {
75 this._delegate = aValue; 73 this._delegate = aValue;
76 }, 74 },
77 75
78 //------------------------------------------------------------------------- 76 //-------------------------------------------------------------------------
79 77
80 'tabPanelController': function() { 78 'tabPanelController': function() {
81 return this._tabPanelController; 79 return this._tabPanelController;
82 }, 80 },
83 81
84 'switchLanguageHandler': function() { 82 'switchLanguageHandler': function() {
85//MochiKit.Logging.logDebug(">>> BasePanel.switchLanguageHandler [" + this.toString() + "]"); 83//MochiKit.Logging.logDebug(">>> BasePanel.switchLanguageHandler [" + this.toString() + "]");
86 this.render(); 84 this.render();
87//MochiKit.Logging.logDebug("<<< BasePanel.switchLanguageHandler [" + this.toString() + "]"); 85//MochiKit.Logging.logDebug("<<< BasePanel.switchLanguageHandler [" + this.toString() + "]");
88 }, 86 },
89 87
90 //------------------------------------------------------------------------- 88 //-------------------------------------------------------------------------
91 __syntaxFix__: "syntax fix" 89 __syntaxFix__: "syntax fix"
92 90
93}); 91});
diff --git a/frontend/beta/js/Clipperz/PM/Components/Panels/ContactsPanel.js b/frontend/beta/js/Clipperz/PM/Components/Panels/ContactsPanel.js
index 5a91d83..3feed3d 100644
--- a/frontend/beta/js/Clipperz/PM/Components/Panels/ContactsPanel.js
+++ b/frontend/beta/js/Clipperz/PM/Components/Panels/ContactsPanel.js
@@ -1,102 +1,100 @@
1/* 1/*
2 2
3Copyright 2008-2011 Clipperz Srl 3Copyright 2008-2013 Clipperz Srl
4 4
5This file is part of Clipperz Community Edition. 5This file is part of Clipperz, the online password manager.
6Clipperz Community Edition is an online password manager.
7For further information about its features and functionalities please 6For further information about its features and functionalities please
8refer to http://www.clipperz.com. 7refer to http://www.clipperz.com.
9 8
10* Clipperz Community Edition is free software: you can redistribute 9* Clipperz is free software: you can redistribute it and/or modify it
11 it and/or modify it under the terms of the GNU Affero General Public 10 under the terms of the GNU Affero General Public License as published
12 License as published by the Free Software Foundation, either version 11 by the Free Software Foundation, either version 3 of the License, or
13 3 of the License, or (at your option) any later version. 12 (at your option) any later version.
14 13
15* Clipperz Community Edition is distributed in the hope that it will 14* Clipperz is distributed in the hope that it will be useful, but
16 be useful, but WITHOUT ANY WARRANTY; without even the implied 15 WITHOUT ANY WARRANTY; without even the implied warranty of
17 warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. 16 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
18 See the GNU Affero General Public License for more details. 17 See the GNU Affero General Public License for more details.
19 18
20* You should have received a copy of the GNU Affero General Public 19* You should have received a copy of the GNU Affero General Public
21 License along with Clipperz Community Edition. If not, see 20 License along with Clipperz. If not, see http://www.gnu.org/licenses/.
22 <http://www.gnu.org/licenses/>.
23 21
24*/ 22*/
25 23
26if (typeof(Clipperz) == 'undefined') { Clipperz = {}; } 24if (typeof(Clipperz) == 'undefined') { Clipperz = {}; }
27if (typeof(Clipperz.PM) == 'undefined') { Clipperz.PM = {}; } 25if (typeof(Clipperz.PM) == 'undefined') { Clipperz.PM = {}; }
28if (typeof(Clipperz.PM.Components) == 'undefined') { Clipperz.PM.Components = {}; } 26if (typeof(Clipperz.PM.Components) == 'undefined') { Clipperz.PM.Components = {}; }
29if (typeof(Clipperz.PM.Components.Panels) == 'undefined') { Clipperz.PM.Components.Panels = {}; } 27if (typeof(Clipperz.PM.Components.Panels) == 'undefined') { Clipperz.PM.Components.Panels = {}; }
30 28
31//############################################################################# 29//#############################################################################
32 30
33Clipperz.PM.Components.Panels.ContactsPanel = function(anElement, args) { 31Clipperz.PM.Components.Panels.ContactsPanel = function(anElement, args) {
34 args = args || {}; 32 args = args || {};
35 33
36 Clipperz.PM.Components.Panels.ContactsPanel.superclass.constructor.call(this, anElement, args); 34 Clipperz.PM.Components.Panels.ContactsPanel.superclass.constructor.call(this, anElement, args);
37 35
38 this.render(); 36 this.render();
39 37
40 return this; 38 return this;
41} 39}
42 40
43//============================================================================= 41//=============================================================================
44 42
45YAHOO.extendX(Clipperz.PM.Components.Panels.ContactsPanel, Clipperz.PM.Components.Panels.BasePanel, { 43YAHOO.extendX(Clipperz.PM.Components.Panels.ContactsPanel, Clipperz.PM.Components.Panels.BasePanel, {
46 44
47 'toString': function() { 45 'toString': function() {
48 return "Clipperz.PM.Components.ContactsPanel component"; 46 return "Clipperz.PM.Components.ContactsPanel component";
49 }, 47 },
50 48
51 //------------------------------------------------------------------------- 49 //-------------------------------------------------------------------------
52 50
53 'render': function() { 51 'render': function() {
54 // var tabPanelControllerConfig; 52 // var tabPanelControllerConfig;
55 53
56 Clipperz.YUI.DomHelper.append(this.element().dom, {tag:'table', border:'0', cellspacing:'0', cellpadding:'0', children:[ 54 Clipperz.YUI.DomHelper.append(this.element().dom, {tag:'table', border:'0', cellspacing:'0', cellpadding:'0', children:[
57 {tag:'tbody', children:[ 55 {tag:'tbody', children:[
58 {tag:'tr', children:[ 56 {tag:'tr', children:[
59 {tag:'td', valign:'top', width:'200', children:[ 57 {tag:'td', valign:'top', width:'200', children:[
60 {tag:'ul', id:"dataSubMenu", cls:'subMenu', children:[ 58 {tag:'ul', id:"dataSubMenu", cls:'subMenu', children:[
61 {tag:'li', id:this.getId('contacts'), htmlString:Clipperz.PM.Strings['contactsTabLabel']}, 59 {tag:'li', id:this.getId('contacts'), htmlString:Clipperz.PM.Strings['contactsTabLabel']},
62 ]} 60 ]}
63 ]}, 61 ]},
64 {tag:'td', valign:'top', children:[ 62 {tag:'td', valign:'top', children:[
65 {tag:'ul', cls:'clipperzTabPanels', children:[ 63 {tag:'ul', cls:'clipperzTabPanels', children:[
66 {tag:'li', id:this.getId('contactsPanel'), children:[ 64 {tag:'li', id:this.getId('contactsPanel'), children:[
67 {tag:'div', cls:'clipperzSubPanel', children:[ 65 {tag:'div', cls:'clipperzSubPanel', children:[
68 {tag:'h5', htmlString:Clipperz.PM.Strings['contactsTabTitle']}, 66 {tag:'h5', htmlString:Clipperz.PM.Strings['contactsTabTitle']},
69 {tag:'div', htmlString:Clipperz.PM.Strings['comingSoon']} 67 {tag:'div', htmlString:Clipperz.PM.Strings['comingSoon']}
70 ]} 68 ]}
71 ]} 69 ]}
72 ]} 70 ]}
73 ]} 71 ]}
74 ]} 72 ]}
75 ]} 73 ]}
76 ]}); 74 ]});
77 75
78 // tabPanelControllerConfig = {} 76 // tabPanelControllerConfig = {}
79 // tabPanelControllerConfig[this.getId('contacts')] = this.getId('contactsPanel'); 77 // tabPanelControllerConfig[this.getId('contacts')] = this.getId('contactsPanel');
80 // new Clipperz.PM.Components.TabPanel.TabPanelController({ config:tabPanelControllerConfig, selectedTab:this.getId('contacts') }); 78 // new Clipperz.PM.Components.TabPanel.TabPanelController({ config:tabPanelControllerConfig, selectedTab:this.getId('contacts') });
81 this.tabPanelController().setUp(); 79 this.tabPanelController().setUp();
82 }, 80 },
83 81
84 //------------------------------------------------------------------------- 82 //-------------------------------------------------------------------------
85 83
86 'tabPanelController': function() { 84 'tabPanelController': function() {
87 if (this._tabPanelController == null) { 85 if (this._tabPanelController == null) {
88 var tabPanelControllerConfig; 86 var tabPanelControllerConfig;
89 87
90 tabPanelControllerConfig = {} 88 tabPanelControllerConfig = {}
91 tabPanelControllerConfig[this.getId('contacts')] = this.getId('contactsPanel'); 89 tabPanelControllerConfig[this.getId('contacts')] = this.getId('contactsPanel');
92 this._tabPanelController = new Clipperz.PM.Components.TabPanel.TabPanelController({ config:tabPanelControllerConfig, selectedTab:this.getId('contacts') }); 90 this._tabPanelController = new Clipperz.PM.Components.TabPanel.TabPanelController({ config:tabPanelControllerConfig, selectedTab:this.getId('contacts') });
93 } 91 }
94 92
95 return this._tabPanelController; 93 return this._tabPanelController;
96 }, 94 },
97 95
98 //------------------------------------------------------------------------- 96 //-------------------------------------------------------------------------
99 __syntaxFix__: "syntax fix" 97 __syntaxFix__: "syntax fix"
100 98
101}); 99});
102 100
diff --git a/frontend/beta/js/Clipperz/PM/Components/Panels/DataPanel.js b/frontend/beta/js/Clipperz/PM/Components/Panels/DataPanel.js
index 11d4bd7..520542c 100644
--- a/frontend/beta/js/Clipperz/PM/Components/Panels/DataPanel.js
+++ b/frontend/beta/js/Clipperz/PM/Components/Panels/DataPanel.js
@@ -1,150 +1,148 @@
1/* 1/*
2 2
3Copyright 2008-2011 Clipperz Srl 3Copyright 2008-2013 Clipperz Srl
4 4
5This file is part of Clipperz Community Edition. 5This file is part of Clipperz, the online password manager.
6Clipperz Community Edition is an online password manager.
7For further information about its features and functionalities please 6For further information about its features and functionalities please
8refer to http://www.clipperz.com. 7refer to http://www.clipperz.com.
9 8
10* Clipperz Community Edition is free software: you can redistribute 9* Clipperz is free software: you can redistribute it and/or modify it
11 it and/or modify it under the terms of the GNU Affero General Public 10 under the terms of the GNU Affero General Public License as published
12 License as published by the Free Software Foundation, either version 11 by the Free Software Foundation, either version 3 of the License, or
13 3 of the License, or (at your option) any later version. 12 (at your option) any later version.
14 13
15* Clipperz Community Edition is distributed in the hope that it will 14* Clipperz is distributed in the hope that it will be useful, but
16 be useful, but WITHOUT ANY WARRANTY; without even the implied 15 WITHOUT ANY WARRANTY; without even the implied warranty of
17 warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. 16 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
18 See the GNU Affero General Public License for more details. 17 See the GNU Affero General Public License for more details.
19 18
20* You should have received a copy of the GNU Affero General Public 19* You should have received a copy of the GNU Affero General Public
21 License along with Clipperz Community Edition. If not, see 20 License along with Clipperz. If not, see http://www.gnu.org/licenses/.
22 <http://www.gnu.org/licenses/>.
23 21
24*/ 22*/
25 23
26if (typeof(Clipperz) == 'undefined') { Clipperz = {}; } 24if (typeof(Clipperz) == 'undefined') { Clipperz = {}; }
27if (typeof(Clipperz.PM) == 'undefined') { Clipperz.PM = {}; } 25if (typeof(Clipperz.PM) == 'undefined') { Clipperz.PM = {}; }
28if (typeof(Clipperz.PM.Components) == 'undefined') { Clipperz.PM.Components = {}; } 26if (typeof(Clipperz.PM.Components) == 'undefined') { Clipperz.PM.Components = {}; }
29if (typeof(Clipperz.PM.Components.Panels) == 'undefined') { Clipperz.PM.Components.Panels = {}; } 27if (typeof(Clipperz.PM.Components.Panels) == 'undefined') { Clipperz.PM.Components.Panels = {}; }
30 28
31//############################################################################# 29//#############################################################################
32 30
33Clipperz.PM.Components.Panels.DataPanel = function(anElement, args) { 31Clipperz.PM.Components.Panels.DataPanel = function(anElement, args) {
34 args = args || {}; 32 args = args || {};
35 33
36 Clipperz.PM.Components.Panels.DataPanel.superclass.constructor.call(this, anElement, args); 34 Clipperz.PM.Components.Panels.DataPanel.superclass.constructor.call(this, anElement, args);
37 35
38 this._progressWidth = 400; 36 this._progressWidth = 400;
39 37
40 38
41 this.render(); 39 this.render();
42 40
43 return this; 41 return this;
44} 42}
45 43
46//============================================================================= 44//=============================================================================
47 45
48YAHOO.extendX(Clipperz.PM.Components.Panels.DataPanel, Clipperz.PM.Components.Panels.BasePanel, { 46YAHOO.extendX(Clipperz.PM.Components.Panels.DataPanel, Clipperz.PM.Components.Panels.BasePanel, {
49 47
50 'toString': function() { 48 'toString': function() {
51 return "Clipperz.PM.Components.DataPanel component"; 49 return "Clipperz.PM.Components.DataPanel component";
52 }, 50 },
53 51
54 //------------------------------------------------------------------------- 52 //-------------------------------------------------------------------------
55 53
56 'render': function() { 54 'render': function() {
57 MochiKit.Signal.disconnectAllTo(this); 55 MochiKit.Signal.disconnectAllTo(this);
58 Clipperz.NotificationCenter.unregister(this); 56 Clipperz.NotificationCenter.unregister(this);
59 this.element().update(""); 57 this.element().update("");
60 58
61 Clipperz.YUI.DomHelper.append(this.element().dom, {tag:'table', border:'0', cellspacing:'0', cellpadding:'0', children:[ 59 Clipperz.YUI.DomHelper.append(this.element().dom, {tag:'table', border:'0', cellspacing:'0', cellpadding:'0', children:[
62 {tag:'tbody', children:[ 60 {tag:'tbody', children:[
63 {tag:'tr', children:[ 61 {tag:'tr', children:[
64 {tag:'td', valign:'top', width:'200', children:[ 62 {tag:'td', valign:'top', width:'200', children:[
65 {tag:'ul', id:"dataSubMenu", cls:'subMenu', children:[ 63 {tag:'ul', id:"dataSubMenu", cls:'subMenu', children:[
66 {tag:'li', id:'offlineCopyTab', htmlString:Clipperz.PM.Strings['offlineCopyTabLabel']}, 64 {tag:'li', id:'offlineCopyTab', htmlString:Clipperz.PM.Strings['offlineCopyTabLabel']},
67 {tag:'li', id:'sharingTab', htmlString:Clipperz.PM.Strings['sharingTabLabel']}, 65 {tag:'li', id:'sharingTab', htmlString:Clipperz.PM.Strings['sharingTabLabel']},
68 {tag:'li', id:'importTab', htmlString:Clipperz.PM.Strings['importTabLabel']}, 66 {tag:'li', id:'importTab', htmlString:Clipperz.PM.Strings['importTabLabel']},
69 {tag:'li', id:'printingTab', htmlString:Clipperz.PM.Strings['printingTabLabel']} 67 {tag:'li', id:'printingTab', htmlString:Clipperz.PM.Strings['printingTabLabel']}
70 ]} 68 ]}
71 ]}, 69 ]},
72 {tag:'td', valign:'top', children:[ 70 {tag:'td', valign:'top', children:[
73 {tag:'ul', cls:'clipperzTabPanels', children:[ 71 {tag:'ul', cls:'clipperzTabPanels', children:[
74 {tag:'li', id:this.getId('offlineCopyPanel'), children:[ 72 {tag:'li', id:this.getId('offlineCopyPanel'), children:[
75 {tag:'div', cls:'clipperzSubPanel', children:[ 73 {tag:'div', cls:'clipperzSubPanel', children:[
76 {tag:'h5', htmlString:Clipperz.PM.Strings['offlineCopyTabTitle']}, 74 {tag:'h5', htmlString:Clipperz.PM.Strings['offlineCopyTabTitle']},
77 {tag:'div', cls:'panelDescription', htmlString:Clipperz.PM.Strings['offlineCopyTabDescription']}, 75 {tag:'div', cls:'panelDescription', htmlString:Clipperz.PM.Strings['offlineCopyTabDescription']},
78 {tag:'div', id:this.getId('offlineCopyLinkBox'), children:[ 76 {tag:'div', id:this.getId('offlineCopyLinkBox'), children:[
79 {tag:'a', id:'offlineCopyLink', href:'#', htmlString:Clipperz.PM.Strings['offlineCopyDownloadLinkLabel']} 77 {tag:'a', id:'offlineCopyLink', href:'#', htmlString:Clipperz.PM.Strings['offlineCopyDownloadLinkLabel']}
80 ]}, 78 ]},
81 {tag:'div', id:this.getId('offlineCopyLinkBox_read-only'), children:[ 79 {tag:'div', id:this.getId('offlineCopyLinkBox_read-only'), children:[
82 {tag:'span', cls:'read-only', htmlString:Clipperz.PM.Strings['offlineCopyDownloadLinkLabel']} 80 {tag:'span', cls:'read-only', htmlString:Clipperz.PM.Strings['offlineCopyDownloadLinkLabel']}
83 ]} 81 ]}
84 ]} 82 ]}
85 ]}, 83 ]},
86 {tag:'li', id:this.getId('sharingPanel'), children:[ 84 {tag:'li', id:this.getId('sharingPanel'), children:[
87 {tag:'div', cls:'clipperzSubPanel', children:[ 85 {tag:'div', cls:'clipperzSubPanel', children:[
88 {tag:'h5', htmlString:Clipperz.PM.Strings['sharingTabTitle']}, 86 {tag:'h5', htmlString:Clipperz.PM.Strings['sharingTabTitle']},
89 {tag:'div', cls:'panelDescription', htmlString:Clipperz.PM.Strings['sharingTabDescription']} 87 {tag:'div', cls:'panelDescription', htmlString:Clipperz.PM.Strings['sharingTabDescription']}
90 ]} 88 ]}
91 ]}, 89 ]},
92 {tag:'li', id:this.getId('importPanel'), children:[ 90 {tag:'li', id:this.getId('importPanel'), children:[
93 {tag:'div', cls:'clipperzSubPanel', children:[ 91 {tag:'div', cls:'clipperzSubPanel', children:[
94 {tag:'div', id:this.getId('importPanelMainComponent')} 92 {tag:'div', id:this.getId('importPanelMainComponent')}
95 ]} 93 ]}
96 ]}, 94 ]},
97 {tag:'li', id:this.getId('printingPanel'), children:[ 95 {tag:'li', id:this.getId('printingPanel'), children:[
98 {tag:'div', cls:'clipperzSubPanel', children:[ 96 {tag:'div', cls:'clipperzSubPanel', children:[
99 {tag:'h5', htmlString:Clipperz.PM.Strings['printingTabTitle']}, 97 {tag:'h5', htmlString:Clipperz.PM.Strings['printingTabTitle']},
100 98
101 {tag:'div', cls:'panelDescription', htmlString:Clipperz.PM.Strings['printingTabDescription']}, 99 {tag:'div', cls:'panelDescription', htmlString:Clipperz.PM.Strings['printingTabDescription']},
102 {tag:'div', id:this.getId('printingLinkBox'), children:[ 100 {tag:'div', id:this.getId('printingLinkBox'), children:[
103 {tag:'a', id:'printingLink', href:'#', htmlString:Clipperz.PM.Strings['printingLinkLabel']} 101 {tag:'a', id:'printingLink', href:'#', htmlString:Clipperz.PM.Strings['printingLinkLabel']}
104 ]}, 102 ]},
105 103
106 {tag:'hr'}, 104 {tag:'hr'},
107 105
108 {tag:'div', cls:'panelDescription', htmlString:Clipperz.PM.Strings['exportTabDescription']}, 106 {tag:'div', cls:'panelDescription', htmlString:Clipperz.PM.Strings['exportTabDescription']},
109 {tag:'div', id:this.getId('exportLinkBox'), children:[ 107 {tag:'div', id:this.getId('exportLinkBox'), children:[
110 {tag:'a', id:'exportLink', href:'#', htmlString:Clipperz.PM.Strings['exportLinkLabel']} 108 {tag:'a', id:'exportLink', href:'#', htmlString:Clipperz.PM.Strings['exportLinkLabel']}
111 ]} 109 ]}
112 ]} 110 ]}
113 ]} 111 ]}
114 ]} 112 ]}
115 ]} 113 ]}
116 ]} 114 ]}
117 ]} 115 ]}
118 ]}); 116 ]});
119 117
120 this.tabPanelController().setUp(); 118 this.tabPanelController().setUp();
121 119
122 if (Clipperz.PM.Proxy.defaultProxy.isReadOnly()) { 120 if (Clipperz.PM.Proxy.defaultProxy.isReadOnly()) {
123 this.getElement('offlineCopyLinkBox').setVisibilityMode(YAHOO.ext.Element.DISPLAY).hide(); 121 this.getElement('offlineCopyLinkBox').setVisibilityMode(YAHOO.ext.Element.DISPLAY).hide();
124 } else { 122 } else {
125 this.getElement('offlineCopyLinkBox_read-only').setVisibilityMode(YAHOO.ext.Element.DISPLAY).hide(); 123 this.getElement('offlineCopyLinkBox_read-only').setVisibilityMode(YAHOO.ext.Element.DISPLAY).hide();
126 MochiKit.Signal.connect('offlineCopyLink', 'onclick', this, 'downloadOfflineCopy'); 124 MochiKit.Signal.connect('offlineCopyLink', 'onclick', this, 'downloadOfflineCopy');
127 } 125 }
128 126
129 new Clipperz.PM.Components.Import.MainComponent(this.getElement('importPanelMainComponent'), {user:this.user()}); 127 new Clipperz.PM.Components.Import.MainComponent(this.getElement('importPanelMainComponent'), {user:this.user()});
130 128
131 MochiKit.Signal.connect('printingLink', 'onclick', this, 'printAllData'); 129 MochiKit.Signal.connect('printingLink', 'onclick', this, 'printAllData');
132 MochiKit.Signal.connect('exportLink', 'onclick', this, 'exportAllData'); 130 MochiKit.Signal.connect('exportLink', 'onclick', this, 'exportAllData');
133 131
134 Clipperz.NotificationCenter.register(null, 'switchLanguage', this, 'switchLanguageHandler'); 132 Clipperz.NotificationCenter.register(null, 'switchLanguage', this, 'switchLanguageHandler');
135 }, 133 },
136 134
137 //------------------------------------------------------------------------- 135 //-------------------------------------------------------------------------
138 136
139 'tabPanelController': function() { 137 'tabPanelController': function() {
140 if (this._tabPanelController == null) { 138 if (this._tabPanelController == null) {
141 var tabPanelControllerConfig; 139 var tabPanelControllerConfig;
142 140
143 tabPanelControllerConfig = {} 141 tabPanelControllerConfig = {}
144 tabPanelControllerConfig['offlineCopyTab'] = this.getId('offlineCopyPanel'); 142 tabPanelControllerConfig['offlineCopyTab'] = this.getId('offlineCopyPanel');
145 tabPanelControllerConfig['sharingTab'] = this.getId('sharingPanel'); 143 tabPanelControllerConfig['sharingTab'] = this.getId('sharingPanel');
146 tabPanelControllerConfig['importTab'] = this.getId('importPanel'); 144 tabPanelControllerConfig['importTab'] = this.getId('importPanel');
147 tabPanelControllerConfig['printingTab'] = this.getId('printingPanel'); 145 tabPanelControllerConfig['printingTab'] = this.getId('printingPanel');
148 this._tabPanelController = new Clipperz.PM.Components.TabPanel.TabPanelController({ 146 this._tabPanelController = new Clipperz.PM.Components.TabPanel.TabPanelController({
149 name: 'dataTabPanel', 147 name: 'dataTabPanel',
150 config:tabPanelControllerConfig, 148 config:tabPanelControllerConfig,
diff --git a/frontend/beta/js/Clipperz/PM/Components/Panels/LoginPanel.js b/frontend/beta/js/Clipperz/PM/Components/Panels/LoginPanel.js
index ef2b91c..3081a9d 100644
--- a/frontend/beta/js/Clipperz/PM/Components/Panels/LoginPanel.js
+++ b/frontend/beta/js/Clipperz/PM/Components/Panels/LoginPanel.js
@@ -1,150 +1,148 @@
1/* 1/*
2 2
3Copyright 2008-2011 Clipperz Srl 3Copyright 2008-2013 Clipperz Srl
4 4
5This file is part of Clipperz Community Edition. 5This file is part of Clipperz, the online password manager.
6Clipperz Community Edition is an online password manager.
7For further information about its features and functionalities please 6For further information about its features and functionalities please
8refer to http://www.clipperz.com. 7refer to http://www.clipperz.com.
9 8
10* Clipperz Community Edition is free software: you can redistribute 9* Clipperz is free software: you can redistribute it and/or modify it
11 it and/or modify it under the terms of the GNU Affero General Public 10 under the terms of the GNU Affero General Public License as published
12 License as published by the Free Software Foundation, either version 11 by the Free Software Foundation, either version 3 of the License, or
13 3 of the License, or (at your option) any later version. 12 (at your option) any later version.
14 13
15* Clipperz Community Edition is distributed in the hope that it will 14* Clipperz is distributed in the hope that it will be useful, but
16 be useful, but WITHOUT ANY WARRANTY; without even the implied 15 WITHOUT ANY WARRANTY; without even the implied warranty of
17 warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. 16 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
18 See the GNU Affero General Public License for more details. 17 See the GNU Affero General Public License for more details.
19 18
20* You should have received a copy of the GNU Affero General Public 19* You should have received a copy of the GNU Affero General Public
21 License along with Clipperz Community Edition. If not, see 20 License along with Clipperz. If not, see http://www.gnu.org/licenses/.
22 <http://www.gnu.org/licenses/>.
23 21
24*/ 22*/
25 23
26if (typeof(Clipperz) == 'undefined') { Clipperz = {}; } 24if (typeof(Clipperz) == 'undefined') { Clipperz = {}; }
27if (typeof(Clipperz.PM) == 'undefined') { Clipperz.PM = {}; } 25if (typeof(Clipperz.PM) == 'undefined') { Clipperz.PM = {}; }
28if (typeof(Clipperz.PM.Components) == 'undefined') { Clipperz.PM.Components = {}; } 26if (typeof(Clipperz.PM.Components) == 'undefined') { Clipperz.PM.Components = {}; }
29if (typeof(Clipperz.PM.Components.Panels) == 'undefined') { Clipperz.PM.Components.Panels = {}; } 27if (typeof(Clipperz.PM.Components.Panels) == 'undefined') { Clipperz.PM.Components.Panels = {}; }
30 28
31 29
32Clipperz.PM.Components.Panels.LoginPanel = function(anElement, args) { 30Clipperz.PM.Components.Panels.LoginPanel = function(anElement, args) {
33 args = args || {}; 31 args = args || {};
34 32
35 Clipperz.PM.Components.Panels.LoginPanel.superclass.constructor.call(this, anElement, args); 33 Clipperz.PM.Components.Panels.LoginPanel.superclass.constructor.call(this, anElement, args);
36 34
37 this._showLoginFormAnimator = null; 35 this._showLoginFormAnimator = null;
38 this._showRegistrationFormAnimator = null; 36 this._showRegistrationFormAnimator = null;
39 this._shouldShowRegistrationAlert = true; 37 this._shouldShowRegistrationAlert = true;
40 38
41 this._visibleForm = null; 39 this._visibleForm = null;
42 //this._isPassphraseVisible = true; 40 //this._isPassphraseVisible = true;
43 41
44 Clipperz.NotificationCenter.register(null, 'switchLanguage', this, 'switchLanguageHandler'); 42 Clipperz.NotificationCenter.register(null, 'switchLanguage', this, 'switchLanguageHandler');
45 43
46 this.render(); 44 this.render();
47 45
48 return this; 46 return this;
49} 47}
50 48
51//============================================================================= 49//=============================================================================
52 50
53//MochiKit.Base.update(Clipperz.PM.Components.Panels.LoginPanel.prototype, { 51//MochiKit.Base.update(Clipperz.PM.Components.Panels.LoginPanel.prototype, {
54YAHOO.extendX(Clipperz.PM.Components.Panels.LoginPanel, Clipperz.PM.Components.Panels.BasePanel, { 52YAHOO.extendX(Clipperz.PM.Components.Panels.LoginPanel, Clipperz.PM.Components.Panels.BasePanel, {
55 53
56 'toString': function() { 54 'toString': function() {
57 return "Clipperz.PM.Components.LoginPanel component"; 55 return "Clipperz.PM.Components.LoginPanel component";
58 }, 56 },
59 57
60 //------------------------------------------------------------------------- 58 //-------------------------------------------------------------------------
61 59
62 'render': function() { 60 'render': function() {
63 var result; 61 var result;
64 varlayout; 62 varlayout;
65 var registerButton; 63 var registerButton;
66 64
67 MochiKit.Signal.disconnectAllTo(this); 65 MochiKit.Signal.disconnectAllTo(this);
68 this.element().update(""); 66 this.element().update("");
69 67
70//MochiKit.Logging.logDebug(">>> LoginPanel.initPanel"); 68//MochiKit.Logging.logDebug(">>> LoginPanel.initPanel");
71 Clipperz.YUI.DomHelper.append(this.element().dom, {tag:'div', id:this.getId('baseDiv'), cls:'LoginPanel', children:[ 69 Clipperz.YUI.DomHelper.append(this.element().dom, {tag:'div', id:this.getId('baseDiv'), cls:'LoginPanel', children:[
72 {tag:'table', children:[ 70 {tag:'table', children:[
73 {tag:'thead'}, 71 {tag:'thead'},
74 {tag:'tbody', children:[ 72 {tag:'tbody', children:[
75 {tag:'tr', children:[ 73 {tag:'tr', children:[
76 {tag:'td', valign:'top', children:[ 74 {tag:'td', valign:'top', children:[
77 {tag:'div', cls:'clipperzServiceDescription', htmlString:Clipperz.PM.Strings['clipperzServiceDescription']} 75 {tag:'div', cls:'clipperzServiceDescription', htmlString:Clipperz.PM.Strings['clipperzServiceDescription']}
78 ]}, 76 ]},
79 {tag:'td', valign:'top', align:'right', children:[ 77 {tag:'td', valign:'top', align:'right', children:[
80{tag:'div', id:this.getId('forms'), cls:'clipperzLoginForm', children:[ 78{tag:'div', id:this.getId('forms'), cls:'clipperzLoginForm', children:[
81 {tag:'div', id:this.getId('loginForm'), cls:'loginForm', children:[ 79 {tag:'div', id:this.getId('loginForm'), cls:'loginForm', children:[
82 {tag:'div', cls:'loginFormHeaderBox', children:[{tag:'h3', htmlString:Clipperz.PM.Strings['loginFormTitle']}]}, 80 {tag:'div', cls:'loginFormHeaderBox', children:[{tag:'h3', htmlString:Clipperz.PM.Strings['loginFormTitle']}]},
83 {tag:'form', id:this.getId('loginForm_form'), autocomplete:'off', children:[ 81 {tag:'form', id:this.getId('loginForm_form'), autocomplete:'off', children:[
84 82
85 {tag:'table', cls:'formLayout', children:[ 83 {tag:'table', cls:'formLayout', children:[
86 {tag:'thead'}, 84 {tag:'thead'},
87 {tag:'tbody', children:[ 85 {tag:'tbody', children:[
88 {tag:'tr', cls:'formFieldTR', children:[ 86 {tag:'tr', cls:'formFieldTR', children:[
89 {tag:'td', width:'90', htmlString:Clipperz.PM.Strings['loginFormUsernameLabel']}, 87 {tag:'td', width:'90', htmlString:Clipperz.PM.Strings['loginFormUsernameLabel']},
90 {tag:'td', children:[ 88 {tag:'td', children:[
91 {tag:'input', id:this.getId('login_username'), cls:'loginFormField', type:'text', name:'username'} 89 {tag:'input', id:this.getId('login_username'), cls:'loginFormField', type:'text', name:'username'}
92 ]} 90 ]}
93 ]}, 91 ]},
94 {tag:'tr', cls:'formFieldTR', children:[ 92 {tag:'tr', cls:'formFieldTR', children:[
95 {tag:'td', htmlString:Clipperz.PM.Strings['loginFormPassphraseLabel']}, 93 {tag:'td', htmlString:Clipperz.PM.Strings['loginFormPassphraseLabel']},
96 {tag:'td', children:[ 94 {tag:'td', children:[
97 {tag:'div', id:this.getId('passphraseDIV'), children:[ 95 {tag:'div', id:this.getId('passphraseDIV'), children:[
98 {tag:'input', id:this.getId('login_passphrase'), cls:'loginFormField', type:'password', name:'passphrase'} 96 {tag:'input', id:this.getId('login_passphrase'), cls:'loginFormField', type:'password', name:'passphrase'}
99 ]}, 97 ]},
100 {tag:'div', cls:'oneTimePassword', id:this.getId('oneTimePasswordDIV'), children:[ 98 {tag:'div', cls:'oneTimePassword', id:this.getId('oneTimePasswordDIV'), children:[
101 {tag:'input', type:'text', id:this.getId('oneTimePassword_1'), name:'passphrase'}, 99 {tag:'input', type:'text', id:this.getId('oneTimePassword_1'), name:'passphrase'},
102 {tag:'span', html:'-'}, 100 {tag:'span', html:'-'},
103 {tag:'input', type:'text', id:this.getId('oneTimePassword_2'), name:'passphrase'}, 101 {tag:'input', type:'text', id:this.getId('oneTimePassword_2'), name:'passphrase'},
104 {tag:'span', html:'-'}, 102 {tag:'span', html:'-'},
105 {tag:'input', type:'text', id:this.getId('oneTimePassword_3'), name:'passphrase'}, 103 {tag:'input', type:'text', id:this.getId('oneTimePassword_3'), name:'passphrase'},
106 {tag:'span', html:'-'}, 104 {tag:'span', html:'-'},
107 {tag:'input', type:'text', id:this.getId('oneTimePassword_4'), name:'passphrase'} 105 {tag:'input', type:'text', id:this.getId('oneTimePassword_4'), name:'passphrase'}
108 ]} 106 ]}
109 ]} 107 ]}
110 ]}, 108 ]},
111 {tag:'tr', cls:'formFieldTR', id:this.getId('passwordTypeChooserTR'), children:[ 109 {tag:'tr', cls:'formFieldTR', id:this.getId('passwordTypeChooserTR'), children:[
112 {tag:'td', valign:'top', align:'right', children:[ 110 {tag:'td', valign:'top', align:'right', children:[
113 {tag:'input', type:'checkbox', cls:'passwordTypeCheckbox', id:this.getId('useOneTimePasswordCheckbox')} 111 {tag:'input', type:'checkbox', cls:'passwordTypeCheckbox', id:this.getId('useOneTimePasswordCheckbox')}
114 ]}, 112 ]},
115 {tag:'td', children:[ 113 {tag:'td', children:[
116 {tag:'div', cls:'passwordTypeChooser', children:[ 114 {tag:'div', cls:'passwordTypeChooser', children:[
117 {tag:'h4', htmlString:Clipperz.PM.Strings['loginFormOneTimePasswordCheckboxLabel']}, 115 {tag:'h4', htmlString:Clipperz.PM.Strings['loginFormOneTimePasswordCheckboxLabel']},
118 {tag:'span', htmlString:Clipperz.PM.Strings['loginFormOneTimePasswordCheckboxDescription']} 116 {tag:'span', htmlString:Clipperz.PM.Strings['loginFormOneTimePasswordCheckboxDescription']}
119 ]} 117 ]}
120 ]} 118 ]}
121 ]}, 119 ]},
122 {tag:'tr', children:[ 120 {tag:'tr', children:[
123 {tag:'td'}, 121 {tag:'td'},
124 {tag:'td', children:[ 122 {tag:'td', children:[
125 {tag:'div', id:this.getId('login_submit')} 123 {tag:'div', id:this.getId('login_submit')}
126 ]} 124 ]}
127 ]} 125 ]}
128 ]}, 126 ]},
129 {tag:'tfoot'} 127 {tag:'tfoot'}
130 ]} 128 ]}
131 ]}, 129 ]},
132 130
133 {tag:'div', cls:'loginFormFooterBox', children:[ 131 {tag:'div', cls:'loginFormFooterBox', children:[
134 {tag:'ul', children:[ 132 {tag:'ul', children:[
135 {tag:'li', id:this.getId('showRegistrationLI'), children:[ 133 {tag:'li', id:this.getId('showRegistrationLI'), children:[
136 {tag:'span', htmlString:Clipperz.PM.Strings['loginFormDontHaveAnAccountLabel']}, 134 {tag:'span', htmlString:Clipperz.PM.Strings['loginFormDontHaveAnAccountLabel']},
137 {tag:'a', href:'.', id:this.getId('showRegistration'), cls:'clipperzActionLink', htmlString:Clipperz.PM.Strings['loginFormCreateOneLabel']} 135 {tag:'a', href:'.', id:this.getId('showRegistration'), cls:'clipperzActionLink', htmlString:Clipperz.PM.Strings['loginFormCreateOneLabel']}
138 ]}, 136 ]},
139 {tag:'li', children:[ 137 {tag:'li', children:[
140 {tag:'span', htmlString:Clipperz.PM.Strings['loginFormForgotYourCredentialsLabel']}, 138 {tag:'span', htmlString:Clipperz.PM.Strings['loginFormForgotYourCredentialsLabel']},
141 {tag:'a', href:Clipperz.PM.Strings['loginFormAarghThatsBadUrl'], target:'Clipperz_Help', htmlString:Clipperz.PM.Strings['loginFormAarghThatsBadLabel']} 139 {tag:'a', href:Clipperz.PM.Strings['loginFormAarghThatsBadUrl'], target:'Clipperz_Help', htmlString:Clipperz.PM.Strings['loginFormAarghThatsBadLabel']}
142 ]}, 140 ]},
143 {tag:'li', children:[ 141 {tag:'li', children:[
144 {tag:'span', htmlString:Clipperz.PM.Strings['loginFormAfraidOfMaliciousScriptsLabel']}, 142 {tag:'span', htmlString:Clipperz.PM.Strings['loginFormAfraidOfMaliciousScriptsLabel']},
145 {tag:'a', href:Clipperz.PM.Strings['loginFormVerifyTheCodeUrl'], target:'Clipperz_Help', htmlString:Clipperz.PM.Strings['loginFormVerifyTheCodeLabel']} 143 {tag:'a', href:Clipperz.PM.Strings['loginFormVerifyTheCodeUrl'], target:'Clipperz_Help', htmlString:Clipperz.PM.Strings['loginFormVerifyTheCodeLabel']}
146 ]} 144 ]}
147 ]} 145 ]}
148 ]} 146 ]}
149 ]}, 147 ]},
150 148
diff --git a/frontend/beta/js/Clipperz/PM/Components/Panels/LogoutPanel.js b/frontend/beta/js/Clipperz/PM/Components/Panels/LogoutPanel.js
index b8cc556..17ed8e4 100644
--- a/frontend/beta/js/Clipperz/PM/Components/Panels/LogoutPanel.js
+++ b/frontend/beta/js/Clipperz/PM/Components/Panels/LogoutPanel.js
@@ -1,70 +1,68 @@
1/* 1/*
2 2
3Copyright 2008-2011 Clipperz Srl 3Copyright 2008-2013 Clipperz Srl
4 4
5This file is part of Clipperz Community Edition. 5This file is part of Clipperz, the online password manager.
6Clipperz Community Edition is an online password manager.
7For further information about its features and functionalities please 6For further information about its features and functionalities please
8refer to http://www.clipperz.com. 7refer to http://www.clipperz.com.
9 8
10* Clipperz Community Edition is free software: you can redistribute 9* Clipperz is free software: you can redistribute it and/or modify it
11 it and/or modify it under the terms of the GNU Affero General Public 10 under the terms of the GNU Affero General Public License as published
12 License as published by the Free Software Foundation, either version 11 by the Free Software Foundation, either version 3 of the License, or
13 3 of the License, or (at your option) any later version. 12 (at your option) any later version.
14 13
15* Clipperz Community Edition is distributed in the hope that it will 14* Clipperz is distributed in the hope that it will be useful, but
16 be useful, but WITHOUT ANY WARRANTY; without even the implied 15 WITHOUT ANY WARRANTY; without even the implied warranty of
17 warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. 16 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
18 See the GNU Affero General Public License for more details. 17 See the GNU Affero General Public License for more details.
19 18
20* You should have received a copy of the GNU Affero General Public 19* You should have received a copy of the GNU Affero General Public
21 License along with Clipperz Community Edition. If not, see 20 License along with Clipperz. If not, see http://www.gnu.org/licenses/.
22 <http://www.gnu.org/licenses/>.
23 21
24*/ 22*/
25 23
26if (typeof(Clipperz) == 'undefined') { Clipperz = {}; } 24if (typeof(Clipperz) == 'undefined') { Clipperz = {}; }
27if (typeof(Clipperz.PM) == 'undefined') { Clipperz.PM = {}; } 25if (typeof(Clipperz.PM) == 'undefined') { Clipperz.PM = {}; }
28if (typeof(Clipperz.PM.Components) == 'undefined') { Clipperz.PM.Components = {}; } 26if (typeof(Clipperz.PM.Components) == 'undefined') { Clipperz.PM.Components = {}; }
29if (typeof(Clipperz.PM.Components.Panels) == 'undefined') { Clipperz.PM.Components.Panels = {}; } 27if (typeof(Clipperz.PM.Components.Panels) == 'undefined') { Clipperz.PM.Components.Panels = {}; }
30 28
31//############################################################################# 29//#############################################################################
32 30
33Clipperz.PM.Components.Panels.LogoutPanel = function(args) { 31Clipperz.PM.Components.Panels.LogoutPanel = function(args) {
34 args = args || {}; 32 args = args || {};
35 33
36 Clipperz.PM.Components.Panels.LogoutPanel.superclass.constructor.call(this, args); 34 Clipperz.PM.Components.Panels.LogoutPanel.superclass.constructor.call(this, args);
37 35
38 return this; 36 return this;
39} 37}
40 38
41//============================================================================= 39//=============================================================================
42 40
43YAHOO.extendX(Clipperz.PM.Components.Panels.LogoutPanel, Clipperz.PM.Components.Panels.BasePanel, { 41YAHOO.extendX(Clipperz.PM.Components.Panels.LogoutPanel, Clipperz.PM.Components.Panels.BasePanel, {
44 42
45 'toString': function() { 43 'toString': function() {
46 return "Clipperz.PM.Components.LogoutPanel component"; 44 return "Clipperz.PM.Components.LogoutPanel component";
47 }, 45 },
48 46
49 //------------------------------------------------------------------------- 47 //-------------------------------------------------------------------------
50 48
51 'initPanel': function() { 49 'initPanel': function() {
52 var result; 50 var result;
53 varlayout; 51 varlayout;
54 52
55 result = new YAHOO.ext.ContentPanel(this.getId('panel'), {title:'logout', closable:false, autoCreate:true}); 53 result = new YAHOO.ext.ContentPanel(this.getId('panel'), {title:'logout', closable:false, autoCreate:true});
56 54
57 Clipperz.YUI.DomHelper.append(result.getEl().dom, 55 Clipperz.YUI.DomHelper.append(result.getEl().dom,
58 {tag:'div', children:[ 56 {tag:'div', children:[
59 {tag:'h2', html:'Logout panel'} 57 {tag:'h2', html:'Logout panel'}
60 ]} 58 ]}
61 ); 59 );
62 60
63 return result; 61 return result;
64 }, 62 },
65 63
66 //------------------------------------------------------------------------- 64 //-------------------------------------------------------------------------
67 __syntaxFix__: "syntax fix" 65 __syntaxFix__: "syntax fix"
68 66
69}); 67});
70 68
diff --git a/frontend/beta/js/Clipperz/PM/Components/Panels/MainPanel.js b/frontend/beta/js/Clipperz/PM/Components/Panels/MainPanel.js
index 29ef516..c19a8a3 100644
--- a/frontend/beta/js/Clipperz/PM/Components/Panels/MainPanel.js
+++ b/frontend/beta/js/Clipperz/PM/Components/Panels/MainPanel.js
@@ -1,150 +1,148 @@
1/* 1/*
2 2
3Copyright 2008-2011 Clipperz Srl 3Copyright 2008-2013 Clipperz Srl
4 4
5This file is part of Clipperz Community Edition. 5This file is part of Clipperz, the online password manager.
6Clipperz Community Edition is an online password manager.
7For further information about its features and functionalities please 6For further information about its features and functionalities please
8refer to http://www.clipperz.com. 7refer to http://www.clipperz.com.
9 8
10* Clipperz Community Edition is free software: you can redistribute 9* Clipperz is free software: you can redistribute it and/or modify it
11 it and/or modify it under the terms of the GNU Affero General Public 10 under the terms of the GNU Affero General Public License as published
12 License as published by the Free Software Foundation, either version 11 by the Free Software Foundation, either version 3 of the License, or
13 3 of the License, or (at your option) any later version. 12 (at your option) any later version.
14 13
15* Clipperz Community Edition is distributed in the hope that it will 14* Clipperz is distributed in the hope that it will be useful, but
16 be useful, but WITHOUT ANY WARRANTY; without even the implied 15 WITHOUT ANY WARRANTY; without even the implied warranty of
17 warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. 16 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
18 See the GNU Affero General Public License for more details. 17 See the GNU Affero General Public License for more details.
19 18
20* You should have received a copy of the GNU Affero General Public 19* You should have received a copy of the GNU Affero General Public
21 License along with Clipperz Community Edition. If not, see 20 License along with Clipperz. If not, see http://www.gnu.org/licenses/.
22 <http://www.gnu.org/licenses/>.
23 21
24*/ 22*/
25 23
26if (typeof(Clipperz) == 'undefined') { Clipperz = {}; } 24if (typeof(Clipperz) == 'undefined') { Clipperz = {}; }
27if (typeof(Clipperz.PM) == 'undefined') { Clipperz.PM = {}; } 25if (typeof(Clipperz.PM) == 'undefined') { Clipperz.PM = {}; }
28if (typeof(Clipperz.PM.Components) == 'undefined') { Clipperz.PM.Components = {}; } 26if (typeof(Clipperz.PM.Components) == 'undefined') { Clipperz.PM.Components = {}; }
29if (typeof(Clipperz.PM.Components.Panels) == 'undefined') { Clipperz.PM.Components.Panels = {}; } 27if (typeof(Clipperz.PM.Components.Panels) == 'undefined') { Clipperz.PM.Components.Panels = {}; }
30 28
31//############################################################################# 29//#############################################################################
32 30
33Clipperz.PM.Components.Panels.MainPanel = function(anElement, args) { 31Clipperz.PM.Components.Panels.MainPanel = function(anElement, args) {
34 args = args || {}; 32 args = args || {};
35 33
36 Clipperz.PM.Components.Panels.MainPanel.superclass.constructor.call(this, anElement, args); 34 Clipperz.PM.Components.Panels.MainPanel.superclass.constructor.call(this, anElement, args);
37 35
38 this._recordListDataModel = null; 36 this._recordListDataModel = null;
39 this._selectedRecord = null; 37 this._selectedRecord = null;
40 this._recordDetailComponent = null; 38 this._recordDetailComponent = null;
41 this._recordListGrid = null; 39 this._recordListGrid = null;
42 40
43 this._directLinkItemTemplate = null; 41 this._directLinkItemTemplate = null;
44 this._recordItemTemplate = null; 42 this._recordItemTemplate = null;
45 43
46 this._addNewRecordButton = null; 44 this._addNewRecordButton = null;
47 this._deleteRecordButton = null; 45 this._deleteRecordButton = null;
48 46
49 this._creationWizard = null; 47 this._creationWizard = null;
50 48
51 Clipperz.NotificationCenter.register(null, 'selectAndEnterEditMode', this, 'selectRecordAndEnterEditModeHandler'); 49 Clipperz.NotificationCenter.register(null, 'selectAndEnterEditMode', this, 'selectRecordAndEnterEditModeHandler');
52 50
53 Clipperz.NotificationCenter.register(null, 'recordAdded', this, 'recordAddedHandler'); 51 Clipperz.NotificationCenter.register(null, 'recordAdded', this, 'recordAddedHandler');
54 Clipperz.NotificationCenter.register(null, 'recordUpdated', this, 'recordUpdatedHandler'); 52 Clipperz.NotificationCenter.register(null, 'recordUpdated', this, 'recordUpdatedHandler');
55 Clipperz.NotificationCenter.register(null, 'recordRemoved', this, 'recordRemovedHandler'); 53 Clipperz.NotificationCenter.register(null, 'recordRemoved', this, 'recordRemovedHandler');
56 54
57 Clipperz.NotificationCenter.register(null, 'directLoginAdded', this, 'directLoginAddedHandler'); 55 Clipperz.NotificationCenter.register(null, 'directLoginAdded', this, 'directLoginAddedHandler');
58 Clipperz.NotificationCenter.register(null, 'directLoginUpdated', this, 'directLoginUpdatedHandler'); 56 Clipperz.NotificationCenter.register(null, 'directLoginUpdated', this, 'directLoginUpdatedHandler');
59 Clipperz.NotificationCenter.register(null, 'directLoginRemoved', this, 'directLoginRemovedHandler'); 57 Clipperz.NotificationCenter.register(null, 'directLoginRemoved', this, 'directLoginRemovedHandler');
60 58
61 Clipperz.NotificationCenter.register(null, 'accountLocked', this, 'accountLockedHandler'); 59 Clipperz.NotificationCenter.register(null, 'accountLocked', this, 'accountLockedHandler');
62 60
63 MochiKit.Signal.connect(MochiKit.DOM.currentWindow(), 'onresize', this, 'resizeModalMask'); 61 MochiKit.Signal.connect(MochiKit.DOM.currentWindow(), 'onresize', this, 'resizeModalMask');
64 this.render(); 62 this.render();
65 63
66 return this; 64 return this;
67} 65}
68 66
69//============================================================================= 67//=============================================================================
70 68
71YAHOO.extendX(Clipperz.PM.Components.Panels.MainPanel, Clipperz.PM.Components.Panels.BasePanel, { 69YAHOO.extendX(Clipperz.PM.Components.Panels.MainPanel, Clipperz.PM.Components.Panels.BasePanel, {
72 70
73 'toString': function() { 71 'toString': function() {
74 return "Clipperz.PM.Components.Panels.MainPanel component"; 72 return "Clipperz.PM.Components.Panels.MainPanel component";
75 }, 73 },
76 74
77 //------------------------------------------------------------------------- 75 //-------------------------------------------------------------------------
78 76
79 'render': function() { 77 'render': function() {
80 this.element().update(""); 78 this.element().update("");
81 Clipperz.YUI.DomHelper.append(this.element().dom, {tag:'table', id:'mainPanelTABLE', border:'0', cellspacing:'0', cellpadding:'0', children:[ 79 Clipperz.YUI.DomHelper.append(this.element().dom, {tag:'table', id:'mainPanelTABLE', border:'0', cellspacing:'0', cellpadding:'0', children:[
82 {tag:'tbody', children:[ 80 {tag:'tbody', children:[
83 {tag:'tr', children:[ 81 {tag:'tr', children:[
84 {tag:'td', width:'15', children:[ 82 {tag:'td', width:'15', children:[
85 {tag:'div', cls:'mainPanelMinHeightDiv'} 83 {tag:'div', cls:'mainPanelMinHeightDiv'}
86 ]}, 84 ]},
87 {tag:'td', valign:'top', id:'directLoginsTD', width:'200', children:[ 85 {tag:'td', valign:'top', id:'directLoginsTD', width:'200', children:[
88 {tag:'div', id:'directLoginsBlock', children:[ 86 {tag:'div', id:'directLoginsBlock', children:[
89 {tag:'div', cls:'directLoginsBlockHeaderBox', children:[{tag:'h3', id:'directLoginTitle', htmlString:Clipperz.PM.Strings['mainPanelDirectLoginBlockLabel']}]}, 87 {tag:'div', cls:'directLoginsBlockHeaderBox', children:[{tag:'h3', id:'directLoginTitle', htmlString:Clipperz.PM.Strings['mainPanelDirectLoginBlockLabel']}]},
90 {tag:'div', id:'directLoginsDescription', htmlString:Clipperz.PM.Strings['mainPanelDirectLoginBlockDescription']}, 88 {tag:'div', id:'directLoginsDescription', htmlString:Clipperz.PM.Strings['mainPanelDirectLoginBlockDescription']},
91 {tag:'ul', id:'directLogins'} 89 {tag:'ul', id:'directLogins'}
92 ]} 90 ]}
93 ]}, 91 ]},
94 {tag:'td', width:'15', children:[ 92 {tag:'td', width:'15', children:[
95 {tag:'div', cls:'mainPanelMinHeightDiv'} 93 {tag:'div', cls:'mainPanelMinHeightDiv'}
96 ]}, 94 ]},
97 {tag:'td', valign:'top', children:[ 95 {tag:'td', valign:'top', children:[
98 {tag:'div', id:'mainContent', children:[ 96 {tag:'div', id:'mainContent', children:[
99 {tag:'div', id:'recordListBlockHeader'}, 97 {tag:'div', id:'recordListBlockHeader'},
100 {tag:'div', id:'recordListAndDetailBlock', children:[ 98 {tag:'div', id:'recordListAndDetailBlock', children:[
101 {tag:'table', id:'recordListAndDetailBlockTABLE', border:'0', cellspacing:'0', cellpadding:'0', children:[ 99 {tag:'table', id:'recordListAndDetailBlockTABLE', border:'0', cellspacing:'0', cellpadding:'0', children:[
102 {tag:'tbody', children:[ 100 {tag:'tbody', children:[
103 {tag:'tr', children:[ 101 {tag:'tr', children:[
104 {tag:'td', valign:'top', width:'250', children:[ 102 {tag:'td', valign:'top', width:'250', children:[
105 {tag:'div', id:'recordListBlock', children:[ 103 {tag:'div', id:'recordListBlock', children:[
106 {tag:'div', id:'recordListFilterHeader'}, 104 {tag:'div', id:'recordListFilterHeader'},
107 {tag:'ul', id:'records'} 105 {tag:'ul', id:'records'}
108 ]} 106 ]}
109 ]}, 107 ]},
110 {tag:'td', id:'recordDetailSeparatorTD', rowspan:'2', valign:'top', bgcolor:'#ddddff', html:'&nbsp;'}, 108 {tag:'td', id:'recordDetailSeparatorTD', rowspan:'2', valign:'top', bgcolor:'#ddddff', html:'&nbsp;'},
111 {tag:'td', valign:'top', children:[ 109 {tag:'td', valign:'top', children:[
112 {tag:'div', id:'recordDetailMainBlock', children:[ 110 {tag:'div', id:'recordDetailMainBlock', children:[
113 {tag:'div', id:'recordTitleTopBlock'}, 111 {tag:'div', id:'recordTitleTopBlock'},
114 {tag:'div', id:'recordDetailBlock', children:[ 112 {tag:'div', id:'recordDetailBlock', children:[
115 {tag:'div', id:'recordDetail'} 113 {tag:'div', id:'recordDetail'}
116 ]} 114 ]}
117 ]}, 115 ]},
118 {tag:'div', id:'recordCreationWizardMainBlock', children:[ 116 {tag:'div', id:'recordCreationWizardMainBlock', children:[
119 {tag:'div', id:'recordCreationWizard', html:"WIZARD"} 117 {tag:'div', id:'recordCreationWizard', html:"WIZARD"}
120 ]} 118 ]}
121 ]} 119 ]}
122 ]}, 120 ]},
123 {tag:'tr', children:[ 121 {tag:'tr', children:[
124 {tag:'td', id:'cardBoxLowerLeftTD', html:'&nbsp;'}, 122 {tag:'td', id:'cardBoxLowerLeftTD', html:'&nbsp;'},
125 {tag:'td', id:'cardBoxLowerRightTD', html:'&nbsp;'} 123 {tag:'td', id:'cardBoxLowerRightTD', html:'&nbsp;'}
126 ]} 124 ]}
127 ]} 125 ]}
128 ]} 126 ]}
129 ]} 127 ]}
130 ]} 128 ]}
131 ]}, 129 ]},
132 {tag:'td', width:'15', html:"&nbsp;"} 130 {tag:'td', width:'15', html:"&nbsp;"}
133 ]} 131 ]}
134 ]} 132 ]}
135 ]}); 133 ]});
136 134
137 this.renderRecordListBlockHeader(); 135 this.renderRecordListBlockHeader();
138 // this.renderRecordListFilterHeader(); 136 // this.renderRecordListFilterHeader();
139 137
140 YAHOO.ext.Element.get('directLogins').setVisibilityMode(YAHOO.ext.Element.DISPLAY).hide(); 138 YAHOO.ext.Element.get('directLogins').setVisibilityMode(YAHOO.ext.Element.DISPLAY).hide();
141 139
142 this.recordDetailComponent(); 140 this.recordDetailComponent();
143 141
144 YAHOO.ext.Element.get('recordDetailMainBlock').setVisibilityMode(YAHOO.ext.Element.DISPLAY).show(); 142 YAHOO.ext.Element.get('recordDetailMainBlock').setVisibilityMode(YAHOO.ext.Element.DISPLAY).show();
145 YAHOO.ext.Element.get('recordCreationWizardMainBlock').setVisibilityMode(YAHOO.ext.Element.DISPLAY).hide(); 143 YAHOO.ext.Element.get('recordCreationWizardMainBlock').setVisibilityMode(YAHOO.ext.Element.DISPLAY).hide();
146 }, 144 },
147 145
148 //------------------------------------------------------------------------- 146 //-------------------------------------------------------------------------
149 147
150 'addNewRecordButton': function() { 148 'addNewRecordButton': function() {
diff --git a/frontend/beta/js/Clipperz/PM/Components/Panels/ToolsPanel.js b/frontend/beta/js/Clipperz/PM/Components/Panels/ToolsPanel.js
index 4f2a015..1c799d0 100644
--- a/frontend/beta/js/Clipperz/PM/Components/Panels/ToolsPanel.js
+++ b/frontend/beta/js/Clipperz/PM/Components/Panels/ToolsPanel.js
@@ -1,150 +1,148 @@
1/* 1/*
2 2
3Copyright 2008-2011 Clipperz Srl 3Copyright 2008-2013 Clipperz Srl
4 4
5This file is part of Clipperz Community Edition. 5This file is part of Clipperz, the online password manager.
6Clipperz Community Edition is an online password manager.
7For further information about its features and functionalities please 6For further information about its features and functionalities please
8refer to http://www.clipperz.com. 7refer to http://www.clipperz.com.
9 8
10* Clipperz Community Edition is free software: you can redistribute 9* Clipperz is free software: you can redistribute it and/or modify it
11 it and/or modify it under the terms of the GNU Affero General Public 10 under the terms of the GNU Affero General Public License as published
12 License as published by the Free Software Foundation, either version 11 by the Free Software Foundation, either version 3 of the License, or
13 3 of the License, or (at your option) any later version. 12 (at your option) any later version.
14 13
15* Clipperz Community Edition is distributed in the hope that it will 14* Clipperz is distributed in the hope that it will be useful, but
16 be useful, but WITHOUT ANY WARRANTY; without even the implied 15 WITHOUT ANY WARRANTY; without even the implied warranty of
17 warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. 16 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
18 See the GNU Affero General Public License for more details. 17 See the GNU Affero General Public License for more details.
19 18
20* You should have received a copy of the GNU Affero General Public 19* You should have received a copy of the GNU Affero General Public
21 License along with Clipperz Community Edition. If not, see 20 License along with Clipperz. If not, see http://www.gnu.org/licenses/.
22 <http://www.gnu.org/licenses/>.
23 21
24*/ 22*/
25 23
26if (typeof(Clipperz) == 'undefined') { Clipperz = {}; } 24if (typeof(Clipperz) == 'undefined') { Clipperz = {}; }
27if (typeof(Clipperz.PM) == 'undefined') { Clipperz.PM = {}; } 25if (typeof(Clipperz.PM) == 'undefined') { Clipperz.PM = {}; }
28if (typeof(Clipperz.PM.Components) == 'undefined') { Clipperz.PM.Components = {}; } 26if (typeof(Clipperz.PM.Components) == 'undefined') { Clipperz.PM.Components = {}; }
29if (typeof(Clipperz.PM.Components.Panels) == 'undefined') { Clipperz.PM.Components.Panels = {}; } 27if (typeof(Clipperz.PM.Components.Panels) == 'undefined') { Clipperz.PM.Components.Panels = {}; }
30 28
31//############################################################################# 29//#############################################################################
32 30
33Clipperz.PM.Components.Panels.ToolsPanel = function(anElement, args) { 31Clipperz.PM.Components.Panels.ToolsPanel = function(anElement, args) {
34 args = args || {}; 32 args = args || {};
35 33
36 Clipperz.PM.Components.Panels.ToolsPanel.superclass.constructor.call(this, anElement, args); 34 Clipperz.PM.Components.Panels.ToolsPanel.superclass.constructor.call(this, anElement, args);
37 35
38 this._generateButtonElement = null; 36 this._generateButtonElement = null;
39 this._needsRenderingUponTabSwitch = false; 37 this._needsRenderingUponTabSwitch = false;
40 38
41 this.render(); 39 this.render();
42 40
43 return this; 41 return this;
44} 42}
45 43
46//============================================================================= 44//=============================================================================
47 45
48YAHOO.extendX(Clipperz.PM.Components.Panels.ToolsPanel, Clipperz.PM.Components.Panels.BasePanel, { 46YAHOO.extendX(Clipperz.PM.Components.Panels.ToolsPanel, Clipperz.PM.Components.Panels.BasePanel, {
49 47
50 'toString': function() { 48 'toString': function() {
51 return "Clipperz.PM.Components.Panels.ToolsPanel component"; 49 return "Clipperz.PM.Components.Panels.ToolsPanel component";
52 }, 50 },
53 51
54 //------------------------------------------------------------------------- 52 //-------------------------------------------------------------------------
55 53
56 'render': function() { 54 'render': function() {
57 var bookmarkletUrl; 55 var bookmarkletUrl;
58 56
59//MochiKit.Logging.logDebug(">>> ToolsPanel.render"); 57//MochiKit.Logging.logDebug(">>> ToolsPanel.render");
60 Clipperz.NotificationCenter.unregister(this); 58 Clipperz.NotificationCenter.unregister(this);
61 MochiKit.Signal.disconnectAllTo(this); 59 MochiKit.Signal.disconnectAllTo(this);
62 60
63 if (Clipperz_IEisBroken == true) { 61 if (Clipperz_IEisBroken == true) {
64 bookmarkletUrl = bookmarklet_ie; 62 bookmarkletUrl = bookmarklet_ie;
65 } else { 63 } else {
66 bookmarkletUrl = bookmarklet; 64 bookmarkletUrl = bookmarklet;
67 } 65 }
68 66
69 this.element().update(""); 67 this.element().update("");
70 Clipperz.YUI.DomHelper.append(this.element().dom, {tag:'table', border:'0', cellspacing:'0', cellpadding:'0', children:[ 68 Clipperz.YUI.DomHelper.append(this.element().dom, {tag:'table', border:'0', cellspacing:'0', cellpadding:'0', children:[
71 {tag:'tbody', children:[ 69 {tag:'tbody', children:[
72 {tag:'tr', children:[ 70 {tag:'tr', children:[
73 {tag:'td', valign:'top', width:'200', children:[ 71 {tag:'td', valign:'top', width:'200', children:[
74 {tag:'ul', id:"dataSubMenu", cls:'subMenu', children:[ 72 {tag:'ul', id:"dataSubMenu", cls:'subMenu', children:[
75 {tag:'li', id:this.getId('passwordGenerator'), htmlString:Clipperz.PM.Strings['passwordGeneratorTabLabel']}, 73 {tag:'li', id:this.getId('passwordGenerator'), htmlString:Clipperz.PM.Strings['passwordGeneratorTabLabel']},
76 {tag:'li', id:this.getId('bookmarklet'), htmlString:Clipperz.PM.Strings['bookmarkletTabLabel']}, 74 {tag:'li', id:this.getId('bookmarklet'), htmlString:Clipperz.PM.Strings['bookmarkletTabLabel']},
77 {tag:'li', id:this.getId('compact'), htmlString:Clipperz.PM.Strings['compactTabLabel']}, 75 {tag:'li', id:this.getId('compact'), htmlString:Clipperz.PM.Strings['compactTabLabel']},
78 {tag:'li', id:this.getId('httpAuth'), htmlString:Clipperz.PM.Strings['httpAuthTabLabel']} 76 {tag:'li', id:this.getId('httpAuth'), htmlString:Clipperz.PM.Strings['httpAuthTabLabel']}
79 ]} 77 ]}
80 ]}, 78 ]},
81 {tag:'td', valign:'top', children:[ 79 {tag:'td', valign:'top', children:[
82 {tag:'ul', cls:'clipperzTabPanels', children:[ 80 {tag:'ul', cls:'clipperzTabPanels', children:[
83 {tag:'li', id:this.getId('passwordGeneratorPanel'), children:[ 81 {tag:'li', id:this.getId('passwordGeneratorPanel'), children:[
84 {tag:'div', cls:'clipperzSubPanel', children:[ 82 {tag:'div', cls:'clipperzSubPanel', children:[
85 {tag:'h5', htmlString:Clipperz.PM.Strings['passwordGeneratorTabTitle']}, 83 {tag:'h5', htmlString:Clipperz.PM.Strings['passwordGeneratorTabTitle']},
86 {tag:'div', cls:'panelDescription', htmlString:Clipperz.PM.Strings['paswordGeneratorTabDescription']}, 84 {tag:'div', cls:'panelDescription', htmlString:Clipperz.PM.Strings['paswordGeneratorTabDescription']},
87 85
88 //--------------------------------------------------- 86 //---------------------------------------------------
89 {tag:'div', children:[ 87 {tag:'div', children:[
90 {tag:'form', id:this.getId('passwordGeneratorForm'), cls:'passwordGenerator', children:[ 88 {tag:'form', id:this.getId('passwordGeneratorForm'), cls:'passwordGenerator', children:[
91 {tag:'input', type:'text', cls:'clipperz_passwordGenerator_password', id:this.getId('passwordField')}, 89 {tag:'input', type:'text', cls:'clipperz_passwordGenerator_password', id:this.getId('passwordField')},
92 {tag:'table', children:[ 90 {tag:'table', children:[
93 {tag:'tbody', children:[ 91 {tag:'tbody', children:[
94 {tag:'tr', children:[ 92 {tag:'tr', children:[
95 {tag:'td', width:'20%', children:[ 93 {tag:'td', width:'20%', children:[
96 {tag:'input', type:'checkbox', name:'lowercase', id:this.getId('lowercase'), checked:true}, 94 {tag:'input', type:'checkbox', name:'lowercase', id:this.getId('lowercase'), checked:true},
97 {tag:'span', htmlString:Clipperz.PM.Strings['passwordGeneratorLowercaseLabel']} 95 {tag:'span', htmlString:Clipperz.PM.Strings['passwordGeneratorLowercaseLabel']}
98 ]}, 96 ]},
99 {tag:'td', width:'20%', children:[ 97 {tag:'td', width:'20%', children:[
100 {tag:'input', type:'checkbox', name:'uppercase', id:this.getId('uppercase'), checked:true}, 98 {tag:'input', type:'checkbox', name:'uppercase', id:this.getId('uppercase'), checked:true},
101 {tag:'span', htmlString:Clipperz.PM.Strings['passwordGeneratorUppercaseLabel']} 99 {tag:'span', htmlString:Clipperz.PM.Strings['passwordGeneratorUppercaseLabel']}
102 ]}, 100 ]},
103 {tag:'td', width:'20%', children:[ 101 {tag:'td', width:'20%', children:[
104 {tag:'input', type:'checkbox', name:'numbers', id:this.getId('numbers'), checked:true}, 102 {tag:'input', type:'checkbox', name:'numbers', id:this.getId('numbers'), checked:true},
105 {tag:'span', htmlString:Clipperz.PM.Strings['passwordGeneratorNumberLabel']} 103 {tag:'span', htmlString:Clipperz.PM.Strings['passwordGeneratorNumberLabel']}
106 ]}, 104 ]},
107 {tag:'td', width:'20%', children:[ 105 {tag:'td', width:'20%', children:[
108 {tag:'input', type:'checkbox', name:'symbols', id:this.getId('symbols'), checked:true}, 106 {tag:'input', type:'checkbox', name:'symbols', id:this.getId('symbols'), checked:true},
109 {tag:'span', htmlString:Clipperz.PM.Strings['passwordGeneratorSymbolLabel']} 107 {tag:'span', htmlString:Clipperz.PM.Strings['passwordGeneratorSymbolLabel']}
110 ]}, 108 ]},
111 {tag:'td', width:'20%', children:[ 109 {tag:'td', width:'20%', children:[
112 {tag:'span', cls:'passwordGeneratorLength', children:[ 110 {tag:'span', cls:'passwordGeneratorLength', children:[
113 {tag:'span', htmlString:Clipperz.PM.Strings['passwordGeneratorLengthLabel']}, 111 {tag:'span', htmlString:Clipperz.PM.Strings['passwordGeneratorLengthLabel']},
114 {tag:'span', id:this.getId('passwordLength'), cls:'passwordGeneratorLengthValue', html:'0'} 112 {tag:'span', id:this.getId('passwordLength'), cls:'passwordGeneratorLengthValue', html:'0'}
115 ]} 113 ]}
116 ]} 114 ]}
117 ]} 115 ]}
118 ]} 116 ]}
119 ]} 117 ]}
120 ]}, 118 ]},
121 {tag:'div', id:this.getId('generateRandomPassword')} 119 {tag:'div', id:this.getId('generateRandomPassword')}
122 ]} 120 ]}
123 //--------------------------------------------------- 121 //---------------------------------------------------
124 122
125 ]} 123 ]}
126 ]}, 124 ]},
127 {tag:'li', id:this.getId('bookmarkletPanel'), children:[ 125 {tag:'li', id:this.getId('bookmarkletPanel'), children:[
128 {tag:'div', cls:'clipperzSubPanel', children:[ 126 {tag:'div', cls:'clipperzSubPanel', children:[
129 {tag:'h5', htmlString:Clipperz.PM.Strings['bookmarkletTabTitle']}, 127 {tag:'h5', htmlString:Clipperz.PM.Strings['bookmarkletTabTitle']},
130 {tag:'div', cls:'panelDescription', htmlString:Clipperz.PM.Strings['bookmarkletTabDescription']}, 128 {tag:'div', cls:'panelDescription', htmlString:Clipperz.PM.Strings['bookmarkletTabDescription']},
131 {tag:'a', href:bookmarkletUrl, cls:'bookmarkletLink', htmlString:Clipperz.PM.Strings['bookmarkletTabBookmarkletTitle']}, 129 {tag:'a', href:bookmarkletUrl, cls:'bookmarkletLink', htmlString:Clipperz.PM.Strings['bookmarkletTabBookmarkletTitle']},
132 {tag:'div', cls:'panelDescription', htmlString:Clipperz.PM.Strings['bookmarkletTabInstructions']} 130 {tag:'div', cls:'panelDescription', htmlString:Clipperz.PM.Strings['bookmarkletTabInstructions']}
133 ]} 131 ]}
134 ]}, 132 ]},
135 {tag:'li', id:this.getId('compactPanel'), children:[ 133 {tag:'li', id:this.getId('compactPanel'), children:[
136 {tag:'div', cls:'clipperzSubPanel', children:[ 134 {tag:'div', cls:'clipperzSubPanel', children:[
137 {tag:'h5', htmlString:Clipperz.PM.Strings['compactTabTitle']}, 135 {tag:'h5', htmlString:Clipperz.PM.Strings['compactTabTitle']},
138 {tag:'div', cls:'panelDescription', htmlString:Clipperz.PM.Strings['compactTabDescription']} 136 {tag:'div', cls:'panelDescription', htmlString:Clipperz.PM.Strings['compactTabDescription']}
139 ]} 137 ]}
140 ]}, 138 ]},
141 {tag:'li', id:this.getId('httpAuthPanel'), children:[ 139 {tag:'li', id:this.getId('httpAuthPanel'), children:[
142 {tag:'div', cls:'clipperzSubPanel', children:[ 140 {tag:'div', cls:'clipperzSubPanel', children:[
143 {tag:'h5', htmlString:Clipperz.PM.Strings['httpAuthTabTitle']}, 141 {tag:'h5', htmlString:Clipperz.PM.Strings['httpAuthTabTitle']},
144 {tag:'div', cls:'panelDescription', htmlString:Clipperz.PM.Strings['httpAuthTabDescription']}, 142 {tag:'div', cls:'panelDescription', htmlString:Clipperz.PM.Strings['httpAuthTabDescription']},
145 {tag:'div', cls:'bookmarkletConfiguration', children:[Clipperz.PM.Strings['httpAuthBookmarkletConfiguration']]} 143 {tag:'div', cls:'bookmarkletConfiguration', children:[Clipperz.PM.Strings['httpAuthBookmarkletConfiguration']]}
146 ]} 144 ]}
147 ]} 145 ]}
148 ]} 146 ]}
149 ]} 147 ]}
150 ]} 148 ]}