edit: disable image resizing (plus workaround)
[minimedit.git] / edit.js
1 CKEDITOR.plugins.add('inlinesave', {
2         init: function(editor) {
3                 editor.addCommand( 'inlinesave', {
4                         exec: function (editor) {
5                                 var pagename = window.location.pathname.replace(/^\//, '') || 'index';
6                                 var data = 'page='+encodeURIComponent(pagename)+'&body='+encodeURIComponent(editor.getData());
7                                 ajaxpost = new XMLHttpRequest();
8                                 ajaxpost.open('POST', 'edit.php', true);
9                                 ajaxpost.setRequestHeader("Content-type", "application/x-www-form-urlencoded");
10                                 ajaxpost.onreadystatechange = function () {
11                                         if (ajaxpost.readyState != 4)
12                                                 return; // not done yet
13                                         if (ajaxpost.status != 200)
14                                                 alert('Foutcode '+ajaxpost.status+' bij opslaan: '+ajaxpost.responseText);
15                                         //else alert('ok: '+ajaxpost.responseText);
16                                 };
17                                 ajaxpost.send(data);
18                         },
19                 });
20                 editor.ui.addButton( 'Inlinesave', {
21                         command: 'inlinesave',
22                         label: editor.lang.save.toolbar,
23                         icon: this.path + '../save/icons/save.png',
24                 });
25         }
26 });
27
28 CKEDITOR.on('dialogDefinition', function (event) {
29         if (event.data.name === 'table') {
30                 // override initial attribute values
31                 var infoTab = event.data.definition.getContents('info');
32                 infoTab.get('txtWidth').default = '';
33                 infoTab.get('txtBorder').default = '0';
34                 infoTab.get('txtCellSpace').default = '';
35                 infoTab.get('txtCellPad').default = '';
36         }
37 });
38
39 CKEDITOR.on('instanceCreated', function (event) {
40         var editor = event.editor;
41         editor.on('configLoaded', function () {
42                 var config = editor.config;
43                 config.language = 'nl';
44                 config.extraPlugins = 'sourcedialog,inlinesave';
45                 config.format_tags = 'h2;h3;h4;p';
46                 config.allowedContent = true;
47                 config.entities = false; // keep unicode
48                 config.toolbar = [
49                         ['Inlinesave', '-', 'ShowBlocks', 'Sourcedialog', '-', 'Undo', 'Redo'],
50                         ['Format'],
51                         ['BulletedList', 'NumberedList', '-', 'Blockquote'],
52                         ['Bold', 'Italic', 'Underline', 'Strike', '-', 'Link'],
53                         ['HorizontalRule', 'Table', 'Image'],
54                 ];
55
56                 config.disableObjectResizing = true;
57                 document.execCommand('enableObjectResizing', false, false); // workaround in inline mode; ff bug?
58         });
59 });
60
61         CKEDITOR.on('instanceReady', function (event) {
62                 var editor = event.editor;
63                 var writer = editor.dataProcessor.writer;
64                 writer.selfClosingEnd = '>';
65                 writer.setRules( 'p', {
66                         breakAfterOpen: true,
67                         breakBeforeClose: true,
68                 });
69         });
70
71 var pagebody = document.getElementsByClassName('article')[0];
72 pagebody.setAttribute('contenteditable', 'true');
73