I've built a development version of ckeditor 4 on Windows 7 (using cygwin to run the shell script) and on Linux, but it seems to be including all plugins and language files rather than just the ones specified in the build-config.js. Is this a known issue? I'm using CKBuilder 1.6 (auto-downloaded) and Java 1.7 (Windows), Java 1.6 (Linux).
Contents of the build-config.js:
var CKBUILDER_CONFIG = {
skin: 'moono',
ignore: [
'dev',
'README.md',
'.gitignore',
'.gitattributes',
'.mailmap',
'.idea'
],
plugins: {
about: 1,
basicstyles: 1,
button: 1,
clipboard: 1,
dialog: 1,
dialogui: 1,
enterkey: 1,
entities: 1,
fakeobjects: 1,
floatingspace: 1,
indent: 1,
link: 1,
list: 1,
pastetext: 1,
toolbar: 1,
undo: 1,
wysiwygarea: 1
},
languages : {
'en' : 1,
'en-au' : 1,
'en-ca' : 1,
'en-gb' : 1
}
};
Screen shot of the output attached - there is one small warning but other than that it doesn't seem to be generating any obvious errors.
Thanks for any help you can give,
Helen
1) Regarding removing plugins
1) Regarding removing plugins that are not enabled in the build configuration file:
will give you the list of available options. One of them is:
so, in short, use something like:
2) Regarding languages: it looks like this property is not supported by the command line version
http://dev.ckeditor.com/ticket/9954
Wiktor Walc
CTO, CKSource - http://cksource.com
--
Follow CKEditor on: Twitter | Facebook | Google+
Great...
Thank you!
plugin languages
I just ran a build in windows using cygwin and I have the main language files included, but how do I get the plugin language files included?
How to install cygwin
Hi jcreamer898,
I downloaded the cygwin setup program. No idea now how to proceed. I need to select the packages to install. Which packages do I need to install?
And once installed, can you give me step-by-step instructions on how to proceed to build my ckeditor?