From 72e43ddf5a01b28d57a41bdbd4b77a0519d92912 Mon Sep 17 00:00:00 2001
From: ulrich <not disclosed>
Date: Sun, 19 Mar 2017 16:27:57 +0000
Subject: [PATCH] compileAll (Entwurf)

---
 web/ui/ui.js |  864 +++++++++++++++++++++++++++++++++++++++++---------------
 1 files changed, 625 insertions(+), 239 deletions(-)

diff --git a/web/ui/ui.js b/web/ui/ui.js
index db82e7a..8182c68 100644
--- a/web/ui/ui.js
+++ b/web/ui/ui.js
@@ -21,7 +21,20 @@
 var modus = 'kacheln';
 var openFileName = '';
 var ed;
-var t;
+var openEditor;
+var userid;
+var tmo;
+var tmo2;
+var cutCopySrcDir;
+var cutCopyFiles;
+var cutCopyOperation;
+var loc;
+var PERS_DIR = "Persoenlich";
+var PUB_DIR = "Oeffentlich";
+var BASE_DIR = "$basis";
+var DATA_DIR = "$daten";
+var WWW_DIR = "www";
+var compilerIssues;
 
 function fm_init() {
   $("#mce-editor").hide();
@@ -31,12 +44,25 @@
   $('#newTextFile').on('click', fm_menu_neue_textdatei);
   $('#newDoc').on('click', fm_menu_neues_dokument);
   $('#newFolder').on('click', fm_get_new_folder);
-  $('#editTextFile').on('click', fm_get_file_content);
+  $('#viewFile').on('click', fm_view_file);
+  $('#editTextFile').on('click', function() {
+    fm_get_file_content('text');
+  });
+  $('#editDocFile').on('click', function() {
+    fm_get_file_content('dok');
+  });
   $('#saveFile').on('click', fm_menu_datei_speichern);
   $('#saveFileAs').on('click', fm_menu_datei_speichern_unter);
   $('#closeFile').on('click', fm_menu_datei_schliessen);
+  $('#renameFile').on('click', fm_menu_datei_umbenennen);
   $('#m-del').on('click', fm_menu_delete);
+  $('#m-cut').on('click', fm_menu_cut);
+  $('#m-copy').on('click', fm_menu_copy);
+  $('#m-paste').on('click', fm_menu_paste);
+  $('#m-shrink').on('click', fm_menu_shrink);
   $('#m-test').on('click', fm_menu_test);
+  $('#m-test-2').on('click', fm_menu_compile);
+  $('#m-test-3').on('click', fm_menu_compile_all);
   $('#saveModal').on('hidden.bs.modal', function (e) {
     $('#modal_ok').attr('onclick','').unbind('click');
   });
@@ -44,17 +70,98 @@
   fm_get_login();
   fm_get_list('');
   fm_init_uploader();
+  /*
+  console.log('href: ' + window.location.href);
+  console.log('host: ' + window.location.host);
+  console.log('hostname: ' + window.location.hostname);
+  console.log('port: ' + window.location.port);
+  console.log('protocol: ' + window.location.protocol);
+  */
+  loc = window.location.protocol + '//' + window.location.host;
+}
+
+function fm_resize_editor() {
+  window.clearTimeout(tmo);
+  tmo = window.setTimeout(function () {
+    try {
+      var myHeight = $('.zentrum').height() - $('.nord').height() - 4;
+      ed.theme.resizeTo('100%', myHeight);  // sets the dimensions of the editable area
+    } catch (err) {
+    }
+  }, 200);
+}
+
+function fm_get_path(uid) {
+  //console.log('pfad: ' + pfad);
+  var restdir;
+  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);
+  } else if(pfad.indexOf(BASE_DIR) > -1) {
+    restdir = pfad.substr(BASE_DIR.length);
+  } else if(pfad.indexOf(DATA_DIR) > -1) {
+    restdir = pfad.substr(DATA_DIR.length);
+  }
+  if(restdir !== undefined && restdir.startsWith('/')) {
+    restdir = restdir.substr(1);
+    if(restdir.indexOf(WWW_DIR) > -1) {
+      restdir = restdir.replace(WWW_DIR, 'data');
+    }
+  }
+  var pdir = fm_get_base(uid);
+  // console.log('fm_get_path path: ' + pdir + "/" + restdir);
+  if(restdir.length > 1) {
+    return pdir + "/" + restdir;
+  } else {
+    return pdir;
+  }
+}
+
+function fm_get_base(uid) {
+  //console.log('pfad: ' + pfad);
+  var pdir;
+  if(pfad.indexOf(PUB_DIR) > -1) {
+    pdir = '/data/' + uid;
+  } else if(pfad.indexOf(PERS_DIR) > -1) {
+    pdir = '/home/' + uid;
+  } else if(pfad.indexOf(BASE_DIR) > -1) {
+    pdir = '';
+  } else if(pfad.indexOf(DATA_DIR) > -1) {
+    pdir = '';
+  }
+  //console.log('fm_get_base base: ' + pdir + uid);
+  return pdir;
+}
+
+function fm_dok_editor_init(uid) {
+  var base = fm_get_path(uid);
+  edCount = 0;
+  //console.log("fm_dok_editor_init calling tinymce.init with base: " + base + "/");
+  
+  /*
+   * vgl.
+   * http://stackoverflow.com/questions/4651676/how-do-i-remove-tinymce-and-then-re-add-it
+   */
+  //tinymce.EditorManager.execCommand('mceRemoveControl',true, 'textarea.text-editor');
+  //tinymce.EditorManager.execCommand('mceAddControl',true, editor_id);
+  if(ed !== undefined) {
+    ed.destroy();
+  }
+  tinymce.remove('textarea.text-editor');
+  tinymce.EditorManager.editors = []; 
   
   /*
    * Konfiguration TinyMCE
    */
   tinymce.init({
-    content_css : "mce.css",
-    selector: "textarea",
+    content_css : "/file-cms/ui/mce.css",
+    //content_css: "/jslib/bootstrap/css/bootstrap.min.css",
+    selector: "textarea.text-editor",
     statusbar: false,
     menubar: false,
-    plugins: 'autoresize advlist charmap code image link lists media print preview save table textcolor',
-    toolbar: 'undo redo | styleselect | outdent indent',
+    plugins: 'advlist charmap code image link lists media print preview save table textcolor importcss',
+    toolbar: 'undo redo | styleselect | image | link unlink | bullist numlist | outdent indent | code',
     /*
     menu: {
       file: {title: 'File', items: 'savevers | exit'},
@@ -62,64 +169,20 @@
       view: {title: 'View', items: 'visualaid | code | link image media | template hr'},
     },
     */
-    resize: true,
+    resize: 'both',
+    importcss_append: true,
     width: "100%",
     height: '100%',
-    autoresize_bottom_margin : 1,
+    relative_urls : true, 
+    convert_urls : false, 
+    document_base_url : base + "/",
     setup: function (editor) {
       ed = editor;
-      //self.ed = editor;
-      /*
-      editor.addMenuItem('fileinfo', {
-        text: 'Toggle file info',
-        onclick: function () {
-          editor.insertContent('Toggle file info');
-          toggleFileInfo();
-        }
-      });
-      editor.addMenuItem('savevers', {
-        text: 'Speichern',
-        onclick: function () {
-          self.notizSpeichern();
-        }
-      });
-      editor.addMenuItem('exit', {
-        text: 'Exit',
-        onclick: function () {
-          self.editorBeenden();
-        }
-      });
-      */
     }
   });
-}
-
-function resizeEditor(myHeight) {
-  window.console.log('resizeEditor');
-  var myEditor = ed;
-  if (myEditor) {
-    try {
-      /*
-      if (!myHeight) {
-        var targetHeight = window.innerHeight; // Change this to the height of your wrapper element
-        var mce_bars_height = 0;
-        $('.mce-toolbar, .mce-statusbar, .mce-menubar').each(function () {
-          mce_bars_height += $(this).height();
-        });
-        window.console.log('mce bars height total: ' + mce_bars_height);
-        myHeight = targetHeight - mce_bars_height - 8;  // the extra 8 is for margin added between the toolbars
-      }
-      */
-      var myHeight = $('.zentrum').height() - $('.nord').height();
-      window.console.log('resizeEditor: ', myHeight);
-      myEditor.theme.resizeTo('100%', myHeight);  // sets the dimensions of the editable area
-    } catch (err) {
-    }
-  }
-}
-
-window.onresize = function() {
-    resizeEditor();
+  
+  $(window).on('resize', fm_resize_editor);
+  fm_resize_editor();
 }
 
 /* ----- Uploader Anfang ----------*/
