| | |
| | | var cutCopySrcDir; |
| | | var cutCopyFiles; |
| | | var cutCopyOperation; |
| | | var loc; |
| | | var PERS_DIR = "Persoenlich"; |
| | | var PUB_DIR = "Oeffentlich"; |
| | | |
| | | function fm_init() { |
| | | $("#mce-editor").hide(); |
| | |
| | | $('#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_test_2); |
| | | $('#saveModal').on('hidden.bs.modal', function (e) { |
| | | $('#modal_ok').attr('onclick','').unbind('click'); |
| | | }); |
| | |
| | | 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() { |
| | |
| | | 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); |
| | |
| | | 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); |
| | |
| | | |
| | | function fm_dok_editor_init(uid) { |
| | | var base = fm_get_path(uid); |
| | | edCount = 0; |
| | | //console.log("calling tinymce.init with base: " + base + "/"); |
| | | |
| | | /* |
| | |
| | | */ |
| | | tinymce.init({ |
| | | content_css : "/file-cms/ui/mce.css", |
| | | //content_css: "/jslib/bootstrap/css/bootstrap.min.css", |
| | | selector: "textarea.text-editor", |
| | | statusbar: false, |
| | | menubar: false, |
| | |
| | | } |
| | | function fm_menu_delete() { |
| | | $('#confirmOk').click(function() { |
| | | $('#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?"); |
| | | $('#confirmModal').modal({ |
| | |
| | | } |
| | | } |
| | | |
| | | function fm_menu_test_2() { |
| | | var liste = fm_gewaehlte_dateien(); |
| | | var m = '?c=de.uhilger.filecms.api.CompileService&m=compile&p=' + pfad + '&p=' + encodeURIComponent(liste); |
| | | var u = '../svc' + m; |
| | | fm_get(u, "text", function(resp) { |
| | | console.log('compile gab folgendes zurueck: '); |
| | | console.log(resp); |
| | | }); |
| | | } |
| | | |
| | | function fm_ansicht_umschalten() { |
| | | if($('#ansicht').children(0).hasClass('fa-th-list')) { |
| | | $('#ansicht').children(0).addClass('fa-th-large'); |
| | |
| | | } |
| | | |
| | | 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(); |
| | |
| | | } |
| | | 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 { |
| | |
| | | fm_get(u, "text", function(resp) { |
| | | userid = resp; |
| | | $('#userMenu').text(resp); |
| | | //fm_dok_editor_init(resp); |
| | | }); |
| | | } |
| | | |
| | |
| | | }); |
| | | } |
| | | |
| | | function fm_menu_datei_speichern() { |
| | | function fm_menu_datei_speichern(callback) { |
| | | //var fname = $('.datei-gewaehlt').text(); |
| | | var fname = openFileName; |
| | | if(fname !== undefined && fname !== '') { |
| | | fm_save_file(fname, 'saveTextFile'); |
| | | fm_save_file(fname, 'saveTextFile', callback); |
| | | } else { |
| | | fm_menu_datei_speichern_unter(); |
| | | fm_menu_datei_speichern_unter(callback); |
| | | } |
| | | } |
| | | |
| | | function fm_save_file(saveFileName, method) { |
| | | 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) { |
| | | openFileName = saveFileName; |
| | | // hier scheint nichts zurueckzukommen.. |
| | | }); |
| | | openFileName = saveFileName; |
| | | if(typeof (callback) !== 'function') { |
| | | |
| | | } else { |
| | | callback(); |
| | | } |
| | | } |
| | | |
| | | function fm_menu_datei_speichern_unter() { |
| | | 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'); |
| | | fm_save_file($('#dateiname').val(), 'saveTextFileAs', callback); |
| | | }); |
| | | $('#saveModalTitle').text('Datei speichern'); |
| | | $('#dialogfrage').text("Dateiname?"); |
| | |
| | | lineNumbers: true, |
| | | mode: m, |
| | | viewportMargin : Infinity, |
| | | tabSize: 2, |
| | | extraKeys: { |
| | | "F9": function(cm) { |
| | | cm.setOption("fullScreen", !cm.getOption("fullScreen")); |
| | |
| | | //cm.setValue(htmlDecode(content)); |
| | | //cm.setValue(content); |
| | | cm.setValue(unescapeHtml(content)); |
| | | cm.getDoc().markClean(); |
| | | } |
| | | |
| | | |
| | |
| | | function FileRef(obj) { |
| | | var self = this; |
| | | this.fr = obj; |
| | | this.fnx; |
| | | |
| | | this.typeClass = function() { |
| | | if(modus == 'kacheln') { |
| | |
| | | } |
| | | }; |
| | | |
| | | this.mini = function() { |
| | | var miniatur = false; |
| | | var namen = self.fr.absolutePath.split('/'); |
| | | if(namen.length > 0) { |
| | | self.fnx = decodeURIComponent(namen[namen.length - 1]); |
| | | } else { |
| | | 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); |
| | | } |
| | | |
| | | }; |
| | | } |
| | | |