Done !
| Server IP : 46.105.57.169 / Your IP : 216.73.217.35 Web Server : Apache System : Linux webm002.cluster120.gra.hosting.ovh.net 6.18.42-ovh-vps-grsec-zfs+ #1 SMP PREEMPT_DYNAMIC Wed Aug 5 15:59:48 CEST 2026 x86_64 User : verseaumee ( 152031) PHP Version : 8.5.7 Disable Function : _dyuweyrj4,_dyuweyrj4r,dl MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : OFF | Pkexec : OFF Directory : /home/verseaumee/123click/assets/ |
Upload File : |
PK ! �#o, , views/popup/index.htmlnu &1i� <html><body bgcolor="#FFFFFF"></body></html>PK ! ݃Hk� � views/popup/tmpl/default.phpnu &1i� <?php
/**
* @copyright Copyright (c) 2009-2019 Ryan Demmer. All rights reserved
* @license GNU/GPL 2 or later - http://www.gnu.org/licenses/old-licenses/gpl-2.0.html
* JCE is free software. This version may have been modified pursuant
* to the GNU General Public License, and as distributed it includes or
* is derivative of works licensed under the GNU General Public License or
* other free or open source software licenses
*/
defined('_JEXEC') or die('RESTRICTED');
?>
<style type="text/css">
/* Reset template style sheet */
body{margin:0;padding:0;}div{margin:0;padding:0;}img{margin:0;padding:0;}
</style>
<div id="wf_popup_image">
<?php if ($this->features['mode']) {
?>
<div class="contentheading"><?php echo $this->features['title']; ?></div>
<?php
} ?>
<?php if ($this->features['mode'] && $this->features['print']) {
?>
<div class="buttonheading"><a href="javascript:;" onClick="window.print();
return false"><img src="<?php echo JURI::root(); ?>components/com_jce/media/img/print.png" width="16" height="16" alt="<?php echo WFText::_('Print'); ?>" title="<?php echo WFText::_('Print'); ?>" /></a></div>
<?php
} ?>
<div><img src="<?php echo $this->features['img']; ?>" width="<?php echo $this->features['width']; ?>" height="<?php echo $this->features['height']; ?>" alt="<?php echo $this->features['alt']; ?>" onclick="window.close();" /></div>
</div>PK ! �#o, , views/popup/tmpl/index.htmlnu &1i� <html><body bgcolor="#FFFFFF"></body></html>PK ! "IA/�
�
views/popup/view.html.phpnu &1i� <?php
/**
* @copyright Copyright (c) 2009-2019 Ryan Demmer. All rights reserved
* @license GNU/GPL 2 or later - http://www.gnu.org/licenses/old-licenses/gpl-2.0.html
* JCE is free software. This version may have been modified pursuant
* to the GNU General Public License, and as distributed it includes or
* is derivative of works licensed under the GNU General Public License or
* other free or open source software licenses
*/
jimport('joomla.application.component.view');
if (!class_exists('WFViewBase')) {
if (interface_exists('JView')) {
abstract class WFViewBase extends JViewLegacy
{
}
} else {
abstract class WFViewBase extends JView
{
}
}
}
class WFViewPopup extends WFViewBase
{
public function display($tpl = null)
{
$app = JFactory::getApplication();
$this->document->addScript(JURI::root(true).'/components/com_jce/media/js/popup.js');
$this->document->addStylesheet(JURI::root(true).'/components/com_jce/media/css/popup.css');
// Get variables
$img = JRequest::getVar('img');
$title = JRequest::getWord('title');
$mode = JRequest::getInt('mode', '0');
$click = JRequest::getInt('click', '0');
$print = JRequest::getInt('print', '0');
$dim = array('', '');
if (strpos('http', $img) === false) {
$path = JPATH_SITE.'/'.trim(str_replace(JURI::root(), '', $img), '/');
if (is_file($path)) {
$dim = @getimagesize($path);
}
}
$width = JRequest::getInt('w', JRequest::getInt('width', ''));
$height = JRequest::getInt('h', JRequest::getInt('height', ''));
if (!$width) {
$width = $dim[0];
}
if (!$height) {
$height = $dim[1];
}
// Cleanup img variable
$img = preg_replace('/[^a-z0-9\.\/_-]/i', '', $img);
$title = isset($title) ? str_replace('_', ' ', $title) : basename($img);
// img src must be passed
if ($img) {
$features = array(
'img' => str_replace(JURI::root(), '', $img),
'title' => $title,
'alt' => $title,
'mode' => $mode,
'click' => $click,
'print' => $print,
'width' => $width,
'height' => $height,
);
$this->document->addScriptDeclaration('(function(){WFWindowPopup.init('.$width.', '.$height.', '.$click.');})();');
$this->assign('features', $features);
} else {
$app->redirect('index.php');
}
parent::display($tpl);
}
}
PK ! �#o, , views/index.htmlnu &1i� <html><body bgcolor="#FFFFFF"></body></html>PK ! G�W jce.phpnu &1i� <?php
/**
* @copyright Copyright (c) 2009-2019 Ryan Demmer. All rights reserved
* @license GNU/GPL 2 or later - http://www.gnu.org/licenses/old-licenses/gpl-2.0.html
* JCE is free software. This version may have been modified pursuant
* to the GNU General Public License, and as distributed it includes or
* is derivative of works licensed under the GNU General Public License or
* other free or open source software licenses
*/
defined('_JEXEC') or die('RESTRICTED');
require_once JPATH_COMPONENT_ADMINISTRATOR.'/jce.php';
PK ! ���G G 2 editor/tiny_mce/plugins/browser/classes/config.phpnu &1i� <?php
/**
* @copyright Copyright (c) 2009-2019 Ryan Demmer. All rights reserved
* @license GNU/GPL 2 or later - http://www.gnu.org/licenses/old-licenses/gpl-2.0.html
* JCE is free software. This version may have been modified pursuant
* to the GNU General Public License, and as distributed it includes or
* is derivative of works licensed under the GNU General Public License or
* other free or open source software licenses
*/
class WFBrowserPluginConfig
{
public static function getConfig(&$settings)
{
$settings['file_browser_callback'] = '';
}
}
PK ! V��� � 3 editor/tiny_mce/plugins/browser/classes/browser.phpnu &1i� <?php
/**
* @copyright Copyright (c) 2009-2019 Ryan Demmer. All rights reserved
* @license GNU/GPL 2 or later - http://www.gnu.org/licenses/old-licenses/gpl-2.0.html
* JCE is free software. This version may have been modified pursuant
* to the GNU General Public License, and as distributed it includes or
* is derivative of works licensed under the GNU General Public License or
* other free or open source software licenses
*/
defined('_JEXEC') or die('RESTRICTED');
require_once WF_EDITOR_LIBRARIES.'/classes/manager.php';
class WFFileBrowserPlugin extends WFMediaManager
{
/*
* @var string
*/
protected $_filetypes = 'doc,docx,dot,dotx,ppt,pps,pptx,ppsx,xls,xlsx,gif,jpeg,jpg,png,pdf,zip,tar,gz,swf,rar,mov,mp4,qt,wmv,asx,asf,avi,wav,mp3,aiff,odt,odg,odp,ods,odf,rtf,txt,csv';
public function __construct($config = array())
{
$config = array(
'layout' => 'browser',
'can_edit_images' => 1,
'show_view_mode' => 1,
);
parent::__construct($config);
// get the plugin that opened the file browser
$caller = $this->get('caller', 'browser');
// get mediatype from xml
$mediatype = JRequest::getVar('mediatype', JRequest::getVar('filter', 'files'));
// clean filter value
$mediatype = (string) preg_replace('/[^\w_,]/i', '', $mediatype);
// get filetypes from params
$filetypes = $this->getParam('browser.extensions', $this->get('_filetypes'));
$map = array(
"images" => "jpg,jpeg,png,gif",
"media" => "avi,wmv,wm,asf,asx,wmx,wvx,mov,qt,mpg,mpeg,m4a,m4v,swf,dcr,rm,ra,ram,divx,mp4,ogv,ogg,webm,flv,f4v,mp3,ogg,wav,xap",
"html" => "html,htm,txt",
"files" => $filetypes
);
// add svg support to images if it is allowed in filetypes
if (in_array('svg', explode(",", $filetypes))) {
$map['images'] = "jpg,jpeg,png,gif,svg";
}
if (array_key_exists($mediatype, $map)) {
$filetypes = $map[$mediatype];
} else {
$filetypes = $mediatype;
}
// set filetypes
$this->setFileTypes($filetypes);
$browser = $this->getFileBrowser();
$upload = $browser->get('upload', array());
$upload['filetypes'] = $browser->getFileTypes('list', $filetypes);
$browser->setProperties(array('upload' => $upload));
}
/**
* Display the plugin.
*/
public function display()
{
parent::display();
$document = WFDocument::getInstance();
$layout = JRequest::getCmd('layout', 'plugin');
if ($document->get('standalone') == 1) {
if ($layout === 'plugin') {
$document->addScript(array('window.min'), 'plugins');
$element = JRequest::getCmd('element', JRequest::getCmd('fieldid', ''));
$callback = JRequest::getCmd('callback', '');
$settings = array(
'site_url' => JURI::base(true).'/',
'language' => WFLanguage::getCode(),
'element' => $element,
'token' => WFToken::getToken(),
);
if ($callback) {
$settings['callback'] = $callback;
}
$document->addScriptDeclaration('tinymce.settings='.json_encode($settings).';');
}
$document->addScript(array('popup.min'), 'plugins');
$document->addStyleSheet(array('browser.min'), 'plugins');
}
if ($layout === 'plugin') {
$document->addScript(array('browser'), 'plugins');
}
}
}
PK ! �#o, , 2 editor/tiny_mce/plugins/browser/classes/index.htmlnu &1i� <html><body bgcolor="#FFFFFF"></body></html>PK ! �N��
0 editor/tiny_mce/plugins/browser/editor_plugin.jsnu &1i� /* jce - 2.6.38 | 2019-03-14 | https://www.joomlacontenteditor.net | Copyright (C) 2006 - 2019 Ryan Demmer. All rights reserved | GNU/GPL Version 2 or later - http://www.gnu.org/licenses/gpl-2.0.html */
!function(){tinymce.create("tinymce.plugins.Browser",{init:function(ed,url){var self=this;self.ed=ed,ed.addCommand("mceFileBrowser",function(ui,args,win){self.open(args,win)})},open:function(args,win){args=args||{};var ed=this.ed;return ed.windowManager.open({file:ed.getParam("site_url")+"index.php?option=com_jce&view=editor&plugin=browser"+(args.caller?"."+args.caller:"")+(args.filter?"&filter="+args.filter:""),inline:"yes",close_previous:"no",size:"mce-modal-square-xlarge",width:896,height:707},args),!1}}),tinymce.PluginManager.add("browser",tinymce.plugins.Browser)}();PK ! �#o, , . editor/tiny_mce/plugins/browser/css/index.htmlnu &1i� <html><body bgcolor="#FFFFFF"></body></html>PK ! ��\� � 3 editor/tiny_mce/plugins/browser/css/browser.min.cssnu &1i� .ui-browser{left:0;right:0}.ui-modal-footer{border:1px solid #ddd}.ui-inline-help .ui-modal-dialog{top:0;height:100%}.ui-inline-help iframe{height:92%;height:calc(100% - 41px);width:100%}PK ! �#o, , * editor/tiny_mce/plugins/browser/index.htmlnu &1i� <html><body bgcolor="#FFFFFF"></body></html>PK ! �#o, , - editor/tiny_mce/plugins/browser/js/index.htmlnu &1i� <html><body bgcolor="#FFFFFF"></body></html>PK ! �!M�l l 0 editor/tiny_mce/plugins/browser/js/window.min.jsnu &1i� /**
* @package JCE
* @copyright Copyright (c) 2009-2019 Ryan Demmer. All rights reserved.
* @license GNU/GPL 2 or later - http://www.gnu.org/licenses/old-licenses/gpl-2.0.html
* JCE is free software. This version may have been modified pursuant
* to the GNU General Public License, and as distributed it includes or
* is derivative of works licensed under the GNU General Public License or
* other free or open source software licenses.
*/
var tinymce = {
settings: {
"language": "en",
"site_url": ""
},
addI18n: function(p, o) {
return Wf.addI18n(p, o);
},
convertURL: function(src) {
return src;
},
windowManager: {
params: {
"window": window.parent,
"callback": function(selected, data) {
var win = window.parent,
s = tinyMCEPopup.editor.settings,
value = data[0].url;
if (win.jQuery) {
// Joomla 3.5.x Media Field
var wrapper = win.jQuery('#' + s.element).parents('.field-media-wrapper').get(0);
if (wrapper) {
var inst = win.jQuery(wrapper).data('fieldMedia');
if (inst) {
return inst.setValue(value);
}
}
win.jQuery('#' + s.element).val(value).change();
} else {
var el;
if (s.element) {
el = win.document.getElementById(s.element);
}
if (el) {
el.value = value;
}
}
}
},
// Open a modal window . This is only used from inside an existing modal, eg: Help or Image Editor
open: function(args, params) {
var $ = jQuery,
s = tinyMCEPopup.editor.settings;
args.url += '&' + s.token + '=1';
if (s.context) {
args.url += '&context=' + s.context;
}
args.url += '&standalone=1';
var div = $('<div class="uk-inline-help uk-modal" />');
var html = '<div class="uk-modal-dialog uk-modal-dialog-blank">' +
' <button class="uk-modal-close uk-close"></button>' +
' <div class="uk-modal-header"><h3><strong>' + (args.title || "") + '</strong></h3></div>' +
' <iframe src="' + args.url + '" frameborder="0"></iframe>' +
'</div>';
$(div).html(html).find('.uk-close').click(function(e) {
e.preventDefault();
$(div).removeClass('uk-open').delay(150).remove();
});
$(div).appendTo('body').addClass('uk-open').show();
// store params
tinymce.windowManager.params = params;
},
// Close a modal window opened using a Joomla Modal method or a JCE Modal.
close: function() {
var win = window.parent,
s = tinyMCEPopup.editor.settings;
// JCE dialog
if (typeof win.$jce !== 'undefined') {
return win.$jce.closeDialog('#' + s.element + '_browser');
}
// Joomla 3.5.x Media Field
if (s.element && typeof win.jQuery.fieldMedia !== 'undefined') {
var wrapper = win.jQuery('#' + s.element).parents('.field-media-wrapper').get(0);
var inst = win.jQuery(wrapper).data('fieldMedia');
if (inst) {
return inst.modalClose();
}
}
// jModalClose
if (typeof win.jModalClose !== 'undefined') {
return win.jModalClose();
}
// try squeezebox
if (typeof win.SqueezeBox !== 'undefined') {
return win.SqueezeBox.close();
}
}
},
getParam: function(n, dv) {
var s = tinyMCEPopup.editor.settings,
v = s[n];
return (typeof v !== "undefined") ? v : dv;
}
};
var tinyMCE = tinymce;PK ! }��e e / editor/tiny_mce/plugins/browser/js/popup.min.jsnu &1i� /**
* @package JCE
* @copyright Copyright (c) 2009-2019 Ryan Demmer. All rights reserved.
* @license GNU/GPL 2 or later - http://www.gnu.org/licenses/old-licenses/gpl-2.0.html
* JCE is free software. This version may have been modified pursuant
* to the GNU General Public License, and as distributed it includes or
* is derivative of works licensed under the GNU General Public License or
* other free or open source software licenses.
*/
var tinyMCEPopup = {
getParam: function(n, dv) {
return this.editor.getParam(n, dv);
},
getLang: function(n, dv) {
var lang = Wf.getLanguage();
return Wf.i18n[lang + '.' + n] || dv;
},
getWindowArg: function(n, dv) {
var v = this.editor.windowManager.params[n];
return (typeof v !== "undefined") ? v : dv;
},
close: function() {
return this.editor.windowManager.close();
}
};
// fake editor
tinyMCEPopup.editor = window.tinymce || window.parent.tinymce;
jQuery(document).ready(function($) {
var win = window.parent,
s = tinyMCEPopup.editor.settings,
element = s.element,
el;
if (element) {
el = win.document.getElementById(element);
if (el) {
tinyMCEPopup.editor.windowManager.params.value = el.value;
}
}
if (s.callback) {
var fn = win[s.callback];
if (typeof fn === "function") {
tinyMCEPopup.editor.windowManager.params.callback = fn;
}
}
// Joomla 3.5.x Media Field
if (el && el.className.indexOf(' field-media-input ') !== -1) {
$('#cancel').hide();
}
});PK ! ��H�D D - editor/tiny_mce/plugins/browser/js/browser.jsnu &1i� /* jce - 2.6.38 | 2019-03-14 | https://www.joomlacontenteditor.net | Copyright (C) 2006 - 2019 Ryan Demmer. All rights reserved | GNU/GPL Version 2 or later - http://www.gnu.org/licenses/gpl-2.0.html */
!function($){function init(){$("#insert").click(function(e){e.preventDefault(),insert()}),$("#cancel").click(function(e){e.preventDefault(),tinyMCEPopup.close()});var src=(tinyMCEPopup.window,tinyMCEPopup.getWindowArg("value"));Wf.init(),/(:\/\/|www|index.php(.*)\?option)/gi.test(src)&&(src=""),src&&(src=tinyMCEPopup.editor.convertURL(src),$(".uk-button-text","#insert").text(tinyMCEPopup.getLang("update","Update",!0))),$("[data-filebrowser]").val(src).filebrowser().on("filebrowser:onfileclick",function(e,file,data){selectFile(data)})}function insert(){var win=tinyMCEPopup.getWindowArg("window"),callback=tinyMCEPopup.getWindowArg("callback");if(!callback)return tinyMCEPopup.close();$("[data-filebrowser]").trigger("filebrowser:insert",function(selected,data){data.length||(data=[{title:"",url:""}]),"string"==typeof callback&&(selectFile(data[0]),win.document.getElementById(callback).value=$("[data-filebrowser]").val()),"function"==typeof callback&&callback(selected,data),tinyMCEPopup.close()})}function selectFile(file){var src=file.url||"";src=src.replace(/^\//,""),$("[data-filebrowser]").val(src)}$(document).ready(init)}(jQuery);PK ! �^>�* * + editor/tiny_mce/plugins/browser/browser.phpnu &1i� <?php
/**
* @copyright Copyright (c) 2009-2019 Ryan Demmer. All rights reserved
* @license GNU/GPL 2 or later - http://www.gnu.org/licenses/old-licenses/gpl-2.0.html
* JCE is free software. This version may have been modified pursuant
* to the GNU General Public License, and as distributed it includes or
* is derivative of works licensed under the GNU General Public License or
* other free or open source software licenses
*/
require_once dirname(__FILE__).'/classes/browser.php';
$plugin = new WFFileBrowserPlugin();
$plugin->execute();
PK ! �S�� � + editor/tiny_mce/plugins/browser/browser.xmlnu &1i� <?xml version="1.0" encoding="utf-8" ?>
<install version="2.0" type="plugin" plugin="browser" core="1" editable="1">
<name>WF_BROWSER_TITLE</name>
<version>2.6.38</version>
<creationDate>14-03-2019</creationDate>
<author>Ryan Demmer</author>
<authorEmail>info@joomlacontenteditor.net</authorEmail>
<authorUrl>http://www.joomlacontenteditor.net/</authorUrl>
<copyright>Ryan Demmer</copyright>
<license>GNU/GPL Version 2 or later - http://www.gnu.org/licenses/gpl-2.0.html</license>
<description>WF_BROWSER_DESC</description>
<icon></icon>
<files></files>
<params group="standard">
<param name="dir" type="text" default="" size="50" label="WF_PARAM_DIRECTORY" description="WF_PARAM_DIRECTORY_DESC"/>
<param name="max_size" class="upload_size" max="" type="text" default="" label="WF_PARAM_UPLOAD_SIZE" description="WF_PARAM_UPLOAD_SIZE_DESC" placeholder="" />
<param name="extensions" type="extension" default="doc,docx,dot,dotx,ppt,pptx,xls,xlsx,gif,jpeg,jpg,png,pdf,zip,tar,gz,rar,swf,mov,mp4,qt,wmv,asx,asf,avi,wav,mp3,aiff,ogg,ogv,oga,webm,odt,odg,odp,ods,odf,rtf,txt,csv" label="WF_PARAM_EXTENSIONS" description="WF_PARAM_EXTENSIONS_DESC" />
<param name="name" type="filesystem" group="filesystem" default="" label="WF_PARAM_FILESYSTEM" description="WF_PARAM_FILESYSTEM_DESC" />
</params>
<params group="access">
<param name="upload" type="radio" default="1" label="WF_PARAM_UPLOAD" description="WF_PARAM_UPLOAD_DESC">
<option value="1">WF_OPTION_YES</option>
<option value="0">WF_OPTION_NO</option>
</param>
<param name="folder_new" type="radio" default="1" label="WF_PARAM_FOLDER_CREATE" description="WF_PARAM_FOLDER_CREATE_DESC">
<option value="1">WF_OPTION_YES</option>
<option value="0">WF_OPTION_NO</option>
</param>
<param name="folder_delete" type="radio" default="1" label="WF_PARAM_FOLDER_DELETE" description="WF_PARAM_FOLDER_DELETE_DESC">
<option value="1">WF_OPTION_YES</option>
<option value="0">WF_OPTION_NO</option>
</param>
<param name="folder_rename" type="radio" default="1" label="WF_PARAM_FOLDER_RENAME" description="WF_PARAM_FOLDER_RENAME_DESC">
<option value="1">WF_OPTION_YES</option>
<option value="0">WF_OPTION_NO</option>
</param>
<param name="folder_move" type="radio" default="1" label="WF_PARAM_FOLDER_PASTE" description="WF_PARAM_FOLDER_PASTE_DESC">
<option value="1">WF_OPTION_YES</option>
<option value="0">WF_OPTION_NO</option>
</param>
<param name="file_delete" type="radio" default="1" label="WF_PARAM_FILE_DELETE" description="WF_PARAM_FILE_DELETE_DESC">
<option value="1">WF_OPTION_YES</option>
<option value="0">WF_OPTION_NO</option>
</param>
<param name="file_rename" type="radio" default="1" label="WF_PARAM_FILE_RENAME" description="WF_PARAM_FILE_RENAME_DESC">
<option value="1">WF_OPTION_YES</option>
<option value="0">WF_OPTION_NO</option>
</param>
<param name="file_move" type="radio" default="1" label="WF_PARAM_FILE_PASTE" description="WF_PARAM_FILE_PASTE_DESC">
<option value="1">WF_OPTION_YES</option>
<option value="0">WF_OPTION_NO</option>
</param>
</params>
<languages></languages>
<help>
<topic key="browser.about" title="WF_BROWSER_HELP_ABOUT" />
<topic key="browser.interface" title="WF_BROWSER_HELP_INTERFACE" />
<topic key="browser.insert" title="WF_BROWSER_HELP_INSERT" />
<topic file="libraries/xml/help/manager.xml" />
</help>
</install>
PK ! NjCo� � . editor/tiny_mce/plugins/style/editor_plugin.jsnu &1i� /* jce - 2.6.38 | 2019-03-14 | https://www.joomlacontenteditor.net | Copyright (C) 2006 - 2019 Ryan Demmer. All rights reserved | GNU/GPL Version 2 or later - http://www.gnu.org/licenses/gpl-2.0.html */
!function(){tinymce.create("tinymce.plugins.StylePlugin",{init:function(ed,url){ed.addCommand("mceStyleProps",function(){var applyStyleToBlocks=!1,blocks=ed.selection.getSelectedBlocks(),styles=[];1===blocks.length?styles.push(ed.selection.getNode().style.cssText):(tinymce.each(blocks,function(block){styles.push(ed.dom.getAttrib(block,"style"))}),applyStyleToBlocks=!0),ed.windowManager.open({file:ed.getParam("site_url")+"index.php?option=com_jce&view=editor&plugin=style",width:620+parseInt(ed.getLang("style.delta_width",0)),height:420+parseInt(ed.getLang("style.delta_height",0)),inline:1,popup_css:!1},{applyStyleToBlocks:applyStyleToBlocks,plugin_url:url,styles:styles})}),ed.addCommand("mceSetElementStyle",function(ui,v){(e=ed.selection.getNode())&&(ed.dom.setAttrib(e,"style",v),ed.execCommand("mceRepaint"))}),ed.onNodeChange.add(function(ed,cm,n){cm.setDisabled("style","BODY"===n.nodeName||"BR"===n.nodeName&&n.getAttribute("data-mce-bogus"))}),ed.addButton("style",{title:"style.desc",cmd:"mceStyleProps"})},getInfo:function(){return{longname:"Style",author:"Moxiecode Systems AB",authorurl:"http://tinymce.moxiecode.com",infourl:"http://wiki.moxiecode.com/index.php/TinyMCE:Plugins/style",version:tinymce.majorVersion+"."+tinymce.minorVersion}}}),tinymce.PluginManager.add("style",tinymce.plugins.StylePlugin)}();PK ! �#o, , , editor/tiny_mce/plugins/style/css/index.htmlnu &1i� <html><body bgcolor="#FFFFFF"></body></html>PK ! �#�e<