From 7adcb81e4f83f98c468889aaa5a85558ba88c770 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Isma=C3=ABl=20Bouya?= Date: Mon, 25 Jan 2016 17:45:33 +0100 Subject: Initial commit --- sources/plugins/specialchar/plugin.js | 83 +++++++++++++++++++++++++++++++++++ 1 file changed, 83 insertions(+) create mode 100644 sources/plugins/specialchar/plugin.js (limited to 'sources/plugins/specialchar/plugin.js') diff --git a/sources/plugins/specialchar/plugin.js b/sources/plugins/specialchar/plugin.js new file mode 100644 index 00000000..2140a9a9 --- /dev/null +++ b/sources/plugins/specialchar/plugin.js @@ -0,0 +1,83 @@ +/** + * @license Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. + * For licensing, see LICENSE.md or http://ckeditor.com/license + */ + +/** + * @fileOverview Special Character plugin + */ + +CKEDITOR.plugins.add( 'specialchar', { + // List of available localizations. + // jscs:disable + availableLangs: { af:1,ar:1,bg:1,ca:1,cs:1,cy:1,da:1,de:1,el:1,en:1,'en-gb':1,eo:1,es:1,et:1,eu:1,fa:1,fi:1,fr:1,'fr-ca':1,gl:1,he:1,hr:1,hu:1,id:1,it:1,ja:1,km:1,ko:1,ku:1,lt:1,lv:1,nb:1,nl:1,no:1,pl:1,pt:1,'pt-br':1,ru:1,si:1,sk:1,sl:1,sq:1,sv:1,th:1,tr:1,tt:1,ug:1,uk:1,vi:1,zh:1,'zh-cn':1 }, + lang: 'af,ar,bg,bn,bs,ca,cs,cy,da,de,el,en,en-au,en-ca,en-gb,eo,es,et,eu,fa,fi,fo,fr,fr-ca,gl,gu,he,hi,hr,hu,id,is,it,ja,ka,km,ko,ku,lt,lv,mk,mn,ms,nb,nl,no,pl,pt,pt-br,ro,ru,si,sk,sl,sq,sr,sr-latn,sv,th,tr,tt,ug,uk,vi,zh,zh-cn', // %REMOVE_LINE_CORE% + // jscs:enable + requires: 'dialog', + icons: 'specialchar', // %REMOVE_LINE_CORE% + hidpi: true, // %REMOVE_LINE_CORE% + init: function( editor ) { + var pluginName = 'specialchar', + plugin = this; + + // Register the dialog. + CKEDITOR.dialog.add( pluginName, this.path + 'dialogs/specialchar.js' ); + + editor.addCommand( pluginName, { + exec: function() { + var langCode = editor.langCode; + langCode = + plugin.availableLangs[ langCode ] ? langCode : + plugin.availableLangs[ langCode.replace( /-.*/, '' ) ] ? langCode.replace( /-.*/, '' ) : + 'en'; + + CKEDITOR.scriptLoader.load( CKEDITOR.getUrl( plugin.path + 'dialogs/lang/' + langCode + '.js' ), function() { + CKEDITOR.tools.extend( editor.lang.specialchar, plugin.langEntries[ langCode ] ); + editor.openDialog( pluginName ); + } ); + }, + modes: { wysiwyg: 1 }, + canUndo: false + } ); + + // Register the toolbar button. + editor.ui.addButton && editor.ui.addButton( 'SpecialChar', { + label: editor.lang.specialchar.toolbar, + command: pluginName, + toolbar: 'insert,50' + } ); + } +} ); + +/** + * The list of special characters visible in the "Special Character" dialog window. + * + * config.specialChars = [ '"', '’', [ '&custom;', 'Custom label' ] ]; + * config.specialChars = config.specialChars.concat( [ '"', [ '’', 'Custom label' ] ] ); + * + * @cfg + * @member CKEDITOR.config + */ +CKEDITOR.config.specialChars = [ + '!', '"', '#', '$', '%', '&', "'", '(', ')', '*', '+', '-', '.', '/', + '0', '1', '2', '3', '4', '5', '6', '7', '8', '9', ':', ';', + '<', '=', '>', '?', '@', + 'A', 'B', 'C', 'D', 'E', 'F', 'G', 'H', 'I', 'J', 'K', 'L', 'M', 'N', 'O', + 'P', 'Q', 'R', 'S', 'T', 'U', 'V', 'W', 'X', 'Y', 'Z', + '[', ']', '^', '_', '`', + 'a', 'b', 'c', 'd', 'e', 'f', 'g', 'h', 'i', 'j', 'k', 'l', 'm', 'n', 'o', 'p', + 'q', 'r', 's', 't', 'u', 'v', 'w', 'x', 'y', 'z', + '{', '|', '}', '~', + '€', '‘', '’', '“', '”', '–', '—', '¡', '¢', '£', + '¤', '¥', '¦', '§', '¨', '©', 'ª', '«', '¬', '®', '¯', + '°', '²', '³', '´', 'µ', '¶', '·', '¸', '¹', 'º', '»', + '¼', '½', '¾', '¿', 'À', 'Á', 'Â', 'Ã', 'Ä', 'Å', + 'Æ', 'Ç', 'È', 'É', 'Ê', 'Ë', 'Ì', 'Í', 'Î', 'Ï', + 'Ð', 'Ñ', 'Ò', 'Ó', 'Ô', 'Õ', 'Ö', '×', 'Ø', 'Ù', + 'Ú', 'Û', 'Ü', 'Ý', 'Þ', 'ß', 'à', 'á', 'â', 'ã', + 'ä', 'å', 'æ', 'ç', 'è', 'é', 'ê', 'ë', 'ì', 'í', + 'î', 'ï', 'ð', 'ñ', 'ò', 'ó', 'ô', 'õ', 'ö', '÷', + 'ø', 'ù', 'ú', 'û', 'ü', 'ý', 'þ', 'ÿ', 'Œ', 'œ', + 'Ŵ', 'Ŷ', 'ŵ', 'ŷ', '‚', '‛', '„', '…', '™', '►', '•', + '→', '⇒', '⇔', '♦', '≈' +]; -- cgit v1.2.3