@@ -158,31 +221,68 @@
     }  
   };  
   fd.append('dateiauswahlfeld', datei);  
+  fd.append('pfad', pfad);
   xhr.send(fd);          
 }
 
 /* ----- Uploader Ende --------------- */
 
+/* ------- Dateifunktionen Start ----------- */
+
+function fm_menu_cut() {
+  //alert('fm_menu_cut');
+  fm_cut_files();
+}
+function fm_menu_copy() {
+  //alert('fm_menu_copy');
+  fm_copy_files();
+}
+function fm_menu_paste() {
+  //alert('fm_menu_paste');
+  fm_paste_files();
+}
 function fm_menu_delete() {
   $('#confirmOk').click(function() {
-    // hier loeschen
+    $('#confirmOk').attr('onclick','').unbind('click');
     fm_del_files();
   });
+  $('#confirmOk').text("Loeschen");
+  $('#confirmOk').removeClass('btn-primary');
+  $('#confirmOk').addClass('btn-danger');
+  $('#confirmClose').hide();
   $('#confirmModalTitle').text("Löschen");
   $('#confirmModalBody').text("Wirklich löschen?");
-  
-  /*var fname = $('.datei-gewaehlt').text();
-  if(fname !== undefined) {
-    $('#dateiname').val(fname);
-  } else {
-    $('#dateiname').val('');
-  }*/
-  //$('#dateiname').attr('placeholder', 'Dateiname');
   $('#confirmModal').modal({
     keyboard: false,
     show: true
   });
 }
