????JFIF??x?x????'
Server IP : 79.136.114.73 / Your IP : 18.189.141.66 Web Server : Apache/2.4.7 (Ubuntu) PHP/5.5.9-1ubuntu4.29 OpenSSL/1.0.1f System : Linux b8009 3.13.0-170-generic #220-Ubuntu SMP Thu May 9 12:40:49 UTC 2019 x86_64 User : www-data ( 33) PHP Version : 5.5.9-1ubuntu4.29 Disable Function : pcntl_alarm,pcntl_fork,pcntl_waitpid,pcntl_wait,pcntl_wifexited,pcntl_wifstopped,pcntl_wifsignaled,pcntl_wexitstatus,pcntl_wtermsig,pcntl_wstopsig,pcntl_signal,pcntl_signal_dispatch,pcntl_get_last_error,pcntl_strerror,pcntl_sigprocmask,pcntl_sigwaitinfo,pcntl_sigtimedwait,pcntl_exec,pcntl_getpriority,pcntl_setpriority, MySQL : ON | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : ON | Pkexec : ON Directory : /var/www/www.biminfo.se/vatternkajak.se/ckeditor/_source/core/ |
Upload File : |
/* Copyright (c) 2003-2011, CKSource - Frederico Knabben. All rights reserved. For licensing, see LICENSE.html or http://ckeditor.com/license */ /** * @fileOverview Defines the "virtual" {@link CKEDITOR.dataProcessor} class, which * defines the basic structure of data processor objects to be * set to {@link CKEDITOR.editor.dataProcessor}. */ /** * If defined, points to the data processor which is responsible to translate * and transform the editor data on input and output. * Generaly it will point to an instance of {@link CKEDITOR.htmlDataProcessor}, * which handles HTML data. The editor may also handle other data formats by * using different data processors provided by specific plugins. * @name CKEDITOR.editor.prototype.dataProcessor * @type CKEDITOR.dataProcessor */ /** * This class is here for documentation purposes only and is not really part of * the API. It serves as the base ("interface") for data processors * implementation. * @name CKEDITOR.dataProcessor * @class Represents a data processor, which is responsible to translate and * transform the editor data on input and output. * @example */ /** * Transforms input data into HTML to be loaded in the editor. * While the editor is able to handle non HTML data (like BBCode), at runtime * it can handle HTML data only. The role of the data processor is transforming * the input data into HTML through this function. * @name CKEDITOR.dataProcessor.prototype.toHtml * @function * @param {String} data The input data to be transformed. * @param {String} [fixForBody] The tag name to be used if the data must be * fixed because it is supposed to be loaded direcly into the <body> * tag. This is generally not used by non-HTML data processors. * @example * // Tranforming BBCode data, having a custom BBCode data processor. * var data = 'This is [b]an example[/b].'; * var html = editor.dataProcessor.toHtml( data ); // '<p>This is <b>an example</b>.</p>' */ /** * Transforms HTML into data to be outputted by the editor, in the format * expected by the data processor. * While the editor is able to handle non HTML data (like BBCode), at runtime * it can handle HTML data only. The role of the data processor is transforming * the HTML data containined by the editor into a specific data format through * this function. * @name CKEDITOR.dataProcessor.prototype.toDataFormat * @function * @param {String} html The HTML to be transformed. * @param {String} fixForBody The tag name to be used if the output data is * coming from <body> and may be eventually fixed for it. This is * generally not used by non-HTML data processors. * // Tranforming into BBCode data, having a custom BBCode data processor. * var html = '<p>This is <b>an example</b>.</p>'; * var data = editor.dataProcessor.toDataFormat( html ); // 'This is [b]an example[/b].' */