Ignore:
Timestamp:
12/04/09 13:15:05 (15 years ago)
Author:
amuller
Message:

Ticket #597 - melhoria no módulos gerenciador de arquivos do expresso livre

File:
1 edited

Legend:

Unmodified
Added
Removed
  • sandbox/filemanager/js/common_functions.js

    r1741 r1748  
    11function load(path){ 
    22        currentPath = path; 
    3         cExecute('/index.php?menuaction=filemanager.uifilemanager.get_permissions&path='+base64_encode(path),loadPermissions); 
     3        cExecute('./index.php?menuaction=filemanager.uifilemanager.get_permissions&path='+base64_encode(path),loadPermissions); 
    44} 
    55 
     
    124124        var continue_set = confirm(get_lang('This property will change the visibility of all users that have access to this file, continue?')); 
    125125        if (continue_set) 
    126                 cExecute('/index.php?menuaction=filemanager.vfs_functions.setRestricted&file='+base64_encode(name)+'&path='+base64_encode(currentPath),setRestricted_handler); 
     126                cExecute('./index.php?menuaction=filemanager.vfs_functions.setRestricted&file='+base64_encode(name)+'&path='+base64_encode(currentPath),setRestricted_handler); 
    127127} 
    128128 
     
    148148function setComments(el){ 
    149149        var filename = base64_encode(el.id); 
    150         cExecute('/index.php?menuaction=filemanager.vfs_functions.editComment&file='+filename+'&comment='+base64_encode(el.value),updateComment); 
     150        cExecute('./index.php?menuaction=filemanager.vfs_functions.editComment&file='+filename+'&comment='+base64_encode(el.value),updateComment); 
    151151} 
    152152 
     
    229229                                preferences[checkBoxes[i].value] = '0'; 
    230230                } 
    231                 cExecute('/index.php?menuaction=filemanager.user.save_preferences&preferences='+base64_encode(serialize(preferences)),function () { toolbar.control('reload'); EditColumns('close'); }) 
     231                cExecute('./index.php?menuaction=filemanager.user.save_preferences&preferences='+base64_encode(serialize(preferences)),function () { toolbar.control('reload'); EditColumns('close'); }) 
    232232                return; 
    233233        } 
     
    265265                return; 
    266266        } 
    267         cExecute('/index.php?menuaction=filemanager.uifilemanager.search&text='+inputText.value,folderList.drawSearch); 
     267        cExecute('./index.php?menuaction=filemanager.uifilemanager.search&text='+inputText.value,folderList.drawSearch); 
    268268} 
    269269function selectAll(el){ 
Note: See TracChangeset for help on using the changeset viewer.