+
+/*
+ * Gewaehlte Dateien feststellen
+ * 
+ * @returns {String} eine per JSON.stringify schon vorbereitete List zum 
+ * Absenden als Parameter an den Server
+ */
+function fm_gewaehlte_dateien() {
+  var gewaehlte = $('.datei-gewaehlt');
+  //console.log('anzahl: ' + gewaehlte.length);
+  var fnames = new Array();
+  var i = 0;
+  while(i < gewaehlte.length) {
+    var str = { "java.lang.String": $(gewaehlte[i]).text()};
+    fnames.push(str);
+    //console.log('loeschen ' + pfad + ' ' + $(gewaehlte[i]).text());
+    //i += 2;
+    i++;
+  }
+  var liste = '{"List":' + JSON.stringify(fnames) + '}';
+  // 'liste' enthaelt:
+  // {"List":[{"java.lang.String":"test3.txt"},{"java.lang.String":"Test1.txt"},{"java.lang.String":"Test2.txt"}]}
+  // und wird auf dem Server zu einer List[ArrayList<String>] bei der jede ArrayList<String> nur ein Element hat 
+  return liste;
+}
+/* --------- Dateifunktionen Ende ---------- */
 
 function fm_menu_test() {
   var w = $('.ost').width();
@@ -193,6 +293,75 @@
     $('.ost').empty();
     $('.ost').width(0);
   }
+}
+
+function fm_menu_compile() {
+  fm_compile('0', fm_mark_compile_results_in_editor);
+}
+function fm_menu_compile_all() {
+  fm_compile_all();
+}
+
+function fm_mark_compile_results_in_editor(resp) {
+  cm.clearGutter("breakpoints");
+
+  if(resp.List[0].CompilerIssue !== undefined) {
+    var lno;
+    var eMsg;
+    if(resp.List[0].CompilerIssue instanceof Array) {
+      var issueNo = 0;
+      while(issueNo < resp.List[0].CompilerIssue.length) {
+        // console.log(resp.List[0].CompilerIssue[issueNo].kind);
+        // console.log(resp.List[0].CompilerIssue[issueNo].lineNumber);
+        // console.log(resp.List[0].CompilerIssue[issueNo].sourceName);
+        // console.log(resp.List[0].CompilerIssue[issueNo].message);
+        lno = resp.List[0].CompilerIssue[issueNo].lineNumber;
+        eMsg = resp.List[0].CompilerIssue[issueNo].kind + ' ' + resp.List[0].CompilerIssue[issueNo].message;
+        cm.setGutterMarker(lno-1, "breakpoints", makeMarker(eMsg));
+        issueNo++;
+      }
+    } else {
+      lno = resp.List[0].CompilerIssue.lineNumber;
+      eMsg = resp.List[0].CompilerIssue.kind + ' ' + resp.List[0].CompilerIssue.message;
+      cm.setGutterMarker(lno-1, "breakpoints", makeMarker(eMsg));
+    }
+  }
+}
+
+function fm_compile_all() {
+  var m = '?c=de.uhilger.filecms.api.CompileService&m=compileAll&p=' + pfad;
+  var u = '../svc' + m;
+  fm_get(u, "json", function(resp) {
+    if(resp.List[0].CompilerIssue !== undefined) {
+      var lno;
+      var eMsg;
+      if(resp.List[0].CompilerIssue instanceof Array) {
+        var issueNo = 0;
+        while(issueNo < resp.List[0].CompilerIssue.length) {
+          console.log('   +++ ---- +++   ');
+          console.log(resp.List[0].CompilerIssue[issueNo].kind);
+          console.log(resp.List[0].CompilerIssue[issueNo].lineNumber);
+          console.log(resp.List[0].CompilerIssue[issueNo].sourceName);
+          console.log(resp.List[0].CompilerIssue[issueNo].message);
+          issueNo++;
+        }
+      } else {
+        lno = resp.List[0].CompilerIssue.lineNumber;
+        eMsg = resp.List[0].CompilerIssue.kind + ' ' + resp.List[0].CompilerIssue.message;
+        console.log(lno + ' ' + eMsg);
+      }
+    }
+  });
+}
+
+function fm_compile(modeStr, callback) {
+  var liste = fm_gewaehlte_dateien();
+  var m = '?c=de.uhilger.filecms.api.CompileService&m=compile&p=' + pfad + '&p=' + encodeURIComponent(liste) + 
+          '&p=' + modeStr;
+  var u = '../svc' + m;
+  fm_get(u, "json", function(resp) {
+    callback(resp);
+  });
 }
 
 function fm_ansicht_umschalten() {
@@ -223,19 +392,53 @@
 }
 
 function fm_menu_neues_dokument() {
-  fm_filectls_hide();
-  $("#mce-editor").show();
-  resizeEditor();
-  /*
-  var ht = $(window).innerHeight() - 20;
-  window.clearTimeout(t);
-  t = window.setTimeout(function () {
-    $('.mce-editor').height(ht - 100);
-  }, 200);
-  */
+  fm_dok_edit('');
 }
 
 function fm_menu_datei_schliessen() {
+  if(openEditor === 'text') {
+    if(!cm.getDoc().isClean()) {
+      fm_ask_for_save();
+    } else {
+      fm_do_close();
+    }
+  } else {
+    if(tinymce.activeEditor.undoManager.hasUndo()) {
+      fm_ask_for_save();
+    } else {
+      fm_do_close();
+    }
+  }
+}
+
+function fm_ask_for_save() {
+  // hier Abfrage ob gespeichert werden soll    
+  $('#confirmOk').click(function() {
+    $('#confirmOk').attr('onclick','').unbind('click');
+    fm_menu_datei_speichern(function() {
+      fm_do_close();
+    });
+  });
+  $('#confirmCancel').click(function() {
+    $('#confirmCancel').attr('onclick','').unbind('click');
+  });
+  $('#confirmClose').show();
+  $('#confirmClose').click(function() {
+    $('#confirmClose').attr('onclick','').unbind('click');
+    fm_do_close();
+  });
+  $('#confirmOk').text("Speichern");
+  $('#confirmOk').addClass('btn-primary');
+  $('#confirmOk').removeClass('btn-danger');
+  $('#confirmModalTitle').text("Schliessen");
+  $('#confirmModalBody').text("Speichern vor dem Schliessen?");
+  $('#confirmModal').modal({
+    keyboard: false,
+    show: true
+  });
+}
+
+function fm_do_close() {
   $('.codeeditor-space').hide();
   $('.code-editor-container').hide();
   $("#mce-editor").hide();
@@ -243,6 +446,7 @@
     cm.toTextArea();
   }
   openFileName = '';
