%PDF-1.5 %���� ºaâÚÎΞ-ÌE1ÍØÄ÷{òò2ÿ ÛÖ^ÔÀá TÎ{¦?§®¥kuµùÕ5sLOšuY
Server IP : 49.231.201.246 / Your IP : 216.73.216.149 Web Server : Apache/2.4.18 (Ubuntu) System : Linux 246 4.4.0-210-generic #242-Ubuntu SMP Fri Apr 16 09:57:56 UTC 2021 x86_64 User : root ( 0) PHP Version : 7.0.33-0ubuntu0.16.04.16 Disable Function : exec,passthru,shell_exec,system,proc_open,popen,pcntl_exec MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : ON | Pkexec : ON Directory : /var/www/html/old/components/com_jce/editor/tiny_mce/plugins/xhtmlxtras/ |
Upload File : |
/* JCE Editor - 2.5.15 | 10 March 2016 | http://www.joomlacontenteditor.net | Copyright (C) 2006 - 2016 Ryan Demmer. All rights reserved | © Copyright, Moxiecode Systems AB | http://www.tinymce.com/license */ (function(){var each=tinymce.each;tinymce.create('tinymce.plugins.XHTMLXtrasPlugin',{init:function(ed,url){ed.addCommand('mceCite',function(){ed.windowManager.open({file:ed.getParam('site_url')+'index.php?option=com_jce&view=editor&layout=plugin&plugin=xhtmlxtras&element=cite',width:440+parseInt(ed.getLang('xhtmlxtras.cite_delta_width',0)),height:380+parseInt(ed.getLang('xhtmlxtras.cite_delta_height',0)),inline:1,popup_css:false},{plugin_url:url,element:'cite'});});ed.addCommand('mceAcronym',function(){ed.windowManager.open({file:ed.getParam('site_url')+'index.php?option=com_jce&view=editor&layout=plugin&plugin=xhtmlxtras&element=acronym',width:440+parseInt(ed.getLang('xhtmlxtras.acronym_delta_width',0)),height:380+parseInt(ed.getLang('xhtmlxtras.acronym_delta_height',0)),inline:1,popup_css:false},{plugin_url:url,element:'acronym'});});ed.addCommand('mceAbbr',function(){ed.windowManager.open({file:ed.getParam('site_url')+'index.php?option=com_jce&view=editor&layout=plugin&plugin=xhtmlxtras&element=abbr',width:440+parseInt(ed.getLang('xhtmlxtras.abbr_delta_width',0)),height:380+parseInt(ed.getLang('xhtmlxtras.abbr_delta_height',0)),inline:1,popup_css:false},{plugin_url:url,element:'abbr'});});ed.addCommand('mceDel',function(){ed.windowManager.open({file:ed.getParam('site_url')+'index.php?option=com_jce&view=editor&layout=plugin&plugin=xhtmlxtras&element=del',width:440+parseInt(ed.getLang('xhtmlxtras.del_delta_width',0)),height:440+parseInt(ed.getLang('xhtmlxtras.del_delta_height',0)),inline:1,popup_css:false},{plugin_url:url,element:'del'});});ed.addCommand('mceIns',function(){ed.windowManager.open({file:ed.getParam('site_url')+'index.php?option=com_jce&view=editor&layout=plugin&plugin=xhtmlxtras&element=ins',width:440+parseInt(ed.getLang('xhtmlxtras.ins_delta_width',0)),height:440+parseInt(ed.getLang('xhtmlxtras.ins_delta_height',0)),inline:1,popup_css:false},{plugin_url:url,element:'ins'});});ed.addCommand('mceAttributes',function(){ed.windowManager.open({file:ed.getParam('site_url')+'index.php?option=com_jce&view=editor&layout=plugin&plugin=xhtmlxtras&element=attributes',width:440,height:420,inline:1,popup_css:false},{plugin_url:url});});ed.addButton('cite',{title:'xhtmlxtras.cite_desc',cmd:'mceCite'});if(ed.settings.schema!=="html5-strict"){ed.addButton('acronym',{title:'xhtmlxtras.acronym_desc',cmd:'mceAcronym'});} ed.addButton('abbr',{title:'xhtmlxtras.abbr_desc',cmd:'mceAbbr'});ed.addButton('del',{title:'xhtmlxtras.del_desc',cmd:'mceDel'});ed.addButton('ins',{title:'xhtmlxtras.ins_desc',cmd:'mceIns'});ed.addButton('attribs',{title:'xhtmlxtras.attribs_desc',cmd:'mceAttributes'});ed.onNodeChange.add(function(ed,cm,n,co){n=ed.dom.getParent(n,'CITE,ACRONYM,ABBR,DEL,INS');cm.setDisabled('cite',co);cm.setDisabled('acronym',co);cm.setDisabled('abbr',co);cm.setDisabled('del',co);cm.setDisabled('ins',co);cm.setDisabled('attribs',n&&n.nodeName=='BODY');cm.setActive('cite',0);cm.setActive('acronym',0);cm.setActive('abbr',0);cm.setActive('del',0);cm.setActive('ins',0);if(n){do{cm.setDisabled(n.nodeName.toLowerCase(),0);cm.setActive(n.nodeName.toLowerCase(),1);}while(n=n.parentNode);}});ed.onPreInit.add(function(){ed.dom.create('abbr');ed.formatter.register({cite:{inline:'cite',remove:'all',onformat:function(elm,fmt,vars){each(vars,function(value,key){ed.dom.setAttrib(elm,key,value);});}},acronym:{inline:'acronym',remove:'all',onformat:function(elm,fmt,vars){each(vars,function(value,key){ed.dom.setAttrib(elm,key,value);});}},abbr:{inline:'abbr',remove:'all',onformat:function(elm,fmt,vars){each(vars,function(value,key){ed.dom.setAttrib(elm,key,value);});}},del:{inline:'del',remove:'all',onformat:function(elm,fmt,vars){each(vars,function(value,key){ed.dom.setAttrib(elm,key,value);});}},ins:{inline:'ins',remove:'all',onformat:function(elm,fmt,vars){each(vars,function(value,key){ed.dom.setAttrib(elm,key,value);});}},attributes:{inline:'span',remove:'all',onformat:function(elm,fmt,vars){each(vars,function(value,key){ed.dom.setAttrib(elm,key,value);});}}});});},getInfo:function(){return{longname:'XHTML Xtras Plugin',author:'Moxiecode Systems AB',authorurl:'http://tinymce.moxiecode.com',infourl:'http://wiki.moxiecode.com/index.php/TinyMCE:Plugins/xhtmlxtras',version:tinymce.majorVersion+"."+tinymce.minorVersion};}});tinymce.PluginManager.add('xhtmlxtras',tinymce.plugins.XHTMLXtrasPlugin);})();