diff options
Diffstat (limited to 'public/javascripts/tiny_mce/plugins/pagebreak')
| -rw-r--r-- | public/javascripts/tiny_mce/plugins/pagebreak/css/content.css | 1 | ||||
| -rw-r--r-- | public/javascripts/tiny_mce/plugins/pagebreak/editor_plugin.js | 1 | ||||
| -rw-r--r-- | public/javascripts/tiny_mce/plugins/pagebreak/editor_plugin_src.js | 74 | ||||
| -rw-r--r-- | public/javascripts/tiny_mce/plugins/pagebreak/img/pagebreak.gif | bin | 325 -> 0 bytes | |||
| -rw-r--r-- | public/javascripts/tiny_mce/plugins/pagebreak/img/trans.gif | bin | 43 -> 0 bytes |
5 files changed, 0 insertions, 76 deletions
diff --git a/public/javascripts/tiny_mce/plugins/pagebreak/css/content.css b/public/javascripts/tiny_mce/plugins/pagebreak/css/content.css deleted file mode 100644 index c949d58..0000000 --- a/public/javascripts/tiny_mce/plugins/pagebreak/css/content.css +++ /dev/null | |||
| @@ -1 +0,0 @@ | |||
| 1 | .mcePageBreak {display:block;border:0;width:100%;height:12px;border-top:1px dotted #ccc;margin-top:15px;background:#fff url(../img/pagebreak.gif) no-repeat center top;} | ||
diff --git a/public/javascripts/tiny_mce/plugins/pagebreak/editor_plugin.js b/public/javascripts/tiny_mce/plugins/pagebreak/editor_plugin.js deleted file mode 100644 index a212f69..0000000 --- a/public/javascripts/tiny_mce/plugins/pagebreak/editor_plugin.js +++ /dev/null | |||
| @@ -1 +0,0 @@ | |||
| 1 | (function(){tinymce.create("tinymce.plugins.PageBreakPlugin",{init:function(b,d){var f='<img src="'+d+'/img/trans.gif" class="mcePageBreak mceItemNoResize" />',a="mcePageBreak",c=b.getParam("pagebreak_separator","<!-- pagebreak -->"),e;e=new RegExp(c.replace(/[\?\.\*\[\]\(\)\{\}\+\^\$\:]/g,function(g){return"\\"+g}),"g");b.addCommand("mcePageBreak",function(){b.execCommand("mceInsertContent",0,f)});b.addButton("pagebreak",{title:"pagebreak.desc",cmd:a});b.onInit.add(function(){if(b.settings.content_css!==false){b.dom.loadCSS(d+"/css/content.css")}if(b.theme.onResolveName){b.theme.onResolveName.add(function(g,h){if(h.node.nodeName=="IMG"&&b.dom.hasClass(h.node,a)){h.name="pagebreak"}})}});b.onClick.add(function(g,h){h=h.target;if(h.nodeName==="IMG"&&g.dom.hasClass(h,a)){g.selection.select(h)}});b.onNodeChange.add(function(h,g,i){g.setActive("pagebreak",i.nodeName==="IMG"&&h.dom.hasClass(i,a))});b.onBeforeSetContent.add(function(g,h){h.content=h.content.replace(e,f)});b.onPostProcess.add(function(g,h){if(h.get){h.content=h.content.replace(/<img[^>]+>/g,function(i){if(i.indexOf('class="mcePageBreak')!==-1){i=c}return i})}})},getInfo:function(){return{longname:"PageBreak",author:"Moxiecode Systems AB",authorurl:"http://tinymce.moxiecode.com",infourl:"http://wiki.moxiecode.com/index.php/TinyMCE:Plugins/pagebreak",version:tinymce.majorVersion+"."+tinymce.minorVersion}}});tinymce.PluginManager.add("pagebreak",tinymce.plugins.PageBreakPlugin)})(); \ No newline at end of file | ||
diff --git a/public/javascripts/tiny_mce/plugins/pagebreak/editor_plugin_src.js b/public/javascripts/tiny_mce/plugins/pagebreak/editor_plugin_src.js deleted file mode 100644 index 16f5748..0000000 --- a/public/javascripts/tiny_mce/plugins/pagebreak/editor_plugin_src.js +++ /dev/null | |||
| @@ -1,74 +0,0 @@ | |||
| 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 | })(); \ No newline at end of file | ||
diff --git a/public/javascripts/tiny_mce/plugins/pagebreak/img/pagebreak.gif b/public/javascripts/tiny_mce/plugins/pagebreak/img/pagebreak.gif deleted file mode 100644 index acdf408..0000000 --- a/public/javascripts/tiny_mce/plugins/pagebreak/img/pagebreak.gif +++ /dev/null | |||
| Binary files differ | |||
diff --git a/public/javascripts/tiny_mce/plugins/pagebreak/img/trans.gif b/public/javascripts/tiny_mce/plugins/pagebreak/img/trans.gif deleted file mode 100644 index 3884865..0000000 --- a/public/javascripts/tiny_mce/plugins/pagebreak/img/trans.gif +++ /dev/null | |||
| Binary files differ | |||