+  openEditor = '';
   fm_get_list(pfad);
   fm_filectls_show();
 }
@@ -264,7 +468,7 @@
         }
         fm_get_list(pfad);
       }
-    } else if($(elem).children(0).hasClass('fa-file')) {
+    } else if($(elem).children(0).hasClass('datei')) {
       if(/*ev.shiftKey || */ ev.ctrlKey) {
         // mehrere Dateien sollen gewaehlt werden
       } else {
@@ -315,21 +519,39 @@
   }
 }
 
-function fm_text_edit(content) {
+function fm_text_edit(content, mode) {
   fm_filectls_hide();
   $('.codeeditor-space').show();
   $('.code-editor-container').show();
-  fm_code_edit(content);  
+  fm_code_edit(content, mode);  
+  openEditor = 'text';
+}
+
+function fm_dok_edit(content) {
+  fm_filectls_hide();
+  fm_dok_editor_init(userid);
+  $("#mce-editor").show();
+  
+  window.clearTimeout(tmo2);
+  tmo2 = window.setTimeout(function () {
+    try {
+      ed.setContent(content);
+      openEditor = 'dok';  
+    } catch (err) {
+    }
+  }, 200);
 }
 
 function fm_filectls_hide() {
   $('#zentrum_bc').hide();
   $('#dateien').hide();
+  $('#editMenu').addClass('disabled');
 }
 
 function fm_filectls_show() {
   $('#zentrum_bc').show();
   $('#dateien').show();  
+  $('#editMenu').removeClass('disabled');
 }
 /* ----- API Calls ------------- */
 
@@ -337,6 +559,7 @@
   var m = '?c=de.uhilger.filecms.pub.SessionManager&m=getSessionUser';
   var u = '../pub' + m;
   fm_get(u, "text", function(resp) {
+    userid = resp;
     $('#userMenu').text(resp);
   });  
 }
@@ -360,7 +583,7 @@
   });
 }
 
