edit: page name fallback for subdirectory index
[minimedit.git] / edit.js
diff --git a/edit.js b/edit.js
index 37e1444c6feee3050992b6880a76e204d6838777..8359c687ceb8fafd144f82e14726374b2137c675 100644 (file)
--- a/edit.js
+++ b/edit.js
@@ -2,10 +2,10 @@ CKEDITOR.plugins.add('inlinesave', {
        init: function(editor) {
                editor.addCommand( 'inlinesave', {
                        exec: function (editor) {
-                               var pagename = window.location.pathname.replace(/^\//, '') || 'index';
+                               var pagename = window.location.pathname.replace(/^\/(?:\.html)?/, '') || 'index';
                                var data = 'page='+encodeURIComponent(pagename)+'&body='+encodeURIComponent(editor.getData());
                                ajaxpost = new XMLHttpRequest();
-                               ajaxpost.open('POST', 'edit.php', true);
+                               ajaxpost.open('POST', '/edit.php', true);
                                ajaxpost.setRequestHeader("Content-type", "application/x-www-form-urlencoded");
                                ajaxpost.onreadystatechange = function () {
                                        if (ajaxpost.readyState != 4)
@@ -25,6 +25,17 @@ CKEDITOR.plugins.add('inlinesave', {
        }
 });
 
+CKEDITOR.on('dialogDefinition', function (event) {
+       if (event.data.name === 'table') {
+               // override initial attribute values
+               var infoTab = event.data.definition.getContents('info');
+               infoTab.get('txtWidth').default = '';
+               infoTab.get('txtBorder').default = '0';
+               infoTab.get('txtCellSpace').default = '';
+               infoTab.get('txtCellPad').default = '';
+       }
+});
+
 CKEDITOR.on('instanceCreated', function (event) {
        var editor = event.editor;
        editor.on('configLoaded', function () {
@@ -34,13 +45,17 @@ CKEDITOR.on('instanceCreated', function (event) {
                config.format_tags = 'h2;h3;h4;p';
                config.allowedContent = true;
                config.entities = false; // keep unicode
+               config.filebrowserImageUploadUrl = '/edit.php?type=img';
                config.toolbar = [
                        ['Inlinesave', '-', 'ShowBlocks', 'Sourcedialog', '-', 'Undo', 'Redo'],
                        ['Format'],
                        ['BulletedList', 'NumberedList', '-', 'Blockquote'],
-                       ['Bold', 'Italic', 'Underline', 'Strike', '-', 'Link'],
+                       ['Bold', 'Italic', 'Underline', 'Strike', 'RemoveFormat', '-', 'Link'],
                        ['HorizontalRule', 'Table', 'Image'],
                ];
+
+               config.disableObjectResizing = true;
+               document.execCommand('enableObjectResizing', false, false); // workaround in inline mode; ff bug?
        });
 });