source: sandbox/filemanager/js/global.js @ 1880

Revision 1880, 1.1 KB checked in by amuller, 14 years ago (diff)

Ticket #597 - Melhoria do FM. melhorias na interface, criação de pastas

RevLine 
[1556]1var title_app = '<table height="16px" border=0 width=100% cellspacing=0 cellpadding=2>'+
[1627]2'<tr class="divAppboxHeader">'+
[1556]3'<td style="padding-left:17px" width=33% id="content_quota" align=left></td>'+
[1627]4'<td width=33% id="main_title">Expresso FileManager</td>'+
[1556]5'<td width=33% id="div_menu_c3" align=right></td>'+
6'</tr></table>';
7
[1719]8var currentPath = "";
[1803]9var oldValue;
[1719]10
[1748]11var templatePath = './filemanager/templates/default/';
[1719]12
13var menuTimeout;
14var DocX,DocY;
15var criteria='name';
16var order_type = '1'; // Ascending is 1, descending is 0
[1880]17var crypt; // Used to send encrypted stuff
[1719]18
19// Store permissions of current path use it BUT DO NOT rely on it
20var permissions = new Array();
21var preferences = new Array();
[1879]22var folders = new Array();
[1791]23
24var KEY_ENTER = 13;
[1874]25
26var denyFileExtensions = new Array('exe','com','reg','chm','cnf','hta','ins',
27                                        'jse','job','lnk','pif','src','scf','sct','shb',
28                                        'vbe','vbs','wsc','wsf','wsh','cer','its','mau',
29                                        'mda','mar','mdz','prf','pst');
30
Note: See TracBrowser for help on using the repository browser.