-function fm_get_file_content() {
+function fm_get_file_content(typ) {
   var gewaehlte = $('.datei-gewaehlt');
   //var fname = $(gewaehlte).find('.dateiname').text();
   
@@ -369,39 +592,165 @@
   var m = '?c=de.uhilger.filecms.api.FileMgr&m=getCode&p=' + pfad + '&p=' + fname;
   var u = '../svc' + m;
   fm_get(u, "text", function(resp) {
-    fm_text_edit(resp);
+    if(typ == 'text') {
+      var mode = "text/x-java";
+      if(fname.endsWith('js')) {
+        mode = 'javascript';
+      } else if(fname.endsWith('xml')) {
+        mode = 'xml';
+      } else if(fname.endsWith('properties')) {
+        mode = 'xml';
+      }
+      fm_text_edit(resp, mode);
+    } else {
+      fm_dok_edit(resp);
+    }
   });
   
 }
 
-function fm_del_files() {
+function fm_view_file() {
+  // http://localhost:8080/file-cms/ui/#  
+  // http://localhost:8080/file-cms/data/admin/usw.
+  
+  var userid = $('#userMenu').text();
   var gewaehlte = $('.datei-gewaehlt');
-  //console.log('anzahl: ' + gewaehlte.length);
-  var fnames = new Array();
-  var i = 0;
-  while(i < gewaehlte.length) {
-    var str = { "java.lang.String": $(gewaehlte[i]).text()};
-    fnames.push(str);
-    //console.log('loeschen ' + pfad + ' ' + $(gewaehlte[i]).text());
-    //i += 2;
-    i++;
+  var fname = $(gewaehlte[0]).text();
+  
+  var path = fm_get_path(userid);
+  
+  window.open(path + '/' + fname, '_blank');
+}
+
+function fm_menu_datei_umbenennen() {
+  var gewaehlte = $('.datei-gewaehlt');
+  var fname = $(gewaehlte[0]).text();
+
+  $('#modal_ok').click(function() {
+    // hier umbenennen
+    fm_rename_file(fname, pfad, $('#dateiname').val());
+  });
+  $('#saveModalTitle').text('Datei umbenennen');
+  $('#dialogfrage').text("Neuer Dateiname?");  
+
+  if(fname !== undefined) {
+    $('#dateiname').val(fname);
+    $('#dateiname').attr('placeholder', 'Dateiname');
+    $('#saveModal').modal({
+      keyboard: false,
+      show: true
+    });
   }
-  
-  var liste = '{"List":' + JSON.stringify(fnames) + '}';
-  // 'liste' enthaelt:
-  // {"List":[{"java.lang.String":"test3.txt"},{"java.lang.String":"Test1.txt"},{"java.lang.String":"Test2.txt"}]}
-  // und wird auf dem Server zu einer List[ArrayList<String>] bei der jede ArrayList<String> nur ein Element hat 
-  
+}
+
+function fm_rename_file(fn, p, neuerName) {
+  var m = '?c=de.uhilger.filecms.api.FileMgr&m=renameFile';
+  m = m + '&p=' + p; 
+  m = m + '&p=' + fn; 
+  m = m + '&p=' + neuerName; 
+  var u = '../svc' + m;
+  fm_get(u, "text", function(resp) {
+    fm_get_list(pfad);
+  });  
+}
+
+function fm_menu_shrink() {
+  var gewaehlte = $('.datei-gewaehlt');
+  var fname = $(gewaehlte[0]).text();
+  var m = '?c=de.uhilger.filecms.api.FileMgr&m=bildVerkleinern';
+  m = m + '&p=' + pfad; 
+  m = m + '&p=' + fname; 
+  var u = '../svc' + m;
+  fm_get(u, "text", function(resp) {
+    fm_get_list(pfad);
+  });  
+}
+
+/*
+ * Hier merkt sich die Dateiverwalting die markierten Dateien fuer 
+ * eine Dateioperation. Bei cut wird in der 'paste' Operation auf dem Server 
+ * fuer die 'gemerkten' Dateien ein Move gemacht. Die Dateien werden 
+ * vom gewaehlten Ort zum Zielort verschoben.
+ * 
+ * @returns {undefined}
+ */
+function fm_cut_files() {
+  cutCopySrcDir = pfad;
+  cutCopyFiles = fm_gewaehlte_dateien();
+  cutCopyOperation = 'cut';
+}
+
+/*
+ * Hier merkt sich die Dateiverwalting die markierten Dateien fuer 
+ * eine Dateioperation. Bei copy wird in der 'paste' Operation auf dem Server 
+ * fuer die 'gemerkten' Dateien eine Kopie gemacht. Die Dateien werden 
+ * am gewaehlten Ort behalten und am Zielort wird eine Kopier der 
+ * gewaehlten DAteien erstellt
+ * 
+ * @returns {undefined}
+ */
+function fm_copy_files() {
+  cutCopySrcDir = pfad;
+  cutCopyFiles = fm_gewaehlte_dateien();
+  cutCopyOperation = 'copy';
+}
+
+/*
+ * Hier wird fuer eine zuvor markierte Liste von Dateien, fuer die 
+ * Cut oder Copy gewaehlt wurde, die Operations ausgefuehrt (move oder copy)
+ * @returns {undefined}
+ */
+function fm_paste_files() {
+  var m;
+  if(cutCopyOperation === 'cut') {
+    //m = '?c=de.uhilger.filecms.api.FileMgr&m=moveFiles'; //&p=' + cutCopySrcDir + '&p=' + pfad + '&p=' + encodeURIComponent(liste);
+    m = '?c=de.uhilger.filecms.api.FileMgr&m=moveFiles&p=' + cutCopySrcDir + '&p=' + pfad + '&p=' + encodeURIComponent(cutCopyFiles);
+  } else {
+    //m = '?c=de.uhilger.filecms.api.FileMgr&m=copyFiles'; //&p=' + cutCopySrcDir + '&p=' + pfad + '&p=' + encodeURIComponent(liste);
+    m = '?c=de.uhilger.filecms.api.FileMgr&m=copyFiles&p=' + cutCopySrcDir + '&p=' + pfad + '&p=' + encodeURIComponent(cutCopyFiles);
+  }
+  var u = '../svc' + m;  
+  fm_get(u, "text", function(resp) {
+    // console.log('deleteFiles gab folgendes zurueck: ' + resp);
+    fm_get_list(pfad);
+  });
+  /*
+  fm_post(u, {p1: encodeURIComponent(cutCopySrcDir), p2: encodeURIComponent(pfad), p3: encodeURIComponent(cutCopyFiles)},'text', function(resp) {
+    // resp evtl. zeigen..
+    fm_get_list(pfad);
+  });
+  */
+}
+
+function fm_del_files() {
+  var liste = fm_gewaehlte_dateien();
   var m = '?c=de.uhilger.filecms.api.FileMgr&m=deleteFiles&p=' + pfad + '&p=' + encodeURIComponent(liste);
   var u = '../svc' + m;
   fm_get(u, "text", function(resp) {
     // console.log('deleteFiles gab folgendes zurueck: ' + resp);
     fm_get_list(pfad);
   });
-  
 }
 
 function fm_render_list(fl) {
+  if(modus == 'kacheln') {
+    // Kachelansicht
+    var template = $('#tpl-kacheln').html();
+    Mustache.parse(template);   // optional, speeds up future uses
+    $('.datei-zeile').attr('onclick','').unbind('click');
+    $('#dateien').empty();
+    $('#dateien').html(Mustache.render(template, fl));
+    $('.figure').click(fm_dateiwahl);
+  } else {
+    // Listenansicht
+    var template = $('#tpl-liste').html();
+    Mustache.parse(template);   // optional, speeds up future uses
+    $('.figure').attr('onclick','').unbind('click');
+    $('#dateien').empty();
+    $('#dateien').html(Mustache.render(template, fl));
+    $('.datei-zeile').click(fm_dateiwahl);
+  }
+  /*
   if(modus == 'kacheln') {
     // Kachelansicht
     $.get('tpl-kacheln.txt', function(template) {
@@ -419,6 +768,7 @@
     });
     $('.figure').attr('onclick','').unbind('click');
   }
+  */
 }
 
 // http://localhost:8079/file-cms/svc?c=de.uhilger.filecms.api.FileMgr&f=JSONNICE&m=list&p=
@@ -444,7 +794,7 @@
     }
     
     // Breadcrumb-Ansicht
-    //var template;
+    var template;
     $('.breadcrumb-item').attr('onclick','').unbind('click');
     $('#bcnav').empty();
     var dirList = new Array();
@@ -464,144 +814,75 @@
         }
       }
       var bl = new BcrFiles(dirList);
