3

Django-ckeditor-updated を使用して CMS を構築しており、Ckeditor YouTube プラグイン ( http://ckeditor.com/addon/youtube ) を使用しようとしていますが、ツールバーに表示されません。

プラグインを ckeditor プラグイン フォルダーにダウンロードし、編集して youtube プラグインを表示しましたが、機能しませんCKEDITOR_CONFIGSsettings.py何か案は?

CKEDITOR_CONFIGS = {
'default': {
    'toolbar': 'CMS',
    'toolbar_CMS': [
        {
            'name': 'basicstyles',
            'groups': ['basicstyles', 'cleanup'],
            'items': ['Bold', 'Italic', 'Underline', '-', 'RemoveFormat']
        },
        {
            'name': 'paragraph',
            'groups': ['list', 'indent', 'blocks'],
            'items': ['NumberedList', 'BulletedList', '-', 'Outdent', 'Indent', '-', 'Blockquote']
        },
        {
            'name': 'links',
            'items': ['Link', 'Unlink']
        },
        {
            'name': 'insert',
            'items': ['Image', 'HorizontalRule', 'Table', 'Iframe', ]
        },
        {
            'name': 'colors',
            'items': ['TextColor', 'BGColor']
        },
        {
            'name': 'youtube',
            'items': ['youtube',]
        }
    ],
    'height': 400,
    'width': '100%',
    'allowedContent': True,
    'uiColor': '#f0f0f0',
    'extraPlugins': 'link,iframe,colorbutton,autogrow,youtube',
    'autoGrow_maxHeight': 800,
    'autoGrow_minHeight': 400,
    'removePlugins': 'resize',
    'removeButtons': None,
    'contentsCss': ['/static/css/news_show.css', '/static/css/cke.css'],
},
}
4

2 に答える 2

5

それはただのばかげた間違いでした。

    {
        'name': 'youtube',
        'items': ['Youtube',]
    }

YouTube アイテムの y は大文字にする必要があります。

于 2014-08-03T18:49:04.967 に答える