summaryrefslogtreecommitdiff
path: root/frontend/beta/js/Clipperz/PM/Components/Import/ExcelImportComponent.js
Unidiff
Diffstat (limited to 'frontend/beta/js/Clipperz/PM/Components/Import/ExcelImportComponent.js') (more/less context) (ignore whitespace changes)
-rw-r--r--frontend/beta/js/Clipperz/PM/Components/Import/ExcelImportComponent.js22
1 files changed, 10 insertions, 12 deletions
diff --git a/frontend/beta/js/Clipperz/PM/Components/Import/ExcelImportComponent.js b/frontend/beta/js/Clipperz/PM/Components/Import/ExcelImportComponent.js
index ad0d985..859c190 100644
--- a/frontend/beta/js/Clipperz/PM/Components/Import/ExcelImportComponent.js
+++ b/frontend/beta/js/Clipperz/PM/Components/Import/ExcelImportComponent.js
@@ -1,118 +1,116 @@
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.Import) == 'undefined') { Clipperz.PM.Components.Import = {}; } 27if (typeof(Clipperz.PM.Components.Import) == 'undefined') { Clipperz.PM.Components.Import = {}; }
30 28
31//############################################################################# 29//#############################################################################
32 30
33Clipperz.PM.Components.Import.ExcelImportComponent = function(anElement, args) { 31Clipperz.PM.Components.Import.ExcelImportComponent = function(anElement, args) {
34 args = args || {}; 32 args = args || {};
35 33
36 this._steps = ['EXCEL_EDIT', 'CSV_COLUMNS', 'CSV_HEADER', 'CSV_TITLE', 'CSV_NOTES', 'CSV_FIELDS', 'PREVIEW', 'IMPORT']; 34 this._steps = ['EXCEL_EDIT', 'CSV_COLUMNS', 'CSV_HEADER', 'CSV_TITLE', 'CSV_NOTES', 'CSV_FIELDS', 'PREVIEW', 'IMPORT'];
37 35
38 Clipperz.PM.Components.Import.ExcelImportComponent.superclass.constructor.call(this, anElement, args); 36 Clipperz.PM.Components.Import.ExcelImportComponent.superclass.constructor.call(this, anElement, args);
39 37
40 return this; 38 return this;
41} 39}
42 40
43//============================================================================= 41//=============================================================================
44 42
45YAHOO.extendX(Clipperz.PM.Components.Import.ExcelImportComponent, Clipperz.PM.Components.Import.CSVImportComponent, { 43YAHOO.extendX(Clipperz.PM.Components.Import.ExcelImportComponent, Clipperz.PM.Components.Import.CSVImportComponent, {
46 44
47 'toString': function() { 45 'toString': function() {
48 return "Clipperz.PM.Components.Import.ExcelImportComponent component"; 46 return "Clipperz.PM.Components.Import.ExcelImportComponent component";
49 }, 47 },
50 48
51 //------------------------------------------------------------------------- 49 //-------------------------------------------------------------------------
52 50
53 'render': function() { 51 'render': function() {
54//MochiKit.Logging.logDebug(">>> Import.ExcelImportComponent.render"); 52//MochiKit.Logging.logDebug(">>> Import.ExcelImportComponent.render");
55 this.domHelper().append(this.element(), {tag:'div', cls:'excelImportWizard', children:[ 53 this.domHelper().append(this.element(), {tag:'div', cls:'excelImportWizard', children:[
56 {tag:'h3', htmlString:Clipperz.PM.Strings['Excel_ImportWizard_Title']}, 54 {tag:'h3', htmlString:Clipperz.PM.Strings['Excel_ImportWizard_Title']},
57 {tag:'div', cls:'importSteps', id:this.getId('importSteps')}, 55 {tag:'div', cls:'importSteps', id:this.getId('importSteps')},
58 {tag:'div', cls:'importStepBlocks', children:[ 56 {tag:'div', cls:'importStepBlocks', children:[
59 {tag:'div', cls:'step_0', id:this.getId('step_0'), children:[ 57 {tag:'div', cls:'step_0', id:this.getId('step_0'), children:[
60 {tag:'div', children:[ 58 {tag:'div', children:[
61 {tag:'div', cls:'importOptionsDescription', htmlString:Clipperz.PM.Strings['importOptions_excel_description']}, 59 {tag:'div', cls:'importOptionsDescription', htmlString:Clipperz.PM.Strings['importOptions_excel_description']},
62 {tag:'div', cls:'importOptionsParameters', children:[]}, 60 {tag:'div', cls:'importOptionsParameters', children:[]},
63 this.textAreaConfig() 61 this.textAreaConfig()
64 ]} 62 ]}
65 ]}, 63 ]},
66 {tag:'div', cls:'step_1', id:this.getId('step_1'), children:[]}, 64 {tag:'div', cls:'step_1', id:this.getId('step_1'), children:[]},
67 {tag:'div', cls:'step_2', id:this.getId('step_2'), children:[]}, 65 {tag:'div', cls:'step_2', id:this.getId('step_2'), children:[]},
68 {tag:'div', cls:'step_3', id:this.getId('step_3'), children:[]}, 66 {tag:'div', cls:'step_3', id:this.getId('step_3'), children:[]},
69 {tag:'div', cls:'step_4', id:this.getId('step_4'), children:[]}, 67 {tag:'div', cls:'step_4', id:this.getId('step_4'), children:[]},
70 {tag:'div', cls:'step_5', id:this.getId('step_5'), children:[]}, 68 {tag:'div', cls:'step_5', id:this.getId('step_5'), children:[]},
71 {tag:'div', cls:'step_6', id:this.getId('step_6'), children:[ 69 {tag:'div', cls:'step_6', id:this.getId('step_6'), children:[
72 {tag:'div', children:[ 70 {tag:'div', children:[
73 {tag:'div', id:this.getId('previewDiv'), html:"preview"} 71 {tag:'div', id:this.getId('previewDiv'), html:"preview"}
74 ]} 72 ]}
75 ]}, 73 ]},
76 {tag:'div', cls:'step_7', id:this.getId('step_7'), children:[ 74 {tag:'div', cls:'step_7', id:this.getId('step_7'), children:[
77 {tag:'div', children:[ 75 {tag:'div', children:[
78 {tag:'h4', html:"done"} 76 {tag:'h4', html:"done"}
79 ]} 77 ]}
80 ]} 78 ]}
81 ]}, 79 ]},
82 {tag:'div', cls:'importOptionsButtons', children:[ 80 {tag:'div', cls:'importOptionsButtons', children:[
83 {tag:'table', children:[ 81 {tag:'table', children:[
84 {tag:'tbody', children:[ 82 {tag:'tbody', children:[
85 {tag:'tr', children:[ 83 {tag:'tr', children:[
86 {tag:'td', html:'&nbsp;'}, 84 {tag:'td', html:'&nbsp;'},
87 {tag:'td', children:[ 85 {tag:'td', children:[
88 {tag:'div', id:this.getId('backActionButton')} 86 {tag:'div', id:this.getId('backActionButton')}
89 ]}, 87 ]},
90 {tag:'td', html:'&nbsp;'}, 88 {tag:'td', html:'&nbsp;'},
91 {tag:'td', children:[ 89 {tag:'td', children:[
92 {tag:'div', id:this.getId('nextActionButton')} 90 {tag:'div', id:this.getId('nextActionButton')}
93 ]}, 91 ]},
94 {tag:'td', html:'&nbsp;'} 92 {tag:'td', html:'&nbsp;'}
95 ]} 93 ]}
96 ]} 94 ]}
97 ]} 95 ]}
98 ]} 96 ]}
99 ]}); 97 ]});
100 98
101 this.updateSteps(); 99 this.updateSteps();
102 100
103 this.setBackButton(new YAHOO.ext.Button(this.getDom('backActionButton'), {text:"back", handler:this.backAction, scope:this})); 101 this.setBackButton(new YAHOO.ext.Button(this.getDom('backActionButton'), {text:"back", handler:this.backAction, scope:this}));
104 this.setNextButton(new YAHOO.ext.Button(this.getDom('nextActionButton'), {text:"next", handler:this.nextAction, scope:this})); 102 this.setNextButton(new YAHOO.ext.Button(this.getDom('nextActionButton'), {text:"next", handler:this.nextAction, scope:this}));
105 103
106 this.getElement('step_0').setVisibilityMode(YAHOO.ext.Element.DISPLAY).show() 104 this.getElement('step_0').setVisibilityMode(YAHOO.ext.Element.DISPLAY).show()
107 this.getElement('step_1').setVisibilityMode(YAHOO.ext.Element.DISPLAY).hide(); 105 this.getElement('step_1').setVisibilityMode(YAHOO.ext.Element.DISPLAY).hide();
108 this.getElement('step_2').setVisibilityMode(YAHOO.ext.Element.DISPLAY).hide(); 106 this.getElement('step_2').setVisibilityMode(YAHOO.ext.Element.DISPLAY).hide();
109 this.getElement('step_3').setVisibilityMode(YAHOO.ext.Element.DISPLAY).hide(); 107 this.getElement('step_3').setVisibilityMode(YAHOO.ext.Element.DISPLAY).hide();
110 this.getElement('step_4').setVisibilityMode(YAHOO.ext.Element.DISPLAY).hide(); 108 this.getElement('step_4').setVisibilityMode(YAHOO.ext.Element.DISPLAY).hide();
111 this.getElement('step_5').setVisibilityMode(YAHOO.ext.Element.DISPLAY).hide(); 109 this.getElement('step_5').setVisibilityMode(YAHOO.ext.Element.DISPLAY).hide();
112 this.getElement('step_6').setVisibilityMode(YAHOO.ext.Element.DISPLAY).hide(); 110 this.getElement('step_6').setVisibilityMode(YAHOO.ext.Element.DISPLAY).hide();
113 this.getElement('step_7').setVisibilityMode(YAHOO.ext.Element.DISPLAY).hide(); 111 this.getElement('step_7').setVisibilityMode(YAHOO.ext.Element.DISPLAY).hide();
114//MochiKit.Logging.logDebug("<<< Import.ExcelImportComponent.render"); 112//MochiKit.Logging.logDebug("<<< Import.ExcelImportComponent.render");
115 }, 113 },
116 114
117 //------------------------------------------------------------------------- 115 //-------------------------------------------------------------------------
118 116