-
-      if(dirList.length > 0) {        
-        $.get('tpl-bcr.txt', function(template) {
-          $('#bcnav').html(Mustache.render(template, bl));
-          //fm_bcr_step2(dirs, dirList);
-          
-          if(dirs.length > 0) {
-            dirList.push(new BcrFile(rp + '/' + dirs[dirs.length-1], dirs[dirs.length-1]));
-            $.get('tpl-bcr2.txt', function(template) {
-              $('#bcnav').append(Mustache.render(template, dirList[dirList.length-1]));  
-              fm_bcr_3();
-              fm_bcr_end();
-            });
-            //template = $('#tpl-bcr2').html();
-            //Mustache.parse(template);   // optional, speeds up future uses
-            //$('#bcnav').append(Mustache.render(template, dirList[dirList.length-1]));        
-          } else {
-            $.get('tpl-bcr2.txt', function(template) {
-              $('#bcnav').append(Mustache.render(template, dirList[0]));
-              fm_bcr_3();
-              fm_bcr_end();
-            });
-            //template = $('#tpl-bcr2').html();
-            //Mustache.parse(template);   // optional, speeds up future uses
-            //$('#bcnav').append(Mustache.render(template, dirList[0]));        
-          }
-          
-        });
-      } else {
-        //fm_bcr_step2(dirs, dirList);
-        /*
-        if(dirs.length > 0) {
-          dirList.push(new BcrFile(rp + '/' + dirs[dirs.length-1], dirs[dirs.length-1]));
-          $.get('tpl-bcr2.txt', function(template) {
-            $('#bcnav').append(Mustache.render(template, dirList[dirList.length-1]));  
-            $('#bcnav').append($('#tpl-bcr3').html());
-            fm_bcr_end();
-          });
-          //template = $('#tpl-bcr2').html();
-          //Mustache.parse(template);   // optional, speeds up future uses
-          //$('#bcnav').append(Mustache.render(template, dirList[dirList.length-1]));        
-        } else {
-          $.get('tpl-bcr2.txt', function(template) {
-            $('#bcnav').append(Mustache.render(template, dirList[0]));
-            $('#bcnav').append($('#tpl-bcr3').html());
-            fm_bcr_end();
-          });
-          //template = $('#tpl-bcr2').html();
-          //Mustache.parse(template);   // optional, speeds up future uses
-          //$('#bcnav').append(Mustache.render(template, dirList[0]));        
-        }
-        */
+ 
+      if(dirList.length > 0) {
+        template = $('#tpl-bcr').html();
+        Mustache.parse(template);   // optional, speeds up future uses
+        $('#bcnav').html(Mustache.render(template, bl));
       }
+      
+      if(dirs.length > 0) {
+        dirList.push(new BcrFile(rp + '/' + dirs[dirs.length-1], dirs[dirs.length-1]));
+        template = $('#tpl-bcr2').html();
+        Mustache.parse(template);   // optional, speeds up future uses
+        $('#bcnav').append(Mustache.render(template, dirList[dirList.length-1]));        
+      } else {
+        template = $('#tpl-bcr2').html();
+        Mustache.parse(template);   // optional, speeds up future uses
+        $('#bcnav').append(Mustache.render(template, dirList[0]));        
+      }
+      
+      $('#bcnav').append($('#tpl-bcr3').html());
     } else {
       pfad = '';
-      $.get('tpl-bcr2.txt', function(template) {
-        $('#bcnav').append(Mustache.render(template, dirList[0]));
-        fm_bcr_3();
-        fm_bcr_end();
-      });
-      //template = $('#tpl-bcr2').html();
-      //Mustache.parse(template);   // optional, speeds up future uses
-      //$('#bcnav').append(Mustache.render(template, dirList[0]));   
-      //$('#bcnav').append($('#tpl-bcr3').html());
+      template = $('#tpl-bcr2').html();
+      Mustache.parse(template);   // optional, speeds up future uses
+      $('#bcnav').append(Mustache.render(template, dirList[0]));   
+      $('#bcnav').append($('#tpl-bcr3').html());
     }
