plugin.js 4.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283
  1. /**
  2. * @license Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved.
  3. * For licensing, see LICENSE.md or http://ckeditor.com/license
  4. */
  5. /**
  6. * @fileOverview Special Character plugin
  7. */
  8. CKEDITOR.plugins.add( 'specialchar', {
  9. // List of available localizations.
  10. // jscs:disable
  11. 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,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 },
  12. 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%
  13. // jscs:enable
  14. requires: 'dialog',
  15. icons: 'specialchar', // %REMOVE_LINE_CORE%
  16. hidpi: true, // %REMOVE_LINE_CORE%
  17. init: function( editor ) {
  18. var pluginName = 'specialchar',
  19. plugin = this;
  20. // Register the dialog.
  21. CKEDITOR.dialog.add( pluginName, this.path + 'dialogs/specialchar.js' );
  22. editor.addCommand( pluginName, {
  23. exec: function() {
  24. var langCode = editor.langCode;
  25. langCode =
  26. plugin.availableLangs[ langCode ] ? langCode :
  27. plugin.availableLangs[ langCode.replace( /-.*/, '' ) ] ? langCode.replace( /-.*/, '' ) :
  28. 'en';
  29. CKEDITOR.scriptLoader.load( CKEDITOR.getUrl( plugin.path + 'dialogs/lang/' + langCode + '.js' ), function() {
  30. CKEDITOR.tools.extend( editor.lang.specialchar, plugin.langEntries[ langCode ] );
  31. editor.openDialog( pluginName );
  32. } );
  33. },
  34. modes: { wysiwyg: 1 },
  35. canUndo: false
  36. } );
  37. // Register the toolbar button.
  38. editor.ui.addButton && editor.ui.addButton( 'SpecialChar', {
  39. label: editor.lang.specialchar.toolbar,
  40. command: pluginName,
  41. toolbar: 'insert,50'
  42. } );
  43. }
  44. } );
  45. /**
  46. * The list of special characters visible in the "Special Character" dialog window.
  47. *
  48. * config.specialChars = [ '"', '’', [ '&custom;', 'Custom label' ] ];
  49. * config.specialChars = config.specialChars.concat( [ '"', [ '’', 'Custom label' ] ] );
  50. *
  51. * @cfg
  52. * @member CKEDITOR.config
  53. */
  54. CKEDITOR.config.specialChars = [
  55. '!', '"', '#', '$', '%', '&', "'", '(', ')', '*', '+', '-', '.', '/',
  56. '0', '1', '2', '3', '4', '5', '6', '7', '8', '9', ':', ';',
  57. '<', '=', '>', '?', '@',
  58. 'A', 'B', 'C', 'D', 'E', 'F', 'G', 'H', 'I', 'J', 'K', 'L', 'M', 'N', 'O',
  59. 'P', 'Q', 'R', 'S', 'T', 'U', 'V', 'W', 'X', 'Y', 'Z',
  60. '[', ']', '^', '_', '`',
  61. 'a', 'b', 'c', 'd', 'e', 'f', 'g', 'h', 'i', 'j', 'k', 'l', 'm', 'n', 'o', 'p',
  62. 'q', 'r', 's', 't', 'u', 'v', 'w', 'x', 'y', 'z',
  63. '{', '|', '}', '~',
  64. '€', '‘', '’', '“', '”', '–', '—', '¡', '¢', '£',
  65. '¤', '¥', '¦', '§', '¨', '©', 'ª', '«', '¬', '®', '¯',
  66. '°', '²', '³', '´', 'µ', '¶', '·', '¸', '¹', 'º', '»',
  67. '¼', '½', '¾', '¿', 'À', 'Á', 'Â', 'Ã', 'Ä', 'Å',
  68. 'Æ', 'Ç', 'È', 'É', 'Ê', 'Ë', 'Ì', 'Í', 'Î', 'Ï',
  69. 'Ð', 'Ñ', 'Ò', 'Ó', 'Ô', 'Õ', 'Ö', '×', 'Ø', 'Ù',
  70. 'Ú', 'Û', 'Ü', 'Ý', 'Þ', 'ß', 'à', 'á', 'â', 'ã',
  71. 'ä', 'å', 'æ', 'ç', 'è', 'é', 'ê', 'ë', 'ì', 'í',
  72. 'î', 'ï', 'ð', 'ñ', 'ò', 'ó', 'ô', 'õ', 'ö', '÷',
  73. 'ø', 'ù', 'ú', 'û', 'ü', 'ý', 'þ', 'ÿ', 'Œ', 'œ',
  74. 'Ŵ', '&#374', '&#373', 'ŷ', '‚', '‛', '„', '…', '™', '►', '•',
  75. '→', '⇒', '⇔', '♦', '≈'
  76. ];