1 /** |
|
2 * $Id: editor_plugin_src.js 201 2007-02-12 15:56:56Z spocke $ |
|
3 * |
|
4 * @author Moxiecode |
|
5 * @copyright Copyright © 2004-2008, Moxiecode Systems AB, All rights reserved. |
|
6 */ |
|
7 |
|
8 (function() { |
|
9 tinymce.create('tinymce.plugins.PageBreakPlugin', { |
|
10 init : function(ed, url) { |
|
11 var pb = '<img src="' + url + '/img/trans.gif" class="mcePageBreak mceItemNoResize" />', cls = 'mcePageBreak', sep = ed.getParam('pagebreak_separator', '<!-- pagebreak -->'), pbRE; |
|
12 |
|
13 pbRE = new RegExp(sep.replace(/[\?\.\*\[\]\(\)\{\}\+\^\$\:]/g, function(a) {return '\\' + a;}), 'g'); |
|
14 |
|
15 // Register commands |
|
16 ed.addCommand('mcePageBreak', function() { |
|
17 ed.execCommand('mceInsertContent', 0, pb); |
|
18 }); |
|
19 |
|
20 // Register buttons |
|
21 ed.addButton('pagebreak', {title : 'pagebreak.desc', cmd : cls}); |
|
22 |
|
23 ed.onInit.add(function() { |
|
24 if (ed.settings.content_css !== false) |
|
25 ed.dom.loadCSS(url + "/css/content.css"); |
|
26 |
|
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 })(); |
|