Updates
This commit is contained in:
@ -1,39 +1,39 @@
|
||||
/**
|
||||
* @license Copyright (c) 2003-2014, CKSource - Frederico Knabben. All rights reserved.
|
||||
* For licensing, see LICENSE.md or http://ckeditor.com/license
|
||||
*/
|
||||
|
||||
/**
|
||||
* This file was added automatically by CKEditor builder.
|
||||
* You may re-use it at any time to build CKEditor again.
|
||||
*
|
||||
* If you would like to build CKEditor online again
|
||||
* (for example to upgrade), visit one the following links:
|
||||
*
|
||||
* (1) http://ckeditor.com/builder
|
||||
* Visit online builder to build CKEditor from scratch.
|
||||
*
|
||||
* (2) http://ckeditor.com/builder/0bef89aa099a8362a6a7ff84270ff668
|
||||
* Visit online builder to build CKEditor, starting with the same setup as before.
|
||||
*
|
||||
* (3) http://ckeditor.com/builder/download/0bef89aa099a8362a6a7ff84270ff668
|
||||
* Straight download link to the latest version of CKEditor (Optimized) with the same setup as before.
|
||||
*
|
||||
* NOTE:
|
||||
* This file is not used by CKEditor, you may remove it.
|
||||
* Changing this file will not change your CKEditor configuration.
|
||||
*/
|
||||
|
||||
var CKBUILDER_CONFIG = {
|
||||
skin: 'moono',
|
||||
preset: 'basic',
|
||||
ignore: [
|
||||
'dev',
|
||||
'.gitignore',
|
||||
'.gitattributes',
|
||||
'README.md',
|
||||
'.mailmap'
|
||||
],
|
||||
/**
|
||||
* @license Copyright (c) 2003-2014, CKSource - Frederico Knabben. All rights reserved.
|
||||
* For licensing, see LICENSE.md or http://ckeditor.com/license
|
||||
*/
|
||||
|
||||
/**
|
||||
* This file was added automatically by CKEditor builder.
|
||||
* You may re-use it at any time to build CKEditor again.
|
||||
*
|
||||
* If you would like to build CKEditor online again
|
||||
* (for example to upgrade), visit one the following links:
|
||||
*
|
||||
* (1) http://ckeditor.com/builder
|
||||
* Visit online builder to build CKEditor from scratch.
|
||||
*
|
||||
* (2) http://ckeditor.com/builder/0bef89aa099a8362a6a7ff84270ff668
|
||||
* Visit online builder to build CKEditor, starting with the same setup as before.
|
||||
*
|
||||
* (3) http://ckeditor.com/builder/download/0bef89aa099a8362a6a7ff84270ff668
|
||||
* Straight download link to the latest version of CKEditor (Optimized) with the same setup as before.
|
||||
*
|
||||
* NOTE:
|
||||
* This file is not used by CKEditor, you may remove it.
|
||||
* Changing this file will not change your CKEditor configuration.
|
||||
*/
|
||||
|
||||
var CKBUILDER_CONFIG = {
|
||||
skin: 'moono',
|
||||
preset: 'basic',
|
||||
ignore: [
|
||||
'dev',
|
||||
'.gitignore',
|
||||
'.gitattributes',
|
||||
'README.md',
|
||||
'.mailmap'
|
||||
],
|
||||
plugins : {
|
||||
'autogrow' : 1,
|
||||
'autosave' : 1,
|
||||
|
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
@ -1,71 +1,71 @@
|
||||
/*
|
||||
* @file HTML Buttons plugin for CKEditor
|
||||
* Copyright (C) 2012 Alfonso Mart<72>nez de Lizarrondo
|
||||
* A simple plugin to help create custom buttons to insert HTML blocks
|
||||
*/
|
||||
|
||||
CKEDITOR.plugins.add( 'htmlbuttons',
|
||||
{
|
||||
init : function( editor )
|
||||
{
|
||||
var buttonsConfig = editor.config.htmlbuttons;
|
||||
if (!buttonsConfig)
|
||||
return;
|
||||
|
||||
function createCommand( definition )
|
||||
{
|
||||
return {
|
||||
exec: function( editor ) {
|
||||
editor.insertHtml( definition.html );
|
||||
}
|
||||
};
|
||||
}
|
||||
|
||||
// Create the command for each button
|
||||
for(var i=0; i<buttonsConfig.length; i++)
|
||||
{
|
||||
var button = buttonsConfig[ i ];
|
||||
var commandName = button.name;
|
||||
editor.addCommand( commandName, createCommand(button, editor) );
|
||||
|
||||
editor.ui.addButton( commandName,
|
||||
{
|
||||
label : button.title,
|
||||
command : commandName,
|
||||
icon : this.path + button.icon
|
||||
});
|
||||
}
|
||||
} //Init
|
||||
|
||||
} );
|
||||
|
||||
/**
|
||||
* An array of buttons to add to the toolbar.
|
||||
* Each button is an object with these properties:
|
||||
* name: The name of the command and the button (the one to use in the toolbar configuration)
|
||||
* icon: The icon to use. Place them in the plugin folder
|
||||
* html: The HTML to insert when the user clicks the button
|
||||
* title: Title that appears while hovering the button
|
||||
*
|
||||
* Default configuration with some sample buttons:
|
||||
*/
|
||||
CKEDITOR.config.htmlbuttons = [
|
||||
{
|
||||
name:'button1',
|
||||
icon:'icon1.png',
|
||||
html:'<a href="http://www.google.com">Search something</a>',
|
||||
title:'A link to Google'
|
||||
},
|
||||
{
|
||||
name:'button2',
|
||||
icon:'icon2.png',
|
||||
html:'<table style="min-width:200px"><tr><td> </td><td> </td></tr><tr><td> </td><td> </td></tr></table>',
|
||||
title:'A simple table'
|
||||
},
|
||||
{
|
||||
name:'button3',
|
||||
icon:'icon3.png',
|
||||
html:'<ol><li>Item 1 <ol><li>Sub item 1</li><li>Sub item 2</li></ol></li></ol>',
|
||||
title:'A nested list'
|
||||
}
|
||||
/*
|
||||
* @file HTML Buttons plugin for CKEditor
|
||||
* Copyright (C) 2012 Alfonso Mart<72>nez de Lizarrondo
|
||||
* A simple plugin to help create custom buttons to insert HTML blocks
|
||||
*/
|
||||
|
||||
CKEDITOR.plugins.add( 'htmlbuttons',
|
||||
{
|
||||
init : function( editor )
|
||||
{
|
||||
var buttonsConfig = editor.config.htmlbuttons;
|
||||
if (!buttonsConfig)
|
||||
return;
|
||||
|
||||
function createCommand( definition )
|
||||
{
|
||||
return {
|
||||
exec: function( editor ) {
|
||||
editor.insertHtml( definition.html );
|
||||
}
|
||||
};
|
||||
}
|
||||
|
||||
// Create the command for each button
|
||||
for(var i=0; i<buttonsConfig.length; i++)
|
||||
{
|
||||
var button = buttonsConfig[ i ];
|
||||
var commandName = button.name;
|
||||
editor.addCommand( commandName, createCommand(button, editor) );
|
||||
|
||||
editor.ui.addButton( commandName,
|
||||
{
|
||||
label : button.title,
|
||||
command : commandName,
|
||||
icon : this.path + button.icon
|
||||
});
|
||||
}
|
||||
} //Init
|
||||
|
||||
} );
|
||||
|
||||
/**
|
||||
* An array of buttons to add to the toolbar.
|
||||
* Each button is an object with these properties:
|
||||
* name: The name of the command and the button (the one to use in the toolbar configuration)
|
||||
* icon: The icon to use. Place them in the plugin folder
|
||||
* html: The HTML to insert when the user clicks the button
|
||||
* title: Title that appears while hovering the button
|
||||
*
|
||||
* Default configuration with some sample buttons:
|
||||
*/
|
||||
CKEDITOR.config.htmlbuttons = [
|
||||
{
|
||||
name:'button1',
|
||||
icon:'icon1.png',
|
||||
html:'<a href="http://www.google.com">Search something</a>',
|
||||
title:'A link to Google'
|
||||
},
|
||||
{
|
||||
name:'button2',
|
||||
icon:'icon2.png',
|
||||
html:'<table style="min-width:200px"><tr><td> </td><td> </td></tr><tr><td> </td><td> </td></tr></table>',
|
||||
title:'A simple table'
|
||||
},
|
||||
{
|
||||
name:'button3',
|
||||
icon:'icon3.png',
|
||||
html:'<ol><li>Item 1 <ol><li>Sub item 1</li><li>Sub item 2</li></ol></li></ol>',
|
||||
title:'A nested list'
|
||||
}
|
||||
];
|
@ -1,21 +1,21 @@
|
||||
(function(){
|
||||
//Section 1 : Code to execute when the toolbar button is pressed
|
||||
var a= {
|
||||
exec:function(editor){
|
||||
editor.insertHtml('[[MORE]]');
|
||||
}
|
||||
},
|
||||
|
||||
//Section 2 : Create the button and add the functionality to it
|
||||
b='readmorebtn';
|
||||
CKEDITOR.plugins.add(b,{
|
||||
init:function(editor){
|
||||
editor.addCommand(b,a);
|
||||
editor.ui.addButton("readmorebtn",{
|
||||
label:'Insert "Read more" link',
|
||||
icon:this.path+"readmore.png",
|
||||
command:b
|
||||
});
|
||||
}
|
||||
});
|
||||
(function(){
|
||||
//Section 1 : Code to execute when the toolbar button is pressed
|
||||
var a= {
|
||||
exec:function(editor){
|
||||
editor.insertHtml('[[MORE]]');
|
||||
}
|
||||
},
|
||||
|
||||
//Section 2 : Create the button and add the functionality to it
|
||||
b='readmorebtn';
|
||||
CKEDITOR.plugins.add(b,{
|
||||
init:function(editor){
|
||||
editor.addCommand(b,a);
|
||||
editor.ui.addButton("readmorebtn",{
|
||||
label:'Insert "Read more" link',
|
||||
icon:this.path+"readmore.png",
|
||||
command:b
|
||||
});
|
||||
}
|
||||
});
|
||||
})();
|
@ -1,111 +1,111 @@
|
||||
/**
|
||||
* Copyright (c) 2003-2014, CKSource - Frederico Knabben. All rights reserved.
|
||||
* For licensing, see LICENSE.md or http://ckeditor.com/license
|
||||
*/
|
||||
|
||||
// This file contains style definitions that can be used by CKEditor plugins.
|
||||
//
|
||||
// The most common use for it is the "stylescombo" plugin, which shows a combo
|
||||
// in the editor toolbar, containing all styles. Other plugins instead, like
|
||||
// the div plugin, use a subset of the styles on their feature.
|
||||
//
|
||||
// If you don't have plugins that depend on this file, you can simply ignore it.
|
||||
// Otherwise it is strongly recommended to customize this file to match your
|
||||
// website requirements and design properly.
|
||||
|
||||
CKEDITOR.stylesSet.add( 'default', [
|
||||
/* Block Styles */
|
||||
|
||||
// These styles are already available in the "Format" combo ("format" plugin),
|
||||
// so they are not needed here by default. You may enable them to avoid
|
||||
// placing the "Format" combo in the toolbar, maintaining the same features.
|
||||
/*
|
||||
{ name: 'Paragraph', element: 'p' },
|
||||
{ name: 'Heading 1', element: 'h1' },
|
||||
{ name: 'Heading 2', element: 'h2' },
|
||||
{ name: 'Heading 3', element: 'h3' },
|
||||
{ name: 'Heading 4', element: 'h4' },
|
||||
{ name: 'Heading 5', element: 'h5' },
|
||||
{ name: 'Heading 6', element: 'h6' },
|
||||
{ name: 'Preformatted Text',element: 'pre' },
|
||||
{ name: 'Address', element: 'address' },
|
||||
*/
|
||||
|
||||
{ name: 'Italic Title', element: 'h2', styles: { 'font-style': 'italic' } },
|
||||
{ name: 'Subtitle', element: 'h3', styles: { 'color': '#aaa', 'font-style': 'italic' } },
|
||||
{
|
||||
name: 'Special Container',
|
||||
element: 'div',
|
||||
styles: {
|
||||
padding: '5px 10px',
|
||||
background: '#eee',
|
||||
border: '1px solid #ccc'
|
||||
}
|
||||
},
|
||||
|
||||
/* Inline Styles */
|
||||
|
||||
// These are core styles available as toolbar buttons. You may opt enabling
|
||||
// some of them in the Styles combo, removing them from the toolbar.
|
||||
// (This requires the "stylescombo" plugin)
|
||||
/*
|
||||
{ name: 'Strong', element: 'strong', overrides: 'b' },
|
||||
{ name: 'Emphasis', element: 'em' , overrides: 'i' },
|
||||
{ name: 'Underline', element: 'u' },
|
||||
{ name: 'Strikethrough', element: 'strike' },
|
||||
{ name: 'Subscript', element: 'sub' },
|
||||
{ name: 'Superscript', element: 'sup' },
|
||||
*/
|
||||
|
||||
{ name: 'Marker', element: 'span', attributes: { 'class': 'marker' } },
|
||||
|
||||
{ name: 'Big', element: 'big' },
|
||||
{ name: 'Small', element: 'small' },
|
||||
{ name: 'Typewriter', element: 'tt' },
|
||||
|
||||
{ name: 'Computer Code', element: 'code' },
|
||||
{ name: 'Keyboard Phrase', element: 'kbd' },
|
||||
{ name: 'Sample Text', element: 'samp' },
|
||||
{ name: 'Variable', element: 'var' },
|
||||
|
||||
{ name: 'Deleted Text', element: 'del' },
|
||||
{ name: 'Inserted Text', element: 'ins' },
|
||||
|
||||
{ name: 'Cited Work', element: 'cite' },
|
||||
{ name: 'Inline Quotation', element: 'q' },
|
||||
|
||||
{ name: 'Language: RTL', element: 'span', attributes: { 'dir': 'rtl' } },
|
||||
{ name: 'Language: LTR', element: 'span', attributes: { 'dir': 'ltr' } },
|
||||
|
||||
/* Object Styles */
|
||||
|
||||
{
|
||||
name: 'Styled image (left)',
|
||||
element: 'img',
|
||||
attributes: { 'class': 'left' }
|
||||
},
|
||||
|
||||
{
|
||||
name: 'Styled image (right)',
|
||||
element: 'img',
|
||||
attributes: { 'class': 'right' }
|
||||
},
|
||||
|
||||
{
|
||||
name: 'Compact table',
|
||||
element: 'table',
|
||||
attributes: {
|
||||
cellpadding: '5',
|
||||
cellspacing: '0',
|
||||
border: '1',
|
||||
bordercolor: '#ccc'
|
||||
},
|
||||
styles: {
|
||||
'border-collapse': 'collapse'
|
||||
}
|
||||
},
|
||||
|
||||
{ name: 'Borderless Table', element: 'table', styles: { 'border-style': 'hidden', 'background-color': '#E6E6FA' } },
|
||||
{ name: 'Square Bulleted List', element: 'ul', styles: { 'list-style-type': 'square' } }
|
||||
] );
|
||||
|
||||
/**
|
||||
* Copyright (c) 2003-2014, CKSource - Frederico Knabben. All rights reserved.
|
||||
* For licensing, see LICENSE.md or http://ckeditor.com/license
|
||||
*/
|
||||
|
||||
// This file contains style definitions that can be used by CKEditor plugins.
|
||||
//
|
||||
// The most common use for it is the "stylescombo" plugin, which shows a combo
|
||||
// in the editor toolbar, containing all styles. Other plugins instead, like
|
||||
// the div plugin, use a subset of the styles on their feature.
|
||||
//
|
||||
// If you don't have plugins that depend on this file, you can simply ignore it.
|
||||
// Otherwise it is strongly recommended to customize this file to match your
|
||||
// website requirements and design properly.
|
||||
|
||||
CKEDITOR.stylesSet.add( 'default', [
|
||||
/* Block Styles */
|
||||
|
||||
// These styles are already available in the "Format" combo ("format" plugin),
|
||||
// so they are not needed here by default. You may enable them to avoid
|
||||
// placing the "Format" combo in the toolbar, maintaining the same features.
|
||||
/*
|
||||
{ name: 'Paragraph', element: 'p' },
|
||||
{ name: 'Heading 1', element: 'h1' },
|
||||
{ name: 'Heading 2', element: 'h2' },
|
||||
{ name: 'Heading 3', element: 'h3' },
|
||||
{ name: 'Heading 4', element: 'h4' },
|
||||
{ name: 'Heading 5', element: 'h5' },
|
||||
{ name: 'Heading 6', element: 'h6' },
|
||||
{ name: 'Preformatted Text',element: 'pre' },
|
||||
{ name: 'Address', element: 'address' },
|
||||
*/
|
||||
|
||||
{ name: 'Italic Title', element: 'h2', styles: { 'font-style': 'italic' } },
|
||||
{ name: 'Subtitle', element: 'h3', styles: { 'color': '#aaa', 'font-style': 'italic' } },
|
||||
{
|
||||
name: 'Special Container',
|
||||
element: 'div',
|
||||
styles: {
|
||||
padding: '5px 10px',
|
||||
background: '#eee',
|
||||
border: '1px solid #ccc'
|
||||
}
|
||||
},
|
||||
|
||||
/* Inline Styles */
|
||||
|
||||
// These are core styles available as toolbar buttons. You may opt enabling
|
||||
// some of them in the Styles combo, removing them from the toolbar.
|
||||
// (This requires the "stylescombo" plugin)
|
||||
/*
|
||||
{ name: 'Strong', element: 'strong', overrides: 'b' },
|
||||
{ name: 'Emphasis', element: 'em' , overrides: 'i' },
|
||||
{ name: 'Underline', element: 'u' },
|
||||
{ name: 'Strikethrough', element: 'strike' },
|
||||
{ name: 'Subscript', element: 'sub' },
|
||||
{ name: 'Superscript', element: 'sup' },
|
||||
*/
|
||||
|
||||
{ name: 'Marker', element: 'span', attributes: { 'class': 'marker' } },
|
||||
|
||||
{ name: 'Big', element: 'big' },
|
||||
{ name: 'Small', element: 'small' },
|
||||
{ name: 'Typewriter', element: 'tt' },
|
||||
|
||||
{ name: 'Computer Code', element: 'code' },
|
||||
{ name: 'Keyboard Phrase', element: 'kbd' },
|
||||
{ name: 'Sample Text', element: 'samp' },
|
||||
{ name: 'Variable', element: 'var' },
|
||||
|
||||
{ name: 'Deleted Text', element: 'del' },
|
||||
{ name: 'Inserted Text', element: 'ins' },
|
||||
|
||||
{ name: 'Cited Work', element: 'cite' },
|
||||
{ name: 'Inline Quotation', element: 'q' },
|
||||
|
||||
{ name: 'Language: RTL', element: 'span', attributes: { 'dir': 'rtl' } },
|
||||
{ name: 'Language: LTR', element: 'span', attributes: { 'dir': 'ltr' } },
|
||||
|
||||
/* Object Styles */
|
||||
|
||||
{
|
||||
name: 'Styled image (left)',
|
||||
element: 'img',
|
||||
attributes: { 'class': 'left' }
|
||||
},
|
||||
|
||||
{
|
||||
name: 'Styled image (right)',
|
||||
element: 'img',
|
||||
attributes: { 'class': 'right' }
|
||||
},
|
||||
|
||||
{
|
||||
name: 'Compact table',
|
||||
element: 'table',
|
||||
attributes: {
|
||||
cellpadding: '5',
|
||||
cellspacing: '0',
|
||||
border: '1',
|
||||
bordercolor: '#ccc'
|
||||
},
|
||||
styles: {
|
||||
'border-collapse': 'collapse'
|
||||
}
|
||||
},
|
||||
|
||||
{ name: 'Borderless Table', element: 'table', styles: { 'border-style': 'hidden', 'background-color': '#E6E6FA' } },
|
||||
{ name: 'Square Bulleted List', element: 'ul', styles: { 'list-style-type': 'square' } }
|
||||
] );
|
||||
|
||||
|
Reference in New Issue
Block a user