Dateiverwaltung für die WebBox
ulrich
2017-03-12 cccd2bf52b77a8b7b17357093a5bfd3092d29a7a
web/ui/ui.js
@@ -29,6 +29,8 @@
var cutCopyFiles;
var cutCopyOperation;
var loc;
var PERS_DIR = "Persoenlich";
var PUB_DIR = "Oeffentlich";
function fm_init() {
  $("#mce-editor").hide();
@@ -86,10 +88,10 @@
function fm_get_path(uid) {
  //console.log('pfad: ' + pfad);
  var restdir;
  if(pfad.indexOf('Oeffentlich') > -1) {
    restdir = pfad.substr('Oeffentlich'.length);
  } else if(pfad.indexOf('Persoenlicher Ordner') > -1) {
    restdir = pfad.substr('Persoenlicher Ordner'.length);
  if(pfad.indexOf(PUB_DIR) > -1) {
    restdir = pfad.substr(PUB_DIR.length);
  } else if(pfad.indexOf(PERS_DIR) > -1) {
    restdir = pfad.substr(PERS_DIR.length);
  }
  if(restdir !== undefined && restdir.startsWith('/')) {
    restdir = restdir.substr(1);
@@ -106,9 +108,9 @@
function fm_get_base(uid) {
  //console.log('pfad: ' + pfad);
  var pdir;
  if(pfad.indexOf('Oeffentlich') > -1) {
  if(pfad.indexOf(PUB_DIR) > -1) {
    pdir = '/data/';
  } else if(pfad.indexOf('Persoenlicher Ordner') > -1) {
  } else if(pfad.indexOf(PERS_DIR) > -1) {
    pdir = '/home/';
  }
  //console.log('base: ' + pdir + uid);