diff --git a/.gitlab/issue_templates/Bug.md b/.gitlab/issue_templates/Bug.md new file mode 100644 index 0000000..ff957c3 --- /dev/null +++ b/.gitlab/issue_templates/Bug.md @@ -0,0 +1,26 @@ +## Summary + +(Summarize the bug encountered concisely) + + +## Steps to reproduce + +(How one can reproduce the issue - include specific links when possible) + + + +## What is the current bug behavior? + +(What actually happens) + + +## What is the expected correct behavior? + +(What you should see instead) + + +## Relevant screenshots + + + +/label ~Bug diff --git a/.gitlab/issue_templates/Task.md b/.gitlab/issue_templates/Task.md new file mode 100644 index 0000000..53a0082 --- /dev/null +++ b/.gitlab/issue_templates/Task.md @@ -0,0 +1,10 @@ +## Background + + +## Work Required + +* [ ] + + + +/label ~Task diff --git a/.gitlab/issue_templates/User-story.md b/.gitlab/issue_templates/User-story.md new file mode 100644 index 0000000..9fbe6ef --- /dev/null +++ b/.gitlab/issue_templates/User-story.md @@ -0,0 +1,10 @@ +## Acceptance Criteria + +Given that I am [role], +when I [action], +then I [result]. + +## Work Required +* [ ] + +/label ~"User Story" diff --git a/Makefile b/Makefile index 54467a2..964a332 100644 --- a/Makefile +++ b/Makefile @@ -1,5 +1,5 @@ # Identify tasks which do not have output files: -.PHONY: help synclivetotest +.PHONY: help synclivetotest syncdb syncfiles GREEN := $(shell tput -Txterm setaf 2) WHITE := $(shell tput -Txterm setaf 7) diff --git a/README.md b/README.md index c240458..1861e75 100644 --- a/README.md +++ b/README.md @@ -39,7 +39,8 @@ git pull git submodule update --recursive --remote vagrant ssh composer install -drush -y sql-dump > /tmp/paranoia.sql && drush sql-drop && drush -y sql-sync @live @self && drush -y updb +drush -y sql-dump > /tmp/paranoia.sql && drush -y sql-drop && drush -y sql-sync @live @self && drush -y updb +drush -y rsync @live:%files @self:%files drush cim -y ``` @@ -80,3 +81,16 @@ Commit the files with a message on what you deployed with 'git commit -m ' Push the changes to the repo with `git push` If you need to overwrite live configuration (only after confirming you've committed any parts you want to keep) you can use ahoy for that too with `deploy-site-force`. + +## Code Hightlight. + +The [prism.js](https://prismjs.com/) library was added in the site and can be used like this: + +``` +
+  
+    p { color: red }
+  
+
+``` +The suffix of the class needs to be changed depending of the language that is going to be highlighted eg: `language-php`, `language-js` etc. diff --git a/composer.json b/composer.json index 21ebe06..244aa33 100644 --- a/composer.json +++ b/composer.json @@ -28,10 +28,13 @@ "drupal/hotjar": "^1.2", "drupal/http_client_error_status": "^1.0", "drupal/indieweb": "1.x-dev", + "drupal/markdown": "^1.2", "drupal/menu_trail_by_path": "^1.1", "drupal/migrate_plus": "^4.0", "drupal/migrate_tools": "^4.0", "drupal/minimalhtml": "^1.0", + "drupal/paragraphs_features": "^1.4", + "drupal/preview_link": "^1.1", "drupal/redirect": "^1.2", "drupal/regionincontent": "1.x-dev", "drupal/search404": "^1.0", @@ -99,14 +102,11 @@ }, "drupal/honeypot": { "Accessibility Issue Triggered": "https://www.drupal.org/files/issues/2018-08-05/honeypot-aria-hidden-on-text-field-2944843-12.patch" - }, - "drupal/comment_notify": { - "Invalid placeholder (!types) in string": "https://www.drupal.org/files/issues/2019-01-16/2938134-4.patch", - "The unsubscribe option is not working": "https://www.drupal.org/files/issues/2019-01-17/3026687-2.patch" - } + } } }, "config": { - "sort-packages": true + "sort-packages": true, + "process-timeout": 600 } } diff --git a/composer.lock b/composer.lock index 7057ee3..070e9b6 100644 --- a/composer.lock +++ b/composer.lock @@ -4,7 +4,7 @@ "Read more about it at https://getcomposer.org/doc/01-basic-usage.md#installing-dependencies", "This file is @generated automatically" ], - "content-hash": "f6b711848cb356b08282c888a7c34e09", + "content-hash": "aad7399cf996c6cdc9d24296e40bc8d4", "packages": [ { "name": "asm89/stack-cors", @@ -526,24 +526,24 @@ }, { "name": "chi-teck/drupal-code-generator", - "version": "1.27.0", + "version": "1.28.0", "source": { "type": "git", "url": "https://github.com/Chi-teck/drupal-code-generator.git", - "reference": "a839bc89d385087d8a7a96a9c1c4bd470ffb627e" + "reference": "a43131309b56a4c1874f39a9eaa4f6cb1a9832cd" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/Chi-teck/drupal-code-generator/zipball/a839bc89d385087d8a7a96a9c1c4bd470ffb627e", - "reference": "a839bc89d385087d8a7a96a9c1c4bd470ffb627e", + "url": "https://api.github.com/repos/Chi-teck/drupal-code-generator/zipball/a43131309b56a4c1874f39a9eaa4f6cb1a9832cd", + "reference": "a43131309b56a4c1874f39a9eaa4f6cb1a9832cd", "shasum": "" }, "require": { "ext-json": "*", "php": ">=5.5.9", - "symfony/console": "~2.7|^3", - "symfony/filesystem": "~2.7|^3", - "twig/twig": "^1.23.1" + "symfony/console": "^3.4 || ^4.0", + "symfony/filesystem": "^3.4 || ^4.0", + "twig/twig": "^1.35" }, "bin": [ "bin/dcg" @@ -567,7 +567,7 @@ "GPL-2.0-or-later" ], "description": "Drupal code generator", - "time": "2018-10-11T08:05:59+00:00" + "time": "2019-01-30T10:34:16+00:00" }, { "name": "commerceguys/addressing", @@ -812,21 +812,21 @@ }, { "name": "consolidation/annotated-command", - "version": "2.11.0", + "version": "2.11.2", "source": { "type": "git", "url": "https://github.com/consolidation/annotated-command.git", - "reference": "edea407f57104ed518cc3c3b47d5b84403ee267a" + "reference": "004af26391cd7d1cd04b0ac736dc1324d1b4f572" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/consolidation/annotated-command/zipball/edea407f57104ed518cc3c3b47d5b84403ee267a", - "reference": "edea407f57104ed518cc3c3b47d5b84403ee267a", + "url": "https://api.github.com/repos/consolidation/annotated-command/zipball/004af26391cd7d1cd04b0ac736dc1324d1b4f572", + "reference": "004af26391cd7d1cd04b0ac736dc1324d1b4f572", "shasum": "" }, "require": { "consolidation/output-formatters": "^3.4", - "php": ">=5.4.0", + "php": ">=5.4.5", "psr/log": "^1", "symfony/console": "^2.8|^3|^4", "symfony/event-dispatcher": "^2.5|^3|^4", @@ -904,20 +904,20 @@ } ], "description": "Initialize Symfony Console commands from annotated command class methods.", - "time": "2018-12-29T04:43:17+00:00" + "time": "2019-02-02T02:29:53+00:00" }, { "name": "consolidation/config", - "version": "1.1.1", + "version": "1.2.0", "source": { "type": "git", "url": "https://github.com/consolidation/config.git", - "reference": "925231dfff32f05b787e1fddb265e789b939cf4c" + "reference": "11ab7ecd19131ce084390171b9c070eedecf7dab" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/consolidation/config/zipball/925231dfff32f05b787e1fddb265e789b939cf4c", - "reference": "925231dfff32f05b787e1fddb265e789b939cf4c", + "url": "https://api.github.com/repos/consolidation/config/zipball/11ab7ecd19131ce084390171b9c070eedecf7dab", + "reference": "11ab7ecd19131ce084390171b9c070eedecf7dab", "shasum": "" }, "require": { @@ -926,9 +926,9 @@ "php": ">=5.4.0" }, "require-dev": { - "g1a/composer-test-scenarios": "^1", + "g1a/composer-test-scenarios": "^3", + "php-coveralls/php-coveralls": "^1", "phpunit/phpunit": "^5", - "satooshi/php-coveralls": "^1.0", "squizlabs/php_codesniffer": "2.*", "symfony/console": "^2.5|^3|^4", "symfony/yaml": "^2.8.11|^3|^4" @@ -938,6 +938,33 @@ }, "type": "library", "extra": { + "scenarios": { + "symfony4": { + "require-dev": { + "symfony/console": "^4.0" + }, + "config": { + "platform": { + "php": "7.1.3" + } + } + }, + "symfony2": { + "require-dev": { + "symfony/console": "^2.8", + "symfony/event-dispatcher": "^2.8", + "phpunit/phpunit": "^4.8.36" + }, + "remove": [ + "php-coveralls/php-coveralls" + ], + "config": { + "platform": { + "php": "5.4.8" + } + } + } + }, "branch-alias": { "dev-master": "1.x-dev" } @@ -958,7 +985,7 @@ } ], "description": "Provide configuration services for a commandline tool.", - "time": "2018-10-24T17:55:35+00:00" + "time": "2019-02-16T01:18:47+00:00" }, { "name": "consolidation/log", @@ -1108,16 +1135,16 @@ }, { "name": "consolidation/robo", - "version": "1.4.3", + "version": "1.4.6", "source": { "type": "git", "url": "https://github.com/consolidation/Robo.git", - "reference": "d0b6f516ec940add7abed4f1432d30cca5f8ae0c" + "reference": "d4805a1abbc730e9a6d64ede2eba56f91a2b4eb3" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/consolidation/Robo/zipball/d0b6f516ec940add7abed4f1432d30cca5f8ae0c", - "reference": "d0b6f516ec940add7abed4f1432d30cca5f8ae0c", + "url": "https://api.github.com/repos/consolidation/Robo/zipball/d4805a1abbc730e9a6d64ede2eba56f91a2b4eb3", + "reference": "d4805a1abbc730e9a6d64ede2eba56f91a2b4eb3", "shasum": "" }, "require": { @@ -1148,7 +1175,7 @@ "natxet/cssmin": "3.0.4", "nikic/php-parser": "^3.1.5", "patchwork/jsqueeze": "~2", - "pear/archive_tar": "^1.4.2", + "pear/archive_tar": "^1.4.4", "php-coveralls/php-coveralls": "^1", "phpunit/php-code-coverage": "~2|~4", "squizlabs/php_codesniffer": "^2.8" @@ -1212,7 +1239,7 @@ } ], "description": "Modern task runner", - "time": "2019-01-02T21:33:28+00:00" + "time": "2019-02-17T05:32:27+00:00" }, { "name": "consolidation/self-update", @@ -2324,17 +2351,17 @@ }, { "name": "drupal/admin_toolbar", - "version": "1.25.0", + "version": "1.26.0", "source": { "type": "git", "url": "https://git.drupal.org/project/admin_toolbar", - "reference": "8.x-1.25" + "reference": "8.x-1.26" }, "dist": { "type": "zip", - "url": "https://ftp.drupal.org/files/projects/admin_toolbar-8.x-1.25.zip", - "reference": "8.x-1.25", - "shasum": "bc24929d5e49932518797c1228e647e98b03542b" + "url": "https://ftp.drupal.org/files/projects/admin_toolbar-8.x-1.26.zip", + "reference": "8.x-1.26", + "shasum": "7be9f91008bf17cf49b43d1c8e2211e7a8e40ce4" }, "require": { "drupal/core": "*" @@ -2345,8 +2372,8 @@ "dev-1.x": "1.x-dev" }, "drupal": { - "version": "8.x-1.25", - "datestamp": "1542915180", + "version": "8.x-1.26", + "datestamp": "1549559402", "security-coverage": { "status": "covered", "message": "Covered by Drupal's security advisory policy" @@ -2405,7 +2432,7 @@ }, { "name": "drupal/admin_toolbar_tools", - "version": "1.25.0", + "version": "1.26.0", "require": { "drupal/admin_toolbar": "self.version", "drupal/core": "~8.5" @@ -2416,8 +2443,8 @@ "dev-1.x": "1.x-dev" }, "drupal": { - "version": "8.x-1.25", - "datestamp": "1542915180", + "version": "8.x-1.26", + "datestamp": "1549559402", "security-coverage": { "status": "covered", "message": "Covered by Drupal's security advisory policy" @@ -2953,7 +2980,7 @@ "source": { "type": "git", "url": "https://git.drupal.org/project/comment_notify", - "reference": "01751b118ce3765fe3af07a36ca8c6f6687c6534" + "reference": "b2a8e8e09c0a47cca4ccbdd0e48ba7a46964900a" }, "require": { "drupal/core": "*", @@ -2965,16 +2992,12 @@ "dev-1.x": "1.x-dev" }, "drupal": { - "version": "8.x-1.0-beta2+7-dev", - "datestamp": "1544815219", + "version": "8.x-1.0-beta4+3-dev", + "datestamp": "1550278984", "security-coverage": { "status": "not-covered", "message": "Dev releases are not covered by Drupal security advisories." } - }, - "patches_applied": { - "Invalid placeholder (!types) in string": "https://www.drupal.org/files/issues/2019-01-16/2938134-4.patch", - "The unsubscribe option is not working": "https://www.drupal.org/files/issues/2019-01-17/3026687-2.patch" } }, "notification-url": "https://packages.drupal.org/8/downloads", @@ -2982,6 +3005,10 @@ "GPL-2.0-or-later" ], "authors": [ + { + "name": "gnuget", + "homepage": "https://www.drupal.org/user/992990" + }, { "name": "greggles", "homepage": "https://www.drupal.org/user/36762" @@ -2992,7 +3019,7 @@ "support": { "source": "http://cgit.drupalcode.org/comment_notify" }, - "time": "2018-12-28T18:11:39+00:00" + "time": "2019-02-19T18:59:22+00:00" }, { "name": "drupal/components", @@ -3111,17 +3138,17 @@ }, { "name": "drupal/config_actions_provider", - "version": "1.0.0-alpha4", + "version": "1.0.0-rc1", "source": { "type": "git", "url": "https://git.drupal.org/project/config_actions_provider", - "reference": "8.x-1.0-alpha4" + "reference": "8.x-1.0-rc1" }, "dist": { "type": "zip", - "url": "https://ftp.drupal.org/files/projects/config_actions_provider-8.x-1.0-alpha4.zip", - "reference": "8.x-1.0-alpha4", - "shasum": "5e973e8ee0c94082f9a1194008b2ea23c8933c7a" + "url": "https://ftp.drupal.org/files/projects/config_actions_provider-8.x-1.0-rc1.zip", + "reference": "8.x-1.0-rc1", + "shasum": "58465e27987b9f826dd767884a8e69193abbd854" }, "require": { "drupal/config_actions": "*", @@ -3135,8 +3162,8 @@ "dev-1.x": "1.x-dev" }, "drupal": { - "version": "8.x-1.0-alpha4", - "datestamp": "1540605484", + "version": "8.x-1.0-rc1", + "datestamp": "1550207284", "security-coverage": { "status": "not-covered", "message": "Project has not opted into security advisory coverage!" @@ -3309,17 +3336,17 @@ }, { "name": "drupal/config_merge", - "version": "1.0.0-alpha2", + "version": "1.0.0-rc1", "source": { "type": "git", "url": "https://git.drupal.org/project/config_merge", - "reference": "8.x-1.0-alpha2" + "reference": "8.x-1.0-rc1" }, "dist": { "type": "zip", - "url": "https://ftp.drupal.org/files/projects/config_merge-8.x-1.0-alpha2.zip", - "reference": "8.x-1.0-alpha2", - "shasum": "6f34123f0353395c67a540e1233e0b609f0188f5" + "url": "https://ftp.drupal.org/files/projects/config_merge-8.x-1.0-rc1.zip", + "reference": "8.x-1.0-rc1", + "shasum": "4881351041bf4b313247697adbeee4cedf0bc425" }, "require": { "drupal/core": "~8.0" @@ -3330,8 +3357,8 @@ "dev-1.x": "1.x-dev" }, "drupal": { - "version": "8.x-1.0-alpha2", - "datestamp": "1528237080", + "version": "8.x-1.0-rc1", + "datestamp": "1550188080", "security-coverage": { "status": "not-covered", "message": "Project has not opted into security advisory coverage!" @@ -3479,17 +3506,17 @@ }, { "name": "drupal/config_provider", - "version": "2.0.0-alpha6", + "version": "2.0.0-rc1", "source": { "type": "git", "url": "https://git.drupal.org/project/config_provider", - "reference": "8.x-2.0-alpha6" + "reference": "8.x-2.0-rc1" }, "dist": { "type": "zip", - "url": "https://ftp.drupal.org/files/projects/config_provider-8.x-2.0-alpha6.zip", - "reference": "8.x-2.0-alpha6", - "shasum": "591a0311982ef8050ed3b083b7368c86593a2ad8" + "url": "https://ftp.drupal.org/files/projects/config_provider-8.x-2.0-rc1.zip", + "reference": "8.x-2.0-rc1", + "shasum": "59405d2d56c9c450d03fc7c615008c694b12bccf" }, "require": { "drupal/core": "*" @@ -3500,8 +3527,8 @@ "dev-2.x": "2.x-dev" }, "drupal": { - "version": "8.x-2.0-alpha6", - "datestamp": "1537468380", + "version": "8.x-2.0-rc1", + "datestamp": "1550290687", "security-coverage": { "status": "not-covered", "message": "Project has not opted into security advisory coverage!" @@ -3542,17 +3569,17 @@ }, { "name": "drupal/config_snapshot", - "version": "1.0.0-alpha6", + "version": "1.0.0-rc1", "source": { "type": "git", "url": "https://git.drupal.org/project/config_snapshot", - "reference": "8.x-1.0-alpha6" + "reference": "8.x-1.0-rc1" }, "dist": { "type": "zip", - "url": "https://ftp.drupal.org/files/projects/config_snapshot-8.x-1.0-alpha6.zip", - "reference": "8.x-1.0-alpha6", - "shasum": "3029c27f62af74679db93338f11a67d988a95d0a" + "url": "https://ftp.drupal.org/files/projects/config_snapshot-8.x-1.0-rc1.zip", + "reference": "8.x-1.0-rc1", + "shasum": "2508809dea54bd0d8dfc86f4974324509b95dc13" }, "require": { "drupal/core": "*" @@ -3563,8 +3590,8 @@ "dev-1.x": "1.x-dev" }, "drupal": { - "version": "8.x-1.0-alpha6", - "datestamp": "1538793484", + "version": "8.x-1.0-rc1", + "datestamp": "1550294584", "security-coverage": { "status": "not-covered", "message": "Project has not opted into security advisory coverage!" @@ -3597,17 +3624,17 @@ }, { "name": "drupal/config_sync", - "version": "2.0.0-beta4", + "version": "2.0.0-beta5", "source": { "type": "git", "url": "https://git.drupal.org/project/config_sync", - "reference": "8.x-2.0-beta4" + "reference": "8.x-2.0-beta5" }, "dist": { "type": "zip", - "url": "https://ftp.drupal.org/files/projects/config_sync-8.x-2.0-beta4.zip", - "reference": "8.x-2.0-beta4", - "shasum": "e3e328c92185282fb725bc03ee15e9d76e9a6d6e" + "url": "https://ftp.drupal.org/files/projects/config_sync-8.x-2.0-beta5.zip", + "reference": "8.x-2.0-beta5", + "shasum": "76a922ca354cb18cdfd57d427bdd91721630e48b" }, "require": { "drupal/config_distro": "^1.0-alpha3", @@ -3627,8 +3654,8 @@ "dev-2.x": "2.x-dev" }, "drupal": { - "version": "8.x-2.0-beta4", - "datestamp": "1541177884", + "version": "8.x-2.0-beta5", + "datestamp": "1550290984", "security-coverage": { "status": "not-covered", "message": "Project has not opted into security advisory coverage!" @@ -3728,16 +3755,16 @@ }, { "name": "drupal/core", - "version": "8.6.7", + "version": "8.6.10", "source": { "type": "git", "url": "https://github.com/drupal/core.git", - "reference": "e0a09bda1da7552204464894811a59387608c9f9" + "reference": "59568ac02948cf075ee8543e6c6d4386ad8daec1" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/drupal/core/zipball/e0a09bda1da7552204464894811a59387608c9f9", - "reference": "e0a09bda1da7552204464894811a59387608c9f9", + "url": "https://api.github.com/repos/drupal/core/zipball/59568ac02948cf075ee8543e6c6d4386ad8daec1", + "reference": "59568ac02948cf075ee8543e6c6d4386ad8daec1", "shasum": "" }, "require": { @@ -3963,24 +3990,24 @@ "GPL-2.0-or-later" ], "description": "Drupal is an open source content management platform powering millions of websites and applications.", - "time": "2019-01-16T23:30:03+00:00" + "time": "2019-02-20T18:35:01+00:00" }, { "name": "drupal/ctools", - "version": "3.0.0", + "version": "3.1.0", "source": { "type": "git", "url": "https://git.drupal.org/project/ctools", - "reference": "8.x-3.0" + "reference": "8.x-3.1" }, "dist": { "type": "zip", - "url": "https://ftp.drupal.org/files/projects/ctools-8.x-3.0.zip", - "reference": "8.x-3.0", - "shasum": "302e869ecd1e59fe55663673999fee2ccac5daa8" + "url": "https://ftp.drupal.org/files/projects/ctools-8.x-3.1.zip", + "reference": "8.x-3.1", + "shasum": "7056df469624ec3943c62ebe613dbfcb3171dcd1" }, "require": { - "drupal/core": "~8.0" + "drupal/core": "^8.5" }, "type": "drupal-module", "extra": { @@ -3988,8 +4015,8 @@ "dev-3.x": "3.x-dev" }, "drupal": { - "version": "8.x-3.0", - "datestamp": "1493401742", + "version": "8.x-3.1", + "datestamp": "1549603381", "security-coverage": { "status": "covered", "message": "Covered by Drupal's security advisory policy" @@ -4076,7 +4103,7 @@ }, "drupal": { "version": "8.x-1.x-dev", - "datestamp": "1542572880", + "datestamp": "1542578580", "security-coverage": { "status": "not-covered", "message": "Dev releases are not covered by Drupal security advisories." @@ -6431,6 +6458,10 @@ "name": "jmiccolis", "homepage": "https://www.drupal.org/user/31731" }, + { + "name": "joseph.olstad", + "homepage": "https://www.drupal.org/user/1321830" + }, { "name": "mpotter", "homepage": "https://www.drupal.org/user/616192" @@ -6588,10 +6619,6 @@ "name": "golddragon007", "homepage": "https://www.drupal.org/user/2723471" }, - { - "name": "james.williams", - "homepage": "https://www.drupal.org/user/592268" - }, { "name": "lbesenyei", "homepage": "https://www.drupal.org/user/2626013" @@ -6648,6 +6675,10 @@ { "name": "kristiaanvandeneynde", "homepage": "https://www.drupal.org/user/1345130" + }, + { + "name": "ronaldtebrake", + "homepage": "https://www.drupal.org/user/2314038" } ], "description": "Enables Group functionality for the Node module", @@ -6658,20 +6689,20 @@ }, { "name": "drupal/google_analytics", - "version": "2.3.0", + "version": "2.4.0", "source": { "type": "git", "url": "https://git.drupal.org/project/google_analytics", - "reference": "8.x-2.3" + "reference": "8.x-2.4" }, "dist": { "type": "zip", - "url": "https://ftp.drupal.org/files/projects/google_analytics-8.x-2.3.zip", - "reference": "8.x-2.3", - "shasum": "9ea88a81925ba538d9fa7ac6ce4f1598e5ee48e4" + "url": "https://ftp.drupal.org/files/projects/google_analytics-8.x-2.4.zip", + "reference": "8.x-2.4", + "shasum": "f2e78ec140024ddcd19e027704ba73c33731f656" }, "require": { - "drupal/core": "~8.0" + "drupal/core": "~8.5" }, "require-dev": { "drupal/php": "*", @@ -6683,8 +6714,8 @@ "dev-2.x": "2.x-dev" }, "drupal": { - "version": "8.x-2.3", - "datestamp": "1531469021", + "version": "8.x-2.4", + "datestamp": "1548968580", "security-coverage": { "status": "covered", "message": "Covered by Drupal's security advisory policy" @@ -6708,7 +6739,7 @@ "description": "Allows your site to be tracked by Google Analytics by adding a Javascript tracking code to every page.", "homepage": "https://www.drupal.org/project/google_analytics", "support": { - "source": "http://git.drupal.org/project/google_analytics.git", + "source": "https://git.drupal.org/project/google_analytics.git", "issues": "https://www.drupal.org/project/issues/google_analytics" } }, @@ -6751,6 +6782,10 @@ { "name": "kristiaanvandeneynde", "homepage": "https://www.drupal.org/user/1345130" + }, + { + "name": "ronaldtebrake", + "homepage": "https://www.drupal.org/user/2314038" } ], "description": "This module allows you to group users, content and other entities", @@ -6925,7 +6960,7 @@ "source": { "type": "git", "url": "https://git.drupal.org/project/indieweb", - "reference": "935910ad46019a99d6e1d47d52a254cc8bb0f904" + "reference": "faf13548a9aa5ba7097202100fd9403e063b5f09" }, "require": { "drupal/core": "~8.0", @@ -6946,8 +6981,8 @@ "dev-1.x": "1.x-dev" }, "drupal": { - "version": "8.x-1.0-rc2+2-dev", - "datestamp": "1547203384", + "version": "8.x-1.0-rc3+4-dev", + "datestamp": "1550492584", "security-coverage": { "status": "not-covered", "message": "Dev releases are not covered by Drupal security advisories." @@ -6976,7 +7011,65 @@ "support": { "source": "http://cgit.drupalcode.org/indieweb" }, - "time": "2019-01-13T11:49:55+00:00" + "time": "2019-02-18T13:15:50+00:00" + }, + { + "name": "drupal/markdown", + "version": "1.2.0", + "source": { + "type": "git", + "url": "https://git.drupal.org/project/markdown", + "reference": "8.x-1.2" + }, + "dist": { + "type": "zip", + "url": "https://ftp.drupal.org/files/projects/markdown-8.x-1.2.zip", + "reference": "8.x-1.2", + "shasum": "c236d097312b8140db5711645c491bcf938dca78" + }, + "require": { + "drupal/core": "~8.0", + "league/commonmark": "^0.15.0", + "michelf/php-markdown": "^1.6" + }, + "type": "drupal-module", + "extra": { + "branch-alias": { + "dev-1.x": "1.x-dev" + }, + "drupal": { + "version": "8.x-1.2", + "datestamp": "1496237343", + "security-coverage": { + "status": "covered", + "message": "Covered by Drupal's security advisory policy" + } + } + }, + "notification-url": "https://packages.drupal.org/8/downloads", + "license": [ + "GPL-2.0+" + ], + "authors": [ + { + "name": "frjo", + "homepage": "https://www.drupal.org/user/5546" + }, + { + "name": "gisle", + "homepage": "https://www.drupal.org/user/409554" + }, + { + "name": "markcarver", + "homepage": "https://www.drupal.org/user/501638" + } + ], + "description": "Allows content to be submitted using Markdown, a simple plain-text syntax that is transformed into valid HTML.", + "homepage": "https://www.drupal.org/project/markdown", + "support": { + "source": "https://cgit.drupalcode.org/markdown", + "issues": "https://www.drupal.org/project/markdown" + } }, { "name": "drupal/menu_trail_by_path", @@ -7102,17 +7195,17 @@ }, { "name": "drupal/metatag", - "version": "1.7.0", + "version": "1.8.0", "source": { "type": "git", "url": "https://git.drupal.org/project/metatag", - "reference": "8.x-1.7" + "reference": "8.x-1.8" }, "dist": { "type": "zip", - "url": "https://ftp.drupal.org/files/projects/metatag-8.x-1.7.zip", - "reference": "8.x-1.7", - "shasum": "93decaefd053c524918ceae5b5ef05dd77de0857" + "url": "https://ftp.drupal.org/files/projects/metatag-8.x-1.8.zip", + "reference": "8.x-1.8", + "shasum": "fb5d31aa08c8c2e175f096f9917e9741db152ea8" }, "require": { "drupal/core": "*", @@ -7134,8 +7227,8 @@ "dev-1.x": "1.x-dev" }, "drupal": { - "version": "8.x-1.7", - "datestamp": "1535726393", + "version": "8.x-1.8", + "datestamp": "1550692511", "security-coverage": { "status": "covered", "message": "Covered by Drupal's security advisory policy" @@ -7436,17 +7529,17 @@ }, { "name": "drupal/paragraphs", - "version": "1.5.0", + "version": "1.6.0", "source": { "type": "git", "url": "https://git.drupal.org/project/paragraphs", - "reference": "8.x-1.5" + "reference": "8.x-1.6" }, "dist": { "type": "zip", - "url": "https://ftp.drupal.org/files/projects/paragraphs-8.x-1.5.zip", - "reference": "8.x-1.5", - "shasum": "85ba97dd1c602d33fc5904b6e1df5973312afa94" + "url": "https://ftp.drupal.org/files/projects/paragraphs-8.x-1.6.zip", + "reference": "8.x-1.6", + "shasum": "cd93e244f3a78dabdcf362adc31e59aad25b3fae" }, "require": { "drupal/core": "~8", @@ -7474,8 +7567,8 @@ "dev-1.x": "1.x-dev" }, "drupal": { - "version": "8.x-1.5", - "datestamp": "1541009695", + "version": "8.x-1.6", + "datestamp": "1550692525", "security-coverage": { "status": "covered", "message": "Covered by Drupal's security advisory policy" @@ -7514,6 +7607,71 @@ "source": "http://cgit.drupalcode.org/paragraphs" } }, + { + "name": "drupal/paragraphs_features", + "version": "1.4.0", + "source": { + "type": "git", + "url": "https://git.drupal.org/project/paragraphs_features", + "reference": "8.x-1.4" + }, + "dist": { + "type": "zip", + "url": "https://ftp.drupal.org/files/projects/paragraphs_features-8.x-1.4.zip", + "reference": "8.x-1.4", + "shasum": "1c875c35c3ef75d462385cbc451d9a2f768b016f" + }, + "require": { + "drupal/core": "^8.5", + "drupal/paragraphs": "^1.3" + }, + "type": "drupal-module", + "extra": { + "branch-alias": { + "dev-1.x": "1.x-dev" + }, + "drupal": { + "version": "8.x-1.4", + "datestamp": "1536759480", + "security-coverage": { + "status": "covered", + "message": "Covered by Drupal's security advisory policy" + } + } + }, + "notification-url": "https://packages.drupal.org/8/downloads", + "license": [ + "GPL-2.0-or-later" + ], + "authors": [ + { + "name": "Mladen Todorovic", + "homepage": "https://www.drupal.org/user/2103716", + "email": "mladen.todorovic@burda.com" + }, + { + "name": "daniel.bosen", + "homepage": "https://www.drupal.org/user/404865" + }, + { + "name": "mtodor", + "homepage": "https://www.drupal.org/user/3453049" + }, + { + "name": "thunderbot", + "homepage": "https://www.drupal.org/user/3511180" + }, + { + "name": "volkerk", + "homepage": "https://www.drupal.org/user/57527" + } + ], + "description": "Paragraphs features for extending paragraphs widget functionality.", + "homepage": "https://www.drupal.org/project/paragraphs_features", + "support": { + "source": "http://cgit.drupalcode.org/paragraphs_features" + } + }, { "name": "drupal/paranoia", "version": "1.0.0-alpha1", @@ -7630,6 +7788,65 @@ "source": "http://cgit.drupalcode.org/pathauto" } }, + { + "name": "drupal/preview_link", + "version": "1.2.0", + "source": { + "type": "git", + "url": "https://git.drupal.org/project/preview_link", + "reference": "8.x-1.2" + }, + "dist": { + "type": "zip", + "url": "https://ftp.drupal.org/files/projects/preview_link-8.x-1.2.zip", + "reference": "8.x-1.2", + "shasum": "87fa9ba387bdcd177b1c48ea178c096c19ba8245" + }, + "require": { + "drupal/core": "~8.0" + }, + "require-dev": { + "drupal/entity_reference_revisions": "*", + "drupal/paragraphs": "*" + }, + "type": "drupal-module", + "extra": { + "branch-alias": { + "dev-1.x": "1.x-dev" + }, + "drupal": { + "version": "8.x-1.2", + "datestamp": "1550632985", + "security-coverage": { + "status": "covered", + "message": "Covered by Drupal's security advisory policy" + } + } + }, + "notification-url": "https://packages.drupal.org/8/downloads", + "license": [ + "GPL-2.0-or-later" + ], + "authors": [ + { + "name": "Sam152", + "homepage": "https://www.drupal.org/user/1485048" + }, + { + "name": "benjy", + "homepage": "https://www.drupal.org/user/1852732" + }, + { + "name": "larowlan", + "homepage": "https://www.drupal.org/user/395439" + } + ], + "description": "Allows anyone to preview unpublished content with a unique link.", + "homepage": "https://www.drupal.org/project/preview_link", + "support": { + "source": "http://cgit.drupalcode.org/preview_link" + } + }, { "name": "drupal/redirect", "version": "1.3.0", @@ -9450,16 +9667,16 @@ }, { "name": "indieauth/client", - "version": "0.4.1", + "version": "0.4.2", "source": { "type": "git", "url": "https://github.com/indieweb/indieauth-client-php.git", - "reference": "3e47004ccfccddc5760639f4faf9ed5ceadb460e" + "reference": "acad4c7a9ae61ae553f6136098666c49ef77631c" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/indieweb/indieauth-client-php/zipball/3e47004ccfccddc5760639f4faf9ed5ceadb460e", - "reference": "3e47004ccfccddc5760639f4faf9ed5ceadb460e", + "url": "https://api.github.com/repos/indieweb/indieauth-client-php/zipball/acad4c7a9ae61ae553f6136098666c49ef77631c", + "reference": "acad4c7a9ae61ae553f6136098666c49ef77631c", "shasum": "" }, "require": { @@ -9488,7 +9705,7 @@ } ], "description": "IndieAuth Client Library", - "time": "2018-03-13T23:39:55+00:00" + "time": "2019-02-08T16:56:14+00:00" }, { "name": "indieweb/link-rel-parser", @@ -9805,7 +10022,7 @@ { "name": "Luís Otávio Cobucci Oblonczyk", "email": "lcobucci@gmail.com", - "role": "developer" + "role": "Developer" } ], "description": "A simple library to work with JSON Web Token and JSON Web Signature", @@ -9815,6 +10032,75 @@ ], "time": "2018-11-11T12:22:26+00:00" }, + { + "name": "league/commonmark", + "version": "0.15.7", + "source": { + "type": "git", + "url": "https://github.com/thephpleague/commonmark.git", + "reference": "36d82f166e441dfa28643f8d01dd8bdd3a579adf" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/thephpleague/commonmark/zipball/36d82f166e441dfa28643f8d01dd8bdd3a579adf", + "reference": "36d82f166e441dfa28643f8d01dd8bdd3a579adf", + "shasum": "" + }, + "require": { + "ext-mbstring": "*", + "php": ">=5.4.8" + }, + "replace": { + "colinodell/commonmark-php": "*" + }, + "require-dev": { + "cebe/markdown": "~1.0", + "erusev/parsedown": "~1.0", + "jgm/commonmark": "0.28", + "michelf/php-markdown": "~1.4", + "mikehaertl/php-shellcommand": "~1.2.0", + "phpunit/phpunit": "~4.3|~5.0", + "scrutinizer/ocular": "~1.1", + "symfony/finder": "~2.3|~3.0" + }, + "suggest": { + "league/commonmark-extras": "Library of useful extensions including smart punctuation" + }, + "bin": [ + "bin/commonmark" + ], + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "0.16-dev" + } + }, + "autoload": { + "psr-4": { + "League\\CommonMark\\": "src/" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "BSD-3-Clause" + ], + "authors": [ + { + "name": "Colin O'Dell", + "email": "colinodell@gmail.com", + "homepage": "https://www.colinodell.com", + "role": "Lead Developer" + } + ], + "description": "Markdown parser for PHP based on the CommonMark spec", + "homepage": "https://github.com/thephpleague/commonmark", + "keywords": [ + "commonmark", + "markdown", + "parser" + ], + "time": "2017-10-26T15:41:07+00:00" + }, { "name": "league/container", "version": "2.4.1", @@ -10003,6 +10289,52 @@ ], "time": "2018-08-24T14:47:04+00:00" }, + { + "name": "michelf/php-markdown", + "version": "1.8.0", + "source": { + "type": "git", + "url": "https://github.com/michelf/php-markdown.git", + "reference": "01ab082b355bf188d907b9929cd99b2923053495" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/michelf/php-markdown/zipball/01ab082b355bf188d907b9929cd99b2923053495", + "reference": "01ab082b355bf188d907b9929cd99b2923053495", + "shasum": "" + }, + "require": { + "php": ">=5.3.0" + }, + "type": "library", + "autoload": { + "psr-4": { + "Michelf\\": "Michelf/" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "BSD-3-Clause" + ], + "authors": [ + { + "name": "Michel Fortin", + "email": "michel.fortin@michelf.ca", + "homepage": "https://michelf.ca/", + "role": "Developer" + }, + { + "name": "John Gruber", + "homepage": "https://daringfireball.net/" + } + ], + "description": "PHP Markdown", + "homepage": "https://michelf.ca/projects/php-markdown/", + "keywords": [ + "markdown" + ], + "time": "2018-01-15T00:49:33+00:00" + }, { "name": "mkalkbrenner/php-htmldiff-advanced", "version": "0.0.8", @@ -10042,16 +10374,16 @@ }, { "name": "nikic/php-parser", - "version": "v4.2.0", + "version": "v4.2.1", "source": { "type": "git", "url": "https://github.com/nikic/PHP-Parser.git", - "reference": "594bcae1fc0bccd3993d2f0d61a018e26ac2865a" + "reference": "5221f49a608808c1e4d436df32884cbc1b821ac0" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/nikic/PHP-Parser/zipball/594bcae1fc0bccd3993d2f0d61a018e26ac2865a", - "reference": "594bcae1fc0bccd3993d2f0d61a018e26ac2865a", + "url": "https://api.github.com/repos/nikic/PHP-Parser/zipball/5221f49a608808c1e4d436df32884cbc1b821ac0", + "reference": "5221f49a608808c1e4d436df32884cbc1b821ac0", "shasum": "" }, "require": { @@ -10089,7 +10421,7 @@ "parser", "php" ], - "time": "2019-01-12T16:31:37+00:00" + "time": "2019-02-16T20:54:15+00:00" }, { "name": "p3k/http", @@ -10736,16 +11068,16 @@ }, { "name": "symfony/browser-kit", - "version": "v4.2.2", + "version": "v4.2.3", "source": { "type": "git", "url": "https://github.com/symfony/browser-kit.git", - "reference": "313512c878805971aebddb5d1707bcf3f4e25df7" + "reference": "ee4462581eb54bf34b746e4a5d522a4f21620160" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/browser-kit/zipball/313512c878805971aebddb5d1707bcf3f4e25df7", - "reference": "313512c878805971aebddb5d1707bcf3f4e25df7", + "url": "https://api.github.com/repos/symfony/browser-kit/zipball/ee4462581eb54bf34b746e4a5d522a4f21620160", + "reference": "ee4462581eb54bf34b746e4a5d522a4f21620160", "shasum": "" }, "require": { @@ -10789,20 +11121,20 @@ ], "description": "Symfony BrowserKit Component", "homepage": "https://symfony.com", - "time": "2019-01-03T09:07:35+00:00" + "time": "2019-01-16T21:31:25+00:00" }, { "name": "symfony/class-loader", - "version": "v3.4.21", + "version": "v3.4.22", "source": { "type": "git", "url": "https://github.com/symfony/class-loader.git", - "reference": "4513348012c25148f8cbc3a7761a1d1e60ca3e87" + "reference": "4459eef5298dedfb69f771186a580062b8516497" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/class-loader/zipball/4513348012c25148f8cbc3a7761a1d1e60ca3e87", - "reference": "4513348012c25148f8cbc3a7761a1d1e60ca3e87", + "url": "https://api.github.com/repos/symfony/class-loader/zipball/4459eef5298dedfb69f771186a580062b8516497", + "reference": "4459eef5298dedfb69f771186a580062b8516497", "shasum": "" }, "require": { @@ -10845,20 +11177,20 @@ ], "description": "Symfony ClassLoader Component", "homepage": "https://symfony.com", - "time": "2019-01-01T13:45:19+00:00" + "time": "2019-01-16T09:39:14+00:00" }, { "name": "symfony/config", - "version": "v3.4.21", + "version": "v3.4.22", "source": { "type": "git", "url": "https://github.com/symfony/config.git", - "reference": "17c5d8941eb75a03d19bc76a43757738632d87b3" + "reference": "c9bc510c217075d42d4a927e285917d0c2001cf4" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/config/zipball/17c5d8941eb75a03d19bc76a43757738632d87b3", - "reference": "17c5d8941eb75a03d19bc76a43757738632d87b3", + "url": "https://api.github.com/repos/symfony/config/zipball/c9bc510c217075d42d4a927e285917d0c2001cf4", + "reference": "c9bc510c217075d42d4a927e285917d0c2001cf4", "shasum": "" }, "require": { @@ -10909,20 +11241,20 @@ ], "description": "Symfony Config Component", "homepage": "https://symfony.com", - "time": "2019-01-01T13:45:19+00:00" + "time": "2019-01-30T11:33:42+00:00" }, { "name": "symfony/console", - "version": "v3.4.21", + "version": "v3.4.22", "source": { "type": "git", "url": "https://github.com/symfony/console.git", - "reference": "a700b874d3692bc8342199adfb6d3b99f62cc61a" + "reference": "069bf3f0e8f871a2169a06e43d9f3f03f355e9be" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/console/zipball/a700b874d3692bc8342199adfb6d3b99f62cc61a", - "reference": "a700b874d3692bc8342199adfb6d3b99f62cc61a", + "url": "https://api.github.com/repos/symfony/console/zipball/069bf3f0e8f871a2169a06e43d9f3f03f355e9be", + "reference": "069bf3f0e8f871a2169a06e43d9f3f03f355e9be", "shasum": "" }, "require": { @@ -10934,6 +11266,9 @@ "symfony/dependency-injection": "<3.4", "symfony/process": "<3.3" }, + "provide": { + "psr/log-implementation": "1.0" + }, "require-dev": { "psr/log": "~1.0", "symfony/config": "~3.3|~4.0", @@ -10943,7 +11278,7 @@ "symfony/process": "~3.3|~4.0" }, "suggest": { - "psr/log-implementation": "For using the console logger", + "psr/log": "For using the console logger", "symfony/event-dispatcher": "", "symfony/lock": "", "symfony/process": "" @@ -10978,20 +11313,20 @@ ], "description": "Symfony Console Component", "homepage": "https://symfony.com", - "time": "2019-01-04T04:42:43+00:00" + "time": "2019-01-25T10:42:12+00:00" }, { "name": "symfony/css-selector", - "version": "v3.4.21", + "version": "v3.4.22", "source": { "type": "git", "url": "https://github.com/symfony/css-selector.git", - "reference": "12f86295c46c36af9896cf21db6b6b8a1465315d" + "reference": "8ca29297c29b64fb3a1a135e71cb25f67f9fdccf" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/css-selector/zipball/12f86295c46c36af9896cf21db6b6b8a1465315d", - "reference": "12f86295c46c36af9896cf21db6b6b8a1465315d", + "url": "https://api.github.com/repos/symfony/css-selector/zipball/8ca29297c29b64fb3a1a135e71cb25f67f9fdccf", + "reference": "8ca29297c29b64fb3a1a135e71cb25f67f9fdccf", "shasum": "" }, "require": { @@ -11031,20 +11366,20 @@ ], "description": "Symfony CssSelector Component", "homepage": "https://symfony.com", - "time": "2019-01-02T09:30:52+00:00" + "time": "2019-01-16T09:39:14+00:00" }, { "name": "symfony/debug", - "version": "v4.2.2", + "version": "v4.2.3", "source": { "type": "git", "url": "https://github.com/symfony/debug.git", - "reference": "64cb33c81e37d19b7715d4a6a4d49c1c382066dd" + "reference": "cf9b2e33f757deb884ce474e06d2647c1c769b65" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/debug/zipball/64cb33c81e37d19b7715d4a6a4d49c1c382066dd", - "reference": "64cb33c81e37d19b7715d4a6a4d49c1c382066dd", + "url": "https://api.github.com/repos/symfony/debug/zipball/cf9b2e33f757deb884ce474e06d2647c1c769b65", + "reference": "cf9b2e33f757deb884ce474e06d2647c1c769b65", "shasum": "" }, "require": { @@ -11087,20 +11422,20 @@ ], "description": "Symfony Debug Component", "homepage": "https://symfony.com", - "time": "2019-01-03T09:07:35+00:00" + "time": "2019-01-25T14:35:16+00:00" }, { "name": "symfony/dependency-injection", - "version": "v3.4.21", + "version": "v3.4.22", "source": { "type": "git", "url": "https://github.com/symfony/dependency-injection.git", - "reference": "928a38b18bd632d67acbca74d0b2eed09915e83e" + "reference": "b514f5b765cf3e4a56e9d8ebacf14b117f7a0ee1" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/dependency-injection/zipball/928a38b18bd632d67acbca74d0b2eed09915e83e", - "reference": "928a38b18bd632d67acbca74d0b2eed09915e83e", + "url": "https://api.github.com/repos/symfony/dependency-injection/zipball/b514f5b765cf3e4a56e9d8ebacf14b117f7a0ee1", + "reference": "b514f5b765cf3e4a56e9d8ebacf14b117f7a0ee1", "shasum": "" }, "require": { @@ -11158,20 +11493,20 @@ ], "description": "Symfony DependencyInjection Component", "homepage": "https://symfony.com", - "time": "2019-01-05T12:26:58+00:00" + "time": "2019-01-30T17:48:51+00:00" }, { "name": "symfony/dom-crawler", - "version": "v4.2.2", + "version": "v4.2.3", "source": { "type": "git", "url": "https://github.com/symfony/dom-crawler.git", - "reference": "8dc06251d5ad98d8494e1f742bec9cfdb9e42044" + "reference": "d8476760b04cdf7b499c8718aa437c20a9155103" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/dom-crawler/zipball/8dc06251d5ad98d8494e1f742bec9cfdb9e42044", - "reference": "8dc06251d5ad98d8494e1f742bec9cfdb9e42044", + "url": "https://api.github.com/repos/symfony/dom-crawler/zipball/d8476760b04cdf7b499c8718aa437c20a9155103", + "reference": "d8476760b04cdf7b499c8718aa437c20a9155103", "shasum": "" }, "require": { @@ -11215,20 +11550,20 @@ ], "description": "Symfony DomCrawler Component", "homepage": "https://symfony.com", - "time": "2019-01-03T09:07:35+00:00" + "time": "2019-01-16T20:35:37+00:00" }, { "name": "symfony/event-dispatcher", - "version": "v3.4.21", + "version": "v3.4.22", "source": { "type": "git", "url": "https://github.com/symfony/event-dispatcher.git", - "reference": "d1cdd46c53c264a2bd42505bd0e8ce21423bd0e2" + "reference": "ed5be1663fa66623b3a7004d5d51a14c4045399b" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/event-dispatcher/zipball/d1cdd46c53c264a2bd42505bd0e8ce21423bd0e2", - "reference": "d1cdd46c53c264a2bd42505bd0e8ce21423bd0e2", + "url": "https://api.github.com/repos/symfony/event-dispatcher/zipball/ed5be1663fa66623b3a7004d5d51a14c4045399b", + "reference": "ed5be1663fa66623b3a7004d5d51a14c4045399b", "shasum": "" }, "require": { @@ -11278,30 +11613,30 @@ ], "description": "Symfony EventDispatcher Component", "homepage": "https://symfony.com", - "time": "2019-01-01T18:08:36+00:00" + "time": "2019-01-16T13:27:11+00:00" }, { "name": "symfony/filesystem", - "version": "v3.4.21", + "version": "v4.2.3", "source": { "type": "git", "url": "https://github.com/symfony/filesystem.git", - "reference": "c24ce3d18ccc9bb9d7e1d6ce9330fcc6061cafde" + "reference": "7c16ebc2629827d4ec915a52ac809768d060a4ee" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/filesystem/zipball/c24ce3d18ccc9bb9d7e1d6ce9330fcc6061cafde", - "reference": "c24ce3d18ccc9bb9d7e1d6ce9330fcc6061cafde", + "url": "https://api.github.com/repos/symfony/filesystem/zipball/7c16ebc2629827d4ec915a52ac809768d060a4ee", + "reference": "7c16ebc2629827d4ec915a52ac809768d060a4ee", "shasum": "" }, "require": { - "php": "^5.5.9|>=7.0.8", + "php": "^7.1.3", "symfony/polyfill-ctype": "~1.8" }, "type": "library", "extra": { "branch-alias": { - "dev-master": "3.4-dev" + "dev-master": "4.2-dev" } }, "autoload": { @@ -11328,20 +11663,20 @@ ], "description": "Symfony Filesystem Component", "homepage": "https://symfony.com", - "time": "2019-01-01T13:45:19+00:00" + "time": "2019-01-16T20:35:37+00:00" }, { "name": "symfony/finder", - "version": "v3.4.21", + "version": "v3.4.22", "source": { "type": "git", "url": "https://github.com/symfony/finder.git", - "reference": "3f2a2ab6315dd7682d4c16dcae1e7b95c8b8555e" + "reference": "7c0c627220308928e958a87c293108e5891cde1d" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/finder/zipball/3f2a2ab6315dd7682d4c16dcae1e7b95c8b8555e", - "reference": "3f2a2ab6315dd7682d4c16dcae1e7b95c8b8555e", + "url": "https://api.github.com/repos/symfony/finder/zipball/7c0c627220308928e958a87c293108e5891cde1d", + "reference": "7c0c627220308928e958a87c293108e5891cde1d", "shasum": "" }, "require": { @@ -11377,20 +11712,20 @@ ], "description": "Symfony Finder Component", "homepage": "https://symfony.com", - "time": "2019-01-01T13:45:19+00:00" + "time": "2019-01-16T13:43:35+00:00" }, { "name": "symfony/http-foundation", - "version": "v3.4.21", + "version": "v3.4.22", "source": { "type": "git", "url": "https://github.com/symfony/http-foundation.git", - "reference": "2b97319e68816d2120eee7f13f4b76da12e04d03" + "reference": "9a81d2330ea255ded06a69b4f7fb7804836e7a05" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/http-foundation/zipball/2b97319e68816d2120eee7f13f4b76da12e04d03", - "reference": "2b97319e68816d2120eee7f13f4b76da12e04d03", + "url": "https://api.github.com/repos/symfony/http-foundation/zipball/9a81d2330ea255ded06a69b4f7fb7804836e7a05", + "reference": "9a81d2330ea255ded06a69b4f7fb7804836e7a05", "shasum": "" }, "require": { @@ -11431,26 +11766,26 @@ ], "description": "Symfony HttpFoundation Component", "homepage": "https://symfony.com", - "time": "2019-01-05T08:05:37+00:00" + "time": "2019-01-27T09:04:14+00:00" }, { "name": "symfony/http-kernel", - "version": "v3.4.21", + "version": "v3.4.22", "source": { "type": "git", "url": "https://github.com/symfony/http-kernel.git", - "reference": "60bd9d7444ca436e131c347d78ec039dd99a34b4" + "reference": "dc6bf17684b7120f7bf74fae85c9155506041002" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/http-kernel/zipball/60bd9d7444ca436e131c347d78ec039dd99a34b4", - "reference": "60bd9d7444ca436e131c347d78ec039dd99a34b4", + "url": "https://api.github.com/repos/symfony/http-kernel/zipball/dc6bf17684b7120f7bf74fae85c9155506041002", + "reference": "dc6bf17684b7120f7bf74fae85c9155506041002", "shasum": "" }, "require": { "php": "^5.5.9|>=7.0.8", "psr/log": "~1.0", - "symfony/debug": "~2.8|~3.0|~4.0", + "symfony/debug": "^3.3.3|~4.0", "symfony/event-dispatcher": "~2.8|~3.0|~4.0", "symfony/http-foundation": "~3.4.12|~4.0.12|^4.1.1", "symfony/polyfill-ctype": "~1.8" @@ -11520,7 +11855,7 @@ ], "description": "Symfony HttpKernel Component", "homepage": "https://symfony.com", - "time": "2019-01-06T15:53:59+00:00" + "time": "2019-02-03T12:22:50+00:00" }, { "name": "symfony/polyfill-ctype", @@ -11567,7 +11902,7 @@ }, { "name": "Gert de Pagter", - "email": "BackEndTea@gmail.com" + "email": "backendtea@gmail.com" } ], "description": "Symfony polyfill for ctype functions", @@ -11759,16 +12094,16 @@ }, { "name": "symfony/process", - "version": "v3.4.21", + "version": "v3.4.22", "source": { "type": "git", "url": "https://github.com/symfony/process.git", - "reference": "0d41dd7d95ed179aed6a13393b0f4f97bfa2d25c" + "reference": "009f8dda80930e89e8344a4e310b08f9ff07dd2e" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/process/zipball/0d41dd7d95ed179aed6a13393b0f4f97bfa2d25c", - "reference": "0d41dd7d95ed179aed6a13393b0f4f97bfa2d25c", + "url": "https://api.github.com/repos/symfony/process/zipball/009f8dda80930e89e8344a4e310b08f9ff07dd2e", + "reference": "009f8dda80930e89e8344a4e310b08f9ff07dd2e", "shasum": "" }, "require": { @@ -11804,7 +12139,7 @@ ], "description": "Symfony Process Component", "homepage": "https://symfony.com", - "time": "2019-01-02T21:24:08+00:00" + "time": "2019-01-16T13:27:11+00:00" }, { "name": "symfony/psr-http-message-bridge", @@ -11869,16 +12204,16 @@ }, { "name": "symfony/routing", - "version": "v3.4.21", + "version": "v3.4.22", "source": { "type": "git", "url": "https://github.com/symfony/routing.git", - "reference": "445d3629a26930158347a50d1a5f2456c49e0ae6" + "reference": "62f0b8d8cd2cd359c3caa5a9f5253a4a6d480646" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/routing/zipball/445d3629a26930158347a50d1a5f2456c49e0ae6", - "reference": "445d3629a26930158347a50d1a5f2456c49e0ae6", + "url": "https://api.github.com/repos/symfony/routing/zipball/62f0b8d8cd2cd359c3caa5a9f5253a4a6d480646", + "reference": "62f0b8d8cd2cd359c3caa5a9f5253a4a6d480646", "shasum": "" }, "require": { @@ -11942,20 +12277,20 @@ "uri", "url" ], - "time": "2019-01-01T13:45:19+00:00" + "time": "2019-01-29T08:47:12+00:00" }, { "name": "symfony/serializer", - "version": "v3.4.21", + "version": "v3.4.22", "source": { "type": "git", "url": "https://github.com/symfony/serializer.git", - "reference": "3bb84f8a785bf30be3d4aef6f3c80f103acc54df" + "reference": "a897373b86489ddecacc665d15ab32983a519907" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/serializer/zipball/3bb84f8a785bf30be3d4aef6f3c80f103acc54df", - "reference": "3bb84f8a785bf30be3d4aef6f3c80f103acc54df", + "url": "https://api.github.com/repos/symfony/serializer/zipball/a897373b86489ddecacc665d15ab32983a519907", + "reference": "a897373b86489ddecacc665d15ab32983a519907", "shasum": "" }, "require": { @@ -12021,20 +12356,20 @@ ], "description": "Symfony Serializer Component", "homepage": "https://symfony.com", - "time": "2019-01-01T13:45:19+00:00" + "time": "2019-01-26T19:55:54+00:00" }, { "name": "symfony/translation", - "version": "v3.4.21", + "version": "v3.4.22", "source": { "type": "git", "url": "https://github.com/symfony/translation.git", - "reference": "5f357063f4907cef47e5cf82fa3187fbfb700456" + "reference": "81cfcd6935cb7505640153576c1f9155b2a179c1" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/translation/zipball/5f357063f4907cef47e5cf82fa3187fbfb700456", - "reference": "5f357063f4907cef47e5cf82fa3187fbfb700456", + "url": "https://api.github.com/repos/symfony/translation/zipball/81cfcd6935cb7505640153576c1f9155b2a179c1", + "reference": "81cfcd6935cb7505640153576c1f9155b2a179c1", "shasum": "" }, "require": { @@ -12089,20 +12424,20 @@ ], "description": "Symfony Translation Component", "homepage": "https://symfony.com", - "time": "2019-01-01T13:45:19+00:00" + "time": "2019-01-25T10:00:44+00:00" }, { "name": "symfony/validator", - "version": "v3.4.21", + "version": "v3.4.22", "source": { "type": "git", "url": "https://github.com/symfony/validator.git", - "reference": "cd3fba16d309347883b74bb0ee8cb4720a60554c" + "reference": "06af494d8634df6ad9655ec7d80cb61983253912" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/validator/zipball/cd3fba16d309347883b74bb0ee8cb4720a60554c", - "reference": "cd3fba16d309347883b74bb0ee8cb4720a60554c", + "url": "https://api.github.com/repos/symfony/validator/zipball/06af494d8634df6ad9655ec7d80cb61983253912", + "reference": "06af494d8634df6ad9655ec7d80cb61983253912", "shasum": "" }, "require": { @@ -12174,20 +12509,20 @@ ], "description": "Symfony Validator Component", "homepage": "https://symfony.com", - "time": "2019-01-06T14:07:11+00:00" + "time": "2019-01-30T09:03:33+00:00" }, { "name": "symfony/var-dumper", - "version": "v3.4.21", + "version": "v3.4.22", "source": { "type": "git", "url": "https://github.com/symfony/var-dumper.git", - "reference": "a5f39641bb62e8b74e343467b145331273f615a2" + "reference": "2159335b452d929cbb9921fc4eb7d1bfed32d0be" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/var-dumper/zipball/a5f39641bb62e8b74e343467b145331273f615a2", - "reference": "a5f39641bb62e8b74e343467b145331273f615a2", + "url": "https://api.github.com/repos/symfony/var-dumper/zipball/2159335b452d929cbb9921fc4eb7d1bfed32d0be", + "reference": "2159335b452d929cbb9921fc4eb7d1bfed32d0be", "shasum": "" }, "require": { @@ -12243,20 +12578,20 @@ "debug", "dump" ], - "time": "2019-01-01T13:45:19+00:00" + "time": "2019-01-29T16:19:17+00:00" }, { "name": "symfony/yaml", - "version": "v3.4.21", + "version": "v3.4.22", "source": { "type": "git", "url": "https://github.com/symfony/yaml.git", - "reference": "554a59a1ccbaac238a89b19c8e551a556fd0e2ea" + "reference": "ba11776e9e6c15ad5759a07bffb15899bac75c2d" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/yaml/zipball/554a59a1ccbaac238a89b19c8e551a556fd0e2ea", - "reference": "554a59a1ccbaac238a89b19c8e551a556fd0e2ea", + "url": "https://api.github.com/repos/symfony/yaml/zipball/ba11776e9e6c15ad5759a07bffb15899bac75c2d", + "reference": "ba11776e9e6c15ad5759a07bffb15899bac75c2d", "shasum": "" }, "require": { @@ -12302,7 +12637,7 @@ ], "description": "Symfony Yaml Component", "homepage": "https://symfony.com", - "time": "2019-01-01T13:45:19+00:00" + "time": "2019-01-16T10:59:17+00:00" }, { "name": "twig/twig", @@ -12546,24 +12881,24 @@ }, { "name": "zaporylie/composer-drupal-optimizations", - "version": "1.0.2", + "version": "1.1.0", "source": { "type": "git", "url": "https://github.com/zaporylie/composer-drupal-optimizations.git", - "reference": "cc5eb9f0b5fa664885765748ce5190c1de7d2571" + "reference": "173c198fd7c9aefa5e5b68cd755ee63eb0abf7e8" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/zaporylie/composer-drupal-optimizations/zipball/cc5eb9f0b5fa664885765748ce5190c1de7d2571", - "reference": "cc5eb9f0b5fa664885765748ce5190c1de7d2571", + "url": "https://api.github.com/repos/zaporylie/composer-drupal-optimizations/zipball/173c198fd7c9aefa5e5b68cd755ee63eb0abf7e8", + "reference": "173c198fd7c9aefa5e5b68cd755ee63eb0abf7e8", "shasum": "" }, "require": { - "composer-plugin-api": "^1.1", - "drupal/core": "^8.5" + "composer-plugin-api": "^1.1" }, "require-dev": { - "composer/composer": "^1.6" + "composer/composer": "^1.6", + "phpunit/phpunit": "^6" }, "type": "composer-plugin", "extra": { @@ -12585,7 +12920,7 @@ } ], "description": "Composer plugin to improve composer performance for Drupal projects", - "time": "2018-07-15T18:04:58+00:00" + "time": "2019-02-20T10:00:17+00:00" }, { "name": "zendframework/zend-diactoros", @@ -12698,22 +13033,24 @@ }, { "name": "zendframework/zend-feed", - "version": "2.10.3", + "version": "2.11.0", "source": { "type": "git", "url": "https://github.com/zendframework/zend-feed.git", - "reference": "6641f4cf3f4586c63f83fd70b6d19966025c8888" + "reference": "5248e9fffa760e5c36092aeff02c3797e4a8a690" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/zendframework/zend-feed/zipball/6641f4cf3f4586c63f83fd70b6d19966025c8888", - "reference": "6641f4cf3f4586c63f83fd70b6d19966025c8888", + "url": "https://api.github.com/repos/zendframework/zend-feed/zipball/5248e9fffa760e5c36092aeff02c3797e4a8a690", + "reference": "5248e9fffa760e5c36092aeff02c3797e4a8a690", "shasum": "" }, "require": { + "ext-dom": "*", + "ext-libxml": "*", "php": "^5.6 || ^7.0", "zendframework/zend-escaper": "^2.5.2", - "zendframework/zend-stdlib": "^2.7.7 || ^3.1" + "zendframework/zend-stdlib": "^3.2.1" }, "require-dev": { "phpunit/phpunit": "^5.7.23 || ^6.4.3", @@ -12736,8 +13073,8 @@ "type": "library", "extra": { "branch-alias": { - "dev-master": "2.10.x-dev", - "dev-develop": "2.11.x-dev" + "dev-master": "2.11.x-dev", + "dev-develop": "2.12.x-dev" } }, "autoload": { @@ -12755,7 +13092,7 @@ "feed", "zf" ], - "time": "2018-08-01T13:53:20+00:00" + "time": "2019-01-29T21:37:15+00:00" }, { "name": "zendframework/zend-stdlib", @@ -12805,16 +13142,16 @@ }, { "name": "zendframework/zendxml", - "version": "1.1.0", + "version": "1.2.0", "source": { "type": "git", "url": "https://github.com/zendframework/ZendXml.git", - "reference": "267db6a2c431a08a8f8ff0f1f4c302a5ba6f5b99" + "reference": "eceab37a591c9e140772a1470338258857339e00" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/zendframework/ZendXml/zipball/267db6a2c431a08a8f8ff0f1f4c302a5ba6f5b99", - "reference": "267db6a2c431a08a8f8ff0f1f4c302a5ba6f5b99", + "url": "https://api.github.com/repos/zendframework/ZendXml/zipball/eceab37a591c9e140772a1470338258857339e00", + "reference": "eceab37a591c9e140772a1470338258857339e00", "shasum": "" }, "require": { @@ -12827,8 +13164,8 @@ "type": "library", "extra": { "branch-alias": { - "dev-master": "1.1.x-dev", - "dev-develop": "1.2.x-dev" + "dev-master": "1.2.x-dev", + "dev-develop": "1.3.x-dev" } }, "autoload": { @@ -12847,7 +13184,7 @@ "xml", "zf" ], - "time": "2018-04-30T15:11:04+00:00" + "time": "2019-01-22T19:42:14+00:00" } ], "packages-dev": [], diff --git a/config/sync/comment_notify.settings.yml b/config/sync/comment_notify.settings.yml index 17a406f..268d611 100644 --- a/config/sync/comment_notify.settings.yml +++ b/config/sync/comment_notify.settings.yml @@ -8,10 +8,14 @@ enable_default: entity_author: true mail_templates: watcher: - subject: '[site:name] :: new comment on [node:title]' - body: "Hi [comment-subscribed:author],\r\n\r\n[comment:author] has commented on: \"[node:title]\"\r\n\r\n----\r\n[comment:title]\r\n[comment:body]\r\n----\r\n\r\nYou can view the comment at the following url\r\n[comment:url]\r\n\r\nYou can stop receiving emails when someone replies to this post,\r\nby going to [comment-subscribed:unsubscribe-url]\r\n\r\nYou can set up auto-following feature for all future posts\r\nby creating your own user with a few clicks here [site:login-url]\r\n\r\n-- [site:name] team\r\n[site:url]\r\n" + node: + subject: '[site:name] :: new comment on [node:title]' + body: "Hi [comment-subscribed:author],\r\n\r\n[comment:author] has commented on: \"[node:title]\"\r\n\r\n----\r\n[comment:title]\r\n[comment:body]\r\n----\r\n\r\nYou can view the comment at the following url\r\n[comment:url]\r\n\r\nYou can stop receiving emails when someone replies to this post,\r\nby going to [comment-subscribed:unsubscribe-url]\r\n\r\nYou can set up auto-following feature for all future posts\r\nby creating your own user with a few clicks here [site:login-url]\r\n\r\n-- [site:name] team\r\n[site:url]\r\n" entity_author: - subject: '[site:name] :: new comment for your post' - body: "Hi [node:author],\r\n\r\nYou have received a comment on: \"[node:title]\"\r\n\r\n----\r\n[comment:title]\r\n[comment:body]\r\n----\r\n\r\nYou can view the comment at the following url\r\n[comment:url]\r\n\r\nYou will receive emails like this for all replies to your posts. You can\r\ndisable this by logging in and changing the settings on your user account at\r\n[node:author:edit-url].\r\n\r\n-- [site:name] team\r\n[site:url]\r\n" + node: + subject: '[site:name] :: new comment for your post' + body: "Hi [node:author],\r\n\r\nYou have received a comment on: \"[node:title]\"\r\n\r\n----\r\n[comment:title]\r\n[comment:body]\r\n----\r\n\r\nYou can view the comment at the following url\r\n[comment:url]\r\n\r\nYou will receive emails like this for all replies to your posts. You can\r\ndisable this by logging in and changing the settings on your user account at\r\n[node:author:edit-url].\r\n\r\n-- [site:name] team\r\n[site:url]\r\n" _core: default_config_hash: Q6HMOSKUhb-YgBPZ1JIbcVeOxHPv-eJoBGYmXiG9Pik +bundle_types: + - node--blog--comment diff --git a/config/sync/config_snapshot.snapshot.config_sync.module.drutopia_creative_license.yml b/config/sync/config_snapshot.snapshot.config_sync.module.drutopia_creative_license.yml index 1b676b1..98c34ba 100644 --- a/config/sync/config_snapshot.snapshot.config_sync.module.drutopia_creative_license.yml +++ b/config/sync/config_snapshot.snapshot.config_sync.module.drutopia_creative_license.yml @@ -9,6 +9,225 @@ snapshotSet: config_sync extensionType: module extensionName: drutopia_creative_license items: + - + collection: '' + name: config_snapshot.snapshot.config_sync.module.drutopia_creative_license + data: + langcode: en + status: true + dependencies: + module: + - drutopia_creative_license + id: config_sync.module.drutopia_creative_license + snapshotSet: config_sync + extensionType: module + extensionName: drutopia_creative_license + items: + - + collection: '' + name: core.entity_view_display.taxonomy_term.license.default + data: + langcode: en + status: true + dependencies: + config: + - taxonomy.vocabulary.license + module: + - ds + - text + third_party_settings: + ds: + layout: + id: layout_onecol + library: layout_discovery/onecol + disable_css: false + entity_classes: all_classes + settings: { } + regions: + content: + - description + id: taxonomy_term.license.default + targetEntityType: taxonomy_term + bundle: license + mode: default + content: + description: + label: hidden + type: text_default + weight: 0 + region: content + settings: { } + third_party_settings: { } + hidden: { } + - + collection: '' + name: field.storage.node.field_license + data: + langcode: en + status: true + dependencies: + module: + - node + - taxonomy + id: node.field_license + field_name: field_license + entity_type: node + type: entity_reference + settings: + target_type: taxonomy_term + module: core + locked: false + cardinality: 1 + translatable: true + indexes: { } + persist_with_no_fields: false + custom_storage: false + - + collection: '' + name: taxonomy.vocabulary.license + data: + langcode: en + status: true + dependencies: { } + name: License + vid: license + description: '' + hierarchy: 0 + weight: 0 + - + collection: '' + name: core.base_field_override.taxonomy_term.license.changed + data: + langcode: en + status: true + dependencies: + config: + - taxonomy.vocabulary.license + id: taxonomy_term.license.changed + field_name: changed + entity_type: taxonomy_term + bundle: license + label: Changed + description: 'The time that the term was last edited.' + required: false + translatable: false + default_value: { } + default_value_callback: '' + settings: { } + field_type: changed + - + collection: '' + name: core.base_field_override.taxonomy_term.license.description + data: + langcode: en + status: true + dependencies: + config: + - taxonomy.vocabulary.license + module: + - text + id: taxonomy_term.license.description + field_name: description + entity_type: taxonomy_term + bundle: license + label: Description + description: '' + required: false + translatable: false + default_value: { } + default_value_callback: '' + settings: { } + field_type: text_long + - + collection: '' + name: core.base_field_override.taxonomy_term.license.metatag + data: + langcode: en + status: true + dependencies: + config: + - taxonomy.vocabulary.license + id: taxonomy_term.license.metatag + field_name: metatag + entity_type: taxonomy_term + bundle: license + label: Metatags + description: 'The meta tags for the entity.' + required: false + translatable: false + default_value: { } + default_value_callback: '' + settings: { } + field_type: map + - + collection: '' + name: core.base_field_override.taxonomy_term.license.name + data: + langcode: en + status: true + dependencies: + config: + - taxonomy.vocabulary.license + id: taxonomy_term.license.name + field_name: name + entity_type: taxonomy_term + bundle: license + label: Name + description: '' + required: true + translatable: false + default_value: { } + default_value_callback: '' + settings: { } + field_type: string + - + collection: '' + name: core.base_field_override.taxonomy_term.license.path + data: + langcode: en + status: true + dependencies: + config: + - taxonomy.vocabulary.license + module: + - path + id: taxonomy_term.license.path + field_name: path + entity_type: taxonomy_term + bundle: license + label: 'URL alias' + description: '' + required: false + translatable: false + default_value: { } + default_value_callback: '' + settings: { } + field_type: path + - + collection: '' + name: core.base_field_override.taxonomy_term.license.status + data: + langcode: en + status: true + dependencies: + config: + - taxonomy.vocabulary.license + id: taxonomy_term.license.status + field_name: status + entity_type: taxonomy_term + bundle: license + label: Published + description: '' + required: false + translatable: false + default_value: + - + value: 1 + default_value_callback: '' + settings: + on_label: 'On' + off_label: 'Off' + field_type: boolean - collection: '' name: core.entity_view_display.taxonomy_term.license.default diff --git a/config/sync/config_snapshot.snapshot.config_sync.module.markdown.yml b/config/sync/config_snapshot.snapshot.config_sync.module.markdown.yml new file mode 100644 index 0000000..1bed666 --- /dev/null +++ b/config/sync/config_snapshot.snapshot.config_sync.module.markdown.yml @@ -0,0 +1,16 @@ +uuid: 336909a4-d8ff-4fd4-8fe4-6050d9c0e16d +langcode: en +status: true +dependencies: + module: + - markdown +id: config_sync.module.markdown +snapshotSet: config_sync +extensionType: module +extensionName: markdown +items: + - + collection: '' + name: markdown.settings + data: + markdown_library: php-markdown diff --git a/config/sync/config_snapshot.snapshot.config_sync.module.metatag_facebook.yml b/config/sync/config_snapshot.snapshot.config_sync.module.metatag_facebook.yml new file mode 100644 index 0000000..b5bae05 --- /dev/null +++ b/config/sync/config_snapshot.snapshot.config_sync.module.metatag_facebook.yml @@ -0,0 +1,11 @@ +uuid: 45874301-cb0c-498e-930f-360175ab0413 +langcode: en +status: true +dependencies: + module: + - metatag_facebook +id: config_sync.module.metatag_facebook +snapshotSet: config_sync +extensionType: module +extensionName: metatag_facebook +items: { } diff --git a/config/sync/config_snapshot.snapshot.config_sync.module.metatag_open_graph.yml b/config/sync/config_snapshot.snapshot.config_sync.module.metatag_open_graph.yml new file mode 100644 index 0000000..e0d3caa --- /dev/null +++ b/config/sync/config_snapshot.snapshot.config_sync.module.metatag_open_graph.yml @@ -0,0 +1,11 @@ +uuid: c5e34b17-d6b7-4e40-93c2-4659bc776095 +langcode: en +status: true +dependencies: + module: + - metatag_open_graph +id: config_sync.module.metatag_open_graph +snapshotSet: config_sync +extensionType: module +extensionName: metatag_open_graph +items: { } diff --git a/config/sync/config_snapshot.snapshot.config_sync.module.metatag_twitter_cards.yml b/config/sync/config_snapshot.snapshot.config_sync.module.metatag_twitter_cards.yml new file mode 100644 index 0000000..b1dc231 --- /dev/null +++ b/config/sync/config_snapshot.snapshot.config_sync.module.metatag_twitter_cards.yml @@ -0,0 +1,11 @@ +uuid: c4469afe-36e6-496c-93f2-e6972d51de13 +langcode: en +status: true +dependencies: + module: + - metatag_twitter_cards +id: config_sync.module.metatag_twitter_cards +snapshotSet: config_sync +extensionType: module +extensionName: metatag_twitter_cards +items: { } diff --git a/config/sync/config_snapshot.snapshot.config_sync.module.paragraphs_features.yml b/config/sync/config_snapshot.snapshot.config_sync.module.paragraphs_features.yml new file mode 100644 index 0000000..9f212bb --- /dev/null +++ b/config/sync/config_snapshot.snapshot.config_sync.module.paragraphs_features.yml @@ -0,0 +1,16 @@ +uuid: 97234a14-9821-446a-9bdd-9f9cacaf4715 +langcode: en +status: true +dependencies: + module: + - paragraphs_features +id: config_sync.module.paragraphs_features +snapshotSet: config_sync +extensionType: module +extensionName: paragraphs_features +items: + - + collection: '' + name: paragraphs_features.settings + data: + dropdown_to_button: false diff --git a/config/sync/config_snapshot.snapshot.config_sync.module.preview_link.yml b/config/sync/config_snapshot.snapshot.config_sync.module.preview_link.yml new file mode 100644 index 0000000..7ca2367 --- /dev/null +++ b/config/sync/config_snapshot.snapshot.config_sync.module.preview_link.yml @@ -0,0 +1,16 @@ +uuid: cc0e34a0-e6c4-4e64-b41c-b6d83736ce26 +langcode: en +status: true +dependencies: + module: + - preview_link +id: config_sync.module.preview_link +snapshotSet: config_sync +extensionType: module +extensionName: preview_link +items: + - + collection: '' + name: preview_link.settings + data: + enabled_entity_types: { } diff --git a/config/sync/config_snapshot.snapshot.config_sync.module.syslog.yml b/config/sync/config_snapshot.snapshot.config_sync.module.syslog.yml new file mode 100644 index 0000000..3730950 --- /dev/null +++ b/config/sync/config_snapshot.snapshot.config_sync.module.syslog.yml @@ -0,0 +1,18 @@ +uuid: e88d65b8-4aec-4fbf-8548-9e8545efc31b +langcode: en +status: true +dependencies: + module: + - syslog +id: config_sync.module.syslog +snapshotSet: config_sync +extensionType: module +extensionName: syslog +items: + - + collection: '' + name: syslog.settings + data: + identity: drupal + facility: 8 + format: '!base_url|!timestamp|!type|!ip|!request_uri|!referer|!uid|!link|!message' diff --git a/config/sync/core.base_field_override.menu_link_content.menu_link_content.changed.yml b/config/sync/core.base_field_override.menu_link_content.menu_link_content.changed.yml index 1d69fd0..0325a94 100644 --- a/config/sync/core.base_field_override.menu_link_content.menu_link_content.changed.yml +++ b/config/sync/core.base_field_override.menu_link_content.menu_link_content.changed.yml @@ -11,7 +11,7 @@ bundle: menu_link_content label: Changed description: 'The time that the menu link was last edited.' required: false -translatable: false +translatable: true default_value: { } default_value_callback: '' settings: { } diff --git a/config/sync/core.base_field_override.menu_link_content.menu_link_content.description.yml b/config/sync/core.base_field_override.menu_link_content.menu_link_content.description.yml index c7372db..5c7a4b7 100644 --- a/config/sync/core.base_field_override.menu_link_content.menu_link_content.description.yml +++ b/config/sync/core.base_field_override.menu_link_content.menu_link_content.description.yml @@ -11,7 +11,7 @@ bundle: menu_link_content label: Description description: 'Shown when hovering over the menu link.' required: false -translatable: false +translatable: true default_value: { } default_value_callback: '' settings: { } diff --git a/config/sync/core.base_field_override.menu_link_content.menu_link_content.metatag.yml b/config/sync/core.base_field_override.menu_link_content.menu_link_content.metatag.yml index 3f94bba..4a46ec9 100644 --- a/config/sync/core.base_field_override.menu_link_content.menu_link_content.metatag.yml +++ b/config/sync/core.base_field_override.menu_link_content.menu_link_content.metatag.yml @@ -11,7 +11,7 @@ bundle: menu_link_content label: Metatags description: 'The meta tags for the entity.' required: false -translatable: false +translatable: true default_value: { } default_value_callback: '' settings: { } diff --git a/config/sync/core.base_field_override.menu_link_content.menu_link_content.title.yml b/config/sync/core.base_field_override.menu_link_content.menu_link_content.title.yml index 4f0a2c9..0dba987 100644 --- a/config/sync/core.base_field_override.menu_link_content.menu_link_content.title.yml +++ b/config/sync/core.base_field_override.menu_link_content.menu_link_content.title.yml @@ -11,7 +11,7 @@ bundle: menu_link_content label: 'Menu link title' description: 'The text to be used for this link in the menu.' required: true -translatable: false +translatable: true default_value: { } default_value_callback: '' settings: { } diff --git a/config/sync/core.base_field_override.node.case_study.menu_link.yml b/config/sync/core.base_field_override.node.case_study.menu_link.yml index 093412a..d5259d8 100644 --- a/config/sync/core.base_field_override.node.case_study.menu_link.yml +++ b/config/sync/core.base_field_override.node.case_study.menu_link.yml @@ -11,7 +11,7 @@ bundle: case_study label: 'Menu link' description: 'Computed menu link for the node (only available during node saving).' required: false -translatable: false +translatable: true default_value: { } default_value_callback: '' settings: diff --git a/config/sync/core.base_field_override.node.case_study.title.yml b/config/sync/core.base_field_override.node.case_study.title.yml index 49da9dc..53040bc 100644 --- a/config/sync/core.base_field_override.node.case_study.title.yml +++ b/config/sync/core.base_field_override.node.case_study.title.yml @@ -11,7 +11,7 @@ bundle: case_study label: Title description: '' required: true -translatable: false +translatable: true default_value: { } default_value_callback: '' settings: { } diff --git a/config/sync/core.base_field_override.node.landing_page.menu_link.yml b/config/sync/core.base_field_override.node.landing_page.menu_link.yml index b26bd90..6ed5e68 100644 --- a/config/sync/core.base_field_override.node.landing_page.menu_link.yml +++ b/config/sync/core.base_field_override.node.landing_page.menu_link.yml @@ -11,7 +11,7 @@ bundle: landing_page label: 'Menu link' description: 'Computed menu link for the node (only available during node saving).' required: false -translatable: false +translatable: true default_value: { } default_value_callback: '' settings: diff --git a/config/sync/core.base_field_override.node.landing_page.title.yml b/config/sync/core.base_field_override.node.landing_page.title.yml index b77b151..6a47849 100644 --- a/config/sync/core.base_field_override.node.landing_page.title.yml +++ b/config/sync/core.base_field_override.node.landing_page.title.yml @@ -11,7 +11,7 @@ bundle: landing_page label: Title description: '' required: true -translatable: false +translatable: true default_value: { } default_value_callback: '' settings: { } diff --git a/config/sync/core.base_field_override.paragraph.faq.created.yml b/config/sync/core.base_field_override.paragraph.faq.created.yml index be745b2..a5c46ca 100644 --- a/config/sync/core.base_field_override.paragraph.faq.created.yml +++ b/config/sync/core.base_field_override.paragraph.faq.created.yml @@ -11,7 +11,7 @@ bundle: faq label: 'Authored on' description: 'The time that the Paragraph was created.' required: false -translatable: false +translatable: true default_value: { } default_value_callback: '' settings: { } diff --git a/config/sync/core.base_field_override.paragraph.faq.status.yml b/config/sync/core.base_field_override.paragraph.faq.status.yml index 16f87af..3062a58 100644 --- a/config/sync/core.base_field_override.paragraph.faq.status.yml +++ b/config/sync/core.base_field_override.paragraph.faq.status.yml @@ -11,7 +11,7 @@ bundle: faq label: Published description: '' required: false -translatable: false +translatable: true default_value: - value: 1 diff --git a/config/sync/core.base_field_override.paragraph.faq.uid.yml b/config/sync/core.base_field_override.paragraph.faq.uid.yml index d4b994d..af5621c 100644 --- a/config/sync/core.base_field_override.paragraph.faq.uid.yml +++ b/config/sync/core.base_field_override.paragraph.faq.uid.yml @@ -11,7 +11,7 @@ bundle: faq label: 'Authored by' description: 'The user ID of the paragraphs author.' required: false -translatable: false +translatable: true default_value: { } default_value_callback: 'Drupal\paragraphs\Entity\Paragraph::getCurrentUserId' settings: diff --git a/config/sync/core.base_field_override.paragraph.file.created.yml b/config/sync/core.base_field_override.paragraph.file.created.yml index 2f32001..cfba079 100644 --- a/config/sync/core.base_field_override.paragraph.file.created.yml +++ b/config/sync/core.base_field_override.paragraph.file.created.yml @@ -11,7 +11,7 @@ bundle: file label: 'Authored on' description: 'The time that the Paragraph was created.' required: false -translatable: false +translatable: true default_value: { } default_value_callback: '' settings: { } diff --git a/config/sync/core.base_field_override.paragraph.file.status.yml b/config/sync/core.base_field_override.paragraph.file.status.yml index a1378a3..d9f3f7a 100644 --- a/config/sync/core.base_field_override.paragraph.file.status.yml +++ b/config/sync/core.base_field_override.paragraph.file.status.yml @@ -11,7 +11,7 @@ bundle: file label: Published description: '' required: false -translatable: false +translatable: true default_value: - value: 1 diff --git a/config/sync/core.base_field_override.paragraph.file.uid.yml b/config/sync/core.base_field_override.paragraph.file.uid.yml index 206278d..f3d1230 100644 --- a/config/sync/core.base_field_override.paragraph.file.uid.yml +++ b/config/sync/core.base_field_override.paragraph.file.uid.yml @@ -11,7 +11,7 @@ bundle: file label: 'Authored by' description: 'The user ID of the paragraphs author.' required: false -translatable: false +translatable: true default_value: { } default_value_callback: 'Drupal\paragraphs\Entity\Paragraph::getCurrentUserId' settings: diff --git a/config/sync/core.base_field_override.paragraph.image.created.yml b/config/sync/core.base_field_override.paragraph.image.created.yml index ca0fc75..25b9b1a 100644 --- a/config/sync/core.base_field_override.paragraph.image.created.yml +++ b/config/sync/core.base_field_override.paragraph.image.created.yml @@ -11,7 +11,7 @@ bundle: image label: 'Authored on' description: 'The time that the Paragraph was created.' required: false -translatable: false +translatable: true default_value: { } default_value_callback: '' settings: { } diff --git a/config/sync/core.base_field_override.paragraph.image.status.yml b/config/sync/core.base_field_override.paragraph.image.status.yml index 84383a1..eeae8e2 100644 --- a/config/sync/core.base_field_override.paragraph.image.status.yml +++ b/config/sync/core.base_field_override.paragraph.image.status.yml @@ -11,7 +11,7 @@ bundle: image label: Published description: '' required: false -translatable: false +translatable: true default_value: - value: 1 diff --git a/config/sync/core.base_field_override.paragraph.image.uid.yml b/config/sync/core.base_field_override.paragraph.image.uid.yml index 16c6259..3419de3 100644 --- a/config/sync/core.base_field_override.paragraph.image.uid.yml +++ b/config/sync/core.base_field_override.paragraph.image.uid.yml @@ -11,7 +11,7 @@ bundle: image label: 'Authored by' description: 'The user ID of the paragraphs author.' required: false -translatable: false +translatable: true default_value: { } default_value_callback: 'Drupal\paragraphs\Entity\Paragraph::getCurrentUserId' settings: diff --git a/config/sync/core.base_field_override.paragraph.quotation_with_image.created.yml b/config/sync/core.base_field_override.paragraph.quotation_with_image.created.yml index 1afeafb..0431259 100644 --- a/config/sync/core.base_field_override.paragraph.quotation_with_image.created.yml +++ b/config/sync/core.base_field_override.paragraph.quotation_with_image.created.yml @@ -11,7 +11,7 @@ bundle: quotation_with_image label: 'Authored on' description: 'The time that the Paragraph was created.' required: false -translatable: false +translatable: true default_value: { } default_value_callback: '' settings: { } diff --git a/config/sync/core.base_field_override.paragraph.quotation_with_image.status.yml b/config/sync/core.base_field_override.paragraph.quotation_with_image.status.yml index 97d3b5b..2a681f2 100644 --- a/config/sync/core.base_field_override.paragraph.quotation_with_image.status.yml +++ b/config/sync/core.base_field_override.paragraph.quotation_with_image.status.yml @@ -11,7 +11,7 @@ bundle: quotation_with_image label: Published description: '' required: false -translatable: false +translatable: true default_value: - value: 1 diff --git a/config/sync/core.base_field_override.paragraph.quotation_with_image.uid.yml b/config/sync/core.base_field_override.paragraph.quotation_with_image.uid.yml index 42b0724..46faf5f 100644 --- a/config/sync/core.base_field_override.paragraph.quotation_with_image.uid.yml +++ b/config/sync/core.base_field_override.paragraph.quotation_with_image.uid.yml @@ -11,7 +11,7 @@ bundle: quotation_with_image label: 'Authored by' description: 'The user ID of the paragraphs author.' required: false -translatable: false +translatable: true default_value: { } default_value_callback: 'Drupal\paragraphs\Entity\Paragraph::getCurrentUserId' settings: diff --git a/config/sync/core.base_field_override.paragraph.slide.created.yml b/config/sync/core.base_field_override.paragraph.slide.created.yml index 8a37d48..66fc1ad 100644 --- a/config/sync/core.base_field_override.paragraph.slide.created.yml +++ b/config/sync/core.base_field_override.paragraph.slide.created.yml @@ -11,7 +11,7 @@ bundle: slide label: 'Authored on' description: 'The time that the Paragraph was created.' required: false -translatable: false +translatable: true default_value: { } default_value_callback: '' settings: { } diff --git a/config/sync/core.base_field_override.paragraph.slide.status.yml b/config/sync/core.base_field_override.paragraph.slide.status.yml index 5e7be52..81d543f 100644 --- a/config/sync/core.base_field_override.paragraph.slide.status.yml +++ b/config/sync/core.base_field_override.paragraph.slide.status.yml @@ -11,7 +11,7 @@ bundle: slide label: Published description: '' required: false -translatable: false +translatable: true default_value: - value: 1 diff --git a/config/sync/core.base_field_override.paragraph.slide.uid.yml b/config/sync/core.base_field_override.paragraph.slide.uid.yml index 263fbb9..9fa3a3e 100644 --- a/config/sync/core.base_field_override.paragraph.slide.uid.yml +++ b/config/sync/core.base_field_override.paragraph.slide.uid.yml @@ -11,7 +11,7 @@ bundle: slide label: 'Authored by' description: 'The user ID of the paragraphs author.' required: false -translatable: false +translatable: true default_value: { } default_value_callback: 'Drupal\paragraphs\Entity\Paragraph::getCurrentUserId' settings: diff --git a/config/sync/core.base_field_override.paragraph.storyline_header.created.yml b/config/sync/core.base_field_override.paragraph.storyline_header.created.yml index fabbabd..b9ee9b8 100644 --- a/config/sync/core.base_field_override.paragraph.storyline_header.created.yml +++ b/config/sync/core.base_field_override.paragraph.storyline_header.created.yml @@ -11,7 +11,7 @@ bundle: storyline_header label: 'Authored on' description: 'The time that the Paragraph was created.' required: false -translatable: false +translatable: true default_value: { } default_value_callback: '' settings: { } diff --git a/config/sync/core.base_field_override.paragraph.storyline_header.status.yml b/config/sync/core.base_field_override.paragraph.storyline_header.status.yml index cda978d..0a922b1 100644 --- a/config/sync/core.base_field_override.paragraph.storyline_header.status.yml +++ b/config/sync/core.base_field_override.paragraph.storyline_header.status.yml @@ -11,7 +11,7 @@ bundle: storyline_header label: Published description: '' required: false -translatable: false +translatable: true default_value: - value: 1 diff --git a/config/sync/core.base_field_override.paragraph.storyline_header.uid.yml b/config/sync/core.base_field_override.paragraph.storyline_header.uid.yml index 75a6ee8..a094644 100644 --- a/config/sync/core.base_field_override.paragraph.storyline_header.uid.yml +++ b/config/sync/core.base_field_override.paragraph.storyline_header.uid.yml @@ -11,7 +11,7 @@ bundle: storyline_header label: 'Authored by' description: 'The user ID of the paragraphs author.' required: false -translatable: false +translatable: true default_value: { } default_value_callback: 'Drupal\paragraphs\Entity\Paragraph::getCurrentUserId' settings: diff --git a/config/sync/core.base_field_override.paragraph.storyline_item.created.yml b/config/sync/core.base_field_override.paragraph.storyline_item.created.yml index 0485664..4281d64 100644 --- a/config/sync/core.base_field_override.paragraph.storyline_item.created.yml +++ b/config/sync/core.base_field_override.paragraph.storyline_item.created.yml @@ -11,7 +11,7 @@ bundle: storyline_item label: 'Authored on' description: 'The time that the Paragraph was created.' required: false -translatable: false +translatable: true default_value: { } default_value_callback: '' settings: { } diff --git a/config/sync/core.base_field_override.paragraph.storyline_item.status.yml b/config/sync/core.base_field_override.paragraph.storyline_item.status.yml index 05e737a..ad21639 100644 --- a/config/sync/core.base_field_override.paragraph.storyline_item.status.yml +++ b/config/sync/core.base_field_override.paragraph.storyline_item.status.yml @@ -11,7 +11,7 @@ bundle: storyline_item label: Published description: '' required: false -translatable: false +translatable: true default_value: - value: 1 diff --git a/config/sync/core.base_field_override.paragraph.storyline_item.uid.yml b/config/sync/core.base_field_override.paragraph.storyline_item.uid.yml index e6c83d8..7b61f76 100644 --- a/config/sync/core.base_field_override.paragraph.storyline_item.uid.yml +++ b/config/sync/core.base_field_override.paragraph.storyline_item.uid.yml @@ -11,7 +11,7 @@ bundle: storyline_item label: 'Authored by' description: 'The user ID of the paragraphs author.' required: false -translatable: false +translatable: true default_value: { } default_value_callback: 'Drupal\paragraphs\Entity\Paragraph::getCurrentUserId' settings: diff --git a/config/sync/core.base_field_override.paragraph.text.created.yml b/config/sync/core.base_field_override.paragraph.text.created.yml index 842722b..cfa4b53 100644 --- a/config/sync/core.base_field_override.paragraph.text.created.yml +++ b/config/sync/core.base_field_override.paragraph.text.created.yml @@ -11,7 +11,7 @@ bundle: text label: 'Authored on' description: 'The time that the Paragraph was created.' required: false -translatable: false +translatable: true default_value: { } default_value_callback: '' settings: { } diff --git a/config/sync/core.base_field_override.paragraph.text.status.yml b/config/sync/core.base_field_override.paragraph.text.status.yml index 91cd382..eac0927 100644 --- a/config/sync/core.base_field_override.paragraph.text.status.yml +++ b/config/sync/core.base_field_override.paragraph.text.status.yml @@ -11,7 +11,7 @@ bundle: text label: Published description: '' required: false -translatable: false +translatable: true default_value: - value: 1 diff --git a/config/sync/core.base_field_override.paragraph.text.uid.yml b/config/sync/core.base_field_override.paragraph.text.uid.yml index 38b3bed..5093cd0 100644 --- a/config/sync/core.base_field_override.paragraph.text.uid.yml +++ b/config/sync/core.base_field_override.paragraph.text.uid.yml @@ -11,7 +11,7 @@ bundle: text label: 'Authored by' description: 'The user ID of the paragraphs author.' required: false -translatable: false +translatable: true default_value: { } default_value_callback: 'Drupal\paragraphs\Entity\Paragraph::getCurrentUserId' settings: diff --git a/config/sync/core.base_field_override.paragraph.title.created.yml b/config/sync/core.base_field_override.paragraph.title.created.yml index 699a67b..9e20356 100644 --- a/config/sync/core.base_field_override.paragraph.title.created.yml +++ b/config/sync/core.base_field_override.paragraph.title.created.yml @@ -11,7 +11,7 @@ bundle: title label: 'Authored on' description: 'The time that the Paragraph was created.' required: false -translatable: false +translatable: true default_value: { } default_value_callback: '' settings: { } diff --git a/config/sync/core.base_field_override.paragraph.title.status.yml b/config/sync/core.base_field_override.paragraph.title.status.yml index 7992cef..56b7473 100644 --- a/config/sync/core.base_field_override.paragraph.title.status.yml +++ b/config/sync/core.base_field_override.paragraph.title.status.yml @@ -11,7 +11,7 @@ bundle: title label: Published description: '' required: false -translatable: false +translatable: true default_value: - value: 1 diff --git a/config/sync/core.base_field_override.paragraph.title.uid.yml b/config/sync/core.base_field_override.paragraph.title.uid.yml index 00dc1f8..4df52c7 100644 --- a/config/sync/core.base_field_override.paragraph.title.uid.yml +++ b/config/sync/core.base_field_override.paragraph.title.uid.yml @@ -11,7 +11,7 @@ bundle: title label: 'Authored by' description: 'The user ID of the paragraphs author.' required: false -translatable: false +translatable: true default_value: { } default_value_callback: 'Drupal\paragraphs\Entity\Paragraph::getCurrentUserId' settings: diff --git a/config/sync/core.base_field_override.paragraph.update.created.yml b/config/sync/core.base_field_override.paragraph.update.created.yml index 3157f64..a356065 100644 --- a/config/sync/core.base_field_override.paragraph.update.created.yml +++ b/config/sync/core.base_field_override.paragraph.update.created.yml @@ -11,7 +11,7 @@ bundle: update label: 'Authored on' description: 'The time that the Paragraph was created.' required: false -translatable: false +translatable: true default_value: { } default_value_callback: '' settings: { } diff --git a/config/sync/core.base_field_override.paragraph.update.status.yml b/config/sync/core.base_field_override.paragraph.update.status.yml index 05c73e8..40ef081 100644 --- a/config/sync/core.base_field_override.paragraph.update.status.yml +++ b/config/sync/core.base_field_override.paragraph.update.status.yml @@ -11,7 +11,7 @@ bundle: update label: Published description: '' required: false -translatable: false +translatable: true default_value: - value: 1 diff --git a/config/sync/core.base_field_override.paragraph.update.uid.yml b/config/sync/core.base_field_override.paragraph.update.uid.yml index cb77d6e..0a6aacf 100644 --- a/config/sync/core.base_field_override.paragraph.update.uid.yml +++ b/config/sync/core.base_field_override.paragraph.update.uid.yml @@ -11,7 +11,7 @@ bundle: update label: 'Authored by' description: 'The user ID of the paragraphs author.' required: false -translatable: false +translatable: true default_value: { } default_value_callback: 'Drupal\paragraphs\Entity\Paragraph::getCurrentUserId' settings: diff --git a/config/sync/core.base_field_override.paragraph.video.created.yml b/config/sync/core.base_field_override.paragraph.video.created.yml index 057be97..53ee494 100644 --- a/config/sync/core.base_field_override.paragraph.video.created.yml +++ b/config/sync/core.base_field_override.paragraph.video.created.yml @@ -11,7 +11,7 @@ bundle: video label: 'Authored on' description: 'The time that the Paragraph was created.' required: false -translatable: false +translatable: true default_value: { } default_value_callback: '' settings: { } diff --git a/config/sync/core.base_field_override.paragraph.video.status.yml b/config/sync/core.base_field_override.paragraph.video.status.yml index 557be53..22a2cde 100644 --- a/config/sync/core.base_field_override.paragraph.video.status.yml +++ b/config/sync/core.base_field_override.paragraph.video.status.yml @@ -11,7 +11,7 @@ bundle: video label: Published description: '' required: false -translatable: false +translatable: true default_value: - value: 1 diff --git a/config/sync/core.base_field_override.paragraph.video.uid.yml b/config/sync/core.base_field_override.paragraph.video.uid.yml index 8aa42b9..5f82da9 100644 --- a/config/sync/core.base_field_override.paragraph.video.uid.yml +++ b/config/sync/core.base_field_override.paragraph.video.uid.yml @@ -11,7 +11,7 @@ bundle: video label: 'Authored by' description: 'The user ID of the paragraphs author.' required: false -translatable: false +translatable: true default_value: { } default_value_callback: 'Drupal\paragraphs\Entity\Paragraph::getCurrentUserId' settings: diff --git a/config/sync/core.base_field_override.paragraph.view.created.yml b/config/sync/core.base_field_override.paragraph.view.created.yml index ffedde7..fd23314 100644 --- a/config/sync/core.base_field_override.paragraph.view.created.yml +++ b/config/sync/core.base_field_override.paragraph.view.created.yml @@ -11,7 +11,7 @@ bundle: view label: 'Authored on' description: 'The time that the Paragraph was created.' required: false -translatable: false +translatable: true default_value: { } default_value_callback: '' settings: { } diff --git a/config/sync/core.base_field_override.paragraph.view.status.yml b/config/sync/core.base_field_override.paragraph.view.status.yml index fec0129..686e932 100644 --- a/config/sync/core.base_field_override.paragraph.view.status.yml +++ b/config/sync/core.base_field_override.paragraph.view.status.yml @@ -11,7 +11,7 @@ bundle: view label: Published description: '' required: false -translatable: false +translatable: true default_value: - value: 1 diff --git a/config/sync/core.base_field_override.paragraph.view.uid.yml b/config/sync/core.base_field_override.paragraph.view.uid.yml index 3bc049f..3fa85ae 100644 --- a/config/sync/core.base_field_override.paragraph.view.uid.yml +++ b/config/sync/core.base_field_override.paragraph.view.uid.yml @@ -11,7 +11,7 @@ bundle: view label: 'Authored by' description: 'The user ID of the paragraphs author.' required: false -translatable: false +translatable: true default_value: { } default_value_callback: 'Drupal\paragraphs\Entity\Paragraph::getCurrentUserId' settings: diff --git a/config/sync/core.base_field_override.paragraph.webform.created.yml b/config/sync/core.base_field_override.paragraph.webform.created.yml index 46e2ab9..adfe4e4 100644 --- a/config/sync/core.base_field_override.paragraph.webform.created.yml +++ b/config/sync/core.base_field_override.paragraph.webform.created.yml @@ -11,7 +11,7 @@ bundle: webform label: 'Authored on' description: 'The time that the Paragraph was created.' required: false -translatable: false +translatable: true default_value: { } default_value_callback: '' settings: { } diff --git a/config/sync/core.base_field_override.paragraph.webform.status.yml b/config/sync/core.base_field_override.paragraph.webform.status.yml index d291187..da0003c 100644 --- a/config/sync/core.base_field_override.paragraph.webform.status.yml +++ b/config/sync/core.base_field_override.paragraph.webform.status.yml @@ -11,7 +11,7 @@ bundle: webform label: Published description: '' required: false -translatable: false +translatable: true default_value: - value: 1 diff --git a/config/sync/core.base_field_override.paragraph.webform.uid.yml b/config/sync/core.base_field_override.paragraph.webform.uid.yml index c2cf494..cc1bee3 100644 --- a/config/sync/core.base_field_override.paragraph.webform.uid.yml +++ b/config/sync/core.base_field_override.paragraph.webform.uid.yml @@ -11,7 +11,7 @@ bundle: webform label: 'Authored by' description: 'The user ID of the paragraphs author.' required: false -translatable: false +translatable: true default_value: { } default_value_callback: 'Drupal\paragraphs\Entity\Paragraph::getCurrentUserId' settings: diff --git a/config/sync/core.entity_view_display.node.blog.rss_teaser.yml b/config/sync/core.entity_view_display.node.blog.rss_teaser.yml index 4544e28..be22897 100644 --- a/config/sync/core.entity_view_display.node.blog.rss_teaser.yml +++ b/config/sync/core.entity_view_display.node.blog.rss_teaser.yml @@ -16,7 +16,7 @@ dependencies: - node.type.blog module: - ds - - paragraphs + - entity_reference_revisions - user _core: default_config_hash: e8yvfhoZmb_vDdkLtsMVv8u8XKzSRihmLtMph3nm6rM @@ -36,11 +36,13 @@ content: ds: ds_limit: '' field_body_paragraph: - type: paragraph_summary + type: entity_reference_revisions_entity_view weight: 1 region: content label: hidden - settings: { } + settings: + view_mode: preview + link: '' third_party_settings: ds: ds_limit: '' diff --git a/config/sync/core.entity_view_display.node.page.default.yml b/config/sync/core.entity_view_display.node.page.default.yml index ce000d2..9664094 100644 --- a/config/sync/core.entity_view_display.node.page.default.yml +++ b/config/sync/core.entity_view_display.node.page.default.yml @@ -28,14 +28,25 @@ third_party_settings: link_custom: '' classes: layout_class: { } - regions: { } + regions: + ds_content: + - langcode _core: default_config_hash: 9nmRao0UFQtmO6lONrWp9ITjFaO41GzV-xJczx0qjKg id: node.page.default targetEntityType: node bundle: page mode: default -content: { } +content: + langcode: + type: language + weight: 0 + region: ds_content + label: inline + settings: + link_to_entity: false + native_language: false + third_party_settings: { } hidden: body: true field_body_paragraph: true @@ -44,5 +55,4 @@ hidden: field_summary: true indieweb_bridgypublishtwitter: true indieweb_syndication: true - langcode: true links: true diff --git a/config/sync/core.extension.yml b/config/sync/core.extension.yml index 1846bba..571aa85 100644 --- a/config/sync/core.extension.yml +++ b/config/sync/core.extension.yml @@ -93,9 +93,13 @@ module: layout_discovery: 0 link: 0 locale: 0 + markdown: 0 menu_trail_by_path: 0 menu_ui: 0 metatag: 0 + metatag_facebook: 0 + metatag_open_graph: 0 + metatag_twitter_cards: 0 migrate: 0 migrate_drupal: 0 migrate_plus: 0 @@ -105,7 +109,9 @@ module: node: 0 options: 0 page_cache: 0 + paragraphs_features: 0 path: 0 + preview_link: 0 quickedit: 0 rdf: 0 redirect: 0 @@ -119,6 +125,7 @@ module: similarterms: 0 social_media_links: 0 statistics: 0 + syslog: 0 system: 0 taxonomy: 0 telephone: 0 diff --git a/config/sync/field.field.node.case_study.body.yml b/config/sync/field.field.node.case_study.body.yml index 0fce944..dc751cc 100644 --- a/config/sync/field.field.node.case_study.body.yml +++ b/config/sync/field.field.node.case_study.body.yml @@ -16,7 +16,7 @@ bundle: case_study label: Body description: '' required: false -translatable: false +translatable: true default_value: { } default_value_callback: '' settings: diff --git a/config/sync/field.field.node.case_study.field_case_study_client.yml b/config/sync/field.field.node.case_study.field_case_study_client.yml index 647aa87..5bc9192 100644 --- a/config/sync/field.field.node.case_study.field_case_study_client.yml +++ b/config/sync/field.field.node.case_study.field_case_study_client.yml @@ -16,7 +16,7 @@ bundle: case_study label: Client description: '' required: false -translatable: false +translatable: true default_value: { } default_value_callback: '' settings: { } diff --git a/config/sync/field.field.node.case_study.field_case_study_partners.yml b/config/sync/field.field.node.case_study.field_case_study_partners.yml index b037a37..8670c08 100644 --- a/config/sync/field.field.node.case_study.field_case_study_partners.yml +++ b/config/sync/field.field.node.case_study.field_case_study_partners.yml @@ -16,7 +16,7 @@ bundle: case_study label: Partners description: '' required: false -translatable: false +translatable: true default_value: { } default_value_callback: '' settings: { } diff --git a/config/sync/field.field.node.case_study.field_case_study_status.yml b/config/sync/field.field.node.case_study.field_case_study_status.yml index a08ca3a..4b112f0 100644 --- a/config/sync/field.field.node.case_study.field_case_study_status.yml +++ b/config/sync/field.field.node.case_study.field_case_study_status.yml @@ -14,7 +14,7 @@ bundle: case_study label: Status description: '' required: false -translatable: false +translatable: true default_value: { } default_value_callback: '' settings: { } diff --git a/config/sync/field.field.node.case_study.field_case_study_subtitle.yml b/config/sync/field.field.node.case_study.field_case_study_subtitle.yml index 207b5ca..07dc31e 100644 --- a/config/sync/field.field.node.case_study.field_case_study_subtitle.yml +++ b/config/sync/field.field.node.case_study.field_case_study_subtitle.yml @@ -14,7 +14,7 @@ bundle: case_study label: Subtitle description: '' required: false -translatable: false +translatable: true default_value: { } default_value_callback: '' settings: { } diff --git a/config/sync/field.field.node.case_study.field_case_study_team.yml b/config/sync/field.field.node.case_study.field_case_study_team.yml index 80e18a6..506847f 100644 --- a/config/sync/field.field.node.case_study.field_case_study_team.yml +++ b/config/sync/field.field.node.case_study.field_case_study_team.yml @@ -15,7 +15,7 @@ bundle: case_study label: Team description: '' required: false -translatable: false +translatable: true default_value: { } default_value_callback: '' settings: diff --git a/config/sync/field.field.node.case_study.field_case_study_year.yml b/config/sync/field.field.node.case_study.field_case_study_year.yml index 1f743f0..4629956 100644 --- a/config/sync/field.field.node.case_study.field_case_study_year.yml +++ b/config/sync/field.field.node.case_study.field_case_study_year.yml @@ -14,7 +14,7 @@ bundle: case_study label: Year description: '' required: false -translatable: false +translatable: true default_value: { } default_value_callback: '' settings: diff --git a/config/sync/field.field.node.case_study.field_image.yml b/config/sync/field.field.node.case_study.field_image.yml index 8e927cb..f2203aa 100644 --- a/config/sync/field.field.node.case_study.field_image.yml +++ b/config/sync/field.field.node.case_study.field_image.yml @@ -6,7 +6,14 @@ dependencies: - field.storage.node.field_image - node.type.case_study module: + - content_translation - image +third_party_settings: + content_translation: + translation_sync: + alt: alt + title: title + file: '0' _core: default_config_hash: kTZSUq7WPcC_QIRMzI3I_otBSuTVQkJix5i1o63eAo4 id: node.case_study.field_image @@ -16,7 +23,7 @@ bundle: case_study label: Image description: '' required: false -translatable: false +translatable: true default_value: { } default_value_callback: '' settings: diff --git a/config/sync/field.field.node.case_study.field_license.yml b/config/sync/field.field.node.case_study.field_license.yml index 8070223..236546c 100644 --- a/config/sync/field.field.node.case_study.field_license.yml +++ b/config/sync/field.field.node.case_study.field_license.yml @@ -6,6 +6,8 @@ dependencies: - field.storage.node.field_license - node.type.case_study - taxonomy.vocabulary.license + content: + - 'taxonomy_term:license:61745acc-d11c-4e65-bd9e-518d223fedab' _core: default_config_hash: T7m68a92H2-MCB3SN0o0T1_F8RfV4gUk4N-fkdbeVVQ id: node.case_study.field_license @@ -15,7 +17,7 @@ bundle: case_study label: License description: '' required: false -translatable: false +translatable: true default_value: - target_uuid: 61745acc-d11c-4e65-bd9e-518d223fedab diff --git a/config/sync/field.field.node.case_study.field_meta_tags.yml b/config/sync/field.field.node.case_study.field_meta_tags.yml index 5b29e28..7a167ed 100644 --- a/config/sync/field.field.node.case_study.field_meta_tags.yml +++ b/config/sync/field.field.node.case_study.field_meta_tags.yml @@ -16,7 +16,7 @@ bundle: case_study label: 'Meta tags' description: '' required: false -translatable: false +translatable: true default_value: { } default_value_callback: '' settings: { } diff --git a/config/sync/field.field.node.case_study.field_services.yml b/config/sync/field.field.node.case_study.field_services.yml index 16d4552..8db37a8 100644 --- a/config/sync/field.field.node.case_study.field_services.yml +++ b/config/sync/field.field.node.case_study.field_services.yml @@ -15,7 +15,7 @@ bundle: case_study label: Services description: '' required: false -translatable: false +translatable: true default_value: { } default_value_callback: '' settings: diff --git a/config/sync/field.field.node.case_study.field_summary.yml b/config/sync/field.field.node.case_study.field_summary.yml index cf07fdb..699b4a9 100644 --- a/config/sync/field.field.node.case_study.field_summary.yml +++ b/config/sync/field.field.node.case_study.field_summary.yml @@ -16,7 +16,7 @@ bundle: case_study label: Summary description: '' required: true -translatable: false +translatable: true default_value: { } default_value_callback: '' settings: { } diff --git a/config/sync/field.field.node.case_study.field_technologies.yml b/config/sync/field.field.node.case_study.field_technologies.yml index 1644779..c8aebf1 100644 --- a/config/sync/field.field.node.case_study.field_technologies.yml +++ b/config/sync/field.field.node.case_study.field_technologies.yml @@ -15,7 +15,7 @@ bundle: case_study label: Technologies description: 'Add new technology term' required: false -translatable: false +translatable: true default_value: { } default_value_callback: '' settings: diff --git a/config/sync/field.field.node.page.field_body_paragraph.yml b/config/sync/field.field.node.page.field_body_paragraph.yml index 72d2703..1fdf7b7 100644 --- a/config/sync/field.field.node.page.field_body_paragraph.yml +++ b/config/sync/field.field.node.page.field_body_paragraph.yml @@ -29,7 +29,7 @@ bundle: page label: 'Body paragraph' description: '' required: false -translatable: true +translatable: false default_value: { } default_value_callback: '' settings: diff --git a/config/sync/field.field.paragraph.faq.field_faq.yml b/config/sync/field.field.paragraph.faq.field_faq.yml index 3a40830..8093298 100644 --- a/config/sync/field.field.paragraph.faq.field_faq.yml +++ b/config/sync/field.field.paragraph.faq.field_faq.yml @@ -16,7 +16,7 @@ bundle: faq label: FAQ description: '' required: false -translatable: false +translatable: true default_value: { } default_value_callback: '' settings: diff --git a/config/sync/field.field.paragraph.file.field_file.yml b/config/sync/field.field.paragraph.file.field_file.yml index b05df5e..edfd6bc 100644 --- a/config/sync/field.field.paragraph.file.field_file.yml +++ b/config/sync/field.field.paragraph.file.field_file.yml @@ -16,7 +16,7 @@ bundle: file label: File description: '' required: false -translatable: false +translatable: true default_value: { } default_value_callback: '' settings: diff --git a/config/sync/field.field.paragraph.image.field_image.yml b/config/sync/field.field.paragraph.image.field_image.yml index ec7973c..a4f99c4 100644 --- a/config/sync/field.field.paragraph.image.field_image.yml +++ b/config/sync/field.field.paragraph.image.field_image.yml @@ -6,7 +6,14 @@ dependencies: - field.storage.paragraph.field_image - paragraphs.paragraphs_type.image module: + - content_translation - image +third_party_settings: + content_translation: + translation_sync: + alt: alt + title: title + file: '0' _core: default_config_hash: NS4XfuPJbhkGOp_KnO16fbWbcxRoDln_7HMLTkxTRn8 id: paragraph.image.field_image @@ -16,7 +23,7 @@ bundle: image label: Image description: '' required: false -translatable: false +translatable: true default_value: { } default_value_callback: '' settings: diff --git a/config/sync/field.field.paragraph.quotation_with_image.field_image.yml b/config/sync/field.field.paragraph.quotation_with_image.field_image.yml index 2c531f9..5f7d9b3 100644 --- a/config/sync/field.field.paragraph.quotation_with_image.field_image.yml +++ b/config/sync/field.field.paragraph.quotation_with_image.field_image.yml @@ -6,7 +6,14 @@ dependencies: - field.storage.paragraph.field_image - paragraphs.paragraphs_type.quotation_with_image module: + - content_translation - image +third_party_settings: + content_translation: + translation_sync: + alt: alt + title: title + file: '0' id: paragraph.quotation_with_image.field_image field_name: field_image entity_type: paragraph @@ -14,7 +21,7 @@ bundle: quotation_with_image label: Image description: '' required: false -translatable: false +translatable: true default_value: { } default_value_callback: '' settings: diff --git a/config/sync/field.field.paragraph.quotation_with_image.field_quotation.yml b/config/sync/field.field.paragraph.quotation_with_image.field_quotation.yml index 9a61408..e2f3f86 100644 --- a/config/sync/field.field.paragraph.quotation_with_image.field_quotation.yml +++ b/config/sync/field.field.paragraph.quotation_with_image.field_quotation.yml @@ -23,7 +23,7 @@ bundle: quotation_with_image label: Quotation description: 'Don''t use a blockquote or quotation marks unless what you are quoting contains a quotation, itself.' required: true -translatable: false +translatable: true default_value: { } default_value_callback: '' settings: { } diff --git a/config/sync/field.field.paragraph.quotation_with_image.field_style_escape_flow.yml b/config/sync/field.field.paragraph.quotation_with_image.field_style_escape_flow.yml index ecda8a2..2582e6a 100644 --- a/config/sync/field.field.paragraph.quotation_with_image.field_style_escape_flow.yml +++ b/config/sync/field.field.paragraph.quotation_with_image.field_style_escape_flow.yml @@ -12,7 +12,7 @@ bundle: quotation_with_image label: 'Expand beyond content to sides' description: 'Bust out of content flow to be able to expand left and right.' required: false -translatable: false +translatable: true default_value: - value: 1 diff --git a/config/sync/field.field.paragraph.slide.field_image.yml b/config/sync/field.field.paragraph.slide.field_image.yml index bf8ab4c..e77b6f5 100644 --- a/config/sync/field.field.paragraph.slide.field_image.yml +++ b/config/sync/field.field.paragraph.slide.field_image.yml @@ -6,7 +6,14 @@ dependencies: - field.storage.paragraph.field_image - paragraphs.paragraphs_type.slide module: + - content_translation - image +third_party_settings: + content_translation: + translation_sync: + alt: alt + title: title + file: '0' _core: default_config_hash: UPqViFD1k8_sEfDdjk3x1c_IrqBW8NOZyf1dkqPc-UI id: paragraph.slide.field_image @@ -16,7 +23,7 @@ bundle: slide label: Image description: '' required: false -translatable: false +translatable: true default_value: { } default_value_callback: '' settings: diff --git a/config/sync/field.field.paragraph.slide.field_link.yml b/config/sync/field.field.paragraph.slide.field_link.yml index 5166e56..c4efe07 100644 --- a/config/sync/field.field.paragraph.slide.field_link.yml +++ b/config/sync/field.field.paragraph.slide.field_link.yml @@ -16,7 +16,7 @@ bundle: slide label: Link description: '' required: false -translatable: false +translatable: true default_value: { } default_value_callback: '' settings: diff --git a/config/sync/field.field.paragraph.slide.field_text.yml b/config/sync/field.field.paragraph.slide.field_text.yml index 2bec121..47d5b9b 100644 --- a/config/sync/field.field.paragraph.slide.field_text.yml +++ b/config/sync/field.field.paragraph.slide.field_text.yml @@ -16,7 +16,7 @@ bundle: slide label: Text description: '' required: false -translatable: false +translatable: true default_value: { } default_value_callback: '' settings: { } diff --git a/config/sync/field.field.paragraph.storyline_header.field_storyline_header.yml b/config/sync/field.field.paragraph.storyline_header.field_storyline_header.yml index d8283ab..9258560 100644 --- a/config/sync/field.field.paragraph.storyline_header.field_storyline_header.yml +++ b/config/sync/field.field.paragraph.storyline_header.field_storyline_header.yml @@ -14,7 +14,7 @@ bundle: storyline_header label: 'Storyline header' description: '' required: false -translatable: false +translatable: true default_value: { } default_value_callback: '' settings: { } diff --git a/config/sync/field.field.paragraph.storyline_item.field_storyline_heading.yml b/config/sync/field.field.paragraph.storyline_item.field_storyline_heading.yml index 57797f2..f239105 100644 --- a/config/sync/field.field.paragraph.storyline_item.field_storyline_heading.yml +++ b/config/sync/field.field.paragraph.storyline_item.field_storyline_heading.yml @@ -14,7 +14,7 @@ bundle: storyline_item label: Heading description: '' required: false -translatable: false +translatable: true default_value: { } default_value_callback: '' settings: { } diff --git a/config/sync/field.field.paragraph.storyline_item.field_text.yml b/config/sync/field.field.paragraph.storyline_item.field_text.yml index fb1f37f..d8ed6cf 100644 --- a/config/sync/field.field.paragraph.storyline_item.field_text.yml +++ b/config/sync/field.field.paragraph.storyline_item.field_text.yml @@ -16,7 +16,7 @@ bundle: storyline_item label: Text description: '' required: false -translatable: false +translatable: true default_value: { } default_value_callback: '' settings: { } diff --git a/config/sync/field.field.paragraph.text.field_style_classes.yml b/config/sync/field.field.paragraph.text.field_style_classes.yml index af0d6d1..77359bf 100644 --- a/config/sync/field.field.paragraph.text.field_style_classes.yml +++ b/config/sync/field.field.paragraph.text.field_style_classes.yml @@ -14,7 +14,7 @@ bundle: text label: 'Section style' description: '' required: false -translatable: false +translatable: true default_value: { } default_value_callback: '' settings: { } diff --git a/config/sync/field.field.paragraph.text.field_style_escape_flow.yml b/config/sync/field.field.paragraph.text.field_style_escape_flow.yml index b7df1fa..eda2ac7 100644 --- a/config/sync/field.field.paragraph.text.field_style_escape_flow.yml +++ b/config/sync/field.field.paragraph.text.field_style_escape_flow.yml @@ -12,7 +12,7 @@ bundle: text label: 'Expand beyond content to sides' description: 'Bust out of content flow to be able to expand left and right. Use this when applying a hero class.' required: false -translatable: false +translatable: true default_value: - value: 0 diff --git a/config/sync/field.field.paragraph.text.field_text.yml b/config/sync/field.field.paragraph.text.field_text.yml index 9680ff8..3aedb1f 100644 --- a/config/sync/field.field.paragraph.text.field_text.yml +++ b/config/sync/field.field.paragraph.text.field_text.yml @@ -16,7 +16,7 @@ bundle: text label: Text description: '' required: false -translatable: false +translatable: true default_value: { } default_value_callback: '' settings: { } diff --git a/config/sync/field.field.paragraph.title.field_image.yml b/config/sync/field.field.paragraph.title.field_image.yml index 9a10ad5..31046ac 100644 --- a/config/sync/field.field.paragraph.title.field_image.yml +++ b/config/sync/field.field.paragraph.title.field_image.yml @@ -6,7 +6,14 @@ dependencies: - field.storage.paragraph.field_image - paragraphs.paragraphs_type.title module: + - content_translation - image +third_party_settings: + content_translation: + translation_sync: + alt: alt + title: title + file: '0' id: paragraph.title.field_image field_name: field_image entity_type: paragraph @@ -14,7 +21,7 @@ bundle: title label: Image description: '' required: false -translatable: false +translatable: true default_value: { } default_value_callback: '' settings: diff --git a/config/sync/field.field.paragraph.title.field_style_classes.yml b/config/sync/field.field.paragraph.title.field_style_classes.yml index 3f7ac03..11c48a3 100644 --- a/config/sync/field.field.paragraph.title.field_style_classes.yml +++ b/config/sync/field.field.paragraph.title.field_style_classes.yml @@ -14,7 +14,7 @@ bundle: title label: 'Section style' description: '' required: false -translatable: false +translatable: true default_value: { } default_value_callback: '' settings: { } diff --git a/config/sync/field.field.paragraph.title.field_style_color.yml b/config/sync/field.field.paragraph.title.field_style_color.yml index 0e0b9ad..df43719 100644 --- a/config/sync/field.field.paragraph.title.field_style_color.yml +++ b/config/sync/field.field.paragraph.title.field_style_color.yml @@ -14,7 +14,7 @@ bundle: title label: Color description: '' required: false -translatable: false +translatable: true default_value: { } default_value_callback: '' settings: { } diff --git a/config/sync/field.field.paragraph.title.field_style_titlebar.yml b/config/sync/field.field.paragraph.title.field_style_titlebar.yml index 9575d6a..33fdfbb 100644 --- a/config/sync/field.field.paragraph.title.field_style_titlebar.yml +++ b/config/sync/field.field.paragraph.title.field_style_titlebar.yml @@ -12,7 +12,7 @@ bundle: title label: Titlebar description: '' required: false -translatable: false +translatable: true default_value: - value: 0 diff --git a/config/sync/field.field.paragraph.title.field_subtitle.yml b/config/sync/field.field.paragraph.title.field_subtitle.yml index 2b2f0ca..be30b34 100644 --- a/config/sync/field.field.paragraph.title.field_subtitle.yml +++ b/config/sync/field.field.paragraph.title.field_subtitle.yml @@ -23,7 +23,7 @@ bundle: title label: Subtitle description: '' required: false -translatable: false +translatable: true default_value: { } default_value_callback: '' settings: { } diff --git a/config/sync/field.field.paragraph.title.field_title.yml b/config/sync/field.field.paragraph.title.field_title.yml index d3a72f2..e8cf58b 100644 --- a/config/sync/field.field.paragraph.title.field_title.yml +++ b/config/sync/field.field.paragraph.title.field_title.yml @@ -23,7 +23,7 @@ bundle: title label: Title description: '' required: true -translatable: false +translatable: true default_value: { } default_value_callback: '' settings: { } diff --git a/config/sync/field.field.paragraph.update.field_text.yml b/config/sync/field.field.paragraph.update.field_text.yml index 53b7620..412334d 100644 --- a/config/sync/field.field.paragraph.update.field_text.yml +++ b/config/sync/field.field.paragraph.update.field_text.yml @@ -16,7 +16,7 @@ bundle: update label: Update description: '' required: false -translatable: false +translatable: true default_value: { } default_value_callback: '' settings: { } diff --git a/config/sync/field.field.paragraph.update.field_update_date.yml b/config/sync/field.field.paragraph.update.field_update_date.yml index b0af5f0..45d405b 100644 --- a/config/sync/field.field.paragraph.update.field_update_date.yml +++ b/config/sync/field.field.paragraph.update.field_update_date.yml @@ -16,7 +16,7 @@ bundle: update label: 'Update date' description: '' required: false -translatable: false +translatable: true default_value: - default_date_type: now diff --git a/config/sync/field.field.paragraph.video.field_video_embed.yml b/config/sync/field.field.paragraph.video.field_video_embed.yml index d124ef7..efc7d07 100644 --- a/config/sync/field.field.paragraph.video.field_video_embed.yml +++ b/config/sync/field.field.paragraph.video.field_video_embed.yml @@ -16,7 +16,7 @@ bundle: video label: 'Video embed' description: 'Paste in the embed link from YouTube or Vimeo to embed a video.' required: false -translatable: false +translatable: true default_value: { } default_value_callback: '' settings: diff --git a/config/sync/field.field.paragraph.view.field_style_escape_flow.yml b/config/sync/field.field.paragraph.view.field_style_escape_flow.yml index e7c0145..7557be2 100644 --- a/config/sync/field.field.paragraph.view.field_style_escape_flow.yml +++ b/config/sync/field.field.paragraph.view.field_style_escape_flow.yml @@ -12,7 +12,7 @@ bundle: view label: 'Expand beyond content to sides' description: 'Bust out of content flow to be able to expand left and right.' required: false -translatable: false +translatable: true default_value: - value: 1 diff --git a/config/sync/field.field.paragraph.view.field_view_reference.yml b/config/sync/field.field.paragraph.view.field_view_reference.yml index 299ba5f..96f69c6 100644 --- a/config/sync/field.field.paragraph.view.field_view_reference.yml +++ b/config/sync/field.field.paragraph.view.field_view_reference.yml @@ -14,7 +14,7 @@ bundle: view label: View description: '' required: true -translatable: false +translatable: true default_value: { } default_value_callback: '' settings: diff --git a/config/sync/field.field.paragraph.webform.field_webform.yml b/config/sync/field.field.paragraph.webform.field_webform.yml index 46f80a7..5cf71ed 100644 --- a/config/sync/field.field.paragraph.webform.field_webform.yml +++ b/config/sync/field.field.paragraph.webform.field_webform.yml @@ -14,7 +14,7 @@ bundle: webform label: Webform description: '' required: true -translatable: false +translatable: true default_value: { } default_value_callback: '' settings: diff --git a/config/sync/language.content_settings.menu_link_content.menu_link_content.yml b/config/sync/language.content_settings.menu_link_content.menu_link_content.yml index ce190e8..0cca9f8 100644 --- a/config/sync/language.content_settings.menu_link_content.menu_link_content.yml +++ b/config/sync/language.content_settings.menu_link_content.menu_link_content.yml @@ -7,11 +7,11 @@ dependencies: - menu_link_content third_party_settings: content_translation: - enabled: false + enabled: true bundle_settings: untranslatable_fields_hide: '0' id: menu_link_content.menu_link_content target_entity_type_id: menu_link_content target_bundle: menu_link_content default_langcode: site_default -language_alterable: false +language_alterable: true diff --git a/config/sync/language.content_settings.node.case_study.yml b/config/sync/language.content_settings.node.case_study.yml index 5a60fea..63065be 100644 --- a/config/sync/language.content_settings.node.case_study.yml +++ b/config/sync/language.content_settings.node.case_study.yml @@ -8,7 +8,7 @@ dependencies: - content_translation third_party_settings: content_translation: - enabled: false + enabled: true bundle_settings: untranslatable_fields_hide: '0' id: node.case_study diff --git a/config/sync/language.content_settings.node.landing_page.yml b/config/sync/language.content_settings.node.landing_page.yml index 2336c01..61bb244 100644 --- a/config/sync/language.content_settings.node.landing_page.yml +++ b/config/sync/language.content_settings.node.landing_page.yml @@ -8,7 +8,7 @@ dependencies: - content_translation third_party_settings: content_translation: - enabled: false + enabled: true bundle_settings: untranslatable_fields_hide: '0' id: node.landing_page diff --git a/config/sync/language.content_settings.paragraph.faq.yml b/config/sync/language.content_settings.paragraph.faq.yml index 8d687df..7e22de2 100644 --- a/config/sync/language.content_settings.paragraph.faq.yml +++ b/config/sync/language.content_settings.paragraph.faq.yml @@ -8,11 +8,11 @@ dependencies: - content_translation third_party_settings: content_translation: - enabled: false + enabled: true bundle_settings: untranslatable_fields_hide: '0' id: paragraph.faq target_entity_type_id: paragraph target_bundle: faq default_langcode: site_default -language_alterable: false +language_alterable: true diff --git a/config/sync/language.content_settings.paragraph.file.yml b/config/sync/language.content_settings.paragraph.file.yml index fc0752c..812b927 100644 --- a/config/sync/language.content_settings.paragraph.file.yml +++ b/config/sync/language.content_settings.paragraph.file.yml @@ -8,11 +8,11 @@ dependencies: - content_translation third_party_settings: content_translation: - enabled: false + enabled: true bundle_settings: untranslatable_fields_hide: '0' id: paragraph.file target_entity_type_id: paragraph target_bundle: file default_langcode: site_default -language_alterable: false +language_alterable: true diff --git a/config/sync/language.content_settings.paragraph.image.yml b/config/sync/language.content_settings.paragraph.image.yml index d9ed040..ac5ec5f 100644 --- a/config/sync/language.content_settings.paragraph.image.yml +++ b/config/sync/language.content_settings.paragraph.image.yml @@ -8,11 +8,11 @@ dependencies: - content_translation third_party_settings: content_translation: - enabled: false + enabled: true bundle_settings: untranslatable_fields_hide: '0' id: paragraph.image target_entity_type_id: paragraph target_bundle: image default_langcode: site_default -language_alterable: false +language_alterable: true diff --git a/config/sync/language.content_settings.paragraph.quotation_with_image.yml b/config/sync/language.content_settings.paragraph.quotation_with_image.yml index cff7682..1eb1d6f 100644 --- a/config/sync/language.content_settings.paragraph.quotation_with_image.yml +++ b/config/sync/language.content_settings.paragraph.quotation_with_image.yml @@ -8,11 +8,11 @@ dependencies: - content_translation third_party_settings: content_translation: - enabled: false + enabled: true bundle_settings: untranslatable_fields_hide: '0' id: paragraph.quotation_with_image target_entity_type_id: paragraph target_bundle: quotation_with_image default_langcode: site_default -language_alterable: false +language_alterable: true diff --git a/config/sync/language.content_settings.paragraph.slide.yml b/config/sync/language.content_settings.paragraph.slide.yml index fea8836..25ab75e 100644 --- a/config/sync/language.content_settings.paragraph.slide.yml +++ b/config/sync/language.content_settings.paragraph.slide.yml @@ -8,11 +8,11 @@ dependencies: - content_translation third_party_settings: content_translation: - enabled: false + enabled: true bundle_settings: untranslatable_fields_hide: '0' id: paragraph.slide target_entity_type_id: paragraph target_bundle: slide default_langcode: site_default -language_alterable: false +language_alterable: true diff --git a/config/sync/language.content_settings.paragraph.storyline_header.yml b/config/sync/language.content_settings.paragraph.storyline_header.yml index 77faba3..b92e96f 100644 --- a/config/sync/language.content_settings.paragraph.storyline_header.yml +++ b/config/sync/language.content_settings.paragraph.storyline_header.yml @@ -8,11 +8,11 @@ dependencies: - content_translation third_party_settings: content_translation: - enabled: false + enabled: true bundle_settings: untranslatable_fields_hide: '0' id: paragraph.storyline_header target_entity_type_id: paragraph target_bundle: storyline_header default_langcode: site_default -language_alterable: false +language_alterable: true diff --git a/config/sync/language.content_settings.paragraph.storyline_item.yml b/config/sync/language.content_settings.paragraph.storyline_item.yml index b694a4f..833cdb9 100644 --- a/config/sync/language.content_settings.paragraph.storyline_item.yml +++ b/config/sync/language.content_settings.paragraph.storyline_item.yml @@ -8,11 +8,11 @@ dependencies: - content_translation third_party_settings: content_translation: - enabled: false + enabled: true bundle_settings: untranslatable_fields_hide: '0' id: paragraph.storyline_item target_entity_type_id: paragraph target_bundle: storyline_item default_langcode: site_default -language_alterable: false +language_alterable: true diff --git a/config/sync/language.content_settings.paragraph.text.yml b/config/sync/language.content_settings.paragraph.text.yml index 601e6eb..064792d 100644 --- a/config/sync/language.content_settings.paragraph.text.yml +++ b/config/sync/language.content_settings.paragraph.text.yml @@ -8,11 +8,11 @@ dependencies: - content_translation third_party_settings: content_translation: - enabled: false + enabled: true bundle_settings: untranslatable_fields_hide: '0' id: paragraph.text target_entity_type_id: paragraph target_bundle: text default_langcode: site_default -language_alterable: false +language_alterable: true diff --git a/config/sync/language.content_settings.paragraph.title.yml b/config/sync/language.content_settings.paragraph.title.yml index 5a6dee2..e197525 100644 --- a/config/sync/language.content_settings.paragraph.title.yml +++ b/config/sync/language.content_settings.paragraph.title.yml @@ -8,11 +8,11 @@ dependencies: - content_translation third_party_settings: content_translation: - enabled: false + enabled: true bundle_settings: untranslatable_fields_hide: '0' id: paragraph.title target_entity_type_id: paragraph target_bundle: title default_langcode: site_default -language_alterable: false +language_alterable: true diff --git a/config/sync/language.content_settings.paragraph.update.yml b/config/sync/language.content_settings.paragraph.update.yml index bc23fe0..218525c 100644 --- a/config/sync/language.content_settings.paragraph.update.yml +++ b/config/sync/language.content_settings.paragraph.update.yml @@ -8,11 +8,11 @@ dependencies: - content_translation third_party_settings: content_translation: - enabled: false + enabled: true bundle_settings: untranslatable_fields_hide: '0' id: paragraph.update target_entity_type_id: paragraph target_bundle: update default_langcode: site_default -language_alterable: false +language_alterable: true diff --git a/config/sync/language.content_settings.paragraph.video.yml b/config/sync/language.content_settings.paragraph.video.yml index 9980907..fa17ff0 100644 --- a/config/sync/language.content_settings.paragraph.video.yml +++ b/config/sync/language.content_settings.paragraph.video.yml @@ -8,11 +8,11 @@ dependencies: - content_translation third_party_settings: content_translation: - enabled: false + enabled: true bundle_settings: untranslatable_fields_hide: '0' id: paragraph.video target_entity_type_id: paragraph target_bundle: video default_langcode: site_default -language_alterable: false +language_alterable: true diff --git a/config/sync/language.content_settings.paragraph.view.yml b/config/sync/language.content_settings.paragraph.view.yml index 2429388..b100e0c 100644 --- a/config/sync/language.content_settings.paragraph.view.yml +++ b/config/sync/language.content_settings.paragraph.view.yml @@ -8,11 +8,11 @@ dependencies: - content_translation third_party_settings: content_translation: - enabled: false + enabled: true bundle_settings: untranslatable_fields_hide: '0' id: paragraph.view target_entity_type_id: paragraph target_bundle: view default_langcode: site_default -language_alterable: false +language_alterable: true diff --git a/config/sync/language.content_settings.paragraph.webform.yml b/config/sync/language.content_settings.paragraph.webform.yml index 03a028e..e618a79 100644 --- a/config/sync/language.content_settings.paragraph.webform.yml +++ b/config/sync/language.content_settings.paragraph.webform.yml @@ -8,11 +8,11 @@ dependencies: - content_translation third_party_settings: content_translation: - enabled: false + enabled: true bundle_settings: untranslatable_fields_hide: '0' id: paragraph.webform target_entity_type_id: paragraph target_bundle: webform default_langcode: site_default -language_alterable: false +language_alterable: true diff --git a/config/sync/language.content_settings.webform_submission.attend_the_tech_and_rev_workshop.yml b/config/sync/language.content_settings.webform_submission.attend_the_tech_and_rev_workshop.yml new file mode 100644 index 0000000..2d388c0 --- /dev/null +++ b/config/sync/language.content_settings.webform_submission.attend_the_tech_and_rev_workshop.yml @@ -0,0 +1,11 @@ +uuid: 8d0f3bf0-d7f0-44bb-865f-9634cf158c50 +langcode: es +status: true +dependencies: + config: + - webform.webform.attend_the_tech_and_rev_workshop +id: webform_submission.attend_the_tech_and_rev_workshop +target_entity_type_id: webform_submission +target_bundle: attend_the_tech_and_rev_workshop +default_langcode: site_default +language_alterable: false diff --git a/config/sync/language.content_settings.webform_submission.public_speaker.yml b/config/sync/language.content_settings.webform_submission.public_speaker.yml new file mode 100644 index 0000000..f01811b --- /dev/null +++ b/config/sync/language.content_settings.webform_submission.public_speaker.yml @@ -0,0 +1,11 @@ +uuid: 800990e0-75d8-4ecc-867d-f01a5f6f71c9 +langcode: es +status: true +dependencies: + config: + - webform.webform.public_speaker +id: webform_submission.public_speaker +target_entity_type_id: webform_submission +target_bundle: public_speaker +default_langcode: site_default +language_alterable: false diff --git a/config/sync/language/es/block.block.bulma_main_menu.yml b/config/sync/language/es/block.block.bulma_main_menu.yml new file mode 100644 index 0000000..4d2bdfa --- /dev/null +++ b/config/sync/language/es/block.block.bulma_main_menu.yml @@ -0,0 +1,2 @@ +settings: + label: Navegación diff --git a/config/sync/language/es/block.block.octavia_main_menu.yml b/config/sync/language/es/block.block.octavia_main_menu.yml new file mode 100644 index 0000000..4d2bdfa --- /dev/null +++ b/config/sync/language/es/block.block.octavia_main_menu.yml @@ -0,0 +1,2 @@ +settings: + label: Navegación diff --git a/config/sync/language/es/contact.form.feedback.yml b/config/sync/language/es/contact.form.feedback.yml new file mode 100644 index 0000000..cefd43b --- /dev/null +++ b/config/sync/language/es/contact.form.feedback.yml @@ -0,0 +1 @@ +message: '¡Gracias por contactarnos! Nos pondremos en contacto con usted tan pronto como uno de nosotros (probablemente Clayton) revise nuestro correo electrónico.' diff --git a/config/sync/language/es/contact.form.personal.yml b/config/sync/language/es/contact.form.personal.yml new file mode 100644 index 0000000..cefd43b --- /dev/null +++ b/config/sync/language/es/contact.form.personal.yml @@ -0,0 +1 @@ +message: '¡Gracias por contactarnos! Nos pondremos en contacto con usted tan pronto como uno de nosotros (probablemente Clayton) revise nuestro correo electrónico.' diff --git a/config/sync/language/es/core.entity_view_mode.paragraph.preview.yml b/config/sync/language/es/core.entity_view_mode.paragraph.preview.yml new file mode 100644 index 0000000..ded3edb --- /dev/null +++ b/config/sync/language/es/core.entity_view_mode.paragraph.preview.yml @@ -0,0 +1 @@ +label: 'Vista previa' diff --git a/config/sync/language/es/system.menu.main.yml b/config/sync/language/es/system.menu.main.yml new file mode 100644 index 0000000..1599e4f --- /dev/null +++ b/config/sync/language/es/system.menu.main.yml @@ -0,0 +1,2 @@ +label: Navegación +description: 'Sección de enlaces' diff --git a/config/sync/language/es/views.view.blog.yml b/config/sync/language/es/views.view.blog.yml new file mode 100644 index 0000000..acebbe5 --- /dev/null +++ b/config/sync/language/es/views.view.blog.yml @@ -0,0 +1,8 @@ +display: + embed_listing: + display_options: + footer: + area: + content: + value: "
\r\n
More blog posts
\r\n
\r\n" + format: full_html diff --git a/config/sync/language/es/webform.settings.yml b/config/sync/language/es/webform.settings.yml new file mode 100644 index 0000000..fbac193 --- /dev/null +++ b/config/sync/language/es/webform.settings.yml @@ -0,0 +1,3 @@ +settings: + default_preview_next_button_label: 'Vista previa' + default_preview_label: 'Vista previa' diff --git a/config/sync/language/es/webform.webform.contact.yml b/config/sync/language/es/webform.webform.contact.yml new file mode 100644 index 0000000..2684696 --- /dev/null +++ b/config/sync/language/es/webform.webform.contact.yml @@ -0,0 +1,4 @@ +title: Contacto +elements: "introduction:\n '#markup': 'Usted – nuestros clientes, colegas, y admiradores locos – on la razón por la que hacemos lo que hacemos. Nos encantaría saber de usted.'\nname:\n '#title': 'Tu Nombre'\nemail:\n '#title': 'Tu Correo Electrónico'\nsubject:\n '#title': 'El Tema'\nmessage:\n '#title': Mensaje\nhow_did_you_find_us:\n '#title': '¿Cómo se enteró de nosotros?'\n '#options':\n 'A professional or personal recommendation': 'Una recomendación profesional o personal'\n 'I met an Agaric and was given a business card': 'Conocí a un Agárico y me dieron una tarjeta de presentación'\n 'Google or something similar': 'Google o algo similar'\n 'The Agaric logo appeared on toast I made': 'El logo de Agaric apareció en una tostada que hice'\n '#other__option_label': Otro\nactions:\n '#submit__label': 'Enviar Mensaje'\n" +settings: + confirmation_message: '¡Gracias por contactarnos! Nos pondremos en contacto con usted tan pronto como uno de nosotros (probablemente Clayton) revise nuestro correo electrónico.' diff --git a/config/sync/language/es/webform.webform.training.yml b/config/sync/language/es/webform.webform.training.yml new file mode 100644 index 0000000..b896db0 --- /dev/null +++ b/config/sync/language/es/webform.webform.training.yml @@ -0,0 +1 @@ +elements: "intro_text:\n '#text': \"

Gracias por el interetes en nuestras capacitaciones. Solo necesitamos un poco de información acerca de lo que buscas y nos pondremos en contacto pronto.

\\r\\n\"\nname:\n '#title': Nombre\ntopics:\n '#title': Temas\n '#options':\n 'Introduction to Drupal': 'Introducción a Drupal'\n 'Drupal development (beginning)': 'Desarollo en Drupal development (principiante)'\n 'Drupal development (intermediate)': 'Desarrollo en Drupal (intermedio)'\n 'Drupal development (advanced)': 'Desarrollo en Drupal (avanzado)'\n 'Drupal theming and templating': 'Diseño y theming en Drupal'\n 'Data migration': 'Migración de Datos'\nsize:\n '#title': Tamaño\n '#options':\n 'Personal training': 'Capacitación personal'\n 'Small group (2-5)': 'Grupo pequeño(2-5)'\n 'Larger group (more than 5)': 'Grupo grande (mas de 5)'\nactions:\n '#submit__label': 'Pedir una capacitación'\n" diff --git a/config/sync/markdown.settings.yml b/config/sync/markdown.settings.yml new file mode 100644 index 0000000..00afe82 --- /dev/null +++ b/config/sync/markdown.settings.yml @@ -0,0 +1,3 @@ +markdown_library: php-markdown +_core: + default_config_hash: BGlnbueWmcxablTviSA1SF0-yNvbNkUjnvYMMFuUl24 diff --git a/config/sync/metatag.metatag_defaults.front.yml b/config/sync/metatag.metatag_defaults.front.yml index 94bd95a..97a35b9 100644 --- a/config/sync/metatag.metatag_defaults.front.yml +++ b/config/sync/metatag.metatag_defaults.front.yml @@ -7,5 +7,20 @@ _core: id: front label: 'Front page' tags: - canonical_url: '[site:url]' shortlink: '[site:url]' + canonical_url: '[site:url]' + image_src: 'https://agaric.coop/themes/custom/agarica/patternlibrary/agaric/images/agaric-975x400-v1.png' + og_locality: Boston + og_image: 'https://agaric.coop/themes/custom/agarica/patternlibrary/agaric/images/agaric-975x400-v1.png' + og_region: Massachusetts + og_image_alt: Agaric. + og_postal_code: '02134' + og_description: 'A tech cooperative building websites and online tools that respect your freedom.' + og_email: ask@agaric.coop + og_phone_number: '(508) 283-3557' + twitter_cards_image: 'https://agaric.coop/themes/custom/agarica/patternlibrary/agaric/images/agaric-square.png' + twitter_cards_site: '@agaric' + twitter_cards_description: 'A tech cooperative building websites and online tools that respect your freedom.' + twitter_cards_image_alt: 'Two stylized mushrooms.' + twitter_cards_type: summary + twitter_cards_title: Agaric diff --git a/config/sync/metatag.metatag_defaults.global.yml b/config/sync/metatag.metatag_defaults.global.yml index 83c91a9..02f6935 100644 --- a/config/sync/metatag.metatag_defaults.global.yml +++ b/config/sync/metatag.metatag_defaults.global.yml @@ -7,5 +7,12 @@ _core: id: global label: Global tags: + title: '[current-page:title]' canonical_url: '[current-page:url]' - title: '[current-page:title] | [site:name]' + og_site_name: Agaric + og_title: '[current-page:title]' + twitter_cards_site_id: '14375823' + twitter_cards_page_url: '[current-page:url]' + twitter_cards_site: '@agaric' + twitter_cards_title: '[current-page:title]' + twitter_cards_type: summary diff --git a/config/sync/metatag.metatag_defaults.node.yml b/config/sync/metatag.metatag_defaults.node.yml index 24e22d0..1a77504 100644 --- a/config/sync/metatag.metatag_defaults.node.yml +++ b/config/sync/metatag.metatag_defaults.node.yml @@ -7,6 +7,13 @@ _core: id: node label: Content tags: - title: '[node:title] | [site:name]' - description: '[node:summary]' + image_src: '[node:field_image:entity:url]' + title: '[node:title]' canonical_url: '[node:url]' + og_image: '[node:field_image:entity:url]' + og_site_name: Agaric + og_title: '[node:title]' + og_image_alt: '[node:field_image:alt]' + twitter_cards_image_alt: '[node:field_image:alt]' + twitter_cards_image: '[node:field_image:entity:url]' + twitter_cards_type: summary diff --git a/config/sync/metatag.metatag_defaults.taxonomy_term.yml b/config/sync/metatag.metatag_defaults.taxonomy_term.yml index 899563a..4704fe9 100644 --- a/config/sync/metatag.metatag_defaults.taxonomy_term.yml +++ b/config/sync/metatag.metatag_defaults.taxonomy_term.yml @@ -7,6 +7,11 @@ _core: id: taxonomy_term label: 'Taxonomy term' tags: + title: '[term:name] | [site:name]' canonical_url: '[term:url]' description: '[term:description]' - title: '[term:name] | [site:name]' + og_description: '[term:description]' + og_title: '[term:name] | [site:name]' + twitter_cards_description: '[term:description]' + twitter_cards_type: summary + twitter_cards_title: '[term:name] | [site:name]' diff --git a/config/sync/node.type.case_study.yml b/config/sync/node.type.case_study.yml index 1ba2933..930caf5 100644 --- a/config/sync/node.type.case_study.yml +++ b/config/sync/node.type.case_study.yml @@ -3,12 +3,16 @@ langcode: en status: true dependencies: module: + - indieweb_context - menu_ui third_party_settings: menu_ui: available_menus: - main parent: 'main:' + indieweb_context: + post_context_link_field: '' + post_context_post_type: '' _core: default_config_hash: MRh-kbbNL2hwFapj6KIArv0J3_03XSkBNAtdKvf5vMk name: 'Case Study' diff --git a/config/sync/node.type.landing_page.yml b/config/sync/node.type.landing_page.yml index 54e1a23..f8b4b19 100644 --- a/config/sync/node.type.landing_page.yml +++ b/config/sync/node.type.landing_page.yml @@ -3,12 +3,16 @@ langcode: en status: true dependencies: module: + - indieweb_context - menu_ui third_party_settings: menu_ui: available_menus: - main parent: 'main:' + indieweb_context: + post_context_link_field: '' + post_context_post_type: '' _core: default_config_hash: QECb_5oLjGh317SVZR3QFu-KwYdEVSyCJt5RrxFDRgY name: 'Landing page' diff --git a/config/sync/paragraphs_features.settings.yml b/config/sync/paragraphs_features.settings.yml new file mode 100644 index 0000000..bffe6e0 --- /dev/null +++ b/config/sync/paragraphs_features.settings.yml @@ -0,0 +1,3 @@ +dropdown_to_button: true +_core: + default_config_hash: lQErqdedK_5v01xVINKpMQnPQNpp4vS6oMsdNYbPfTI diff --git a/config/sync/preview_link.settings.yml b/config/sync/preview_link.settings.yml new file mode 100644 index 0000000..3327dc2 --- /dev/null +++ b/config/sync/preview_link.settings.yml @@ -0,0 +1 @@ +enabled_entity_types: { } diff --git a/config/sync/redirect_404.settings.yml b/config/sync/redirect_404.settings.yml index 3cfb50b..f8af3af 100644 --- a/config/sync/redirect_404.settings.yml +++ b/config/sync/redirect_404.settings.yml @@ -1,5 +1,5 @@ row_limit: 10000 -pages: "/wp-login.php\r\n/\r\n/xmlrpc.php\r\n/\r\n/LMTPS/~kava/paypal/us/webscr.php?cmd=_login-run\r\n/\r\n/PMkNg/LMTPS/~kava/paypal/us/webscr.php?cmd=_login-run\r\n/\r\n/ps.php?c=echo%2027ebdd36a8ac535e55aaeb6abf8a769d\r\n/\r\n/~kava/paypal/us/webscr.php?cmd=_login-run\r\n/\r\n/27ebdd36a8ac535e55aaeb6abf8a769d.php?_cmd=echo%2027ebdd36a8ac535e55aaeb6abf8a769d\r\n/\r\n/core/27ebdd36a8ac535e55aaeb6abf8a769d.php?_cmd=echo%2027ebdd36a8ac535e55aaeb6abf8a769d\r\n/\r\n/s.php?c=echo%2027ebdd36a8ac535e55aaeb6abf8a769d\r\n/\r\n/VaVWK/ZkPMP/imWVj/keLTj/LMTPS/~kava/paypal/us/webscr.php?cmd=_login-run\r\n/\r\n/OOYUZ/USSVZ/WNOgZ/WifnZ/~kava/paypal/us/webscr.php?cmd=_login-run\r\n/\r\n/keLTj/LMTPS/~kava/paypal/us/webscr.php?cmd=_login-run\r\n/\r\n/module.php?echo%2027ebdd36a8ac535e55aaeb6abf8a769d&feature=shell\r\n/\r\n/.well-known/assetlinks.json\r\n/\r\n/plus/read.php\r\n/\r\n/servlet?jumpto=status&p=login&q=loginForm\r\n/\r\n/data/cache/asd.php\r\n/\r\n/data/cache/flye.php\r\n/\r\n/plus/result.php\r\n/\r\n/phpmyadmin\r\n/\r\n/fuck.php\r\n/\r\n/plus/mytag_js.php?aid=9527\r\n/\r\n/~kava/paypal/us/webscr.php?cmd=_login-run\r\n/\r\n/wordpress/wp-login.php\r\n/\r\n/coon.php\r\n/\r\n/sqlite/sqlite-manager/main.php\r\n/\r\n/plus/mytag_js.php?aid=9527\r\n/\r\n/dede/login.php\r\n/\r\n/blog/xmlrpc.php\r\n/\r\n/plus/90sec.php\r\n/\r\n/admin/login.php\r\n/\r\n/lx.php\r\n/\r\n/lequ.php\r\n/\r\n/blog/user/register\r\n/\r\n/payload.php\r\n/\r\n/PMkNg/LMTPS/~kava/paypal/us/webscr.php?cmd=_login-run\r\n/\r\n/MYAdmin\r\n/\r\n/plus/mytag_js.php?aid=511348\r\n/\r\n/sb.php\r\n/\r\n/\r\n/sqlite/sqlitemanager/main.php\r\n/\r\n/mySqlDumper\r\n/\r\n/plus/mytag_js.php?aid=6022\r\n/\r\n/pmd/index.php\r\n/\r\n/sites/default/files/content-post.php\r\n/\r\n/gb.php\r\n/\r\n/s.php?c=echo%20InfoOS%3A%60uname%20-a%3Bid%60OSInfo%3B%20exit%3B\r\n/\r\n/modules/coder/coder_upgrade/scripts/coder_upgrade.run.php\r\n/\r\n/install/index.php.bak?insLockfile=a&install_demo_name=..%2Fdata%2Fadmin%2Fconfig_update.php&s_lang=a&step=11\r\n/\r\n/srv/svn/agaric/drupal-contrib/5/modules-all/transliteration/data/x6e.php\r\n/\r\n/config/secrets.yml\r\n/\r\n/ewebeditor/php/upload.php?action=save&language=en&style=toby57&type=FILE\r\n/\r\n/plus/da.php\r\n/\r\n/plus/car.php\n" +pages: "/wp-login.php\r\n/\r\n/xmlrpc.php\r\n/\r\n/LMTPS/~kava/paypal/us/webscr.php?cmd=_login-run\r\n/\r\n/PMkNg/LMTPS/~kava/paypal/us/webscr.php?cmd=_login-run\r\n/\r\n/ps.php?c=echo%2027ebdd36a8ac535e55aaeb6abf8a769d\r\n/\r\n/~kava/paypal/us/webscr.php?cmd=_login-run\r\n/\r\n/27ebdd36a8ac535e55aaeb6abf8a769d.php?_cmd=echo%2027ebdd36a8ac535e55aaeb6abf8a769d\r\n/\r\n/core/27ebdd36a8ac535e55aaeb6abf8a769d.php?_cmd=echo%2027ebdd36a8ac535e55aaeb6abf8a769d\r\n/\r\n/s.php?c=echo%2027ebdd36a8ac535e55aaeb6abf8a769d\r\n/\r\n/VaVWK/ZkPMP/imWVj/keLTj/LMTPS/~kava/paypal/us/webscr.php?cmd=_login-run\r\n/\r\n/OOYUZ/USSVZ/WNOgZ/WifnZ/~kava/paypal/us/webscr.php?cmd=_login-run\r\n/\r\n/keLTj/LMTPS/~kava/paypal/us/webscr.php?cmd=_login-run\r\n/\r\n/module.php?echo%2027ebdd36a8ac535e55aaeb6abf8a769d&feature=shell\r\n/\r\n/.well-known/assetlinks.json\r\n/\r\n/plus/read.php\r\n/\r\n/servlet?jumpto=status&p=login&q=loginForm\r\n/\r\n/data/cache/asd.php\r\n/\r\n/data/cache/flye.php\r\n/\r\n/plus/result.php\r\n/\r\n/phpmyadmin\r\n/\r\n/fuck.php\r\n/\r\n/plus/mytag_js.php?aid=9527\r\n/\r\n/~kava/paypal/us/webscr.php?cmd=_login-run\r\n/\r\n/wordpress/wp-login.php\r\n/\r\n/coon.php\r\n/\r\n/sqlite/sqlite-manager/main.php\r\n/\r\n/plus/mytag_js.php?aid=9527\r\n/\r\n/dede/login.php\r\n/\r\n/blog/xmlrpc.php\r\n/\r\n/plus/90sec.php\r\n/\r\n/admin/login.php\r\n/\r\n/lx.php\r\n/\r\n/lequ.php\r\n/\r\n/blog/user/register\r\n/\r\n/payload.php\r\n/\r\n/PMkNg/LMTPS/~kava/paypal/us/webscr.php?cmd=_login-run\r\n/\r\n/MYAdmin\r\n/\r\n/plus/mytag_js.php?aid=511348\r\n/\r\n/sb.php\r\n/\r\n/\r\n/sqlite/sqlitemanager/main.php\r\n/\r\n/mySqlDumper\r\n/\r\n/plus/mytag_js.php?aid=6022\r\n/\r\n/pmd/index.php\r\n/\r\n/sites/default/files/content-post.php\r\n/\r\n/gb.php\r\n/\r\n/s.php?c=echo%20InfoOS%3A%60uname%20-a%3Bid%60OSInfo%3B%20exit%3B\r\n/\r\n/modules/coder/coder_upgrade/scripts/coder_upgrade.run.php\r\n/\r\n/install/index.php.bak?insLockfile=a&install_demo_name=..%2Fdata%2Fadmin%2Fconfig_update.php&s_lang=a&step=11\r\n/\r\n/srv/svn/agaric/drupal-contrib/5/modules-all/transliteration/data/x6e.php\r\n/\r\n/config/secrets.yml\r\n/\r\n/ewebeditor/php/upload.php?action=save&language=en&style=toby57&type=FILE\r\n/\r\n/plus/da.php\r\n/\r\n/plus/car.php\r\n/\r\n/~kava/paypal/us/webscr.php?cmd=_login-run\r\n/\r\n/VaVWK/ZkPMP/imWVj/keLTj/LMTPS/~kava/paypal/us/webscr.php?cmd=_login-run\r\n/\r\n/PMkNg/LMTPS/~kava/paypal/us/webscr.php?cmd=_login-run\r\n/\r\n/keLTj/LMTPS/~kava/paypal/us/webscr.php?cmd=_login-run\r\n/\r\n/LMTPS/~kava/paypal/us/webscr.php?cmd=_login-run\r\n/\r\n/OOYUZ/USSVZ/WNOgZ/WifnZ/~kava/paypal/us/webscr.php?cmd=_login-run\r\n/\r\n/core/27ebdd36a8ac535e55aaeb6abf8a769d.php?_cmd=echo%2027ebdd36a8ac535e55aaeb6abf8a769d\r\n/\r\n/27ebdd36a8ac535e55aaeb6abf8a769d.php?_cmd=echo%2027ebdd36a8ac535e55aaeb6abf8a769d\r\n/\r\n/core/27ebdd36a8ac535e55aaeb6abf8a769d.php?_cmd=echo%2027ebdd36a8ac535e55aaeb6abf8a769d\r\n/\r\n/core/27ebdd36a8ac535e55aaeb6abf8a769d.php?_cmd=echo%2027ebdd36a8ac535e55aaeb6abf8a769d\r\n/\r\n/27ebdd36a8ac535e55aaeb6abf8a769d.php?_cmd=echo%2027ebdd36a8ac535e55aaeb6abf8a769d\r\n/\r\n/~kava/paypal/us/webscr.php?cmd=_login-run\r\n/\r\n/s.php?c=echo%2027ebdd36a8ac535e55aaeb6abf8a769d\r\n/\r\n/ps.php?c=echo%2027ebdd36a8ac535e55aaeb6abf8a769d\n" suppress_404: false _core: default_config_hash: FgPCEDevf9dhNU_QB_fo-4AWxi0rrSZ2SGfd7bLNzLM diff --git a/config/sync/syslog.settings.yml b/config/sync/syslog.settings.yml new file mode 100644 index 0000000..272f915 --- /dev/null +++ b/config/sync/syslog.settings.yml @@ -0,0 +1,5 @@ +identity: drupal +facility: 128 +format: '!base_url|!timestamp|!type|!ip|!request_uri|!referer|!uid|!link|!message' +_core: + default_config_hash: vdXLRPZRg35PBykBRRXr6RTql5EJR_fUi2kxyZ8c5m0 diff --git a/config/sync/webform.webform.contact.yml b/config/sync/webform.webform.contact.yml index 146abc3..1fbaec4 100644 --- a/config/sync/webform.webform.contact.yml +++ b/config/sync/webform.webform.contact.yml @@ -192,7 +192,7 @@ handlers: from_options: { } from_name: '[webform_submission:values:name:raw]' subject: '[webform_submission:values:subject:raw]' - body: "Hi Agarics, \r\n\r\nYou got some fan mail.\r\n\r\nSincerely,\r\nAgaric Bot\r\n\r\n

Submitted on {{ webform_token('[webform_submission:created]', webform_submission) }}

\r\n

Submitted by: {{ webform_token('[webform_submission:user]', webform_submission) }}

\r\n

Submitted values are:

\r\n{{ webform_token('[webform_submission:values]', webform_submission) }}\r\n" + body: "Hi Agarics, \r\n\r\nYou got a new message.\r\n\r\n

Submitted on {{ webform_token('[webform_submission:created]', webform_submission) }}

\r\n

Submitted values are:

\r\n{{ webform_token('[webform_submission:values]', webform_submission) }}\r\n" excluded_elements: { } ignore_access: false exclude_empty: true diff --git a/config/sync/webform.webform.public_speaker.yml b/config/sync/webform.webform.public_speaker.yml index 1d502f2..84c268f 100644 --- a/config/sync/webform.webform.public_speaker.yml +++ b/config/sync/webform.webform.public_speaker.yml @@ -9,10 +9,10 @@ uid: 12 template: false archive: false id: public_speaker -title: 'Public Speaker Request' -description: 'Book an Agaric for a presentation or lecture.' +title: 'Speaker Request - Micky Metts' +description: 'Request Micky's presence for a presentation or lecture.' category: '' -elements: "your_name:\n '#type': webform_name\n '#title': 'Your name'\n '#middle__access': false\n '#suffix__access': false\n '#degree__access': false\nevent_theme:\n '#type': textfield\n '#title': 'Event theme'\n '#description': 'Is there an overall theme for this event?'\ndescription_of_event:\n '#type': textarea\n '#title': 'Description of event'\nevent_website:\n '#type': url\n '#title': 'Event website'\nevent_dates:\n '#type': datetime\n '#title': 'Event dates'\n '#date_date_datepicker_button': false\nevent_location:\n '#type': webform_address\n '#title': 'Event location'\nemail:\n '#type': email\n '#title': Email\n '#required': true\nconfirm_your_email:\n '#type': webform_email_confirm\n '#title': 'Confirm your email'\nphone:\n '#type': tel\n '#title': Phone\nadditional_info:\n '#type': textarea\n '#title': 'Additional information'\nspecial_requests:\n '#type': textarea\n '#title': 'Special requests'\nbudget_for_speaker:\n '#type': number\n '#title': 'Budget for speaker'\nactions:\n '#type': webform_actions\n '#title': 'Submit button(s)'\n '#submit__label': 'Invite an Agaric to speak'" +elements: "your_name:\n '#type': webform_name\n '#title': 'Your name'\n '#middle__access': false\n '#suffix__access': false\n '#degree__access': false\nevent_theme:\n '#type': textfield\n '#title': 'Event theme'\n '#description': 'Is there an overall theme for this event?'\ndescription_of_event:\n '#type': textarea\n '#title': 'Description of event'\nevent_website:\n '#type': url\n '#title': 'Event website'\nevent_dates:\n '#type': datetime\n '#title': 'Event dates'\n '#date_date_datepicker_button': false\nevent_location:\n '#type': webform_address\n '#title': 'Event location'\nemail:\n '#type': email\n '#title': Email\n '#required': true\nconfirm_your_email:\n '#type': webform_email_confirm\n '#title': 'Confirm your email'\nphone:\n '#type': tel\n '#title': Phone\nadditional_info:\n '#type': textarea\n '#title': 'Additional information'\nspecial_requests:\n '#type': textarea\n '#title': 'Special requests'\nbudget_for_speaker:\n '#type': number\n '#title': 'Budget for speaker'\nactions:\n '#type': webform_actions\n '#title': 'Submit button(s)'\n '#submit__label': 'Invite Micky to speak'" css: '' javascript: '' settings: @@ -20,12 +20,12 @@ settings: ajax_scroll_top: form page: true page_submit_path: '' - page_confirm_path: '' - form_title: both + page_confirm_path: /your-request-has-been-sent-micky + form_title: source_entity_webform form_submit_once: false form_exception_message: '' form_open_message: '' - form_close_message: '' + form_close_message: 'Micky is not accepting bookings at this time.' form_previous_submissions: true form_confidential: false form_confidential_message: '' @@ -50,10 +50,12 @@ settings: form_access_denied_message: '' form_access_denied_attributes: { } form_file_limit: '' - submission_label: '' + submission_label: 'Speaker request for Micky' submission_log: false submission_views: { } - submission_views_replace: { } + submission_views_replace: + webform_routes: { } + node_routes: { } submission_user_columns: { } submission_user_duplicate: false submission_access_denied: default @@ -70,7 +72,7 @@ settings: autofill: false autofill_message: '' autofill_excluded_elements: { } - wizard_progress_bar: true + wizard_progress_bar: false wizard_progress_pages: false wizard_progress_percentage: false wizard_progress_link: false @@ -92,10 +94,10 @@ settings: draft_auto_save: false draft_saved_message: '' draft_loaded_message: '' - confirmation_type: page + confirmation_type: url confirmation_title: '' confirmation_message: '' - confirmation_url: '' + confirmation_url: /your-request-has-been-sent-micky confirmation_attributes: { } confirmation_back: true confirmation_back_label: '' diff --git a/web/themes/custom/agarica/patternlibrary b/web/themes/custom/agarica/patternlibrary index 07b835a..db0f99c 160000 --- a/web/themes/custom/agarica/patternlibrary +++ b/web/themes/custom/agarica/patternlibrary @@ -1 +1 @@ -Subproject commit 07b835a12b603b956f580afec838761c110fc11d +Subproject commit db0f99c0a50258225bd6616a1638ccffdf0c572c