comparison WebContent/jscripts/tiny_mce/plugins/pagebreak/editor_plugin_src.js @ 5:0be9d53a6967

editor for annotations
author dwinter
date Tue, 13 Dec 2011 17:43:46 +0100
parents
children
comparison
equal deleted inserted replaced
4:c32080f364c6 5:0be9d53a6967
1 /**
2 * editor_plugin_src.js
3 *
4 * Copyright 2009, Moxiecode Systems AB
5 * Released under LGPL License.
6 *
7 * License: http://tinymce.moxiecode.com/license
8 * Contributing: http://tinymce.moxiecode.com/contributing
9 */
10
11 (function() {
12 tinymce.create('tinymce.plugins.PageBreakPlugin', {
13 init : function(ed, url) {
14 var pb = '<img src="' + ed.theme.url + '/img/trans.gif" class="mcePageBreak mceItemNoResize" />', cls = 'mcePageBreak', sep = ed.getParam('pagebreak_separator', '<!-- pagebreak -->'), pbRE;
15
16 pbRE = new RegExp(sep.replace(/[\?\.\*\[\]\(\)\{\}\+\^\$\:]/g, function(a) {return '\\' + a;}), 'g');
17
18 // Register commands
19 ed.addCommand('mcePageBreak', function() {
20 ed.execCommand('mceInsertContent', 0, pb);
21 });
22
23 // Register buttons
24 ed.addButton('pagebreak', {title : 'pagebreak.desc', cmd : cls});
25
26 ed.onInit.add(function() {
27 if (ed.theme.onResolveName) {
28 ed.theme.onResolveName.add(function(th, o) {
29 if (o.node.nodeName == 'IMG' && ed.dom.hasClass(o.node, cls))
30 o.name = 'pagebreak';
31 });
32 }
33 });
34
35 ed.onClick.add(function(ed, e) {
36 e = e.target;
37
38 if (e.nodeName === 'IMG' && ed.dom.hasClass(e, cls))
39 ed.selection.select(e);
40 });
41
42 ed.onNodeChange.add(function(ed, cm, n) {
43 cm.setActive('pagebreak', n.nodeName === 'IMG' && ed.dom.hasClass(n, cls));
44 });
45
46 ed.onBeforeSetContent.add(function(ed, o) {
47 o.content = o.content.replace(pbRE, pb);
48 });
49
50 ed.onPostProcess.add(function(ed, o) {
51 if (o.get)
52 o.content = o.content.replace(/<img[^>]+>/g, function(im) {
53 if (im.indexOf('class="mcePageBreak') !== -1)
54 im = sep;
55
56 return im;
57 });
58 });
59 },
60
61 getInfo : function() {
62 return {
63 longname : 'PageBreak',
64 author : 'Moxiecode Systems AB',
65 authorurl : 'http://tinymce.moxiecode.com',
66 infourl : 'http://wiki.moxiecode.com/index.php/TinyMCE:Plugins/pagebreak',
67 version : tinymce.majorVersion + "." + tinymce.minorVersion
68 };
69 }
70 });
71
72 // Register plugin
73 tinymce.PluginManager.add('pagebreak', tinymce.plugins.PageBreakPlugin);
74 })();