To test wysiwyg editor with ckeditor on simplytest.me the library is required. Referring to this video, to get it installed we need a .make file that will install the library.
Simplytest.me needs files that are hosted on http://drupal.org/files so I assume this is the right place to put this in.

Could anybody create a patch that actually does nothing but includes the .make file below? (I did not test it)

If somebody wants to test ckeditor he can come here and find the patch to install the library in simplytest.me.

; Wysiwyg make file. Specify core version below.
; Place in Drupal root and run from the drupal
; root directory with
; drush make ckedit.make --no-core . 

api = 2
core = 7.x

; =====================================
; Libraries
; =====================================

; CKEditor 4.5.4
libraries[ckeditor][download][type] = get
libraries[ckeditor][download][url] = http://download.cksource.com/CKEditor/CKEditor/CKEditor%204.5.4/ckeditor_4.5.4_standard.zip
libraries[ckeditor][directory_name] = "ckeditor"
libraries[ckeditor][destination] = "libraries"
libraries[ckeditor][destination][subtree] = "ckeditor_4.5.4_standard/ckeditor"
Support from Acquia helps fund testing for Drupal Acquia logo

Comments

SuperTyp created an issue. See original summary.

TwoD’s picture

Version: 7.x-2.2 » 7.x-2.x-dev
Category: Feature request » Task
Issue tags: -library, -.make, -simplytest
FileSize
670 bytes

Wysiwyg only supports the Full CKEditor package.
Also, the makefile goes into the module folder unless it's meant to build a full Drupal distribution.
I made the patch against 7.x-2.x as it's the only 7.x branch supporting CKEditor 4 right now.

This is untested btw.

TwoD’s picture

FileSize
594 bytes
TwoD’s picture

Status: Needs review » Needs work

The library files appear to get installed to sites/all/Array/ckeditor instead of sites/all/libraries/ckeditor. Not sure why...

jimmyko’s picture

Should we add other editors at the same time? It seems not fair to other who want the other editors.

byronveale’s picture

Status: Needs work » Needs review
FileSize
190.35 KB

Thank you, this patch just worked for me!

CKeditor library installed on simplytest.me thanks to the patch in this issue

byronveale’s picture