Ticket #3855: 3855_3.patch

File 3855_3.patch, 4.1 KB (added by Wiktor Walc, 15 years ago)
  • _source/core/editor.js

     
    113113                var skin = editor.config.skin.split( ',' ),
    114114                        skinName = skin[ 0 ],
    115115                        skinPath = CKEDITOR.getUrl( skin[ 1 ] || (
    116                                 '_source/' +    // %REMOVE_LINE%
     116                                '_source/' +    // @Packager.RemoveLine
    117117                                'skins/' + skinName + '/' ) );
    118118
    119119                editor.skinName = skinName;
  • _source/core/lang.js

     
    100100                        if ( !this[ languageCode ] )
    101101                        {
    102102                                CKEDITOR.scriptLoader.load( CKEDITOR.getUrl(
    103                                         '_source/' +    // %REMOVE_LINE%
     103                                        '_source/' +    // @Packager.RemoveLine
    104104                                        'lang/' + languageCode + '.js' ),
    105105                                        function()
    106106                                                {
  • _source/core/plugins.js

     
    1515 * @example
    1616 */
    1717CKEDITOR.plugins = new CKEDITOR.resourceManager(
    18         '_source/' +    // %REMOVE_LINE%
     18        '_source/' +    // @Packager.RemoveLine
    1919        'plugins/', 'plugin' );
    2020
    2121// PACKAGER_RENAME( CKEDITOR.plugins )
  • _source/core/skins.js

     
    135135                        skinDefinition.skinPath = paths[ skinName ]
    136136                                || ( paths[ skinName ] =
    137137                                                CKEDITOR.getUrl(
    138                                                         '_source/' +    // %REMOVE_LINE%
     138                                                        '_source/' +    // @Packager.RemoveLine
    139139                                                        'skins/' + skinName + '/' ) );
    140140                },
    141141
  • _source/core/themes.js

     
    1515 * @example
    1616 */
    1717CKEDITOR.themes = new CKEDITOR.resourceManager(
    18         '_source/'+             // %REMOVE_LINE%
     18        '_source/'+             // @Packager.RemoveLine
    1919        'themes/', 'theme' );
  • _source/plugins/smiley/plugin.js

     
    3030 * config.smiley_path = '/images/smileys/';
    3131 */
    3232CKEDITOR.config.smiley_path = CKEDITOR.basePath +
    33         '_source/' +            // %REMOVE_LINE%
     33        '_source/' +            // @Packager.RemoveLine
    3434        'plugins/smiley/images/';
    3535
    3636/**
  • _source/plugins/templates/plugin.js

     
    8585CKEDITOR.config.templates_files =
    8686        [
    8787                CKEDITOR.getUrl(
    88                         '_source/' + // %REMOVE_LINE%
     88                        '_source/' + // @Packager.RemoveLine
    8989                        'plugins/templates/templates/default.js' )
    9090        ];
    9191
  • _source/plugins/uicolor/dialogs/uicolor.js

     
    3737                onLoad : function( event )
    3838                {
    3939                        var url = CKEDITOR.getUrl(
    40                                         '_source/' + // %REMOVE_LINE%
     40                                        '_source/' + // @Packager.RemoveLine
    4141                                        'plugins/uicolor/yui/'
    4242                                );
    4343
  • _source/plugins/uicolor/plugin.js

     
    2424
    2525                // Load YUI js files.
    2626                CKEDITOR.scriptLoader.load( CKEDITOR.getUrl(
    27                         '_source/' + // %REMOVE_LINE%
     27                        '_source/' + // @Packager.RemoveLine
    2828                        'plugins/uicolor/yui/yui.js'
    2929                ));
    3030
    3131                // Load YUI css files.
    3232                editor.element.getDocument().appendStyleSheet( CKEDITOR.getUrl(
    33                                 '_source/' + // %REMOVE_LINE%
     33                                '_source/' + // @Packager.RemoveLine
    3434                                'plugins/uicolor/yui/assets/yui.css'
    3535                ));
    3636        }
© 2003 – 2022, CKSource sp. z o.o. sp.k. All rights reserved. | Terms of use | Privacy policy