-    //$('.breadcrumb-item').click(fm_bc_click);
-    //$('#ansicht').click(fm_ansicht_umschalten);
-    //fm_set_modus();
-  });  
-}
-
-/*
-function fm_bcr_step2(dirs, dirList) {
-  if(dirs.length > 0) {
-    dirList.push(new BcrFile(rp + '/' + dirs[dirs.length-1], dirs[dirs.length-1]));
-    $.get('tpl-bcr2.txt', function(template) {
-      $('#bcnav').append(Mustache.render(template, dirList[dirList.length-1]));  
-      $('#bcnav').append($('#tpl-bcr3').html());
-      fm_bcr_end();
-    });
-    //template = $('#tpl-bcr2').html();
-    //Mustache.parse(template);   // optional, speeds up future uses
-    //$('#bcnav').append(Mustache.render(template, dirList[dirList.length-1]));        
-  } else {
-    $.get('tpl-bcr2.txt', function(template) {
-      $('#bcnav').append(Mustache.render(template, dirList[0]));
-      $('#bcnav').append($('#tpl-bcr3').html());
-      fm_bcr_end();
-    });
-    //template = $('#tpl-bcr2').html();
-    //Mustache.parse(template);   // optional, speeds up future uses
-    //$('#bcnav').append(Mustache.render(template, dirList[0]));        
-  }  
-}
-*/
-
-function fm_bcr_3() {
-  $.get('tpl-bcr3.txt', function(template) {
-    $('#bcnav').append(template);
-  });  
-}
-
-function fm_bcr_end() {
-  $('.breadcrumb-item').click(fm_bc_click);
-  $('#ansicht').click(fm_ansicht_umschalten);
-  fm_set_modus();
-}
-
-function fm_menu_datei_speichern() {
-  //var fname = $('.datei-gewaehlt').text();
-  var fname = openFileName;
-  if(fname !== undefined && fname !== '') {
-    fm_save_file(fname);
-  } else {
-    fm_menu_datei_speichern_unter();
-  }
-}
-
-function fm_save_file(saveFileName) {
-  var m = '?c=de.uhilger.filecms.api.FileMgr&m=saveTextFile';
-  var u = '../svc' + m;
-  fm_post(u, {p1: pfad, p2: saveFileName, p3: cm.getValue()}, function(resp) {
-    openFileName = saveFileName;
+    $('.breadcrumb-item').click(fm_bc_click);
+    $('#ansicht').click(fm_ansicht_umschalten);
+    fm_set_modus();
   });
 }
 
