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