build-config.js 2.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102
  1. /**
  2. * This is a Drupal-optimized build of CKEditor.
  3. *
  4. * You may re-use it at any time at http://ckeditor.com/builder to build
  5. * CKEditor again. Alternatively, use the "build.sh" script to build it locally.
  6. * If you do so, be sure to pass it the "-s" flag. So: "sh build.sh -s".
  7. *
  8. * If you are developing or debugging CKEditor plugins, you may want to work
  9. * against an unoptimized (unminified) CKEditor build. To do so, you have two
  10. * options:
  11. * 1. Upload build-config.js to http://ckeditor.com/builder and choose the
  12. * "Source (Big N'Slow)" option when downloading.
  13. * 2. Use the "build.sh" script to build it locally, with one additional flag:
  14. * "sh build.sh -s --leave-js-unminified".
  15. * Then, replace this directory (core/assets/vendor/ckeditor) with your build.
  16. *
  17. * NOTE:
  18. * This file is not used by CKEditor, you may remove it.
  19. * Changing this file will not change your CKEditor configuration.
  20. */
  21. /* exported CKBUILDER_CONFIG */
  22. var CKBUILDER_CONFIG = {
  23. skin: 'moono-lisa',
  24. ignore: [
  25. // CKEditor repository structure: unrelated to the usage of CKEditor itself.
  26. 'bender.js',
  27. 'bender.ci.js',
  28. '.bender',
  29. 'bender-err.log',
  30. 'bender-out.log',
  31. '.travis.yml',
  32. 'dev',
  33. 'docs',
  34. '.DS_Store',
  35. '.editorconfig',
  36. '.gitignore',
  37. '.gitattributes',
  38. 'gruntfile.js',
  39. '.idea',
  40. '.jscsrc',
  41. '.jshintignore',
  42. '.jshintrc',
  43. 'less',
  44. '.mailmap',
  45. 'node_modules',
  46. 'package.json',
  47. 'README.md',
  48. 'tests',
  49. // Parts of CKEditor that we consciously don't ship with Drupal.
  50. 'adapters',
  51. 'config.js',
  52. 'contents.css',
  53. 'styles.js',
  54. 'samples',
  55. 'skins/moono-lisa/readme.md'
  56. ],
  57. plugins: {
  58. a11yhelp: 1,
  59. about: 1,
  60. autogrow: 1,
  61. basicstyles: 1,
  62. blockquote: 1,
  63. clipboard: 1,
  64. contextmenu: 1,
  65. elementspath: 1,
  66. enterkey: 1,
  67. entities: 1,
  68. filebrowser: 1,
  69. floatingspace: 1,
  70. format: 1,
  71. horizontalrule: 1,
  72. htmlwriter: 1,
  73. image2: 1,
  74. indent: 1,
  75. indentlist: 1,
  76. justify: 1,
  77. language: 1,
  78. list: 1,
  79. magicline: 1,
  80. maximize: 1,
  81. pastefromword: 1,
  82. pastetext: 1,
  83. removeformat: 1,
  84. sharedspace: 1,
  85. showblocks: 1,
  86. showborders: 1,
  87. sourcearea: 1,
  88. sourcedialog: 1,
  89. specialchar: 1,
  90. stylescombo: 1,
  91. tab: 1,
  92. table: 1,
  93. tableresize: 1,
  94. tabletools: 1,
  95. toolbar: 1,
  96. undo: 1,
  97. widget: 1,
  98. wysiwygarea: 1
  99. }
  100. };