From ea12db10497ddf81a08162b616319ed9dc79ce62 Mon Sep 17 00:00:00 2001 From: Jonathan DeLaigle Date: Tue, 17 Nov 2015 13:14:46 -0500 Subject: [PATCH 1/3] Making semantic embed the default ckeditor embed setting --- config/install/editor.editor.full_html.yml | 2 +- config/install/filter.format.full_html.yml | 7 +++++++ drupal-org.make | 4 ++-- 3 files changed, 10 insertions(+), 3 deletions(-) diff --git a/config/install/editor.editor.full_html.yml b/config/install/editor.editor.full_html.yml index 7ed7f52..efcd2c6 100644 --- a/config/install/editor.editor.full_html.yml +++ b/config/install/editor.editor.full_html.yml @@ -28,7 +28,7 @@ settings: name: Media items: - Blockquote - - Embed + - EmbedSemantic - DrupalImage - Table - HorizontalRule diff --git a/config/install/filter.format.full_html.yml b/config/install/filter.format.full_html.yml index a62f21c..f93830f 100644 --- a/config/install/filter.format.full_html.yml +++ b/config/install/filter.format.full_html.yml @@ -2,6 +2,7 @@ langcode: en status: true dependencies: module: + - ckeditor_media_embed - editor name: 'Full HTML' format: full_html @@ -47,3 +48,9 @@ filters: allowed_html: '

    1. ' filter_html_help: true filter_html_nofollow: false + filter_ckeditor_media_embed: + id: filter_ckeditor_media_embed + provider: ckeditor_media_embed + status: true + weight: 12 + settings: { } diff --git a/drupal-org.make b/drupal-org.make index 5b779c5..0a35892 100644 --- a/drupal-org.make +++ b/drupal-org.make @@ -47,9 +47,9 @@ projects[panels][version] = "3.0-alpha17" ; Must specify type since it is still a sandbox. projects[ckeditor_media_embed][type] = module projects[ckeditor_media_embed][download][type] = git -projects[ckeditor_media_embed][download][url] = http://git.drupal.org/sandbox/grndlvl/2597734.git +projects[ckeditor_media_embed][download][url] = http://git.drupal.org/project/ckeditor_media_embed.git projects[ckeditor_media_embed][download][branch] = 8.x-1.x -projects[ckeditor_media_embed][download][revision] = 152a2dfb9d191c1830975a82d22122607ebc646b +projects[ckeditor_media_embed][download][revision] = bde51cedf69752b2d0100e16a14aa10577e0d11f ; Currently lives on Github. projects[pathauto][download][type] = git From d96f9687c4ce33b037dbeaadc5972f5b9b27c9a5 Mon Sep 17 00:00:00 2001 From: Jonathan DeLaigle Date: Tue, 17 Nov 2015 16:25:25 -0500 Subject: [PATCH 2/3] Removing cache clear --- .probo.yaml | 1 + 1 file changed, 1 insertion(+) diff --git a/.probo.yaml b/.probo.yaml index 4152b13..a2ea82c 100644 --- a/.probo.yaml +++ b/.probo.yaml @@ -6,5 +6,6 @@ steps: makeFile: build-a-bear.make profileName: bear runInstall: true + clearCaches: false # drush cc all is not available for d8. Use cache-rebuild. - name: Run behat tests command: 'cd /var/www/html/profiles/bear/tests ; composer install ; ./bin/behat --profile probo' From b52b2f9c07890c8ecc0f50b66b408f4c0f50ccbc Mon Sep 17 00:00:00 2001 From: Jonathan DeLaigle Date: Tue, 17 Nov 2015 16:32:30 -0500 Subject: [PATCH 3/3] Fixing location of built profile --- .probo.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.probo.yaml b/.probo.yaml index a2ea82c..e6e89fd 100644 --- a/.probo.yaml +++ b/.probo.yaml @@ -8,4 +8,4 @@ steps: runInstall: true clearCaches: false # drush cc all is not available for d8. Use cache-rebuild. - name: Run behat tests - command: 'cd /var/www/html/profiles/bear/tests ; composer install ; ./bin/behat --profile probo' + command: 'cd /var/www/html/profiles/contrib/bear/tests ; composer install ; ./bin/behat --profile probo'