build-config.js 2.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100
  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',
  28. 'bender-err.log',
  29. 'bender-out.log',
  30. 'dev',
  31. 'docs',
  32. '.DS_Store',
  33. '.editorconfig',
  34. '.gitignore',
  35. '.gitattributes',
  36. 'gruntfile.js',
  37. '.idea',
  38. '.jscsrc',
  39. '.jshintignore',
  40. '.jshintrc',
  41. 'less',
  42. '.mailmap',
  43. 'node_modules',
  44. 'package.json',
  45. 'README.md',
  46. 'tests',
  47. // Parts of CKEditor that we consciously don't ship with Drupal.
  48. 'adapters',
  49. 'config.js',
  50. 'contents.css',
  51. 'styles.js',
  52. 'samples',
  53. 'skins/moono-lisa/readme.md'
  54. ],
  55. plugins: {
  56. a11yhelp: 1,
  57. about: 1,
  58. autogrow: 1,
  59. basicstyles: 1,
  60. blockquote: 1,
  61. clipboard: 1,
  62. contextmenu: 1,
  63. elementspath: 1,
  64. enterkey: 1,
  65. entities: 1,
  66. filebrowser: 1,
  67. floatingspace: 1,
  68. format: 1,
  69. horizontalrule: 1,
  70. htmlwriter: 1,
  71. image2: 1,
  72. indent: 1,
  73. indentlist: 1,
  74. justify: 1,
  75. language: 1,
  76. list: 1,
  77. magicline: 1,
  78. maximize: 1,
  79. pastefromword: 1,
  80. pastetext: 1,
  81. removeformat: 1,
  82. sharedspace: 1,
  83. showblocks: 1,
  84. showborders: 1,
  85. sourcearea: 1,
  86. sourcedialog: 1,
  87. specialchar: 1,
  88. stylescombo: 1,
  89. tab: 1,
  90. table: 1,
  91. tableresize: 1,
  92. tabletools: 1,
  93. toolbar: 1,
  94. undo: 1,
  95. widget: 1,
  96. wysiwygarea: 1
  97. }
  98. };