Statistics
| Branch: | Revision:

root / src / pithos / content / operations.js @ 29:ec9750e9cceb

History | View | Annotate | Download (217 Bytes)

1
function create_folder(source, folder_name) {
2
        return false;
3
}
4

    
5
function copy(sources, destination) {
6
        return false;
7
}
8

    
9
function move(source, destination) {
10
        return false;
11
}
12

    
13
function delete(source) {
14
        return false;
15
}