comparison core/assets/vendor/ckeditor/build-config.js @ 0:c75dbcec494b

Initial commit from drush-created site
author Chris Cannam
date Thu, 05 Jul 2018 14:24:15 +0000
parents
children
comparison
equal deleted inserted replaced
-1:000000000000 0:c75dbcec494b
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
22 /* exported CKBUILDER_CONFIG */
23
24 var CKBUILDER_CONFIG = {
25 skin: 'moono-lisa',
26 ignore: [
27 // CKEditor repository structure: unrelated to the usage of CKEditor itself.
28 'bender.js',
29 'bender.ci.js',
30 '.bender',
31 'bender-err.log',
32 'bender-out.log',
33 '.travis.yml',
34 'dev',
35 'docs',
36 '.DS_Store',
37 '.editorconfig',
38 '.gitignore',
39 '.gitattributes',
40 'gruntfile.js',
41 '.idea',
42 '.jscsrc',
43 '.jshintignore',
44 '.jshintrc',
45 'less',
46 '.mailmap',
47 'node_modules',
48 'package.json',
49 'README.md',
50 'tests',
51 // Parts of CKEditor that we consciously don't ship with Drupal.
52 'adapters',
53 'config.js',
54 'contents.css',
55 'styles.js',
56 'samples',
57 'skins/moono-lisa/readme.md'
58 ],
59 plugins: {
60 a11yhelp: 1,
61 about: 1,
62 autogrow: 1,
63 basicstyles: 1,
64 blockquote: 1,
65 clipboard: 1,
66 contextmenu: 1,
67 elementspath: 1,
68 enterkey: 1,
69 entities: 1,
70 filebrowser: 1,
71 floatingspace: 1,
72 format: 1,
73 horizontalrule: 1,
74 htmlwriter: 1,
75 image2: 1,
76 indent: 1,
77 indentlist: 1,
78 justify: 1,
79 language: 1,
80 list: 1,
81 magicline: 1,
82 maximize: 1,
83 pastefromword: 1,
84 pastetext: 1,
85 removeformat: 1,
86 sharedspace: 1,
87 showblocks: 1,
88 showborders: 1,
89 sourcearea: 1,
90 sourcedialog: 1,
91 specialchar: 1,
92 stylescombo: 1,
93 tab: 1,
94 table: 1,
95 tableresize: 1,
96 tabletools: 1,
97 toolbar: 1,
98 undo: 1,
99 widget: 1,
100 wysiwygarea: 1
101 }
102 };