source: trunk/filemanager/tp/ckeditor/_source/core/ckeditor_basic.js @ 2000

Revision 2000, 7.4 KB checked in by amuller, 14 years ago (diff)

Ticket #597 - Implementação do módulo gerenciador de arquivos

Line 
1/*
2Copyright (c) 2003-2009, CKSource - Frederico Knabben. All rights reserved.
3For licensing, see LICENSE.html or http://ckeditor.com/license
4*/
5
6/**
7 * @fileOverview Contains the second part of the {@link CKEDITOR} object
8 *              definition, which defines the basic editor features to be available in
9 *              the root ckeditor_basic.js file.
10 */
11
12if ( CKEDITOR.status == 'unloaded' )
13{
14        (function()
15        {
16                CKEDITOR.event.implementOn( CKEDITOR );
17
18                /**
19                 * Forces the full CKEditor core code, in the case only the basic code has been
20                 * loaded (ckeditor_basic.js). This method self-destroys (becomes undefined) in
21                 * the first call or as soon as the full code is available.
22                 * @example
23                 * // Check if the full core code has been loaded and load it.
24                 * if ( CKEDITOR.loadFullCore )
25                 *     <b>CKEDITOR.loadFullCore()</b>;
26                 */
27                CKEDITOR.loadFullCore = function()
28                {
29                        // If not the basic code is not ready it, just mark it to be loaded.
30                        if ( CKEDITOR.status != 'basic_ready' )
31                        {
32                                CKEDITOR.loadFullCore._load = true;
33                                return;
34                        }
35
36                        // Destroy this function.
37                        delete CKEDITOR.loadFullCore;
38
39                        // Append the script to the head.
40                        var script = document.createElement( 'script' );
41                        script.type = 'text/javascript';
42                        script.src = CKEDITOR.basePath + 'ckeditor.js';
43
44                        document.getElementsByTagName( 'head' )[0].appendChild( script );
45                };
46
47                /**
48                 * The time to wait (in seconds) to load the full editor code after the
49                 * page load, if the "ckeditor_basic" file is used. If set to zero, the
50                 * editor is loaded on demand, as soon as an instance is created.
51                 *
52                 * This value must be set on the page before the page load completion.
53                 * @type Number
54                 * @default 0 (zero)
55                 * @example
56                 * // Loads the full source after five seconds.
57                 * CKEDITOR.loadFullCoreTimeout = 5;
58                 */
59                CKEDITOR.loadFullCoreTimeout = 0;
60
61                /**
62                 * The class name used to identify &lt;textarea&gt; elements to be replace
63                 * by CKEditor instances.
64                 * @type String
65                 * @default 'ckeditor'
66                 * @example
67                 * <b>CKEDITOR.replaceClass</b> = 'rich_editor';
68                 */
69                CKEDITOR.replaceClass = 'ckeditor';
70
71                /**
72                 * Enables the replacement of all textareas with class name matching
73                 * {@link CKEDITOR.replaceClass}.
74                 * @type Boolean
75                 * @default true
76                 * @example
77                 * // Disable the auto-replace feature.
78                 * <b>CKEDITOR.replaceByClassEnabled</b> = false;
79                 */
80                CKEDITOR.replaceByClassEnabled = true;
81
82                var createInstance = function( elementOrIdOrName, config, creationFunction )
83                {
84                        if ( CKEDITOR.env.isCompatible )
85                        {
86                                // Load the full core.
87                                if ( CKEDITOR.loadFullCore )
88                                        CKEDITOR.loadFullCore();
89
90                                var editor = creationFunction( elementOrIdOrName, config );
91                                CKEDITOR.add( editor );
92                                return editor;
93                        }
94
95                        return null;
96                };
97
98                /**
99                 * Replaces a &lt;textarea&gt; or a DOM element (DIV) with a CKEditor
100                 * instance. For textareas, the initial value in the editor will be the
101                 * textarea value. For DOM elements, their innerHTML will be used
102                 * instead. We recommend using TEXTAREA and DIV elements only.
103                 * @param {Object|String} elementOrIdOrName The DOM element (textarea), its
104                 *              ID or name.
105                 * @param {Object} [config] The specific configurations to apply to this
106                 *              editor instance. Configurations set here will override global CKEditor
107                 *              settings.
108                 * @returns {CKEDITOR.editor} The editor instance created.
109                 * @example
110                 * &lt;textarea id="myfield" name="myfield"&gt;&lt:/textarea&gt;
111                 * ...
112                 * <b>CKEDITOR.replace( 'myfield' )</b>;
113                 * @example
114                 * var textarea = document.body.appendChild( document.createElement( 'textarea' ) );
115                 * <b>CKEDITOR.replace( textarea )</b>;
116                 */
117                CKEDITOR.replace = function( elementOrIdOrName, config )
118                {
119                        return createInstance( elementOrIdOrName, config, CKEDITOR.editor.replace );
120                };
121
122                /**
123                 * Creates a new editor instance inside a specific DOM element.
124                 * @param {Object|String} elementOrId The DOM element or its ID.
125                 * @param {Object} [config] The specific configurations to apply to this
126                 *              editor instance. Configurations set here will override global CKEditor
127                 *              settings.
128                 * @returns {CKEDITOR.editor} The editor instance created.
129                 * @example
130                 * &lt;div id="editorSpace"&gt;&lt:/div&gt;
131                 * ...
132                 * <b>CKEDITOR.appendTo( 'editorSpace' )</b>;
133                 */
134                CKEDITOR.appendTo = function( elementOrId, config )
135                {
136                        return createInstance( elementOrId, config, CKEDITOR.editor.appendTo );
137                };
138
139                /**
140                 * @ignore
141                 * Documented at ckeditor.js.
142                 */
143                CKEDITOR.add = function( editor )
144                {
145                        // For now, just put the editor in the pending list. It will be
146                        // processed as soon as the full code gets loaded.
147                        var pending = this._.pending || ( this._.pending = [] );
148                        pending.push( editor );
149                };
150
151                /**
152                 * Replace all &lt;textarea&gt; elements available in the document with
153                 * editor instances.
154                 * @example
155                 * // Replace all &lt;textarea&gt; elements in the page.
156                 * CKEDITOR.replaceAll();
157                 * @example
158                 * // Replace all &lt;textarea class="myClassName"&gt; elements in the page.
159                 * CKEDITOR.replaceAll( 'myClassName' );
160                 * @example
161                 * // Selectively replace &lt;textarea&gt; elements, based on custom assertions.
162                 * CKEDITOR.replaceAll( function( textarea, config )
163                 *     {
164                 *         // Custom code to evaluate the replace, returning false
165                 *         // if it must not be done.
166                 *         // It also passes the "config" parameter, so the
167                 *         // developer can customize the instance.
168                 *     } );
169                 */
170                CKEDITOR.replaceAll = function()
171                {
172                        var textareas = document.getElementsByTagName( 'textarea' );
173
174                        for ( var i = 0 ; i < textareas.length ; i++ )
175                        {
176                                var config = null;
177                                var textarea = textareas[i];
178                                var name = textarea.name;
179
180                                // The "name" and/or "id" attribute must exist.
181                                if ( !textarea.name && !textarea.id )
182                                        continue;
183
184                                if ( typeof arguments[0] == 'string' )
185                                {
186                                        // The textarea class name could be passed as the function
187                                        // parameter.
188
189                                        var classRegex = new RegExp( '(?:^| )' + arguments[0] + '(?:$| )' );
190
191                                        if ( !classRegex.test( textarea.className ) )
192                                                continue;
193                                }
194                                else if ( typeof arguments[0] == 'function' )
195                                {
196                                        // An assertion function could be passed as the function parameter.
197                                        // It must explicitly return "false" to ignore a specific <textarea>.
198                                        config = {};
199                                        if ( arguments[0]( textarea, config ) === false )
200                                                continue;
201                                }
202
203                                this.replace( textarea, config );
204                        }
205                };
206
207                (function()
208                {
209                        var onload = function()
210                        {
211                                var loadFullCore = CKEDITOR.loadFullCore,
212                                        loadFullCoreTimeout = CKEDITOR.loadFullCoreTimeout;
213
214                                // Replace all textareas with the default class name.
215                                if ( CKEDITOR.replaceByClassEnabled )
216                                        CKEDITOR.replaceAll( CKEDITOR.replaceClass );
217
218                                CKEDITOR.status = 'basic_ready';
219
220                                if ( loadFullCore && loadFullCore._load )
221                                        loadFullCore();
222                                else if ( loadFullCoreTimeout )
223                                {
224                                        setTimeout( function()
225                                                {
226                                                        if ( CKEDITOR.loadFullCore )
227                                                                CKEDITOR.loadFullCore();
228                                                }
229                                                , loadFullCoreTimeout * 1000 );
230                                }
231                        };
232
233                        if ( window.addEventListener )
234                                window.addEventListener( 'load', onload, false );
235                        else if ( window.attachEvent )
236                                window.attachEvent( 'onload', onload );
237                })();
238
239                CKEDITOR.status = 'basic_loaded';
240        })();
241}
Note: See TracBrowser for help on using the repository browser.