]> source.dussan.org Git - nextcloud-server.git/commit
Implemented ace-editor for basic file editing.
authorTom Needham <needham.thomas@gmail.com>
Wed, 28 Sep 2011 14:26:54 +0000 (15:26 +0100)
committerTom Needham <needham.thomas@gmail.com>
Wed, 28 Sep 2011 14:26:54 +0000 (15:26 +0100)
commit3ab873980943bcd38f3c1cc69f3ee302defb4430
tree44753cfef01583505bed900d3eec1d5054a4343d
parent1f74e76d834e9a2ed24236b51c662072f999860c
Implemented ace-editor for basic file editing.
55 files changed:
apps/editor/ajax/savefile.php [new file with mode: 0644]
apps/editor/appinfo/app.php [new file with mode: 0644]
apps/editor/appinfo/info.xml [new file with mode: 0644]
apps/editor/css/styles.css [new file with mode: 0644]
apps/editor/index.php [new file with mode: 0644]
apps/editor/js/aceeditor/ace-uncompressed.js [new file with mode: 0644]
apps/editor/js/aceeditor/ace.js [new file with mode: 0644]
apps/editor/js/aceeditor/cockpit-uncompressed.js [new file with mode: 0644]
apps/editor/js/aceeditor/cockpit.js [new file with mode: 0644]
apps/editor/js/aceeditor/keybinding-emacs.js [new file with mode: 0644]
apps/editor/js/aceeditor/keybinding-vim.js [new file with mode: 0644]
apps/editor/js/aceeditor/mode-c_cpp.js [new file with mode: 0644]
apps/editor/js/aceeditor/mode-clojure.js [new file with mode: 0644]
apps/editor/js/aceeditor/mode-coffee.js [new file with mode: 0644]
apps/editor/js/aceeditor/mode-csharp.js [new file with mode: 0644]
apps/editor/js/aceeditor/mode-css.js [new file with mode: 0644]
apps/editor/js/aceeditor/mode-groovy.js [new file with mode: 0644]
apps/editor/js/aceeditor/mode-html.js [new file with mode: 0644]
apps/editor/js/aceeditor/mode-java.js [new file with mode: 0644]
apps/editor/js/aceeditor/mode-javascript.js [new file with mode: 0644]
apps/editor/js/aceeditor/mode-json.js [new file with mode: 0644]
apps/editor/js/aceeditor/mode-ocaml.js [new file with mode: 0644]
apps/editor/js/aceeditor/mode-perl.js [new file with mode: 0644]
apps/editor/js/aceeditor/mode-php.js [new file with mode: 0644]
apps/editor/js/aceeditor/mode-python.js [new file with mode: 0644]
apps/editor/js/aceeditor/mode-ruby.js [new file with mode: 0644]
apps/editor/js/aceeditor/mode-scad.js [new file with mode: 0644]
apps/editor/js/aceeditor/mode-scala.js [new file with mode: 0644]
apps/editor/js/aceeditor/mode-scss.js [new file with mode: 0644]
apps/editor/js/aceeditor/mode-svg.js [new file with mode: 0644]
apps/editor/js/aceeditor/mode-textile.js [new file with mode: 0644]
apps/editor/js/aceeditor/mode-xml.js [new file with mode: 0644]
apps/editor/js/aceeditor/theme-clouds.js [new file with mode: 0644]
apps/editor/js/aceeditor/theme-clouds_midnight.js [new file with mode: 0644]
apps/editor/js/aceeditor/theme-cobalt.js [new file with mode: 0644]
apps/editor/js/aceeditor/theme-crimson_editor.js [new file with mode: 0644]
apps/editor/js/aceeditor/theme-dawn.js [new file with mode: 0644]
apps/editor/js/aceeditor/theme-eclipse.js [new file with mode: 0644]
apps/editor/js/aceeditor/theme-idle_fingers.js [new file with mode: 0644]
apps/editor/js/aceeditor/theme-kr_theme.js [new file with mode: 0644]
apps/editor/js/aceeditor/theme-merbivore.js [new file with mode: 0644]
apps/editor/js/aceeditor/theme-merbivore_soft.js [new file with mode: 0644]
apps/editor/js/aceeditor/theme-mono_industrial.js [new file with mode: 0644]
apps/editor/js/aceeditor/theme-monokai.js [new file with mode: 0644]
apps/editor/js/aceeditor/theme-pastel_on_dark.js [new file with mode: 0644]
apps/editor/js/aceeditor/theme-solarized_dark.js [new file with mode: 0644]
apps/editor/js/aceeditor/theme-solarized_light.js [new file with mode: 0644]
apps/editor/js/aceeditor/theme-textmate.js [new file with mode: 0644]
apps/editor/js/aceeditor/theme-twilight.js [new file with mode: 0644]
apps/editor/js/aceeditor/theme-vibrant_ink.js [new file with mode: 0644]
apps/editor/js/aceeditor/worker-coffee.js [new file with mode: 0644]
apps/editor/js/aceeditor/worker-css.js [new file with mode: 0644]
apps/editor/js/aceeditor/worker-javascript.js [new file with mode: 0644]
apps/editor/js/editor.js [new file with mode: 0644]
apps/editor/templates/index.php [new file with mode: 0644]