Diff for /loncom/html/adm/ckeditor/loncapaconfig.js between versions 1.2 and 1.3

version 1.2, 2013/09/15 21:06:19 version 1.3, 2015/03/31 13:45:39
Line 1 Line 1
 CKEDITOR.editorConfig = function (config) {  /**
  /*   * @license Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved.
  FCKConfig.ToolbarSets["Default"] = [   * For licensing, see LICENSE.md or http://ckeditor.com/license
  ['Source','DocProps'],   */
  ['Cut','Copy','Paste','PasteText','PasteWord'],  
  ['Undo','Redo','-','Find','Replace','-','SelectAll','RemoveFormat'],  
  ['Bold','Italic','Underline','StrikeThrough','-','Subscript','Superscript'],  
  ['OrderedList','UnorderedList','-','Outdent','Indent'],  
  ['JustifyLeft','JustifyCenter','JustifyRight','JustifyFull'],  
  ['Link','Unlink','Anchor'],  
  ['Table', 'Rule', 'Smiley','SpecialChar','PageBreak'], // removed 'Image', 'Table' from front  
  ['TextColor','BGColor'],  
  ['Style','FontFormat','FontName','FontSize'],  
  ['FitWindow','-','About']  
  ] ;  
  FCKConfig.LinkUpload = false ;  
  FCKConfig.FlashBrowser = false ;  
  FCKConfig.FlashUpload = false ;  
  //FCKConfig.Plugins.Add('autogrow');  
  //FCKConfig.AutoGrowMax = 500;  
  FCKConfig.IgnoreEmptyParagraphValue = true;  
  FCKConfig.FormatSource = false;  
  FCKConfig.FormatOutput = true;  
  FCKConfig.EnterMode = 'br' ; // p | div | br  
  FCKConfig.ShiftEnterMode = 'p' ; // p | div | br  
  FCKConfig.ImageBrowser = false;  
  */  
   
  config.entities_additional = '';  CKEDITOR.editorConfig = function( config ) {
  config.browserContextMenuOnCtrl = true;      // Define changes to default configuration here.
  config.disableNativeSpellChecker = false;      // For complete reference see:
  //config.enterMode = CKEDITOR.ENTER_BR;      // http://docs.ckeditor.com/#!/api/CKEDITOR.config
  //config.shiftEnterMode = CKEDITOR.ENTER_P;  
       // The toolbar groups arrangement, optimized for two toolbar rows.
  config.ignoreEmptyParagraph = true;      config.toolbarGroups = [
  config.smiley_path = '/adm/lonIcons/';          { name: 'edits',   groups: [ 'undo' ] },
           { name: 'clipboard',   groups: [ 'clipboard' ] },
  config.smiley_descriptions = [          { name: 'editing',     groups: [ 'find', 'selection', 'spellchecker' ] },
     'happy', 'sad', 'wink', 'big smile', 'uncertain', 'raspberry',          { name: 'links' },
     'embarrassed', 'cool', 'glasses', 'plain', 'surprised', 'angry',          { name: 'insert' },
     'crying', 'quiet', 'uncertain', 'kiss', 'sick', 'heart',          { name: 'forms' },
     'rose', 'pizza', 'ninja', 'pirate', 'agree',           { name: 'tools' },
     'disagree', 'angel'];          { name: 'document',       groups: [ 'mode', 'document', 'doctools' ] },
           { name: 'others' },
           { name: 'about' },
           '/',
           { name: 'basicstyles', groups: [ 'basicstyles', 'cleanup' ] },
           { name: 'paragraph',   groups: [ 'list', 'indent', 'blocks', 'align', 'bidi' ] },
           { name: 'styles' },
           { name: 'colors' }
       ];
       
       // config.disableNativeSpellChecker = false;
       // to see the native spellchecker, we need to disable the contextual menu:
       // config.removePlugins = 'contextmenu,tabletools'; // problem: it removes the table tools !
       // see http://dev.ckeditor.com/ticket/12716
       
       config.removePlugins = 'sourcearea';
       
       // Remove some buttons provided by the standard plugins, which are
       // not needed in the Standard(s) toolbar.
       // config.removeButtons = 'spellchecker';
       // NOTE: we might want to disable spell checking to avoid the ads (if only we could use the native spellcheckers)
   
       // Set the most common block elements.
       config.format_tags = 'p;h1;h2;h3;pre';
   
       // Simplify the dialog windows.
       config.removeDialogTabs = 'image:advanced;link:advanced';
       
       
       config.allowedContent = true;
       config.extraPlugins = 'lcm';
       
       config.specialChars = [
           /* upercase greek */
               ["\u0393", "Gamma"], ["\u0394", "Delta"], ["\u0398", "Theta"], ["\u039B", "Lamda"],
               ["\u039E", "Xi"], ["\u03A0", "Pi"], ["\u03A3", "Sigma"], ["\u03A5", "Upsilon"],
               ["\u03A6", "Phi"], ["\u03A7", "Chi"], ["\u03A8", "Psi"], ["\u03A9", "Omega"],
               "", "", "", "", "",
           /* lowercase greek */
               ["\u03B1", "alpha"], ["\u03B2", "beta"], ["\u03B3", "gamma"], ["\u03B4", "delta"],
               ["\u03B5", "epsilon"], ["\u03B6", "zeta"], ["\u03B7", "eta"], ["\u03B8", "theta"],
               ["\u03B9", "iota"], ["\u03BA", "kappa"], ["\u03BB", "lambda"], ["\u03BC", "mu"],
               ["\u03BD", "nu"], ["\u03BE", "xi"], ["\u03BF", "omicron"], ["\u03C0", "pi"],
               ["\u03C1", "rho"], ["\u03C2", "final sigma"], ["\u03C3", "sigma"],
               ["\u03C4", "tau"], ["\u03C5", "upsilon"], ["\u03C6", "phi"], ["\u03C7", "chi"],
               ["\u03C8", "psi"], ["\u03C9", "omega"],
               "", 
           /* greek symbols */
               ["\u03D1", "theta symbol"], ["\u03D5", "phi symbol"], ["\u03D6", "pi symbol"],
               "", "", "", "", "",
           /* maths */
               ["\u00AC", "not"], ["\u00B1", "plus-minus"], ["\u00D7", "multiplication"], ["\u2113", "script l"],
               ["\u2102", "double-struck C"], ["\u2115", "double-struck N"], ["\u211A", "double-struck Q"],
               ["\u211D", "double-struck R"], ["\u2124", "double-struck Z"], ["\u212B", "Angstrom"],
               ["\u2190", "leftwards arrow"], ["\u2192", "rightwards arrow"], ["\u2194", "left right arrow"],
               ["\u21D0", "leftwards double arrow"], ["\u21D2", "rightwards double arrow"],
               ["\u21D4", "left right double arrow"],
               ["\u2200", "for all"], ["\u2202", "partial differential"], ["\u2203", "there exists"],
               ["\u2205", "empty set"], ["\u2207", "nabla"], ["\u2208", "element of"],
               ["\u2209", "not an element of"], ["\u2211", "n-ary summation"], ["\u221D", "proportional to"],
               ["\u221E", "infinity"], ["\u2227", "logical and"], ["\u2228", "logical or"],
               ["\u2229", "intersection"], ["\u222A", "union"], ["\u222B", "integral"],
               ["\u223C", "tilde operator"], ["\u2248", "almost equal to"], ["\u2260", "not equal to"],
               ["\u2261", "identical to"], ["\u2264", "less-than or equal to"],
               ["\u2265", "greater-than or equal to"], ["\u2282", "subset of"],
               "", "", "", "", "", "", "", "", "", "", "", "", "",
           /* cursive uppercase */
               ["\uD835\uDC9C", "script A"], ["\u212C", "script B"], ["\uD835\uDC9E", "script C"],
               ["\uD835\uDC9F", "script D"], ["\u2130", "script E"], ["\u2131", "script F"],
               ["\uD835\uDCA2", "script G"], ["\u210B", "script H"], ["\u2110", "script I"],
               ["\uD835\uDCA5", "script J"], ["\uD835\uDCA6", "script K"], ["\u2112", "script L"],
               ["\u2133", "script M"], ["\uD835\uDCA9", "script N"], ["\uD835\uDCAA", "script O"],
               ["\uD835\uDCAB", "script P"], ["\uD835\uDCAC", "script Q"], ["\u211B", "script R"],
               ["\uD835\uDCAE", "script S"], ["\uD835\uDCAF", "script T"], ["\uD835\uDCB0", "script U"],
               ["\uD835\uDCB1", "script V"], ["\uD835\uDCB2", "script W"], ["\uD835\uDCB3", "script X"],
               ["\uD835\uDCB4", "script Y"], ["\uD835\uDCB5", "script Z"]
           ];
       
   
       config.smiley_path = '/adm/lonIcons/';
       
       config.smiley_descriptions = [
           'happy', 'sad', 'wink', 'big smile', 'uncertain', 'raspberry',
           'embarrassed', 'cool', 'glasses', 'plain', 'surprised', 'angry',
           'crying', 'quiet', 'uncertain', 'kiss', 'sick', 'heart',
           'rose', 'pizza', 'ninja', 'pirate', 'agree', 
           'disagree', 'angel'
       ];
           
     config.smiley_images = [      config.smiley_images = [
     'face-smile.png','face-sad.png','face-wink.png','face-smile-big.png','face-uncertain.png','face-raspberry.png',          'face-smile.png','face-sad.png','face-wink.png','face-smile-big.png','face-uncertain.png','face-raspberry.png',
     'face-embarrassed.png','face-cool.png','face-glasses.png','face-plain.png','face-surprise.png','face-angry.png',          'face-embarrassed.png','face-cool.png','face-glasses.png','face-plain.png','face-surprise.png','face-angry.png',
     'face-crying.png','face-quiet.png','face-uncertain.png','face-kiss.png','face-sick.png','heart.png',          'face-crying.png','face-quiet.png','face-uncertain.png','face-kiss.png','face-sick.png','heart.png',
     'rose.png','food-pizza.png','face-ninja.png', 'face-pirate.png', 'opinion-agree.png',          'rose.png','food-pizza.png','face-ninja.png', 'face-pirate.png', 'opinion-agree.png',
     'opinion-disagree.png', 'face-angel.png'];          'opinion-disagree.png', 'face-angel.png'
       ];
  config.toolbar_Full =      
  [  };
  ['Source','-','Preview'],  
  ['Cut','Copy','Paste','PasteText','PasteFromWord','-','Print'],  
  ['Undo','Redo','-','Find','Replace','-','SelectAll','RemoveFormat'],  
  '/',  
  ['Bold','Italic','Underline','Strike','-','Subscript','Superscript'],  
  ['NumberedList','BulletedList','-','Outdent','Indent','Blockquote'],  
  ['JustifyLeft','JustifyCenter','JustifyRight','JustifyBlock'],  
  ['Link','Unlink','Anchor'],  
  ['Image','Table','HorizontalRule','Smiley','SpecialChar'],  
  '/',  
  ['Styles','Format','Font','FontSize'],  
  ['TextColor','BGColor'],  
  ['Maximize', 'ShowBlocks','-','About']  
  ];  
 }  

Removed from v.1.2  
changed lines
  Added in v.1.3


FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>