-function fm_menu_datei_speichern_unter() {
-  
-  $('#modal_ok').click(function() {
-    // hier speichern
-    fm_save_file($('#dateiname').val());
-    /*
-    var m = '?c=de.uhilger.filecms.api.FileMgr&m=saveTextFile';
-    var u = '../svc' + m;
-    fm_post(u, {p1: pfad, p2: $('#dateiname').val(), p3: cm.getValue()}, function(resp) {
+function fm_menu_datei_speichern(callback) {
+  //var fname = $('.datei-gewaehlt').text();
+  var fname = openFileName;
+  if(fname !== undefined && fname !== '') {
+    fm_save_file(fname, 'saveTextFile', callback);
+  } else {
+    fm_menu_datei_speichern_unter(callback);
+  }
+}
 
-    });
-    */
+function fm_save_file(saveFileName, method, callback) {
+  var content;
+  if(openEditor === 'text') {
+    content = cm.getValue();
+    cm.getDoc().markClean();
+  } else {
+    content = ed.getContent();
+    tinymce.activeEditor.undoManager.clear();
+  }
+  var m = '?c=de.uhilger.filecms.api.FileMgr&m=' + method;
+  var u = '../svc' + m;
+  fm_post(u, {p1: pfad, p2: saveFileName, p3: content}, function(resp) {
+    // hier scheint nichts zurueckzukommen..
+  });
+  openFileName = saveFileName;
+  if(typeof (callback) !== 'function') {
+    
+  } else {
+    callback();
+  }
+}
+
+function fm_menu_datei_speichern_unter(callback) {  
+  $('#modal_ok').click(function() {
+    $('#modal_ok').attr('onclick','').unbind('click');
+    // hier speichern
+    fm_save_file($('#dateiname').val(), 'saveTextFileAs', callback);
   });
   $('#saveModalTitle').text('Datei speichern');
   $('#dialogfrage').text("Dateiname?");
@@ -632,24 +913,72 @@
 
 /* ---- codemirror editor handling -------- */
 
-function fm_code_edit(content) {
+/*
+function htmlDecode(value){ 
+  return $('<div/>').html(value).text(); 
+}
+*/
+
+function fm_code_edit(content, m) {
   cm = CodeMirror.fromTextArea(document.getElementById("editspace"), {
     lineNumbers: true,
-    mode: "xml",
+    gutters: ["CodeMirror-linenumbers", "breakpoints"],
+    mode: m,
     viewportMargin : Infinity,
+    tabSize: 2,
     extraKeys: {
         "F9": function(cm) {
         cm.setOption("fullScreen", !cm.getOption("fullScreen"));
       },
         "Esc": function(cm) {
         if (cm.getOption("fullScreen")) cm.setOption("fullScreen", false);
+      },
+        ".": function(cm) {
+        console.log('dot pressed: perhaps look up class or method name');
+        /*
+         * Hier kann man eine Funktion ausloesen, die fuer das 
+         * Wort vor dem Punkt (Name der Klasse) eine Liste mit 
+         * Vorschlaegen fuer Methodennamen einblendet.
+         */
+        
+        /*
+         * CodeMirror.Pass laesst das Zeichen zum Editorinhalt durch, 
+         * verhindert aber das Ausloesen von 'keyHandled'
+         */
+        return CodeMirror.Pass; 
       }
     }
   });
-  cm.setValue(content);
+  //cm.setValue(htmlDecode(content));
+  //cm.setValue(content);
+  cm.setValue(unescapeHtml(content));
+  cm.getDoc().markClean();
+  cm.on("gutterClick", function(theEditor, lineNumber) {
+    var info = theEditor.lineInfo(lineNumber);
+    //--lineNumber;
+    //console.log(info.gutterMarkers.breakpoints.message);
+    //var marker = info.gutterMarkers.breakpoints;
+    //$(marker).tooltip('toggle');
+  });
+  /*
+  cm.on("keyHandled", function(theEditor, keyName, event){
+    console.log('cm.keyHandled keyName: ' + keyName + ', event.type: ' + event.type);    
+  });
+  */
 }
 
-
+function makeMarker(msg) {
+  var marker = document.createElement("div");
+  marker.style.color = "#822";
+  marker.innerHTML = "●";
+  //marker.message = msg;
+  $(marker).tooltip({
+    placement: 'right',
+    title: msg,
+    offset: '0 -30'
+  });
+  return marker;
+}
 
 /* -------- helper functions ----------- */
 
@@ -669,12 +998,12 @@
   });
 }
 
-function fm_post(u, d, scallback) {
+function fm_post(u, d, dtype, scallback) {
   $.ajax({
     url: u,
     data: d,
     type: "POST",
-    dataType: "json",
+    dataType: dtype,
     success: scallback,
     error: function (xhr, status, errorThrown) {
       $('#fehler').html("Error: " + errorThrown + " Status: " + status);
@@ -689,6 +1018,31 @@
   return '{"' + obj.constructor.name + '":' + JSON.stringify(obj) + '}';
 }
 
+function escapeHtml(text) {
+  text = text.replace(/\u228/g,'&auml;');
+  text = text.replace(/\u246/g,'&ouml;');
+  text = text.replace(/\u252/g,'&uuml;');
+  text = text.replace(/\u196/g,'&Auml;');
+  text = text.replace(/\u214/g,'&Ouml;');
+  text = text.replace(/\u220/g,'&Uuml;');
+  text = text.replace(/\u223/g,'&szlig;');
+  text = text.replace(/\u26/g,'&amp;');
+  return text;
+}
+
+function unescapeHtml(text) {
+  text = text.replace(/&auml;/g, String.fromCharCode(228));
+  text = text.replace(/&ouml;/g, String.fromCharCode(246));
+  text = text.replace(/&uuml;/g, String.fromCharCode(252));
+  text = text.replace(/&Auml;/g, String.fromCharCode(196));
+  text = text.replace(/&Ouml;/g, String.fromCharCode(214));
+  text = text.replace(/&Uuml;/g, String.fromCharCode(220));
+  text = text.replace(/&szlig;/g, String.fromCharCode(223));
+  text = text.replace(/&amp;/g, String.fromCharCode(26));
+  return text;
+}
+
+
 /* ----- Objekte ----- */
 
 function FileList(fl) {
@@ -698,6 +1052,7 @@
 function FileRef(obj) {
   var self = this;
   this.fr = obj;
+  this.fnx;
   
   this.typeClass = function() {
     if(modus == 'kacheln') {
@@ -715,13 +1070,44 @@
     }
   };
   
-  this.fileName = function() {
+  this.mini = function() {
+    var miniatur = false;
     var namen = self.fr.absolutePath.split('/');
     if(namen.length > 0) {
-      return namen[namen.length - 1];
+      self.fnx = decodeURIComponent(namen[namen.length - 1]);
     } else {
-      return self.fr.absolutePath;
+      self.fnx = decodeURIComponent(self.fr.absolutePath);
     }
+    if(self.fnx.indexOf('.jpg') > -1 || self.fnx.indexOf('.png') > -1 || self.fnx.indexOf('.gif') > -1 || self.fnx.indexOf('.jpeg') > -1) {
+      miniatur = true;
+    }
+    return miniatur;
+  };
+  
+  this.miniurl = function() {
+      var userid = $('#userMenu').text();
+      var ext = '';
+      var dotpos = self.fnx.indexOf('.');
+      if(dotpos > -1) {
+        var fny = self.fnx;
+        self.fnx = self.fnx.substring(0, dotpos);
+        ext = fny.substr(dotpos);
+      }
+      var path = fm_get_path(userid);
+      var imgurl = loc + path + '/' + self.fnx + '_tn' + ext;
+      return imgurl;
+    
+  };
+  
+  this.fileName = function() {
+    
+    var namen = self.fr.absolutePath.split('/');
+    if(namen.length > 0) {
+      return decodeURIComponent(namen[namen.length - 1]);
+    } else {
+      return decodeURIComponent(self.fr.absolutePath);
+    }
+    
   };
 }
 

--
Gitblit v1.9.3