Compare commits
26 commits
main
...
D9-upgrade
Author | SHA1 | Date | |
---|---|---|---|
|
82509ba323 | ||
|
8fd49b27f7 | ||
|
10ea0431f6 | ||
|
32f8e7373f | ||
|
e350adbafe | ||
|
a6caeba30a | ||
|
483138ae5e | ||
|
5079621e13 | ||
|
c219eebb28 | ||
|
c3061fede2 | ||
|
654f5793b4 | ||
|
d632dd7aa3 | ||
|
a5087a1d31 | ||
|
c99ee499ea | ||
|
2a08038d1a | ||
|
01a8ffd05d | ||
|
f6791135ae | ||
|
7df2c30770 | ||
|
0459c98cdd | ||
|
1ee678f81f | ||
|
89ae9979ed | ||
|
c900bf8f92 | ||
|
f116820568 | ||
|
cd7ff4df46 | ||
|
b431d07447 | ||
|
30b49372f5 |
1484 changed files with 24917 additions and 39701 deletions
24
.ddev/.gitignore
vendored
24
.ddev/.gitignore
vendored
|
@ -1,41 +1,27 @@
|
||||||
#ddev-generated: Automatically generated ddev .gitignore.
|
#ddev-generated: Automatically generated ddev .gitignore.
|
||||||
# You can remove the above line if you want to edit and maintain this file yourself.
|
# You can remove the above line if you want to edit and maintain this file yourself.
|
||||||
/.gitignore
|
/.gitignore
|
||||||
|
|
||||||
/**/*.example
|
/**/*.example
|
||||||
/.dbimageBuild
|
/.dbimageBuild
|
||||||
/.dbimageExtra
|
/.dbimageExtra
|
||||||
/.ddev-docker-*.yaml
|
/.ddev-docker-compose-base.yaml
|
||||||
/.*downloads
|
/.ddev-docker-compose-full.yaml
|
||||||
|
/.ddevlive-downloads
|
||||||
/.global_commands
|
/.global_commands
|
||||||
/.homeadditions
|
/.homeadditions
|
||||||
/.importdb*
|
|
||||||
/.sshimageBuild
|
/.sshimageBuild
|
||||||
/.venv
|
|
||||||
/.webimageBuild
|
/.webimageBuild
|
||||||
/.webimageExtra
|
/.webimageExtra
|
||||||
/apache/apache-site.conf
|
/apache/apache-site.conf
|
||||||
/commands/.gitattributes
|
/commands/.gitattributes
|
||||||
/commands/db/mysql
|
/commands/db/mysql
|
||||||
/commands/host/launch
|
/commands/host/launch
|
||||||
/commands/web/xdebug
|
|
||||||
/commands/web/live
|
/commands/web/live
|
||||||
/config.local.y*ml
|
/commands/web/xdebug
|
||||||
|
/config.*.y*ml
|
||||||
/db_snapshots
|
/db_snapshots
|
||||||
/import-db
|
/import-db
|
||||||
/import.yaml
|
/import.yaml
|
||||||
/mutagen/mutagen.yml
|
|
||||||
/mutagen/.start-synced
|
|
||||||
/nginx_full/nginx-site.conf
|
/nginx_full/nginx-site.conf
|
||||||
/postgres/postgresql.conf
|
|
||||||
/providers/acquia.yaml
|
|
||||||
/providers/lagoon.yaml
|
|
||||||
/providers/platform.yaml
|
|
||||||
/providers/upsun.yaml
|
|
||||||
/sequelpro.spf
|
/sequelpro.spf
|
||||||
/settings/settings.ddev.py
|
|
||||||
/traefik/config/agaric-coop.yaml
|
|
||||||
/traefik/certs/agaric-coop.crt
|
|
||||||
/traefik/certs/agaric-coop.key
|
|
||||||
/xhprof/xhprof_prepend.php
|
|
||||||
/**/README.*
|
/**/README.*
|
||||||
|
|
9
.ddev/commands/db/mysql
Executable file
9
.ddev/commands/db/mysql
Executable file
|
@ -0,0 +1,9 @@
|
||||||
|
#!/bin/bash
|
||||||
|
|
||||||
|
## #ddev-generated
|
||||||
|
## Description: run mysql client in db container
|
||||||
|
## Usage: mysql [flags] [args]
|
||||||
|
## Example: "ddev mysql" or "ddev mysql -uroot -proot" or "echo 'SHOW TABLES;' | ddev mysql"
|
||||||
|
## `ddev mysql --database=mysql -uroot -proot` gets you to the 'mysql' database with root privileges
|
||||||
|
|
||||||
|
mysql -udb -pdb $@
|
7
.ddev/commands/web/drush
Executable file
7
.ddev/commands/web/drush
Executable file
|
@ -0,0 +1,7 @@
|
||||||
|
#!/bin/bash
|
||||||
|
|
||||||
|
## Description: Run drush inside the web container
|
||||||
|
## Usage: drush [flags] [args]
|
||||||
|
## Example: "ddev drush uli" or "ddev drush sql-cli" or "ddev drush --version"
|
||||||
|
|
||||||
|
drush $@
|
|
@ -1,23 +1,30 @@
|
||||||
|
APIVersion: v1.13.1
|
||||||
name: agaric-coop
|
name: agaric-coop
|
||||||
type: drupal9
|
type: drupal8
|
||||||
docroot: web
|
docroot: web
|
||||||
php_version: "8.1"
|
php_version: "7.3"
|
||||||
webserver_type: apache-fpm
|
webserver_type: nginx-fpm
|
||||||
router_http_port: "80"
|
router_http_port: "80"
|
||||||
router_https_port: "443"
|
router_https_port: "443"
|
||||||
xdebug_enabled: false
|
xdebug_enabled: true
|
||||||
additional_hostnames: []
|
additional_hostnames: []
|
||||||
additional_fqdns: []
|
additional_fqdns: []
|
||||||
database:
|
mariadb_version: "10.3"
|
||||||
type: mariadb
|
|
||||||
version: "10.5"
|
|
||||||
nfs_mount_enabled: false
|
nfs_mount_enabled: false
|
||||||
mutagen_enabled: false
|
provider: default
|
||||||
webimage_extra_packages: [rake, sassc]
|
webimage_extra_packages: [rake, sassc]
|
||||||
use_dns_when_possible: true
|
use_dns_when_possible: false
|
||||||
composer_version: "2"
|
php_version: "7.3"
|
||||||
web_environment: []
|
timezone: ""
|
||||||
nodejs_version: "16"
|
|
||||||
|
|
||||||
|
# This config.yaml was created with ddev version v1.13.1
|
||||||
|
# webimage: drud/ddev-webserver:v1.13.1
|
||||||
|
# dbimage: drud/ddev-dbserver-mariadb-10.2:v1.13.0
|
||||||
|
# dbaimage: phpmyadmin/phpmyadmin:5
|
||||||
|
# However we do not recommend explicitly wiring these images into the
|
||||||
|
# config.yaml as they may break future versions of ddev.
|
||||||
|
# You can update this config.yaml using 'ddev config'.
|
||||||
|
|
||||||
# Key features of ddev's config.yaml:
|
# Key features of ddev's config.yaml:
|
||||||
|
|
||||||
|
@ -28,34 +35,31 @@ nodejs_version: "16"
|
||||||
|
|
||||||
# docroot: <relative_path> # Relative path to the directory containing index.php.
|
# docroot: <relative_path> # Relative path to the directory containing index.php.
|
||||||
|
|
||||||
# php_version: "7.4" # PHP version to use, "5.6", "7.0", "7.1", "7.2", "7.3", "7.4", "8.0", "8.1"
|
# php_version: "7.3" # PHP version to use, "5.6", "7.0", "7.1", "7.2", "7.3", "7.4"
|
||||||
|
|
||||||
# You can explicitly specify the webimage but this
|
# You can explicitly specify the webimage, dbimage, dbaimage lines but this
|
||||||
# is not recommended, as the images are often closely tied to ddev's' behavior,
|
# is not recommended, as the images are often closely tied to ddev's' behavior,
|
||||||
# so this can break upgrades.
|
# so this can break upgrades.
|
||||||
|
|
||||||
# webimage: <docker_image> # nginx/php docker image.
|
# webimage: <docker_image> # nginx/php docker image.
|
||||||
|
# dbimage: <docker_image> # mariadb docker image.
|
||||||
|
# dbaimage: <docker_image>
|
||||||
|
|
||||||
# database:
|
# mariadb_version and mysql_version
|
||||||
# type: <dbtype> # mysql, mariadb
|
# ddev can use many versions of mariadb and mysql
|
||||||
# version: <version> # database version, like "10.3" or "8.0"
|
# However these directives are mutually exclusive
|
||||||
# Note that mariadb_version or mysql_version from v1.18 and earlier
|
# mariadb_version: 10.2
|
||||||
# will automatically be converted to this notation with just a "ddev config --auto"
|
# mysql_version: 8.0
|
||||||
|
|
||||||
# router_http_port: <port> # Port to be used for http (defaults to port 80)
|
# router_http_port: <port> # Port to be used for http (defaults to port 80)
|
||||||
# router_https_port: <port> # Port for https (defaults to 443)
|
# router_https_port: <port> # Port for https (defaults to 443)
|
||||||
|
|
||||||
# xdebug_enabled: false # Set to true to enable xdebug and "ddev start" or "ddev restart"
|
# xdebug_enabled: false # Set to true to enable xdebug and "ddev start" or "ddev restart"
|
||||||
# Note that for most people the commands
|
# Note that for most people the commands
|
||||||
# "ddev xdebug" to enable xdebug and "ddev xdebug off" to disable it work better,
|
# "ddev exec enable_xdebug" and "ddev exec disable_xdebug" work better,
|
||||||
# as leaving xdebug enabled all the time is a big performance hit.
|
# as leaving xdebug enabled all the time is a big performance hit.
|
||||||
|
|
||||||
# xhprof_enabled: false # Set to true to enable xhprof and "ddev start" or "ddev restart"
|
# webserver_type: nginx-fpm # Can be set to apache-fpm or apache-cgi as well
|
||||||
# Note that for most people the commands
|
|
||||||
# "ddev xhprof" to enable xhprof and "ddev xhprof off" to disable it work better,
|
|
||||||
# as leaving xhprof enabled all the time is a big performance hit.
|
|
||||||
|
|
||||||
# webserver_type: nginx-fpm # or apache-fpm
|
|
||||||
|
|
||||||
# timezone: Europe/Berlin
|
# timezone: Europe/Berlin
|
||||||
# This is the timezone used in the containers and by PHP;
|
# This is the timezone used in the containers and by PHP;
|
||||||
|
@ -63,26 +67,6 @@ nodejs_version: "16"
|
||||||
# see https://en.wikipedia.org/wiki/List_of_tz_database_time_zones
|
# see https://en.wikipedia.org/wiki/List_of_tz_database_time_zones
|
||||||
# For example Europe/Dublin or MST7MDT
|
# For example Europe/Dublin or MST7MDT
|
||||||
|
|
||||||
# composer_root: <relative_path>
|
|
||||||
# Relative path to the composer root directory from the project root. This is
|
|
||||||
# the directory which contains the composer.json and where all Composer related
|
|
||||||
# commands are executed.
|
|
||||||
|
|
||||||
# composer_version: "2"
|
|
||||||
# You can set it to "" or "2" (default) for Composer v2 or "1" for Composer v1
|
|
||||||
# to use the latest major version available at the time your container is built.
|
|
||||||
# It is also possible to select a minor version for example "2.2" which will
|
|
||||||
# install the latest release of that branch. Alternatively, an explicit Composer
|
|
||||||
# version may be specified, for example "1.0.22". Finally, it is also possible
|
|
||||||
# to use one of the key words "stable", "preview" or "snapshot" see Composer
|
|
||||||
# documentation.
|
|
||||||
# To reinstall Composer after the image was built, run "ddev debug refresh".
|
|
||||||
|
|
||||||
# nodejs_version: "16"
|
|
||||||
# change from the default system Node.js version to another supported version, like 12, 14, 17, 18.
|
|
||||||
# Note that you can use 'ddev nvm' or nvm inside the web container to provide nearly any
|
|
||||||
# Node.js version, including v6, etc.
|
|
||||||
|
|
||||||
# additional_hostnames:
|
# additional_hostnames:
|
||||||
# - somename
|
# - somename
|
||||||
# - someothername
|
# - someothername
|
||||||
|
@ -96,9 +80,7 @@ nodejs_version: "16"
|
||||||
# Please take care with this because it can cause great confusion.
|
# Please take care with this because it can cause great confusion.
|
||||||
|
|
||||||
# upload_dir: custom/upload/dir
|
# upload_dir: custom/upload/dir
|
||||||
# would set the destination path for ddev import-files to <docroot>/custom/upload/dir
|
# would set the destination path for ddev import-files to custom/upload/dir.
|
||||||
# When mutagen is enabled this path is bind-mounted so that all the files
|
|
||||||
# in the upload_dir don't have to be synced into mutagen
|
|
||||||
|
|
||||||
# working_dir:
|
# working_dir:
|
||||||
# web: /var/www/html
|
# web: /var/www/html
|
||||||
|
@ -107,24 +89,16 @@ nodejs_version: "16"
|
||||||
# These values specify the destination directory for ddev ssh and the
|
# These values specify the destination directory for ddev ssh and the
|
||||||
# directory in which commands passed into ddev exec are run.
|
# directory in which commands passed into ddev exec are run.
|
||||||
|
|
||||||
# omit_containers: [db, dba, ddev-ssh-agent]
|
# omit_containers: ["dba", "ddev-ssh-agent"]
|
||||||
# Currently only these containers are supported. Some containers can also be
|
# would omit the dba (phpMyAdmin) and ddev-ssh-agent containers. Currently
|
||||||
# omitted globally in the ~/.ddev/global_config.yaml. Note that if you omit
|
# only those two containers can be omitted here.
|
||||||
# the "db" container, several standard features of ddev that access the
|
# Note that these containers can also be omitted globally in the
|
||||||
# database container will be unusable. In the global configuration it is also
|
# ~/.ddev/global_config.yaml or with the "ddev config global" command.
|
||||||
# possible to omit ddev-router, but not here.
|
|
||||||
|
|
||||||
# nfs_mount_enabled: false
|
# nfs_mount_enabled: false
|
||||||
# Great performance improvement but requires host configuration first.
|
# Great performance improvement but requires host configuration first.
|
||||||
# See https://ddev.readthedocs.io/en/stable/users/performance/#using-nfs-to-mount-the-project-into-the-container
|
# See https://ddev.readthedocs.io/en/stable/users/performance/#using-nfs-to-mount-the-project-into-the-container
|
||||||
|
|
||||||
# mutagen_enabled: false
|
|
||||||
# Performance improvement using mutagen asynchronous updates.
|
|
||||||
# See https://ddev.readthedocs.io/en/latest/users/performance/#using-mutagen
|
|
||||||
|
|
||||||
# fail_on_hook_fail: False
|
|
||||||
# Decide whether 'ddev start' should be interrupted by a failing hook
|
|
||||||
|
|
||||||
# host_https_port: "59002"
|
# host_https_port: "59002"
|
||||||
# The host port binding for https can be explicitly specified. It is
|
# The host port binding for https can be explicitly specified. It is
|
||||||
# dynamic unless otherwise specified.
|
# dynamic unless otherwise specified.
|
||||||
|
@ -141,23 +115,13 @@ nodejs_version: "16"
|
||||||
# The host port binding for the ddev-dbserver can be explicitly specified. It is dynamic
|
# The host port binding for the ddev-dbserver can be explicitly specified. It is dynamic
|
||||||
# unless explicitly specified.
|
# unless explicitly specified.
|
||||||
|
|
||||||
# phpmyadmin_port: "8036"
|
# phpmyadmin_port: "1000"
|
||||||
# phpmyadmin_https_port: "8037"
|
# The PHPMyAdmin port can be changed from the default 8036
|
||||||
# The PHPMyAdmin ports can be changed from the default 8036 and 8037
|
|
||||||
|
|
||||||
# host_phpmyadmin_port: "8036"
|
# mailhog_port: "1001"
|
||||||
# The phpmyadmin (dba) port is not normally bound on the host at all, instead being routed
|
# The MailHog port can be changed from the default 8025
|
||||||
# through ddev-router, but it can be specified and bound.
|
|
||||||
|
|
||||||
# mailhog_port: "8025"
|
# webimage_extra_packages: [php-yaml, php7.3-ldap]
|
||||||
# mailhog_https_port: "8026"
|
|
||||||
# The MailHog ports can be changed from the default 8025 and 8026
|
|
||||||
|
|
||||||
# host_mailhog_port: "8025"
|
|
||||||
# The mailhog port is not normally bound on the host at all, instead being routed
|
|
||||||
# through ddev-router, but it can be bound directly to localhost if specified here.
|
|
||||||
|
|
||||||
# webimage_extra_packages: [php7.4-tidy, php-bcmath]
|
|
||||||
# Extra Debian packages that are needed in the webimage can be added here
|
# Extra Debian packages that are needed in the webimage can be added here
|
||||||
|
|
||||||
# dbimage_extra_packages: [telnet,netcat]
|
# dbimage_extra_packages: [telnet,netcat]
|
||||||
|
@ -175,83 +139,21 @@ nodejs_version: "16"
|
||||||
# If you prefer you can change this to "ddev.local" to preserve
|
# If you prefer you can change this to "ddev.local" to preserve
|
||||||
# pre-v1.9 behavior.
|
# pre-v1.9 behavior.
|
||||||
|
|
||||||
# ngrok_args: --basic-auth username:pass1234
|
# ngrok_args: --subdomain mysite --auth username:pass
|
||||||
# Provide extra flags to the "ngrok http" command, see
|
# Provide extra flags to the "ngrok http" command, see
|
||||||
# https://ngrok.com/docs#http or run "ngrok http -h"
|
# https://ngrok.com/docs#http or run "ngrok http -h"
|
||||||
|
|
||||||
# disable_settings_management: false
|
# disable_settings_management: false
|
||||||
# If true, ddev will not create CMS-specific settings files like
|
# If true, ddev will not create CMS-specific settings files like
|
||||||
# Drupal's settings.php/settings.ddev.php or TYPO3's AdditionalConfiguration.php
|
# Drupal's settings.php/settings.ddev.php or TYPO3's AdditionalSettings.php
|
||||||
# In this case the user must provide all such settings.
|
# In this case the user must provide all such settings.
|
||||||
|
|
||||||
# You can inject environment variables into the web container with:
|
# provider: default # Currently either "default" or "pantheon"
|
||||||
# web_environment:
|
#
|
||||||
# - SOMEENV=somevalue
|
|
||||||
# - SOMEOTHERENV=someothervalue
|
|
||||||
|
|
||||||
# no_project_mount: false
|
|
||||||
# (Experimental) If true, ddev will not mount the project into the web container;
|
|
||||||
# the user is responsible for mounting it manually or via a script.
|
|
||||||
# This is to enable experimentation with alternate file mounting strategies.
|
|
||||||
# For advanced users only!
|
|
||||||
|
|
||||||
# bind_all_interfaces: false
|
|
||||||
# If true, host ports will be bound on all network interfaces,
|
|
||||||
# not just the localhost interface. This means that ports
|
|
||||||
# will be available on the local network if the host firewall
|
|
||||||
# allows it.
|
|
||||||
|
|
||||||
# default_container_timeout: 120
|
|
||||||
# The default time that ddev waits for all containers to become ready can be increased from
|
|
||||||
# the default 120. This helps in importing huge databases, for example.
|
|
||||||
|
|
||||||
#web_extra_exposed_ports:
|
|
||||||
#- name: nodejs
|
|
||||||
# container_port: 3000
|
|
||||||
# http_port: 2999
|
|
||||||
# https_port: 3000
|
|
||||||
#- name: something
|
|
||||||
# container_port: 4000
|
|
||||||
# https_port: 4000
|
|
||||||
# http_port: 3999
|
|
||||||
# Allows a set of extra ports to be exposed via ddev-router
|
|
||||||
# The port behavior on the ddev-webserver must be arranged separately, for example
|
|
||||||
# using web_extra_daemons.
|
|
||||||
# For example, with a web app on port 3000 inside the container, this config would
|
|
||||||
# expose that web app on https://<project>.ddev.site:9999 and http://<project>.ddev.site:9998
|
|
||||||
# web_extra_exposed_ports:
|
|
||||||
# - container_port: 3000
|
|
||||||
# http_port: 9998
|
|
||||||
# https_port: 9999
|
|
||||||
|
|
||||||
#web_extra_daemons:
|
|
||||||
#- name: "http-1"
|
|
||||||
# command: "/var/www/html/node_modules/.bin/http-server -p 3000"
|
|
||||||
# directory: /var/www/html
|
|
||||||
#- name: "http-2"
|
|
||||||
# command: "/var/www/html/node_modules/.bin/http-server /var/www/html/sub -p 3000"
|
|
||||||
# directory: /var/www/html
|
|
||||||
|
|
||||||
# override_config: false
|
|
||||||
# By default, config.*.yaml files are *merged* into the configuration
|
|
||||||
# But this means that some things can't be overridden
|
|
||||||
# For example, if you have 'nfs_mount_enabled: true'' you can't override it with a merge
|
|
||||||
# and you can't erase existing hooks or all environment variables.
|
|
||||||
# However, with "override_config: true" in a particular config.*.yaml file,
|
|
||||||
# 'nfs_mount_enabled: false' can override the existing values, and
|
|
||||||
# hooks:
|
|
||||||
# post_start: []
|
|
||||||
# or
|
|
||||||
# web_environment: []
|
|
||||||
# or
|
|
||||||
# additional_hostnames: []
|
|
||||||
# can have their intended affect. 'override_config' affects only behavior of the
|
|
||||||
# config.*.yaml file it exists in.
|
|
||||||
|
|
||||||
# Many ddev commands can be extended to run tasks before or after the
|
# Many ddev commands can be extended to run tasks before or after the
|
||||||
# ddev command is executed, for example "post-start", "post-import-db",
|
# ddev command is executed, for example "post-start", "post-import-db",
|
||||||
# "pre-composer", "post-composer"
|
# "pre-composer", "post-composer"
|
||||||
# See https://ddev.readthedocs.io/en/stable/users/extend/custom-commands/ for more
|
# See https://ddev.readthedocs.io/en/stable/users/extending-commands/ for more
|
||||||
# information on the commands that can be extended and the tasks you can define
|
# information on the commands that can be extended and the tasks you can define
|
||||||
# for them. Example:
|
# for them. Example:
|
||||||
#hooks:
|
#hooks:
|
||||||
|
|
2
.gitignore
vendored
2
.gitignore
vendored
|
@ -20,7 +20,7 @@ web/themes/custom/*/src
|
||||||
vendor/
|
vendor/
|
||||||
|
|
||||||
## Ignore folder for SQL dumps
|
## Ignore folder for SQL dumps
|
||||||
/backups
|
/data
|
||||||
|
|
||||||
## Ignore other template-built files:
|
## Ignore other template-built files:
|
||||||
drush/sites/local.site.yml
|
drush/sites/local.site.yml
|
||||||
|
|
2
.gitmodules
vendored
2
.gitmodules
vendored
|
@ -1,4 +1,4 @@
|
||||||
[submodule "web/themes/custom/agarica/patternlibrary"]
|
[submodule "web/themes/custom/agarica/patternlibrary"]
|
||||||
path = web/themes/custom/agarica/patternlibrary
|
path = web/themes/custom/agarica/patternlibrary
|
||||||
url = git@git.agaric.com:agaric/patternlibrary.git
|
url = git@gitlab.com:agaric/patternlibrary.git
|
||||||
branch = master
|
branch = master
|
||||||
|
|
52
.vscode/launch.json
vendored
52
.vscode/launch.json
vendored
|
@ -1,52 +0,0 @@
|
||||||
{
|
|
||||||
// Use IntelliSense to learn about possible attributes.
|
|
||||||
// Hover to view descriptions of existing attributes.
|
|
||||||
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
|
|
||||||
"version": "0.2.0",
|
|
||||||
"configurations": [
|
|
||||||
{
|
|
||||||
"name": "Listen for Xdebug",
|
|
||||||
"type": "php",
|
|
||||||
"request": "launch",
|
|
||||||
"port": 9003,
|
|
||||||
"hostname": "0.0.0.0",
|
|
||||||
"pathMappings": {
|
|
||||||
"/var/www/html": "${workspaceRoot}"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"name": "Launch currently open script",
|
|
||||||
"type": "php",
|
|
||||||
"request": "launch",
|
|
||||||
"program": "${file}",
|
|
||||||
"cwd": "${fileDirname}",
|
|
||||||
"port": 0,
|
|
||||||
"runtimeArgs": [
|
|
||||||
"-dxdebug.start_with_request=yes"
|
|
||||||
],
|
|
||||||
"env": {
|
|
||||||
"XDEBUG_MODE": "debug,develop",
|
|
||||||
"XDEBUG_CONFIG": "client_port=${port}"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"name": "Launch Built-in web server",
|
|
||||||
"type": "php",
|
|
||||||
"request": "launch",
|
|
||||||
"runtimeArgs": [
|
|
||||||
"-dxdebug.mode=debug",
|
|
||||||
"-dxdebug.start_with_request=yes",
|
|
||||||
"-S",
|
|
||||||
"localhost:0"
|
|
||||||
],
|
|
||||||
"program": "",
|
|
||||||
"cwd": "${workspaceRoot}",
|
|
||||||
"port": 9003,
|
|
||||||
"serverReadyAction": {
|
|
||||||
"pattern": "Development Server \\(http://localhost:([0-9]+)\\) started",
|
|
||||||
"uriFormat": "http://localhost:%s",
|
|
||||||
"action": "openExternally"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
]
|
|
||||||
}
|
|
42
README.md
42
README.md
|
@ -26,11 +26,10 @@ git submodule update
|
||||||
To be able to import the configuration, you need to get the initializing database (where we will also be collaborating on content) [from the test site](https://agaric-test.drutopia.org/) pending resolution of [drutopia#216](https://gitlab.com/drutopia/drutopia/issues/216).
|
To be able to import the configuration, you need to get the initializing database (where we will also be collaborating on content) [from the test site](https://agaric-test.drutopia.org/) pending resolution of [drutopia#216](https://gitlab.com/drutopia/drutopia/issues/216).
|
||||||
|
|
||||||
```
|
```
|
||||||
ddev start
|
vagrant ssh
|
||||||
ddev auth ssh
|
composer install
|
||||||
ddev composer install
|
drush -y sql-dump > /tmp/paranoia.sql && drush sql-drop && drush -y sql-sync @live @self && drush -y updb
|
||||||
ddev . drush -y sql-dump > /tmp/paranoia.sql && drush sql-drop && drush -y sql-sync @live @self && drush -y updb
|
drush -y rsync @live:%files @self:%files
|
||||||
ddev . drush -y rsync @live:%files @self:%files
|
|
||||||
```
|
```
|
||||||
|
|
||||||
### Get updates
|
### Get updates
|
||||||
|
@ -38,18 +37,16 @@ ddev . drush -y rsync @live:%files @self:%files
|
||||||
```
|
```
|
||||||
git pull
|
git pull
|
||||||
git submodule update --recursive --remote
|
git submodule update --recursive --remote
|
||||||
ddev start
|
vagrant ssh
|
||||||
ddev composer install
|
composer install
|
||||||
ddev . drush -y sql-dump > /tmp/paranoia.sql && drush -y 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
|
||||||
ddev . drush -y rsync @live:%files @self:%files
|
drush -y rsync @live:%files @self:%files
|
||||||
ddev . drush cim -y
|
drush cim -y
|
||||||
```
|
```
|
||||||
|
|
||||||
## Theming
|
## Theming
|
||||||
|
|
||||||
See `web/themes/custom/agarica/patternlibrary/README.md` for how to make changes, especially involving Sass to CSS compilation for styles.
|
See `web/themes/custom/agarica/README.md` and `web/themes/custom/agarica/patternlibrary/README.md`
|
||||||
|
|
||||||
After making changes withing the Pattern Library within the custom Agaric theme, commit these changes *first* to the pattern library itself, and second commit the pattern library as a whole to the main project (it will be a single change, "Subproject commit" and the current hash value of the subproject repository.
|
|
||||||
|
|
||||||
## Deployment
|
## Deployment
|
||||||
|
|
||||||
|
@ -57,12 +54,11 @@ Agaric is currently using a Platform as a Service version of Drutopia with addit
|
||||||
|
|
||||||
Set up [drutopia_host](https://gitlab.com/drutopia-platform/drutopia_host) and [hosting_private](https://gitlab.com/drutopia-platform/hosting_private), as documented in hosting private.
|
Set up [drutopia_host](https://gitlab.com/drutopia-platform/drutopia_host) and [hosting_private](https://gitlab.com/drutopia-platform/hosting_private), as documented in hosting private.
|
||||||
|
|
||||||
Then use [ahoy](https://github.com/ahoy-cli/ahoy/), from within the hosting_private directory (`cd ~/Projects/drutopia-platform/drutopia_host/hosting_private`).
|
Then use [ahoy](https://github.com/ahoy-cli/ahoy/), from within the hosting_private directory.
|
||||||
|
|
||||||
Ensure all three related repositories are up-to-date with:
|
Ensure all three related repositories are up-to-date with:
|
||||||
|
|
||||||
```
|
```
|
||||||
cd ~/Projects/drutopia-platform/drutopia_host/hosting_private
|
|
||||||
ahoy git-pull-all
|
ahoy git-pull-all
|
||||||
```
|
```
|
||||||
|
|
||||||
|
@ -72,19 +68,21 @@ If Agaric's Drutopia PaaS base has changed (the composer.lock in this directory)
|
||||||
ahoy deploy-build agaric
|
ahoy deploy-build agaric
|
||||||
```
|
```
|
||||||
|
|
||||||
To deploy this build to an instance of the site plus config, templates, styles:
|
To deploy everything else (config, templates, styles):
|
||||||
|
|
||||||
```
|
```
|
||||||
ahoy deploy-site agaric_test
|
ahoy deploy-site agaric_test
|
||||||
```
|
```
|
||||||
|
|
||||||
(And likewise for `agaric_live`.) Use `deploy-site-force` in place of `deploy-site` if you need to override configuration changes made on live and you are certain you have captured all wanted changes.
|
(And likewise for `agaric_live`.)
|
||||||
|
|
||||||
Then record the deployment, logs from both deploy-site and deploy-build:
|
Then record the deployment. This applies to both deploy-site and deploy-build record keeping:
|
||||||
|
Navigate to `/drutopia_host/build_artifacts`
|
||||||
|
Add all new files generated with `git add . `
|
||||||
|
Commit the files with a message on what you deployed with `git commit -m "Add artifacts"`
|
||||||
|
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`.
|
||||||
ahoy artifacts
|
|
||||||
```
|
|
||||||
|
|
||||||
### Drupal settings file management
|
### Drupal settings file management
|
||||||
|
|
||||||
|
@ -94,7 +92,7 @@ The Drupal settings files are also managed by Drutopia. On each deploy, the file
|
||||||
ahoy vault-edit
|
ahoy vault-edit
|
||||||
```
|
```
|
||||||
|
|
||||||
Look for the Yaml section for `agaric_live`, or `agaric_test`, as appropriate, and edit the `php_settings_code` section to add items to that site's setting overrides. For example:
|
Look for the Yaml section for agaric_live, or agaric_test, as appropriate, and edit the php_settings_code section to add items to that site's setting overrides. For example:
|
||||||
|
|
||||||
```
|
```
|
||||||
...
|
...
|
||||||
|
|
|
@ -1,8 +0,0 @@
|
||||||
{
|
|
||||||
"folders": [
|
|
||||||
{
|
|
||||||
"path": "."
|
|
||||||
}
|
|
||||||
],
|
|
||||||
"settings": {}
|
|
||||||
}
|
|
294
composer.json
294
composer.json
|
@ -1,196 +1,89 @@
|
||||||
{
|
{
|
||||||
"name": "agaric-sites/agaric_coop",
|
"name": "agaric-sites/agaric_coop",
|
||||||
"description": "Agaric site modified from template for composer-based Drupal 8 Drutopia projects.",
|
"description": "Agaric site modified from template for composer-based Drutopia projects.",
|
||||||
"type": "project",
|
"type": "project",
|
||||||
"license": "GPL-2.0-or-later",
|
"license": "GPL-2.0-or-later",
|
||||||
"minimum-stability": "dev",
|
"minimum-stability": "dev",
|
||||||
"prefer-stable": true,
|
"prefer-stable": true,
|
||||||
"homepage": "https://agaric.coop",
|
|
||||||
"support": {
|
|
||||||
"docs": "http://docs.drutopia.org/en/latest",
|
|
||||||
"issues": "https://gitlab.com/drutopia/drutopia/-/issues"
|
|
||||||
},
|
|
||||||
"repositories": {
|
|
||||||
"drupal/search_api_entity_multiselect": {
|
|
||||||
"type": "git",
|
|
||||||
"url": "https://codeberg.org/agaric/search_api_entity_multiselect.git"
|
|
||||||
},
|
|
||||||
"drupal/google_analytics": {
|
|
||||||
"type": "git",
|
|
||||||
"url": "git@git.drupal.org:issue/google_analytics-3357831.git"
|
|
||||||
},
|
|
||||||
"drupal": {
|
|
||||||
"type": "composer",
|
|
||||||
"url": "https://packages.drupal.org/8"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"require": {
|
"require": {
|
||||||
"composer/installers": "^2",
|
"composer/installers": "^1.7",
|
||||||
"cweagans/composer-patches": "^1",
|
"cweagans/composer-patches": "^1.0",
|
||||||
"drupal/admin_toolbar": "^3",
|
"drupal/admin_links_access_filter": "^1.0@alpha",
|
||||||
"drupal/allowed_formats": "^2",
|
"drupal/allowed_formats": "^1.1",
|
||||||
"drupal/antibot": "^2",
|
"drupal/antibot": "^1.2",
|
||||||
"drupal/asset_injector": "^2",
|
"drupal/block_theme_sync": "1.x-dev",
|
||||||
"drupal/auto_entitylabel": "^3.0@beta",
|
"drupal/ckeditor_markdown": "^1.1",
|
||||||
"drupal/backup_migrate": "^5",
|
|
||||||
"drupal/better_exposed_filters": "^6",
|
|
||||||
"drupal/block_class": "^2",
|
|
||||||
"drupal/bpmn_io": "^1",
|
|
||||||
"drupal/cancel_button": "^1",
|
|
||||||
"drupal/ckeditor_markdown": "^1.3",
|
|
||||||
"drupal/ckeditorheight": "^1",
|
|
||||||
"drupal/classitup": "^1",
|
|
||||||
"drupal/coffee": "1.x-dev",
|
"drupal/coffee": "1.x-dev",
|
||||||
"drupal/comment_notify": "^1",
|
"drupal/comment_notify": "dev-1.x",
|
||||||
"drupal/content_lock": "^2",
|
"drupal/core-composer-scaffold": "^9.0.0",
|
||||||
"drupal/context_stack": "^1",
|
"drupal/core-project-message": "^9.0.0",
|
||||||
"drupal/convert_bundles": "^2",
|
"drupal/core-recommended": "^9.0.0",
|
||||||
"drupal/core-composer-scaffold": "^10",
|
"drupal/customerror": "1.x-dev",
|
||||||
"drupal/core-recommended": "^10",
|
"drupal/diff": "^1.0@RC",
|
||||||
"drupal/csp": "^1",
|
"drupal/dropdown_language": "^2.2",
|
||||||
"drupal/customerror": "^1",
|
"drupal/drutopia_core": "dev-update-to-drupal9 as 1.x-dev",
|
||||||
"drupal/dashboards": "^2",
|
"drupal/drutopia_site": "dev-1.x",
|
||||||
"drupal/date_popup": "^2",
|
"drupal/google_analytics": "^2.3",
|
||||||
"drupal/datetimehideseconds": "^1",
|
"drupal/honeypot": "^2.0",
|
||||||
"drupal/diff": "^1",
|
"drupal/hotjar": "^1.2",
|
||||||
"drupal/drd": "^4",
|
"drupal/http_cache_control": "^1.0",
|
||||||
"drupal/drd_agent": "^4",
|
"drupal/http_client_error_status": "^2.0",
|
||||||
"drupal/dropdown_language": "^4",
|
"drupal/indieweb": "1.x-dev",
|
||||||
"drupal/drutopia_collection": "2.0.x-dev@dev",
|
"drupal/mailchimp": "1.x-dev",
|
||||||
"drupal/drutopia_core": "2.0.x-dev@dev",
|
"drupal/mailsystem": "^4.3",
|
||||||
"drupal/drutopia_organization": "2.0.x-dev@dev",
|
"drupal/markdown": "dev-2.x",
|
||||||
"drupal/drutopia_paragraph_title": "^1",
|
"drupal/menu_trail_by_path": "^1.1",
|
||||||
"drupal/drutopia_site": "2.0.x-dev@dev",
|
"drupal/migrate_plus": "^4.0",
|
||||||
"drupal/easy_breadcrumb": "^2",
|
"drupal/migrate_tools": "^4.0",
|
||||||
"drupal/eca": "^1",
|
"drupal/mimemail": "^1.0@alpha",
|
||||||
"drupal/eca_context": "^1.0",
|
"drupal/minimalhtml": "1.x-dev",
|
||||||
"drupal/editor_advanced_link": "^2.0",
|
"drupal/multiline_config": "dev-1.x",
|
||||||
"drupal/editoria11y": "^2",
|
"drupal/paragraphs_features": "^1.4",
|
||||||
"drupal/email_registration": "^1",
|
"drupal/preview_link": "^1.1",
|
||||||
"drupal/entity_notify": "^1",
|
"drupal/redirect": "^1.2",
|
||||||
"drupal/entity_reference_override": "^2",
|
"drupal/regionincontent": "1.x-dev",
|
||||||
"drupal/entitygroupfield": "^2",
|
"drupal/scheduler": "^1.0",
|
||||||
"drupal/environment_indicator": "^4",
|
"drupal/scn": "^1.1",
|
||||||
"drupal/eva": "^3",
|
"drupal/search404": "^1.0",
|
||||||
"drupal/exif_orientation": "^1",
|
"drupal/stripe_webform": "1.x-dev",
|
||||||
"drupal/feeds": "^3",
|
"drupal/swiftmailer": "^2.0",
|
||||||
"drupal/feeds_ex": "^1",
|
"drupal/textarea_widget_for_text": "1.x-dev",
|
||||||
"drupal/feeds_ical": "^2",
|
"drupal/twigsuggest": "1.x-dev",
|
||||||
"drupal/field_defaults": "^2",
|
"drupal/ui_patterns": "1.x-dev",
|
||||||
"drupal/field_formatter_class": "^1",
|
"drupal/upgrade_status": "^2.0",
|
||||||
"drupal/field_token_value": "^3",
|
"drupal/viewsreference": "^2.0",
|
||||||
"drupal/filter_perms": "^1",
|
|
||||||
"drupal/fitvids": "^2",
|
|
||||||
"drupal/fixed_block_content": "^1",
|
|
||||||
"drupal/flag": "^4",
|
|
||||||
"drupal/footnotes": "^3",
|
|
||||||
"drupal/fullcalendar_view": "^5",
|
|
||||||
"drupal/geolocation": "^3",
|
|
||||||
"drupal/gin": "^3",
|
|
||||||
"drupal/gin_gutenberg": "^1",
|
|
||||||
"drupal/gin_login": "^2",
|
|
||||||
"drupal/gin_toolbar": "^1",
|
|
||||||
"drupal/google_analytics": "dev-3357831-php-8.2-compatibility",
|
|
||||||
"drupal/gutenberg": "^2",
|
|
||||||
"drupal/http_cache_control": "^2",
|
|
||||||
"drupal/http_client_error_status": "^3",
|
|
||||||
"drupal/ief_complex_open": "^1",
|
|
||||||
"drupal/indieweb": "^1",
|
|
||||||
"drupal/inline_entity_form": "^1.0@RC",
|
|
||||||
"drupal/inotherwords": "^3",
|
|
||||||
"drupal/insert": "^3",
|
|
||||||
"drupal/key": "^1.14",
|
|
||||||
"drupal/link_attributes": "^1.9",
|
|
||||||
"drupal/linkit": "^6",
|
|
||||||
"drupal/mail_login": "^2.7",
|
|
||||||
"drupal/markdown": "^3",
|
|
||||||
"drupal/menu_item_extras": "^2.19",
|
|
||||||
"drupal/menu_link_config": "^1.0@alpha",
|
|
||||||
"drupal/menu_trail_by_path": "^2",
|
|
||||||
"drupal/microformats": "^2",
|
|
||||||
"drupal/migrate_plus": "^6",
|
|
||||||
"drupal/migrate_source_csv": "^3",
|
|
||||||
"drupal/migrate_tools": "^6",
|
|
||||||
"drupal/migrate_upgrade": "^4",
|
|
||||||
"drupal/minimalhtml": "^2",
|
|
||||||
"drupal/multiparagraph_flow": "^1.0@dev",
|
|
||||||
"drupal/node_view_permissions": "^1.4",
|
|
||||||
"drupal/noreferrer": "^1",
|
|
||||||
"drupal/notfoundpassthrough": "1.x-dev",
|
|
||||||
"drupal/octavia": "2.0.x-dev@dev",
|
|
||||||
"drupal/octavia_camouflage": "2.0.x-dev@dev",
|
|
||||||
"drupal/paragraphs_features": "^2",
|
|
||||||
"drupal/password_policy": "^4",
|
|
||||||
"drupal/plausible": "^2.0@beta",
|
|
||||||
"drupal/prepopulate": "^2",
|
|
||||||
"drupal/preview_link": "^2",
|
|
||||||
"drupal/printable": "^3",
|
|
||||||
"drupal/quickedit": "^1.0",
|
|
||||||
"drupal/r4032login": "^2",
|
|
||||||
"drupal/rabbit_hole": "^1.0@beta",
|
|
||||||
"drupal/regionincontent": "^1",
|
|
||||||
"drupal/registration_role": "^2",
|
|
||||||
"drupal/require_on_publish": "^1",
|
|
||||||
"drupal/role_delegation": "^1",
|
|
||||||
"drupal/scheduler": "^1",
|
|
||||||
"drupal/schema_metatag": "^2",
|
|
||||||
"drupal/scn": "^2",
|
|
||||||
"drupal/search404": "^2",
|
|
||||||
"drupal/search_api_autocomplete": "^1.6",
|
|
||||||
"drupal/search_api_entity_multiselect": "1.0.x-dev",
|
|
||||||
"drupal/search_api_saved_searches": "^1",
|
|
||||||
"drupal/seckit": "^2.0",
|
|
||||||
"drupal/select_or_other": "^4.0",
|
|
||||||
"drupal/seven": "^1.0",
|
|
||||||
"drupal/shield": "^1.4",
|
|
||||||
"drupal/smart_date": "^4.0",
|
|
||||||
"drupal/sms": "^2.0",
|
|
||||||
"drupal/social_post_facebook": "3.0.x-dev@dev",
|
|
||||||
"drupal/social_post_twitter": "3.x-dev@dev",
|
|
||||||
"drupal/stringoverrides": "^1.8",
|
|
||||||
"drupal/stripe_webform": "^2",
|
|
||||||
"drupal/subpathauto": "^1.0@RC",
|
|
||||||
"drupal/super_login": "^2.1",
|
|
||||||
"drupal/taxonomy_import": "^2",
|
|
||||||
"drupal/taxonomy_manager": "^2",
|
|
||||||
"drupal/textarea_widget_for_text": "^1.1",
|
|
||||||
"drupal/tomselect": "1.0.x-dev@dev",
|
|
||||||
"drupal/trim": "^2",
|
|
||||||
"drupal/twig_tweak": "^3.2",
|
|
||||||
"drupal/twigsuggest": "^1",
|
|
||||||
"drupal/ui_patterns": "^1",
|
|
||||||
"drupal/unique_content_field_validation": "^1.1",
|
|
||||||
"drupal/view_password": "^6",
|
|
||||||
"drupal/view_unpublished": "^1.0",
|
|
||||||
"drupal/views_daterange_filters": "^1.0@alpha",
|
|
||||||
"drupal/views_field_compare": "^1.0@beta",
|
|
||||||
"drupal/viewsreference": "^1",
|
|
||||||
"drupal/webform": "^6.0",
|
"drupal/webform": "^6.0",
|
||||||
"drupal/webform_mailchimp": "^5.4",
|
"drupal/webform_mailchimp": "^5.4",
|
||||||
"drupal/weight": "^3.3",
|
"drupal/wysiwyg_linebreaks": "1.x-dev",
|
||||||
"drupal/workflow_buttons": "1.x-dev",
|
"drush/drush": "^10.0",
|
||||||
"drupal/wysiwyg_linebreaks": "^2",
|
"drutopia/drutopia": "dev-update-to-drupal9",
|
||||||
"drush/drush": "*",
|
"league/commonmark": "^1.5",
|
||||||
"drutopia/drutopia": "2.0.x-dev",
|
"wikimedia/composer-merge-plugin": "^1.4",
|
||||||
"league/commonmark": "^1.0",
|
"zaporylie/composer-drupal-optimizations": "^1.0"
|
||||||
"vlucas/phpdotenv": "^5.1",
|
|
||||||
"webflo/drupal-finder": "^1.2"
|
|
||||||
},
|
},
|
||||||
"require-dev": {
|
"require-dev": {
|
||||||
"behat/behat": "^3.4",
|
"behat/behat": "^3.4",
|
||||||
"behat/mink": "^1.7",
|
"behat/mink": "^1.7",
|
||||||
"drupal/upgrade_status": "^4"
|
"behat/mink-goutte-driver": "^1.2",
|
||||||
|
"phpunit/phpunit": "^7"
|
||||||
|
},
|
||||||
|
"repositories": {
|
||||||
|
"drupal": {
|
||||||
|
"type": "composer",
|
||||||
|
"url": "https://packages.drupal.org/8"
|
||||||
|
},
|
||||||
|
"drutopia": {
|
||||||
|
"type": "vcs",
|
||||||
|
"url": "https://gitlab.com/drutopia/drutopia"
|
||||||
|
},
|
||||||
|
"drutopia_core": {
|
||||||
|
"type": "vcs",
|
||||||
|
"url": "https://gitlab.com/drutopia/drutopia_core"
|
||||||
|
}
|
||||||
},
|
},
|
||||||
"config": {
|
"config": {
|
||||||
"sort-packages": true,
|
"sort-packages": true,
|
||||||
"process-timeout": 600,
|
"process-timeout": 600
|
||||||
"allow-plugins": {
|
|
||||||
"composer/installers": true,
|
|
||||||
"cweagans/composer-patches": true,
|
|
||||||
"drupal/core-composer-scaffold": true,
|
|
||||||
"drupal/core-project-message": false,
|
|
||||||
"wikimedia/composer-merge-plugin": true
|
|
||||||
}
|
|
||||||
},
|
},
|
||||||
"conflict": {
|
"conflict": {
|
||||||
"drupal/drupal": "*"
|
"drupal/drupal": "*"
|
||||||
|
@ -199,10 +92,7 @@
|
||||||
"drupal-scaffold": {
|
"drupal-scaffold": {
|
||||||
"locations": {
|
"locations": {
|
||||||
"web-root": "web/"
|
"web-root": "web/"
|
||||||
},
|
}
|
||||||
"allowed-packages": [
|
|
||||||
"drupal/ui_patterns"
|
|
||||||
]
|
|
||||||
},
|
},
|
||||||
"installer-paths": {
|
"installer-paths": {
|
||||||
"web/core": ["type:drupal-core"],
|
"web/core": ["type:drupal-core"],
|
||||||
|
@ -221,25 +111,47 @@
|
||||||
},
|
},
|
||||||
"enable-patching": true,
|
"enable-patching": true,
|
||||||
"patches": {
|
"patches": {
|
||||||
|
"drupal/search404": {
|
||||||
|
"Remove search module dependency": "https://www.drupal.org/files/issues/2018-07-09/search404-core-search-dependency-9.patch"
|
||||||
|
},
|
||||||
"drupal/coffee": {
|
"drupal/coffee": {
|
||||||
"Allow user to specify keyboard shortcut.": "https://www.drupal.org/files/issues/2018-11-11/1734898-14.coffee-hotkeys-plus-g.patch"
|
"Allow user to specify keyboard shortcut.": "https://www.drupal.org/files/issues/2018-11-11/1734898-14.coffee-hotkeys-plus-g.patch"
|
||||||
},
|
},
|
||||||
"drupal/core": {
|
"drupal/wysiwyg_linebreaks": {
|
||||||
"Adding attributes to views-view-list.html.twig doesn't work if Views List class Style option is empty": "https://www.drupal.org/files/issues/2023-03-16/2845400-24.patch",
|
"Drupal 9 readiness and code standars": "https://www.drupal.org/files/issues/2020-04-21/drupal_9_readiness_and_code_standarts_3129608-7.patch",
|
||||||
"Use form element of type date instead textfield when selecting a date in an exposed filter": "https://www.drupal.org/files/issues/2021-12-01/2648950-257.patch",
|
"Excess line breaks keep getting added": "https://www.drupal.org/files/issues/2018-11-18/excess-line-breaks-keep-getting-added-3013853-5.patch"
|
||||||
"Views Date Filter Datetime Granularity Option": "https://www.drupal.org/files/issues/2021-04-27/2868014-110-after-2648950-247-applied.patch",
|
|
||||||
"Exception thrown by responsive srcset images when the image is not yet in the file system (such as with Stage File Proxy)": "https://www.drupal.org/files/issues/2021-09-03/responsive_image-remove_missing_response_image_width_exception-2827921-22.patch"
|
|
||||||
},
|
},
|
||||||
"drupal/ds": {
|
"drupal/textarea_widget_for_text": {
|
||||||
"Parent theme template inheritance bug": "https://www.drupal.org/files/issues/2021-02-22/2895316-12.patch"
|
"Automated Drupal Rector fixes":"https://www.drupal.org/files/issues/2020-05-23/textarea_widget_for_text.1.1.rector.patch"
|
||||||
|
},
|
||||||
|
"drupal/block_theme_sync": {
|
||||||
|
"Automated Drupal 9 compatibility fixes": "https://www.drupal.org/files/issues/2020-09-07/3146266-3.patch"
|
||||||
|
},
|
||||||
|
"drupal/config_actions_provider": {
|
||||||
|
"Automated Drupal Rector fixes": "https://www.drupal.org/files/issues/2020-05-23/config_actions_provider.1.x-dev.rector.patch"
|
||||||
|
},
|
||||||
|
"drupal/multiline_config": {
|
||||||
|
"Drupal 9 readiness for Multiline Config": "https://www.drupal.org/files/issues/2020-07-22/3109713-Drupal-support-13.patch"
|
||||||
|
},
|
||||||
|
"drupal/mailchimp": {
|
||||||
|
"Drupal 9 compatibility": "https://www.drupal.org/files/issues/2020-07-16/mailchimp-d9-3138909-9.patch"
|
||||||
|
},
|
||||||
|
"drupal/minimalhtml": {
|
||||||
|
"Automated Drupal Rector fixes": "https://www.drupal.org/files/issues/2020-09-09/3141144-4.txt"
|
||||||
|
},
|
||||||
|
"drupal/regionincontent": {
|
||||||
|
"Region In Content Template": "https://www.drupal.org/files/issues/2020-06-06/regionincontent.1.x-dev.rector.patch"
|
||||||
|
},
|
||||||
|
"drupal/stripe_webform": {
|
||||||
|
"Automated Drupal 9 compatibility fixes": "https://www.drupal.org/files/issues/2020-09-09/stripe_webform.1.x-dev.rector.patch"
|
||||||
|
},
|
||||||
|
"drupal/markdown": {
|
||||||
|
"[markdown] Drupal 9 Support": "https://www.drupal.org/files/issues/2020-05-14/3103679-18.patch"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"scripts": {
|
"scripts": {
|
||||||
"nuke": "scripts/nuke.sh",
|
"nuke": "rm -rf vendor web/core web/modules/contrib web/profiles/contrib drush/contrib",
|
||||||
"pull": "scripts/pull.sh",
|
|
||||||
"pull-files": "drush -y rsync @live:%files @self:%files",
|
|
||||||
"css": "scripts/css.sh",
|
|
||||||
"quick-start": [
|
"quick-start": [
|
||||||
"composer install",
|
"composer install",
|
||||||
"php docroot/core/scripts/drupal quick-start drutopia --no-interaction"
|
"php docroot/core/scripts/drupal quick-start drutopia --no-interaction"
|
||||||
|
|
26696
composer.lock
generated
26696
composer.lock
generated
File diff suppressed because it is too large
Load diff
|
@ -1 +0,0 @@
|
||||||
menu_depth: 4
|
|
|
@ -1,2 +0,0 @@
|
||||||
max_bundle_number: 20
|
|
||||||
hoverintent_functionality: true
|
|
|
@ -1,31 +0,0 @@
|
||||||
uuid: 90b94a1a-2679-4e0f-bfa9-7c2c47cdd17f
|
|
||||||
langcode: en
|
|
||||||
status: true
|
|
||||||
dependencies:
|
|
||||||
content:
|
|
||||||
- 'block_content:slide:82a602d0-5a54-4baf-84a9-8bbf482a96f9'
|
|
||||||
module:
|
|
||||||
- block_content
|
|
||||||
- block_visibility_groups
|
|
||||||
theme:
|
|
||||||
- agarica
|
|
||||||
id: 31daysofmigrationsinterviewontalkingdrupal
|
|
||||||
theme: agarica
|
|
||||||
region: content_bottom
|
|
||||||
weight: 0
|
|
||||||
provider: null
|
|
||||||
plugin: 'block_content:82a602d0-5a54-4baf-84a9-8bbf482a96f9'
|
|
||||||
settings:
|
|
||||||
id: 'block_content:82a602d0-5a54-4baf-84a9-8bbf482a96f9'
|
|
||||||
label: '31 Days of Migrations Interview on Talking Drupal'
|
|
||||||
label_display: '0'
|
|
||||||
provider: block_content
|
|
||||||
status: true
|
|
||||||
info: ''
|
|
||||||
view_mode: columnar
|
|
||||||
visibility:
|
|
||||||
condition_group:
|
|
||||||
id: condition_group
|
|
||||||
negate: false
|
|
||||||
context_mapping: { }
|
|
||||||
block_visibility_group: ''
|
|
|
@ -1,31 +0,0 @@
|
||||||
uuid: e069fce5-8225-4f8a-b004-2cb403e2beae
|
|
||||||
langcode: en
|
|
||||||
status: true
|
|
||||||
dependencies:
|
|
||||||
content:
|
|
||||||
- 'block_content:slide:d5f97865-8fc0-4240-a0c4-4b302f641345'
|
|
||||||
module:
|
|
||||||
- block_content
|
|
||||||
- block_visibility_groups
|
|
||||||
theme:
|
|
||||||
- agarica
|
|
||||||
id: agaricnewsletter
|
|
||||||
theme: agarica
|
|
||||||
region: content_bottom
|
|
||||||
weight: 0
|
|
||||||
provider: null
|
|
||||||
plugin: 'block_content:d5f97865-8fc0-4240-a0c4-4b302f641345'
|
|
||||||
settings:
|
|
||||||
id: 'block_content:d5f97865-8fc0-4240-a0c4-4b302f641345'
|
|
||||||
label: 'Agaric Newsletter'
|
|
||||||
label_display: visible
|
|
||||||
provider: block_content
|
|
||||||
status: true
|
|
||||||
info: ''
|
|
||||||
view_mode: default
|
|
||||||
visibility:
|
|
||||||
condition_group:
|
|
||||||
id: condition_group
|
|
||||||
negate: false
|
|
||||||
context_mapping: { }
|
|
||||||
block_visibility_group: ''
|
|
|
@ -1,22 +0,0 @@
|
||||||
uuid: b5687322-6f65-474a-86aa-6ef9d842c884
|
|
||||||
langcode: en
|
|
||||||
status: true
|
|
||||||
dependencies:
|
|
||||||
module:
|
|
||||||
- system
|
|
||||||
theme:
|
|
||||||
- claro
|
|
||||||
_core:
|
|
||||||
default_config_hash: NjcxOBrPOiK5-38t56DwFBDVY4yer7YSlbRWXFuHe7A
|
|
||||||
id: claro_breadcrumbs
|
|
||||||
theme: claro
|
|
||||||
region: breadcrumb
|
|
||||||
weight: 0
|
|
||||||
provider: null
|
|
||||||
plugin: system_breadcrumb_block
|
|
||||||
settings:
|
|
||||||
id: system_breadcrumb_block
|
|
||||||
label: Breadcrumbs
|
|
||||||
label_display: '0'
|
|
||||||
provider: system
|
|
||||||
visibility: { }
|
|
|
@ -1,22 +0,0 @@
|
||||||
uuid: 256e0ab2-c7af-465b-9d6f-d44a5539326c
|
|
||||||
langcode: en
|
|
||||||
status: true
|
|
||||||
dependencies:
|
|
||||||
module:
|
|
||||||
- system
|
|
||||||
theme:
|
|
||||||
- claro
|
|
||||||
_core:
|
|
||||||
default_config_hash: a0Yyx1GeyKarZ4T_yXQBR_ZFKnXiFLtxAb6gWLd8nr0
|
|
||||||
id: claro_content
|
|
||||||
theme: claro
|
|
||||||
region: content
|
|
||||||
weight: 0
|
|
||||||
provider: null
|
|
||||||
plugin: system_main_block
|
|
||||||
settings:
|
|
||||||
id: system_main_block
|
|
||||||
label: 'Main page content'
|
|
||||||
label_display: '0'
|
|
||||||
provider: system
|
|
||||||
visibility: { }
|
|
|
@ -1,22 +0,0 @@
|
||||||
uuid: 188b2c4c-cbb5-4e4d-ae1f-0f90d146ebef
|
|
||||||
langcode: en
|
|
||||||
status: true
|
|
||||||
dependencies:
|
|
||||||
module:
|
|
||||||
- help
|
|
||||||
theme:
|
|
||||||
- claro
|
|
||||||
_core:
|
|
||||||
default_config_hash: jccFSSVqV0WCDb6NtML1VWAWTtDbZ-zn5YgTRMgMrIM
|
|
||||||
id: claro_help
|
|
||||||
theme: claro
|
|
||||||
region: help
|
|
||||||
weight: 0
|
|
||||||
provider: null
|
|
||||||
plugin: help_block
|
|
||||||
settings:
|
|
||||||
id: help_block
|
|
||||||
label: Help
|
|
||||||
label_display: '0'
|
|
||||||
provider: help
|
|
||||||
visibility: { }
|
|
|
@ -1,20 +0,0 @@
|
||||||
uuid: fe5f8678-4118-47e9-b0fd-ad68226a0526
|
|
||||||
langcode: en
|
|
||||||
status: true
|
|
||||||
dependencies:
|
|
||||||
theme:
|
|
||||||
- claro
|
|
||||||
_core:
|
|
||||||
default_config_hash: CdXfDmRgAvms7EQovxxWPdYi0GitxeRbVtScYK16ZH0
|
|
||||||
id: claro_local_actions
|
|
||||||
theme: claro
|
|
||||||
region: content
|
|
||||||
weight: -10
|
|
||||||
provider: null
|
|
||||||
plugin: local_actions_block
|
|
||||||
settings:
|
|
||||||
id: local_actions_block
|
|
||||||
label: 'Primary admin actions'
|
|
||||||
label_display: '0'
|
|
||||||
provider: core
|
|
||||||
visibility: { }
|
|
|
@ -1,22 +0,0 @@
|
||||||
uuid: 45a1a2a2-78f1-489b-b8b1-b356dd599e13
|
|
||||||
langcode: en
|
|
||||||
status: true
|
|
||||||
dependencies:
|
|
||||||
module:
|
|
||||||
- system
|
|
||||||
theme:
|
|
||||||
- claro
|
|
||||||
_core:
|
|
||||||
default_config_hash: '-Ac3ISpIT0PQ-whzD7_dw0SdKi6dAbRFNWdSjOiVDqg'
|
|
||||||
id: claro_messages
|
|
||||||
theme: claro
|
|
||||||
region: highlighted
|
|
||||||
weight: 0
|
|
||||||
provider: null
|
|
||||||
plugin: system_messages_block
|
|
||||||
settings:
|
|
||||||
id: system_messages_block
|
|
||||||
label: 'Status messages'
|
|
||||||
label_display: '0'
|
|
||||||
provider: system
|
|
||||||
visibility: { }
|
|
|
@ -1,20 +0,0 @@
|
||||||
uuid: 256444a2-89e5-49e1-9ef9-314b004d8edf
|
|
||||||
langcode: en
|
|
||||||
status: true
|
|
||||||
dependencies:
|
|
||||||
theme:
|
|
||||||
- claro
|
|
||||||
_core:
|
|
||||||
default_config_hash: fNwDdW063tk_ktzSWzZVeQS9wzvLooVO280BQ9WrsIs
|
|
||||||
id: claro_page_title
|
|
||||||
theme: claro
|
|
||||||
region: header
|
|
||||||
weight: -30
|
|
||||||
provider: null
|
|
||||||
plugin: page_title_block
|
|
||||||
settings:
|
|
||||||
id: page_title_block
|
|
||||||
label: 'Page title'
|
|
||||||
label_display: '0'
|
|
||||||
provider: core
|
|
||||||
visibility: { }
|
|
|
@ -1,22 +0,0 @@
|
||||||
uuid: 40ef5460-0f52-4869-8a62-7a6ab10840ea
|
|
||||||
langcode: en
|
|
||||||
status: true
|
|
||||||
dependencies:
|
|
||||||
theme:
|
|
||||||
- claro
|
|
||||||
_core:
|
|
||||||
default_config_hash: ACjBZI5shAMiiUpsz-inLYVXDqNNXRnSzAWV3kV_8Hw
|
|
||||||
id: claro_primary_local_tasks
|
|
||||||
theme: claro
|
|
||||||
region: header
|
|
||||||
weight: 0
|
|
||||||
provider: null
|
|
||||||
plugin: local_tasks_block
|
|
||||||
settings:
|
|
||||||
id: local_tasks_block
|
|
||||||
label: 'Primary tabs'
|
|
||||||
label_display: '0'
|
|
||||||
provider: core
|
|
||||||
primary: true
|
|
||||||
secondary: false
|
|
||||||
visibility: { }
|
|
|
@ -1,22 +0,0 @@
|
||||||
uuid: 950f5415-1d4a-4451-ba91-693c8dcd40e1
|
|
||||||
langcode: en
|
|
||||||
status: true
|
|
||||||
dependencies:
|
|
||||||
theme:
|
|
||||||
- claro
|
|
||||||
_core:
|
|
||||||
default_config_hash: 2L0geP-ixCbCkEpW6BVF6H7vDUZN4ea07_Y9CociQm4
|
|
||||||
id: claro_secondary_local_tasks
|
|
||||||
theme: claro
|
|
||||||
region: pre_content
|
|
||||||
weight: 0
|
|
||||||
provider: null
|
|
||||||
plugin: local_tasks_block
|
|
||||||
settings:
|
|
||||||
id: local_tasks_block
|
|
||||||
label: 'Secondary tabs'
|
|
||||||
label_display: '0'
|
|
||||||
provider: core
|
|
||||||
primary: false
|
|
||||||
secondary: true
|
|
||||||
visibility: { }
|
|
|
@ -1,22 +0,0 @@
|
||||||
uuid: b4eac400-4235-4fd9-bdaa-11ce7b3203bb
|
|
||||||
langcode: en
|
|
||||||
status: true
|
|
||||||
dependencies:
|
|
||||||
module:
|
|
||||||
- system
|
|
||||||
theme:
|
|
||||||
- gin
|
|
||||||
_core:
|
|
||||||
default_config_hash: y9X3xgCsO59pQyzNLzY1D3SDJJxCHILLWkpPnmuTJ2E
|
|
||||||
id: gin_breadcrumbs
|
|
||||||
theme: gin
|
|
||||||
region: breadcrumb
|
|
||||||
weight: 0
|
|
||||||
provider: null
|
|
||||||
plugin: system_breadcrumb_block
|
|
||||||
settings:
|
|
||||||
id: system_breadcrumb_block
|
|
||||||
label: Breadcrumbs
|
|
||||||
label_display: '0'
|
|
||||||
provider: system
|
|
||||||
visibility: { }
|
|
|
@ -1,22 +0,0 @@
|
||||||
uuid: 733f5d2e-72af-439d-8193-55d88a49e4e0
|
|
||||||
langcode: en
|
|
||||||
status: true
|
|
||||||
dependencies:
|
|
||||||
module:
|
|
||||||
- system
|
|
||||||
theme:
|
|
||||||
- gin
|
|
||||||
_core:
|
|
||||||
default_config_hash: hBHXB7hC05XU7pDYzETt-GUcpFlogK1gkjyAsg0Ym58
|
|
||||||
id: gin_content
|
|
||||||
theme: gin
|
|
||||||
region: content
|
|
||||||
weight: 0
|
|
||||||
provider: null
|
|
||||||
plugin: system_main_block
|
|
||||||
settings:
|
|
||||||
id: system_main_block
|
|
||||||
label: 'Main page content'
|
|
||||||
label_display: '0'
|
|
||||||
provider: system
|
|
||||||
visibility: { }
|
|
|
@ -1,22 +0,0 @@
|
||||||
uuid: edae7165-daf6-4a00-a353-9bada37cb337
|
|
||||||
langcode: en
|
|
||||||
status: true
|
|
||||||
dependencies:
|
|
||||||
module:
|
|
||||||
- help
|
|
||||||
theme:
|
|
||||||
- gin
|
|
||||||
_core:
|
|
||||||
default_config_hash: 8nOAry2oKqJOr0zbrlJ3sZHDFJLIO6j-0vT0K_TYca4
|
|
||||||
id: gin_help
|
|
||||||
theme: gin
|
|
||||||
region: help
|
|
||||||
weight: 0
|
|
||||||
provider: null
|
|
||||||
plugin: help_block
|
|
||||||
settings:
|
|
||||||
id: help_block
|
|
||||||
label: Help
|
|
||||||
label_display: '0'
|
|
||||||
provider: help
|
|
||||||
visibility: { }
|
|
|
@ -1,20 +0,0 @@
|
||||||
uuid: c6f3def0-b208-4142-a7df-32fceeaff1b2
|
|
||||||
langcode: en
|
|
||||||
status: true
|
|
||||||
dependencies:
|
|
||||||
theme:
|
|
||||||
- gin
|
|
||||||
_core:
|
|
||||||
default_config_hash: OQ9aJ-4qVwK1x00o9EOYK4eFDjQr_HLpbPiJaPSVZiQ
|
|
||||||
id: gin_local_actions
|
|
||||||
theme: gin
|
|
||||||
region: content
|
|
||||||
weight: -10
|
|
||||||
provider: null
|
|
||||||
plugin: local_actions_block
|
|
||||||
settings:
|
|
||||||
id: local_actions_block
|
|
||||||
label: 'Primary admin actions'
|
|
||||||
label_display: '0'
|
|
||||||
provider: core
|
|
||||||
visibility: { }
|
|
|
@ -1,22 +0,0 @@
|
||||||
uuid: 86b40799-a6f1-446f-90ae-478a814190ff
|
|
||||||
langcode: en
|
|
||||||
status: true
|
|
||||||
dependencies:
|
|
||||||
module:
|
|
||||||
- system
|
|
||||||
theme:
|
|
||||||
- gin
|
|
||||||
_core:
|
|
||||||
default_config_hash: WvPhI8OwllG0gE69-F8qL3ai3nd5SbYD6JpmEuZcyok
|
|
||||||
id: gin_messages
|
|
||||||
theme: gin
|
|
||||||
region: highlighted
|
|
||||||
weight: 0
|
|
||||||
provider: null
|
|
||||||
plugin: system_messages_block
|
|
||||||
settings:
|
|
||||||
id: system_messages_block
|
|
||||||
label: 'Status messages'
|
|
||||||
label_display: '0'
|
|
||||||
provider: system
|
|
||||||
visibility: { }
|
|
|
@ -1,20 +0,0 @@
|
||||||
uuid: bb66b6f9-554e-4c3f-9f53-e302d02ffe04
|
|
||||||
langcode: en
|
|
||||||
status: true
|
|
||||||
dependencies:
|
|
||||||
theme:
|
|
||||||
- gin
|
|
||||||
_core:
|
|
||||||
default_config_hash: HLQY2xgby8K3vN_98hiOSasOhm9pdCsH234-s0duJ8Q
|
|
||||||
id: gin_page_title
|
|
||||||
theme: gin
|
|
||||||
region: header
|
|
||||||
weight: -30
|
|
||||||
provider: null
|
|
||||||
plugin: page_title_block
|
|
||||||
settings:
|
|
||||||
id: page_title_block
|
|
||||||
label: 'Page title'
|
|
||||||
label_display: '0'
|
|
||||||
provider: core
|
|
||||||
visibility: { }
|
|
|
@ -1,22 +0,0 @@
|
||||||
uuid: d41456fe-6395-43c2-b06a-dde3411b99ff
|
|
||||||
langcode: en
|
|
||||||
status: true
|
|
||||||
dependencies:
|
|
||||||
theme:
|
|
||||||
- gin
|
|
||||||
_core:
|
|
||||||
default_config_hash: Hh01DLj9k7UnNdPpOQXHZHW7GHf2OPNDQyCJF7_R9ac
|
|
||||||
id: gin_primary_local_tasks
|
|
||||||
theme: gin
|
|
||||||
region: header
|
|
||||||
weight: 0
|
|
||||||
provider: null
|
|
||||||
plugin: local_tasks_block
|
|
||||||
settings:
|
|
||||||
id: local_tasks_block
|
|
||||||
label: 'Primary tabs'
|
|
||||||
label_display: '0'
|
|
||||||
provider: core
|
|
||||||
primary: true
|
|
||||||
secondary: false
|
|
||||||
visibility: { }
|
|
|
@ -1,22 +0,0 @@
|
||||||
uuid: 793e0050-ff07-4dc3-8165-369ce766381e
|
|
||||||
langcode: en
|
|
||||||
status: true
|
|
||||||
dependencies:
|
|
||||||
theme:
|
|
||||||
- gin
|
|
||||||
_core:
|
|
||||||
default_config_hash: BCWhood0xXFQYqxFgL1spXdb9KeIuXH1YvTdjIEedDg
|
|
||||||
id: gin_secondary_local_tasks
|
|
||||||
theme: gin
|
|
||||||
region: pre_content
|
|
||||||
weight: 0
|
|
||||||
provider: null
|
|
||||||
plugin: local_tasks_block
|
|
||||||
settings:
|
|
||||||
id: local_tasks_block
|
|
||||||
label: 'Secondary tabs'
|
|
||||||
label_display: '0'
|
|
||||||
provider: core
|
|
||||||
primary: false
|
|
||||||
secondary: true
|
|
||||||
visibility: { }
|
|
|
@ -1,31 +0,0 @@
|
||||||
uuid: 33e858a7-5fb0-4061-99d1-85cb9b4d7e8e
|
|
||||||
langcode: en
|
|
||||||
status: false
|
|
||||||
dependencies:
|
|
||||||
content:
|
|
||||||
- 'block_content:content_reference:779630ad-78a7-4a33-9f3b-2b73de77bfa4'
|
|
||||||
module:
|
|
||||||
- block_content
|
|
||||||
- block_visibility_groups
|
|
||||||
theme:
|
|
||||||
- agarica
|
|
||||||
id: upcomingtrainingsfromagaric
|
|
||||||
theme: agarica
|
|
||||||
region: content
|
|
||||||
weight: -8
|
|
||||||
provider: null
|
|
||||||
plugin: 'block_content:779630ad-78a7-4a33-9f3b-2b73de77bfa4'
|
|
||||||
settings:
|
|
||||||
id: 'block_content:779630ad-78a7-4a33-9f3b-2b73de77bfa4'
|
|
||||||
label: 'Upcoming Trainings from Agaric'
|
|
||||||
label_display: visible
|
|
||||||
provider: block_content
|
|
||||||
status: true
|
|
||||||
info: ''
|
|
||||||
view_mode: full
|
|
||||||
visibility:
|
|
||||||
condition_group:
|
|
||||||
id: condition_group
|
|
||||||
negate: false
|
|
||||||
context_mapping: { }
|
|
||||||
block_visibility_group: ''
|
|
|
@ -1,8 +0,0 @@
|
||||||
uuid: 21ced413-ae8e-47ec-9e6d-d675e1c85d70
|
|
||||||
langcode: en
|
|
||||||
status: true
|
|
||||||
dependencies: { }
|
|
||||||
id: content_reference
|
|
||||||
label: 'Content reference'
|
|
||||||
revision: 0
|
|
||||||
description: ''
|
|
|
@ -1,7 +0,0 @@
|
||||||
uuid: 5c3f5dad-c83a-4eba-89d8-ae49b1469b6a
|
|
||||||
langcode: en
|
|
||||||
status: true
|
|
||||||
dependencies: { }
|
|
||||||
formId: comment_form
|
|
||||||
captchaType: riddler/Riddler
|
|
||||||
label: comment_form
|
|
|
@ -1,9 +0,0 @@
|
||||||
uuid: 8c3a3bd4-0db4-43e8-b48c-7f82129f2567
|
|
||||||
langcode: en
|
|
||||||
status: true
|
|
||||||
dependencies: { }
|
|
||||||
_core:
|
|
||||||
default_config_hash: dXrX0-J-kKv0EAFBOwj3iknBYWbh30k_54lWApW4YUQ
|
|
||||||
formId: contact_message_feedback_form
|
|
||||||
captchaType: default
|
|
||||||
label: contact_message_feedback_form
|
|
|
@ -1,9 +0,0 @@
|
||||||
uuid: 36ce83e9-1cde-41c4-a6b5-61b553843af4
|
|
||||||
langcode: en
|
|
||||||
status: false
|
|
||||||
dependencies: { }
|
|
||||||
_core:
|
|
||||||
default_config_hash: 7zUmOK1ti1l0bc78ieysHa3_57MOin7IgHpHhwbSugs
|
|
||||||
formId: contact_message_personal_form
|
|
||||||
captchaType: default
|
|
||||||
label: contact_message_personal_form
|
|
|
@ -1,7 +0,0 @@
|
||||||
uuid: 82a5cf75-fc93-403f-91bd-0115fbbabcbe
|
|
||||||
langcode: en
|
|
||||||
status: false
|
|
||||||
dependencies: { }
|
|
||||||
formId: node_action_form
|
|
||||||
captchaType: default
|
|
||||||
label: node_action_form
|
|
|
@ -1,7 +0,0 @@
|
||||||
uuid: 49977c7a-44b3-4fc9-a9ad-033628c680a2
|
|
||||||
langcode: en
|
|
||||||
status: false
|
|
||||||
dependencies: { }
|
|
||||||
formId: node_article_form
|
|
||||||
captchaType: default
|
|
||||||
label: node_article_form
|
|
|
@ -1,7 +0,0 @@
|
||||||
uuid: 55a995de-130f-4134-a792-2332c04818cb
|
|
||||||
langcode: en
|
|
||||||
status: false
|
|
||||||
dependencies: { }
|
|
||||||
formId: node_blog_form
|
|
||||||
captchaType: default
|
|
||||||
label: node_blog_form
|
|
|
@ -1,7 +0,0 @@
|
||||||
uuid: 78432405-d9f3-4d70-80fe-cfdf56921d60
|
|
||||||
langcode: en
|
|
||||||
status: false
|
|
||||||
dependencies: { }
|
|
||||||
formId: node_campaign_form
|
|
||||||
captchaType: default
|
|
||||||
label: node_campaign_form
|
|
|
@ -1,7 +0,0 @@
|
||||||
uuid: 33598578-ea78-4150-8c4b-5c9643527187
|
|
||||||
langcode: en
|
|
||||||
status: false
|
|
||||||
dependencies: { }
|
|
||||||
formId: node_case_study_form
|
|
||||||
captchaType: default
|
|
||||||
label: node_case_study_form
|
|
|
@ -1,7 +0,0 @@
|
||||||
uuid: 2133fb7d-efe9-448c-90de-9573313d1e18
|
|
||||||
langcode: en
|
|
||||||
status: false
|
|
||||||
dependencies: { }
|
|
||||||
formId: node_event_form
|
|
||||||
captchaType: default
|
|
||||||
label: node_event_form
|
|
|
@ -1,7 +0,0 @@
|
||||||
uuid: 27831b34-ac65-461d-b08b-c7228b540a22
|
|
||||||
langcode: en
|
|
||||||
status: false
|
|
||||||
dependencies: { }
|
|
||||||
formId: node_landing_page_form
|
|
||||||
captchaType: default
|
|
||||||
label: node_landing_page_form
|
|
|
@ -1,7 +0,0 @@
|
||||||
uuid: eedde8fb-8dee-4451-8fac-4fdec3f9ef6b
|
|
||||||
langcode: en
|
|
||||||
status: false
|
|
||||||
dependencies: { }
|
|
||||||
formId: node_page_form
|
|
||||||
captchaType: default
|
|
||||||
label: node_page_form
|
|
|
@ -1,7 +0,0 @@
|
||||||
uuid: 04aafb3f-507d-4403-833d-d982cdc3032b
|
|
||||||
langcode: en
|
|
||||||
status: false
|
|
||||||
dependencies: { }
|
|
||||||
formId: node_people_form
|
|
||||||
captchaType: default
|
|
||||||
label: node_people_form
|
|
|
@ -1,7 +0,0 @@
|
||||||
uuid: 7135081a-bfad-4ee6-ab99-49e6f505a192
|
|
||||||
langcode: en
|
|
||||||
status: false
|
|
||||||
dependencies: { }
|
|
||||||
formId: node_resource_form
|
|
||||||
captchaType: default
|
|
||||||
label: node_resource_form
|
|
|
@ -1,9 +0,0 @@
|
||||||
uuid: 72a8c963-260a-44f4-8aaa-b695c4311db2
|
|
||||||
langcode: en
|
|
||||||
status: false
|
|
||||||
dependencies: { }
|
|
||||||
_core:
|
|
||||||
default_config_hash: XbughDuwgOtc_8ztmYxz84gaXBeR760xH3bGSKD9v1Q
|
|
||||||
formId: user_login_form
|
|
||||||
captchaType: default
|
|
||||||
label: user_login_form
|
|
|
@ -1,9 +0,0 @@
|
||||||
uuid: 42f5818e-f934-415a-84a3-9b99a65c78e0
|
|
||||||
langcode: en
|
|
||||||
status: false
|
|
||||||
dependencies: { }
|
|
||||||
_core:
|
|
||||||
default_config_hash: qZeHI5fZ9WQRKsfl8FMBwzk3puSsWCRtWKEZh04JJUo
|
|
||||||
formId: user_pass
|
|
||||||
captchaType: default
|
|
||||||
label: user_pass
|
|
|
@ -1,9 +0,0 @@
|
||||||
uuid: 08ef1218-75c2-4ad9-a840-f8796fd9af97
|
|
||||||
langcode: en
|
|
||||||
status: false
|
|
||||||
dependencies: { }
|
|
||||||
_core:
|
|
||||||
default_config_hash: 2iz3cMg7T1eSKXtNIB9WyaRptfg7wosDDPBSBhXFXl0
|
|
||||||
formId: user_register_form
|
|
||||||
captchaType: default
|
|
||||||
label: user_register_form
|
|
|
@ -1,15 +0,0 @@
|
||||||
_core:
|
|
||||||
default_config_hash: hSAUW7BoAd9YUpKcVKyZpW4wY67g4XZAYlt3Vnz6SVA
|
|
||||||
enable_globally: 0
|
|
||||||
enable_globally_on_admin_routes: false
|
|
||||||
default_challenge: riddler/Riddler
|
|
||||||
description: 'Please help us focus on people and not spambots by answering this question.'
|
|
||||||
administration_mode: true
|
|
||||||
administration_mode_on_admin_routes: false
|
|
||||||
whitelist_ips: ''
|
|
||||||
wrong_captcha_response_message: 'The answer you entered for the CAPTCHA was not correct. Do we need to make our website more clear about what we do?'
|
|
||||||
default_validation: 1
|
|
||||||
persistence: 3
|
|
||||||
enable_stats: false
|
|
||||||
log_wrong_responses: true
|
|
||||||
title: CAPTCHA
|
|
|
@ -1,3 +0,0 @@
|
||||||
third_party_settings:
|
|
||||||
shortcut:
|
|
||||||
module_link: true
|
|
|
@ -1,20 +0,0 @@
|
||||||
uuid: c4f3765b-5d11-4fe2-bf9d-e9ac83d68eed
|
|
||||||
langcode: en
|
|
||||||
status: true
|
|
||||||
dependencies:
|
|
||||||
module:
|
|
||||||
- admin_toolbar_tools
|
|
||||||
id: config_sync.module.admin_toolbar_tools
|
|
||||||
snapshotSet: config_sync
|
|
||||||
extensionType: module
|
|
||||||
extensionName: admin_toolbar_tools
|
|
||||||
items:
|
|
||||||
-
|
|
||||||
collection: ''
|
|
||||||
name: admin_toolbar_tools.settings
|
|
||||||
data:
|
|
||||||
max_bundle_number: 20
|
|
||||||
hoverintent_functionality: true
|
|
||||||
show_local_tasks: false
|
|
||||||
_core:
|
|
||||||
default_config_hash: WgdZsrd_5w9jlmcHV4R9dD2tG9OZEkYo4I_O8h7Gq8Q
|
|
|
@ -1,89 +0,0 @@
|
||||||
uuid: 4e7bcf04-6457-474a-8390-e54f8c0c5da5
|
|
||||||
langcode: en
|
|
||||||
status: true
|
|
||||||
dependencies:
|
|
||||||
module:
|
|
||||||
- captcha
|
|
||||||
id: config_sync.module.captcha
|
|
||||||
snapshotSet: config_sync
|
|
||||||
extensionType: module
|
|
||||||
extensionName: captcha
|
|
||||||
items:
|
|
||||||
-
|
|
||||||
collection: ''
|
|
||||||
name: captcha.captcha_point.contact_message_feedback_form
|
|
||||||
data:
|
|
||||||
langcode: en
|
|
||||||
status: false
|
|
||||||
dependencies: { }
|
|
||||||
formId: contact_message_feedback_form
|
|
||||||
captchaType: default
|
|
||||||
label: contact_message_feedback_form
|
|
||||||
_core:
|
|
||||||
default_config_hash: dXrX0-J-kKv0EAFBOwj3iknBYWbh30k_54lWApW4YUQ
|
|
||||||
-
|
|
||||||
collection: ''
|
|
||||||
name: captcha.captcha_point.contact_message_personal_form
|
|
||||||
data:
|
|
||||||
langcode: en
|
|
||||||
status: false
|
|
||||||
dependencies: { }
|
|
||||||
formId: contact_message_personal_form
|
|
||||||
captchaType: default
|
|
||||||
label: contact_message_personal_form
|
|
||||||
_core:
|
|
||||||
default_config_hash: 7zUmOK1ti1l0bc78ieysHa3_57MOin7IgHpHhwbSugs
|
|
||||||
-
|
|
||||||
collection: ''
|
|
||||||
name: captcha.captcha_point.user_login_form
|
|
||||||
data:
|
|
||||||
langcode: en
|
|
||||||
status: false
|
|
||||||
dependencies: { }
|
|
||||||
formId: user_login_form
|
|
||||||
captchaType: default
|
|
||||||
label: user_login_form
|
|
||||||
_core:
|
|
||||||
default_config_hash: XbughDuwgOtc_8ztmYxz84gaXBeR760xH3bGSKD9v1Q
|
|
||||||
-
|
|
||||||
collection: ''
|
|
||||||
name: captcha.captcha_point.user_pass
|
|
||||||
data:
|
|
||||||
langcode: en
|
|
||||||
status: false
|
|
||||||
dependencies: { }
|
|
||||||
formId: user_pass
|
|
||||||
captchaType: default
|
|
||||||
label: user_pass
|
|
||||||
_core:
|
|
||||||
default_config_hash: qZeHI5fZ9WQRKsfl8FMBwzk3puSsWCRtWKEZh04JJUo
|
|
||||||
-
|
|
||||||
collection: ''
|
|
||||||
name: captcha.captcha_point.user_register_form
|
|
||||||
data:
|
|
||||||
langcode: en
|
|
||||||
status: false
|
|
||||||
dependencies: { }
|
|
||||||
formId: user_register_form
|
|
||||||
captchaType: default
|
|
||||||
label: user_register_form
|
|
||||||
_core:
|
|
||||||
default_config_hash: 2iz3cMg7T1eSKXtNIB9WyaRptfg7wosDDPBSBhXFXl0
|
|
||||||
-
|
|
||||||
collection: ''
|
|
||||||
name: captcha.settings
|
|
||||||
data:
|
|
||||||
enabled_default: 0
|
|
||||||
default_challenge: captcha/Math
|
|
||||||
description: 'This question is for testing whether or not you are a human visitor and to prevent automated spam submissions.'
|
|
||||||
administration_mode: false
|
|
||||||
allow_on_admin_pages: false
|
|
||||||
whitelist_ips: ''
|
|
||||||
add_captcha_description: true
|
|
||||||
wrong_captcha_response_message: 'The answer you entered for the CAPTCHA was not correct.'
|
|
||||||
default_validation: 1
|
|
||||||
persistence: 1
|
|
||||||
enable_stats: false
|
|
||||||
log_wrong_responses: false
|
|
||||||
_core:
|
|
||||||
default_config_hash: hSAUW7BoAd9YUpKcVKyZpW4wY67g4XZAYlt3Vnz6SVA
|
|
|
@ -1,47 +0,0 @@
|
||||||
uuid: b2e8ab59-9cb8-48b4-b7ae-80073adfdad7
|
|
||||||
langcode: en
|
|
||||||
status: true
|
|
||||||
dependencies:
|
|
||||||
module:
|
|
||||||
- image_widget_crop
|
|
||||||
id: config_sync.module.image_widget_crop
|
|
||||||
snapshotSet: config_sync
|
|
||||||
extensionType: module
|
|
||||||
extensionName: image_widget_crop
|
|
||||||
items:
|
|
||||||
-
|
|
||||||
collection: ''
|
|
||||||
name: image.style.crop_thumbnail
|
|
||||||
data:
|
|
||||||
langcode: en
|
|
||||||
status: true
|
|
||||||
dependencies: { }
|
|
||||||
name: crop_thumbnail
|
|
||||||
label: 'Crop thumbnail'
|
|
||||||
effects:
|
|
||||||
8fc26706-68dc-4eb7-8121-33e3936ed55f:
|
|
||||||
uuid: 8fc26706-68dc-4eb7-8121-33e3936ed55f
|
|
||||||
id: image_scale
|
|
||||||
weight: 1
|
|
||||||
data:
|
|
||||||
width: 400
|
|
||||||
height: null
|
|
||||||
upscale: false
|
|
||||||
_core:
|
|
||||||
default_config_hash: N1S0PHZeyxfFqgzB-sDeGPaxi0dDOL8NUiP_d6WXSV0
|
|
||||||
-
|
|
||||||
collection: ''
|
|
||||||
name: image_widget_crop.settings
|
|
||||||
data:
|
|
||||||
settings:
|
|
||||||
library_url: ''
|
|
||||||
css_url: ''
|
|
||||||
crop_preview_image_style: crop_thumbnail
|
|
||||||
crop_list: { }
|
|
||||||
crop_types_required: { }
|
|
||||||
warn_multiple_usages: false
|
|
||||||
show_default_crop: true
|
|
||||||
notify_apply: false
|
|
||||||
notify_update: true
|
|
||||||
_core:
|
|
||||||
default_config_hash: UYGkeE2iH3UGp9lBPsELb3VSgHz9vkMJeaGzcYwE7Uw
|
|
File diff suppressed because it is too large
Load diff
|
@ -1,26 +0,0 @@
|
||||||
uuid: 0a350ca2-bbc3-4cba-ad45-3289ea2e3599
|
|
||||||
langcode: en
|
|
||||||
status: true
|
|
||||||
dependencies:
|
|
||||||
module:
|
|
||||||
- plausible
|
|
||||||
id: config_sync.module.plausible
|
|
||||||
snapshotSet: config_sync
|
|
||||||
extensionType: module
|
|
||||||
extensionName: plausible
|
|
||||||
items:
|
|
||||||
-
|
|
||||||
collection: ''
|
|
||||||
name: plausible.settings
|
|
||||||
data:
|
|
||||||
script:
|
|
||||||
domain: ''
|
|
||||||
api: ''
|
|
||||||
src: 'https://plausible.io/js/plausible.js'
|
|
||||||
visibility:
|
|
||||||
request_path_mode: 0
|
|
||||||
request_path_pages: ''
|
|
||||||
user_role_mode: 0
|
|
||||||
user_role_roles: { }
|
|
||||||
_core:
|
|
||||||
default_config_hash: 2SiIYRsf-Gi9ND77G28c3dFL1cVw6F7QLmrIafNZp-g
|
|
|
@ -1,31 +0,0 @@
|
||||||
uuid: d38694b0-7f8d-4b00-a5bf-62ed5a9968ac
|
|
||||||
langcode: en
|
|
||||||
status: true
|
|
||||||
dependencies:
|
|
||||||
module:
|
|
||||||
- rdf
|
|
||||||
id: config_sync.module.rdf
|
|
||||||
snapshotSet: config_sync
|
|
||||||
extensionType: module
|
|
||||||
extensionName: rdf
|
|
||||||
items:
|
|
||||||
-
|
|
||||||
collection: ''
|
|
||||||
name: rdf.mapping.user.user
|
|
||||||
data:
|
|
||||||
langcode: en
|
|
||||||
status: true
|
|
||||||
dependencies:
|
|
||||||
module:
|
|
||||||
- user
|
|
||||||
id: user.user
|
|
||||||
targetEntityType: user
|
|
||||||
bundle: user
|
|
||||||
types:
|
|
||||||
- 'schema:Person'
|
|
||||||
fieldMappings:
|
|
||||||
name:
|
|
||||||
properties:
|
|
||||||
- 'schema:name'
|
|
||||||
_core:
|
|
||||||
default_config_hash: TGTlmpYAtXxjtYMFA_A0vosE2c4R5MCQwLviIA5HUM0
|
|
|
@ -1,21 +0,0 @@
|
||||||
uuid: bb530c43-9956-41b9-a3d6-8d3a377fa202
|
|
||||||
langcode: en
|
|
||||||
status: true
|
|
||||||
dependencies:
|
|
||||||
module:
|
|
||||||
- riddler
|
|
||||||
id: config_sync.module.riddler
|
|
||||||
snapshotSet: config_sync
|
|
||||||
extensionType: module
|
|
||||||
extensionName: riddler
|
|
||||||
items:
|
|
||||||
-
|
|
||||||
collection: ''
|
|
||||||
name: riddler.settings
|
|
||||||
data:
|
|
||||||
riddles:
|
|
||||||
-
|
|
||||||
question: 'Do you really hate Spam?'
|
|
||||||
response: Yes!
|
|
||||||
_core:
|
|
||||||
default_config_hash: pKKCV0W4-r3Zf1QQzR2HDXAXmfH81248yrY2d9iR7S4
|
|
|
@ -1,207 +0,0 @@
|
||||||
uuid: 8cd0792d-745f-458b-8112-b8267f9bdec3
|
|
||||||
langcode: en
|
|
||||||
status: true
|
|
||||||
dependencies:
|
|
||||||
theme:
|
|
||||||
- claro
|
|
||||||
id: config_sync.theme.claro
|
|
||||||
snapshotSet: config_sync
|
|
||||||
extensionType: theme
|
|
||||||
extensionName: claro
|
|
||||||
items:
|
|
||||||
-
|
|
||||||
collection: ''
|
|
||||||
name: block.block.claro_breadcrumbs
|
|
||||||
data:
|
|
||||||
langcode: en
|
|
||||||
status: true
|
|
||||||
dependencies:
|
|
||||||
module:
|
|
||||||
- system
|
|
||||||
theme:
|
|
||||||
- claro
|
|
||||||
id: claro_breadcrumbs
|
|
||||||
theme: claro
|
|
||||||
region: breadcrumb
|
|
||||||
weight: 0
|
|
||||||
provider: null
|
|
||||||
plugin: system_breadcrumb_block
|
|
||||||
settings:
|
|
||||||
id: system_breadcrumb_block
|
|
||||||
label: Breadcrumbs
|
|
||||||
label_display: '0'
|
|
||||||
provider: system
|
|
||||||
visibility: { }
|
|
||||||
_core:
|
|
||||||
default_config_hash: NjcxOBrPOiK5-38t56DwFBDVY4yer7YSlbRWXFuHe7A
|
|
||||||
-
|
|
||||||
collection: ''
|
|
||||||
name: block.block.claro_content
|
|
||||||
data:
|
|
||||||
langcode: en
|
|
||||||
status: true
|
|
||||||
dependencies:
|
|
||||||
module:
|
|
||||||
- system
|
|
||||||
theme:
|
|
||||||
- claro
|
|
||||||
id: claro_content
|
|
||||||
theme: claro
|
|
||||||
region: content
|
|
||||||
weight: 0
|
|
||||||
provider: null
|
|
||||||
plugin: system_main_block
|
|
||||||
settings:
|
|
||||||
id: system_main_block
|
|
||||||
label: 'Main page content'
|
|
||||||
label_display: '0'
|
|
||||||
provider: system
|
|
||||||
visibility: { }
|
|
||||||
_core:
|
|
||||||
default_config_hash: a0Yyx1GeyKarZ4T_yXQBR_ZFKnXiFLtxAb6gWLd8nr0
|
|
||||||
-
|
|
||||||
collection: ''
|
|
||||||
name: block.block.claro_help
|
|
||||||
data:
|
|
||||||
langcode: en
|
|
||||||
status: true
|
|
||||||
dependencies:
|
|
||||||
module:
|
|
||||||
- help
|
|
||||||
theme:
|
|
||||||
- claro
|
|
||||||
id: claro_help
|
|
||||||
theme: claro
|
|
||||||
region: help
|
|
||||||
weight: 0
|
|
||||||
provider: null
|
|
||||||
plugin: help_block
|
|
||||||
settings:
|
|
||||||
id: help_block
|
|
||||||
label: Help
|
|
||||||
label_display: '0'
|
|
||||||
provider: help
|
|
||||||
visibility: { }
|
|
||||||
_core:
|
|
||||||
default_config_hash: jccFSSVqV0WCDb6NtML1VWAWTtDbZ-zn5YgTRMgMrIM
|
|
||||||
-
|
|
||||||
collection: ''
|
|
||||||
name: block.block.claro_local_actions
|
|
||||||
data:
|
|
||||||
langcode: en
|
|
||||||
status: true
|
|
||||||
dependencies:
|
|
||||||
theme:
|
|
||||||
- claro
|
|
||||||
id: claro_local_actions
|
|
||||||
theme: claro
|
|
||||||
region: content
|
|
||||||
weight: -10
|
|
||||||
provider: null
|
|
||||||
plugin: local_actions_block
|
|
||||||
settings:
|
|
||||||
id: local_actions_block
|
|
||||||
label: 'Primary admin actions'
|
|
||||||
label_display: '0'
|
|
||||||
provider: core
|
|
||||||
visibility: { }
|
|
||||||
_core:
|
|
||||||
default_config_hash: CdXfDmRgAvms7EQovxxWPdYi0GitxeRbVtScYK16ZH0
|
|
||||||
-
|
|
||||||
collection: ''
|
|
||||||
name: block.block.claro_messages
|
|
||||||
data:
|
|
||||||
langcode: en
|
|
||||||
status: true
|
|
||||||
dependencies:
|
|
||||||
module:
|
|
||||||
- system
|
|
||||||
theme:
|
|
||||||
- claro
|
|
||||||
id: claro_messages
|
|
||||||
theme: claro
|
|
||||||
region: highlighted
|
|
||||||
weight: 0
|
|
||||||
provider: null
|
|
||||||
plugin: system_messages_block
|
|
||||||
settings:
|
|
||||||
id: system_messages_block
|
|
||||||
label: 'Status messages'
|
|
||||||
label_display: '0'
|
|
||||||
provider: system
|
|
||||||
visibility: { }
|
|
||||||
_core:
|
|
||||||
default_config_hash: '-Ac3ISpIT0PQ-whzD7_dw0SdKi6dAbRFNWdSjOiVDqg'
|
|
||||||
-
|
|
||||||
collection: ''
|
|
||||||
name: block.block.claro_page_title
|
|
||||||
data:
|
|
||||||
langcode: en
|
|
||||||
status: true
|
|
||||||
dependencies:
|
|
||||||
theme:
|
|
||||||
- claro
|
|
||||||
id: claro_page_title
|
|
||||||
theme: claro
|
|
||||||
region: header
|
|
||||||
weight: -30
|
|
||||||
provider: null
|
|
||||||
plugin: page_title_block
|
|
||||||
settings:
|
|
||||||
id: page_title_block
|
|
||||||
label: 'Page title'
|
|
||||||
label_display: '0'
|
|
||||||
provider: core
|
|
||||||
visibility: { }
|
|
||||||
_core:
|
|
||||||
default_config_hash: fNwDdW063tk_ktzSWzZVeQS9wzvLooVO280BQ9WrsIs
|
|
||||||
-
|
|
||||||
collection: ''
|
|
||||||
name: block.block.claro_primary_local_tasks
|
|
||||||
data:
|
|
||||||
langcode: en
|
|
||||||
status: true
|
|
||||||
dependencies:
|
|
||||||
theme:
|
|
||||||
- claro
|
|
||||||
id: claro_primary_local_tasks
|
|
||||||
theme: claro
|
|
||||||
region: header
|
|
||||||
weight: 0
|
|
||||||
provider: null
|
|
||||||
plugin: local_tasks_block
|
|
||||||
settings:
|
|
||||||
id: local_tasks_block
|
|
||||||
label: 'Primary tabs'
|
|
||||||
label_display: '0'
|
|
||||||
provider: core
|
|
||||||
primary: true
|
|
||||||
secondary: false
|
|
||||||
visibility: { }
|
|
||||||
_core:
|
|
||||||
default_config_hash: ACjBZI5shAMiiUpsz-inLYVXDqNNXRnSzAWV3kV_8Hw
|
|
||||||
-
|
|
||||||
collection: ''
|
|
||||||
name: block.block.claro_secondary_local_tasks
|
|
||||||
data:
|
|
||||||
langcode: en
|
|
||||||
status: true
|
|
||||||
dependencies:
|
|
||||||
theme:
|
|
||||||
- claro
|
|
||||||
id: claro_secondary_local_tasks
|
|
||||||
theme: claro
|
|
||||||
region: pre_content
|
|
||||||
weight: 0
|
|
||||||
provider: null
|
|
||||||
plugin: local_tasks_block
|
|
||||||
settings:
|
|
||||||
id: local_tasks_block
|
|
||||||
label: 'Secondary tabs'
|
|
||||||
label_display: '0'
|
|
||||||
provider: core
|
|
||||||
primary: false
|
|
||||||
secondary: true
|
|
||||||
visibility: { }
|
|
||||||
_core:
|
|
||||||
default_config_hash: 2L0geP-ixCbCkEpW6BVF6H7vDUZN4ea07_Y9CociQm4
|
|
|
@ -1,227 +0,0 @@
|
||||||
uuid: ac3b6f80-3aee-4d0e-888c-cab03dd1362a
|
|
||||||
langcode: en
|
|
||||||
status: true
|
|
||||||
dependencies:
|
|
||||||
theme:
|
|
||||||
- gin
|
|
||||||
id: config_sync.theme.gin
|
|
||||||
snapshotSet: config_sync
|
|
||||||
extensionType: theme
|
|
||||||
extensionName: gin
|
|
||||||
items:
|
|
||||||
-
|
|
||||||
collection: ''
|
|
||||||
name: block.block.gin_breadcrumbs
|
|
||||||
data:
|
|
||||||
langcode: en
|
|
||||||
status: true
|
|
||||||
dependencies:
|
|
||||||
module:
|
|
||||||
- system
|
|
||||||
theme:
|
|
||||||
- gin
|
|
||||||
id: gin_breadcrumbs
|
|
||||||
theme: gin
|
|
||||||
region: breadcrumb
|
|
||||||
weight: 0
|
|
||||||
provider: null
|
|
||||||
plugin: system_breadcrumb_block
|
|
||||||
settings:
|
|
||||||
id: system_breadcrumb_block
|
|
||||||
label: Breadcrumbs
|
|
||||||
provider: system
|
|
||||||
label_display: '0'
|
|
||||||
visibility: { }
|
|
||||||
_core:
|
|
||||||
default_config_hash: y9X3xgCsO59pQyzNLzY1D3SDJJxCHILLWkpPnmuTJ2E
|
|
||||||
-
|
|
||||||
collection: ''
|
|
||||||
name: block.block.gin_content
|
|
||||||
data:
|
|
||||||
langcode: en
|
|
||||||
status: true
|
|
||||||
dependencies:
|
|
||||||
module:
|
|
||||||
- system
|
|
||||||
theme:
|
|
||||||
- gin
|
|
||||||
id: gin_content
|
|
||||||
theme: gin
|
|
||||||
region: content
|
|
||||||
weight: 0
|
|
||||||
provider: null
|
|
||||||
plugin: system_main_block
|
|
||||||
settings:
|
|
||||||
id: system_main_block
|
|
||||||
label: 'Main page content'
|
|
||||||
provider: system
|
|
||||||
label_display: '0'
|
|
||||||
visibility: { }
|
|
||||||
_core:
|
|
||||||
default_config_hash: hBHXB7hC05XU7pDYzETt-GUcpFlogK1gkjyAsg0Ym58
|
|
||||||
-
|
|
||||||
collection: ''
|
|
||||||
name: block.block.gin_help
|
|
||||||
data:
|
|
||||||
langcode: en
|
|
||||||
status: true
|
|
||||||
dependencies:
|
|
||||||
module:
|
|
||||||
- help
|
|
||||||
theme:
|
|
||||||
- gin
|
|
||||||
id: gin_help
|
|
||||||
theme: gin
|
|
||||||
region: help
|
|
||||||
weight: 0
|
|
||||||
provider: null
|
|
||||||
plugin: help_block
|
|
||||||
settings:
|
|
||||||
id: help_block
|
|
||||||
label: Help
|
|
||||||
provider: help
|
|
||||||
label_display: '0'
|
|
||||||
visibility: { }
|
|
||||||
_core:
|
|
||||||
default_config_hash: 8nOAry2oKqJOr0zbrlJ3sZHDFJLIO6j-0vT0K_TYca4
|
|
||||||
-
|
|
||||||
collection: ''
|
|
||||||
name: block.block.gin_local_actions
|
|
||||||
data:
|
|
||||||
langcode: en
|
|
||||||
status: true
|
|
||||||
dependencies:
|
|
||||||
theme:
|
|
||||||
- gin
|
|
||||||
id: gin_local_actions
|
|
||||||
theme: gin
|
|
||||||
region: content
|
|
||||||
weight: -10
|
|
||||||
provider: null
|
|
||||||
plugin: local_actions_block
|
|
||||||
settings:
|
|
||||||
id: local_actions_block
|
|
||||||
label: 'Primary admin actions'
|
|
||||||
provider: core
|
|
||||||
label_display: '0'
|
|
||||||
visibility: { }
|
|
||||||
_core:
|
|
||||||
default_config_hash: OQ9aJ-4qVwK1x00o9EOYK4eFDjQr_HLpbPiJaPSVZiQ
|
|
||||||
-
|
|
||||||
collection: ''
|
|
||||||
name: block.block.gin_messages
|
|
||||||
data:
|
|
||||||
langcode: en
|
|
||||||
status: true
|
|
||||||
dependencies:
|
|
||||||
module:
|
|
||||||
- system
|
|
||||||
theme:
|
|
||||||
- gin
|
|
||||||
id: gin_messages
|
|
||||||
theme: gin
|
|
||||||
region: highlighted
|
|
||||||
weight: 0
|
|
||||||
provider: null
|
|
||||||
plugin: system_messages_block
|
|
||||||
settings:
|
|
||||||
id: system_messages_block
|
|
||||||
label: 'Status messages'
|
|
||||||
provider: system
|
|
||||||
label_display: '0'
|
|
||||||
visibility: { }
|
|
||||||
_core:
|
|
||||||
default_config_hash: WvPhI8OwllG0gE69-F8qL3ai3nd5SbYD6JpmEuZcyok
|
|
||||||
-
|
|
||||||
collection: ''
|
|
||||||
name: block.block.gin_page_title
|
|
||||||
data:
|
|
||||||
langcode: en
|
|
||||||
status: true
|
|
||||||
dependencies:
|
|
||||||
theme:
|
|
||||||
- gin
|
|
||||||
id: gin_page_title
|
|
||||||
theme: gin
|
|
||||||
region: header
|
|
||||||
weight: -30
|
|
||||||
provider: null
|
|
||||||
plugin: page_title_block
|
|
||||||
settings:
|
|
||||||
id: page_title_block
|
|
||||||
label: 'Page title'
|
|
||||||
provider: core
|
|
||||||
label_display: '0'
|
|
||||||
visibility: { }
|
|
||||||
_core:
|
|
||||||
default_config_hash: HLQY2xgby8K3vN_98hiOSasOhm9pdCsH234-s0duJ8Q
|
|
||||||
-
|
|
||||||
collection: ''
|
|
||||||
name: block.block.gin_primary_local_tasks
|
|
||||||
data:
|
|
||||||
langcode: en
|
|
||||||
status: true
|
|
||||||
dependencies:
|
|
||||||
theme:
|
|
||||||
- gin
|
|
||||||
id: gin_primary_local_tasks
|
|
||||||
theme: gin
|
|
||||||
region: header
|
|
||||||
weight: 0
|
|
||||||
provider: null
|
|
||||||
plugin: local_tasks_block
|
|
||||||
settings:
|
|
||||||
id: local_tasks_block
|
|
||||||
label: 'Primary tabs'
|
|
||||||
provider: core
|
|
||||||
label_display: '0'
|
|
||||||
primary: true
|
|
||||||
secondary: false
|
|
||||||
visibility: { }
|
|
||||||
_core:
|
|
||||||
default_config_hash: Hh01DLj9k7UnNdPpOQXHZHW7GHf2OPNDQyCJF7_R9ac
|
|
||||||
-
|
|
||||||
collection: ''
|
|
||||||
name: block.block.gin_secondary_local_tasks
|
|
||||||
data:
|
|
||||||
langcode: en
|
|
||||||
status: true
|
|
||||||
dependencies:
|
|
||||||
theme:
|
|
||||||
- gin
|
|
||||||
id: gin_secondary_local_tasks
|
|
||||||
theme: gin
|
|
||||||
region: pre_content
|
|
||||||
weight: 0
|
|
||||||
provider: null
|
|
||||||
plugin: local_tasks_block
|
|
||||||
settings:
|
|
||||||
id: local_tasks_block
|
|
||||||
label: 'Secondary tabs'
|
|
||||||
provider: core
|
|
||||||
label_display: '0'
|
|
||||||
primary: false
|
|
||||||
secondary: true
|
|
||||||
visibility: { }
|
|
||||||
_core:
|
|
||||||
default_config_hash: BCWhood0xXFQYqxFgL1spXdb9KeIuXH1YvTdjIEedDg
|
|
||||||
-
|
|
||||||
collection: ''
|
|
||||||
name: gin.settings
|
|
||||||
data:
|
|
||||||
preset_accent_color: blue
|
|
||||||
preset_focus_color: gin
|
|
||||||
enable_darkmode: '0'
|
|
||||||
classic_toolbar: vertical
|
|
||||||
secondary_toolbar_frontend: true
|
|
||||||
logo:
|
|
||||||
use_default: true
|
|
||||||
high_contrast_mode: false
|
|
||||||
layout_density: default
|
|
||||||
show_description_toggle: false
|
|
||||||
show_user_theme_settings: false
|
|
||||||
third_party_settings:
|
|
||||||
shortcut:
|
|
||||||
module_link: true
|
|
||||||
_core:
|
|
||||||
default_config_hash: UvSCt3S_NldJPFzvhSNOy9vWoPPFhmsmTC12vtVss9s
|
|
|
@ -1,38 +0,0 @@
|
||||||
uuid: a17872c1-2168-498e-8801-06d18f93357f
|
|
||||||
langcode: en
|
|
||||||
status: true
|
|
||||||
dependencies:
|
|
||||||
config:
|
|
||||||
- block_content.type.content_reference
|
|
||||||
- field.field.block_content.content_reference.field_content_reference
|
|
||||||
id: block_content.content_reference.default
|
|
||||||
targetEntityType: block_content
|
|
||||||
bundle: content_reference
|
|
||||||
mode: default
|
|
||||||
content:
|
|
||||||
field_content_reference:
|
|
||||||
type: entity_reference_autocomplete
|
|
||||||
weight: 26
|
|
||||||
region: content
|
|
||||||
settings:
|
|
||||||
match_operator: CONTAINS
|
|
||||||
match_limit: 10
|
|
||||||
size: 60
|
|
||||||
placeholder: ''
|
|
||||||
third_party_settings: { }
|
|
||||||
info:
|
|
||||||
type: string_textfield
|
|
||||||
weight: -5
|
|
||||||
region: content
|
|
||||||
settings:
|
|
||||||
size: 60
|
|
||||||
placeholder: ''
|
|
||||||
third_party_settings: { }
|
|
||||||
langcode:
|
|
||||||
type: language_select
|
|
||||||
weight: 2
|
|
||||||
region: content
|
|
||||||
settings:
|
|
||||||
include_locked: true
|
|
||||||
third_party_settings: { }
|
|
||||||
hidden: { }
|
|
|
@ -1,25 +0,0 @@
|
||||||
uuid: 67bf5672-4615-41f3-98b7-98a4909c3ca8
|
|
||||||
langcode: en
|
|
||||||
status: true
|
|
||||||
dependencies:
|
|
||||||
config:
|
|
||||||
- field.field.paragraph.embedded_content.field_content_reference
|
|
||||||
- paragraphs.paragraphs_type.embedded_content
|
|
||||||
id: paragraph.embedded_content.default
|
|
||||||
targetEntityType: paragraph
|
|
||||||
bundle: embedded_content
|
|
||||||
mode: default
|
|
||||||
content:
|
|
||||||
field_content_reference:
|
|
||||||
type: entity_reference_autocomplete
|
|
||||||
weight: 0
|
|
||||||
region: content
|
|
||||||
settings:
|
|
||||||
match_operator: CONTAINS
|
|
||||||
match_limit: 10
|
|
||||||
size: 60
|
|
||||||
placeholder: ''
|
|
||||||
third_party_settings: { }
|
|
||||||
hidden:
|
|
||||||
created: true
|
|
||||||
status: true
|
|
|
@ -1,16 +0,0 @@
|
||||||
uuid: ce58b4ab-1355-4710-bbc4-88f51fa2386b
|
|
||||||
langcode: en
|
|
||||||
status: true
|
|
||||||
dependencies:
|
|
||||||
module:
|
|
||||||
- media
|
|
||||||
enforced:
|
|
||||||
module:
|
|
||||||
- media_library
|
|
||||||
_core:
|
|
||||||
default_config_hash: pkq0uj-IoqEQRBOP_ddUDV0ZJ-dKQ_fLcppsEDF2UO8
|
|
||||||
id: media.media_library
|
|
||||||
label: 'Media library'
|
|
||||||
description: ''
|
|
||||||
targetEntityType: media
|
|
||||||
cache: true
|
|
|
@ -1,28 +0,0 @@
|
||||||
uuid: 4f384ef4-723a-47a3-b3d3-c677993c050e
|
|
||||||
langcode: en
|
|
||||||
status: true
|
|
||||||
dependencies:
|
|
||||||
config:
|
|
||||||
- block_content.type.content_reference
|
|
||||||
- field.field.block_content.content_reference.field_content_reference
|
|
||||||
module:
|
|
||||||
- ds
|
|
||||||
id: block_content.content_reference.default
|
|
||||||
targetEntityType: block_content
|
|
||||||
bundle: content_reference
|
|
||||||
mode: default
|
|
||||||
content:
|
|
||||||
field_content_reference:
|
|
||||||
type: entity_reference_entity_view
|
|
||||||
label: hidden
|
|
||||||
settings:
|
|
||||||
view_mode: simple_card
|
|
||||||
link: false
|
|
||||||
third_party_settings:
|
|
||||||
ds:
|
|
||||||
ds_limit: ''
|
|
||||||
weight: 0
|
|
||||||
region: content
|
|
||||||
hidden:
|
|
||||||
langcode: true
|
|
||||||
search_api_excerpt: true
|
|
|
@ -1,84 +0,0 @@
|
||||||
uuid: d2637080-7971-4471-abf0-bc6939e755d9
|
|
||||||
langcode: en
|
|
||||||
status: true
|
|
||||||
dependencies:
|
|
||||||
config:
|
|
||||||
- core.entity_view_mode.node.embedded
|
|
||||||
- field.field.node.page.body
|
|
||||||
- field.field.node.page.field_body_paragraph
|
|
||||||
- field.field.node.page.field_meta_tags
|
|
||||||
- field.field.node.page.field_storyline
|
|
||||||
- field.field.node.page.field_summary
|
|
||||||
- node.type.page
|
|
||||||
module:
|
|
||||||
- ds
|
|
||||||
- entity_reference_revisions
|
|
||||||
- user
|
|
||||||
third_party_settings:
|
|
||||||
ds:
|
|
||||||
layout:
|
|
||||||
id: ds_1col
|
|
||||||
library: null
|
|
||||||
disable_css: false
|
|
||||||
entity_classes: all_classes
|
|
||||||
settings:
|
|
||||||
classes:
|
|
||||||
layout_class: { }
|
|
||||||
wrappers:
|
|
||||||
ds_content: div
|
|
||||||
outer_wrapper: div
|
|
||||||
attributes: ''
|
|
||||||
link_attribute: ''
|
|
||||||
link_custom: ''
|
|
||||||
label: ''
|
|
||||||
regions:
|
|
||||||
ds_content:
|
|
||||||
- node_title
|
|
||||||
- field_body_paragraph
|
|
||||||
- field_storyline
|
|
||||||
fields:
|
|
||||||
node_title:
|
|
||||||
plugin_id: node_title
|
|
||||||
weight: 0
|
|
||||||
label: hidden
|
|
||||||
formatter: default
|
|
||||||
settings:
|
|
||||||
link: false
|
|
||||||
wrapper: h3
|
|
||||||
class: ''
|
|
||||||
exclude_node_title: '1'
|
|
||||||
_core:
|
|
||||||
default_config_hash: 9nmRao0UFQtmO6lONrWp9ITjFaO41GzV-xJczx0qjKg
|
|
||||||
id: node.page.embedded
|
|
||||||
targetEntityType: node
|
|
||||||
bundle: page
|
|
||||||
mode: embedded
|
|
||||||
content:
|
|
||||||
field_body_paragraph:
|
|
||||||
type: entity_reference_revisions_entity_view
|
|
||||||
label: hidden
|
|
||||||
settings:
|
|
||||||
view_mode: default
|
|
||||||
link: ''
|
|
||||||
third_party_settings: { }
|
|
||||||
weight: 1
|
|
||||||
region: ds_content
|
|
||||||
field_storyline:
|
|
||||||
type: entity_reference_revisions_entity_view
|
|
||||||
label: hidden
|
|
||||||
settings:
|
|
||||||
view_mode: default
|
|
||||||
link: ''
|
|
||||||
third_party_settings: { }
|
|
||||||
weight: 2
|
|
||||||
region: ds_content
|
|
||||||
hidden:
|
|
||||||
body: true
|
|
||||||
field_meta_tags: true
|
|
||||||
field_summary: true
|
|
||||||
indieweb_bridgypublishmastodon: true
|
|
||||||
indieweb_bridgypublishtwitter: true
|
|
||||||
indieweb_syndication: true
|
|
||||||
langcode: true
|
|
||||||
links: true
|
|
||||||
search_api_excerpt: true
|
|
|
@ -1,27 +0,0 @@
|
||||||
uuid: ed546b19-a85f-4fe6-9363-33b0a2e29bce
|
|
||||||
langcode: en
|
|
||||||
status: true
|
|
||||||
dependencies:
|
|
||||||
config:
|
|
||||||
- field.field.paragraph.embedded_content.field_content_reference
|
|
||||||
- paragraphs.paragraphs_type.embedded_content
|
|
||||||
module:
|
|
||||||
- ds
|
|
||||||
id: paragraph.embedded_content.default
|
|
||||||
targetEntityType: paragraph
|
|
||||||
bundle: embedded_content
|
|
||||||
mode: default
|
|
||||||
content:
|
|
||||||
field_content_reference:
|
|
||||||
type: entity_reference_entity_view
|
|
||||||
label: hidden
|
|
||||||
settings:
|
|
||||||
view_mode: embedded
|
|
||||||
link: false
|
|
||||||
third_party_settings:
|
|
||||||
ds:
|
|
||||||
ds_limit: ''
|
|
||||||
weight: 0
|
|
||||||
region: content
|
|
||||||
hidden:
|
|
||||||
search_api_excerpt: true
|
|
|
@ -1,13 +0,0 @@
|
||||||
uuid: 7c91db2c-a8ef-4ec3-9331-dc9796f1c0e6
|
|
||||||
langcode: en
|
|
||||||
status: false
|
|
||||||
dependencies:
|
|
||||||
module:
|
|
||||||
- media
|
|
||||||
_core:
|
|
||||||
default_config_hash: 6NBUEuGmlkClK8Fb76tSMMpO2eZ4LWCBdbUk4z7CuP0
|
|
||||||
id: media.full
|
|
||||||
label: 'Full content'
|
|
||||||
description: ''
|
|
||||||
targetEntityType: media
|
|
||||||
cache: true
|
|
|
@ -1,16 +0,0 @@
|
||||||
uuid: d1c3c179-3064-4b7e-a89c-7fa7045b4dca
|
|
||||||
langcode: en
|
|
||||||
status: true
|
|
||||||
dependencies:
|
|
||||||
module:
|
|
||||||
- media
|
|
||||||
enforced:
|
|
||||||
module:
|
|
||||||
- media_library
|
|
||||||
_core:
|
|
||||||
default_config_hash: pkq0uj-IoqEQRBOP_ddUDV0ZJ-dKQ_fLcppsEDF2UO8
|
|
||||||
id: media.media_library
|
|
||||||
label: 'Media library'
|
|
||||||
description: ''
|
|
||||||
targetEntityType: media
|
|
||||||
cache: true
|
|
|
@ -1,11 +0,0 @@
|
||||||
uuid: 8aa5ebf2-a43b-4f6e-aeb7-81c37758c227
|
|
||||||
langcode: en
|
|
||||||
status: true
|
|
||||||
dependencies:
|
|
||||||
module:
|
|
||||||
- node
|
|
||||||
id: node.embedded
|
|
||||||
label: Embedded
|
|
||||||
description: ''
|
|
||||||
targetEntityType: node
|
|
||||||
cache: true
|
|
|
@ -1,18 +0,0 @@
|
||||||
_core:
|
|
||||||
default_config_hash: xfB0qOeoAomOThclNNokdKTrVwXLcXz13SU3-4a5-FY
|
|
||||||
disabled: false
|
|
||||||
field_template: false
|
|
||||||
classes:
|
|
||||||
region: { }
|
|
||||||
field: { }
|
|
||||||
use_field_names: true
|
|
||||||
ft_bc: true
|
|
||||||
exclude_layout_builder_blocks_on_block_field: false
|
|
||||||
ft_expert_prefix_suffix_textarea: false
|
|
||||||
ft_default: default
|
|
||||||
ft_show_colon: false
|
|
||||||
ft_layout_builder: null
|
|
||||||
exclude_ds_layout_layout_builder: false
|
|
||||||
layout_icon_image_bc: true
|
|
||||||
ft_default_bc: true
|
|
||||||
layout_suggestion_bc: true
|
|
|
@ -1,49 +0,0 @@
|
||||||
uuid: f9c714eb-b653-4de4-8f1d-766454d3a10b
|
|
||||||
langcode: en
|
|
||||||
status: true
|
|
||||||
dependencies:
|
|
||||||
config:
|
|
||||||
- filter.format.webform_default
|
|
||||||
module:
|
|
||||||
- ckeditor5
|
|
||||||
format: webform_default
|
|
||||||
editor: ckeditor5
|
|
||||||
settings:
|
|
||||||
toolbar:
|
|
||||||
items:
|
|
||||||
- heading
|
|
||||||
- '|'
|
|
||||||
- bold
|
|
||||||
- italic
|
|
||||||
- subscript
|
|
||||||
- superscript
|
|
||||||
- '|'
|
|
||||||
- specialCharacters
|
|
||||||
- '|'
|
|
||||||
- numberedList
|
|
||||||
- bulletedList
|
|
||||||
- '|'
|
|
||||||
- link
|
|
||||||
- '|'
|
|
||||||
- indent
|
|
||||||
- outdent
|
|
||||||
- '|'
|
|
||||||
- blockQuote
|
|
||||||
- '|'
|
|
||||||
- sourceEditing
|
|
||||||
plugins:
|
|
||||||
ckeditor5_heading:
|
|
||||||
enabled_headings:
|
|
||||||
- heading2
|
|
||||||
- heading3
|
|
||||||
- heading4
|
|
||||||
- heading5
|
|
||||||
- heading6
|
|
||||||
ckeditor5_list:
|
|
||||||
properties:
|
|
||||||
reversed: true
|
|
||||||
startIndex: true
|
|
||||||
multiBlock: true
|
|
||||||
ckeditor5_sourceEditing:
|
|
||||||
allowed_tags: { }
|
|
||||||
image_upload: { }
|
|
|
@ -1,36 +0,0 @@
|
||||||
uuid: 2a3d8c6d-e403-472f-87cc-67af63bedcdf
|
|
||||||
langcode: en
|
|
||||||
status: true
|
|
||||||
dependencies:
|
|
||||||
config:
|
|
||||||
- block_content.type.content_reference
|
|
||||||
- field.storage.block_content.field_content_reference
|
|
||||||
- node.type.blog
|
|
||||||
- node.type.case_study
|
|
||||||
- node.type.landing_page
|
|
||||||
- node.type.page
|
|
||||||
- node.type.people
|
|
||||||
id: block_content.content_reference.field_content_reference
|
|
||||||
field_name: field_content_reference
|
|
||||||
entity_type: block_content
|
|
||||||
bundle: content_reference
|
|
||||||
label: 'Content reference'
|
|
||||||
description: ''
|
|
||||||
required: true
|
|
||||||
translatable: false
|
|
||||||
default_value: { }
|
|
||||||
default_value_callback: ''
|
|
||||||
settings:
|
|
||||||
handler: 'default:node'
|
|
||||||
handler_settings:
|
|
||||||
target_bundles:
|
|
||||||
page: page
|
|
||||||
blog: blog
|
|
||||||
case_study: case_study
|
|
||||||
landing_page: landing_page
|
|
||||||
people: people
|
|
||||||
sort:
|
|
||||||
field: _none
|
|
||||||
auto_create: false
|
|
||||||
auto_create_bundle: page
|
|
||||||
field_type: entity_reference
|
|
|
@ -1,29 +0,0 @@
|
||||||
uuid: 4b8ec78c-e9b3-4350-921e-9cabf3b1e7cd
|
|
||||||
langcode: en
|
|
||||||
status: true
|
|
||||||
dependencies:
|
|
||||||
config:
|
|
||||||
- field.storage.paragraph.field_content_reference
|
|
||||||
- node.type.page
|
|
||||||
- paragraphs.paragraphs_type.embedded_content
|
|
||||||
id: paragraph.embedded_content.field_content_reference
|
|
||||||
field_name: field_content_reference
|
|
||||||
entity_type: paragraph
|
|
||||||
bundle: embedded_content
|
|
||||||
label: Content
|
|
||||||
description: ''
|
|
||||||
required: true
|
|
||||||
translatable: true
|
|
||||||
default_value: { }
|
|
||||||
default_value_callback: ''
|
|
||||||
settings:
|
|
||||||
handler: 'default:node'
|
|
||||||
handler_settings:
|
|
||||||
target_bundles:
|
|
||||||
page: page
|
|
||||||
sort:
|
|
||||||
field: changed
|
|
||||||
direction: DESC
|
|
||||||
auto_create: false
|
|
||||||
auto_create_bundle: ''
|
|
||||||
field_type: entity_reference
|
|
|
@ -1,20 +0,0 @@
|
||||||
uuid: cc838cc9-a9cf-4db8-b573-929e597c2a99
|
|
||||||
langcode: en
|
|
||||||
status: true
|
|
||||||
dependencies:
|
|
||||||
module:
|
|
||||||
- block_content
|
|
||||||
- node
|
|
||||||
id: block_content.field_content_reference
|
|
||||||
field_name: field_content_reference
|
|
||||||
entity_type: block_content
|
|
||||||
type: entity_reference
|
|
||||||
settings:
|
|
||||||
target_type: node
|
|
||||||
module: core
|
|
||||||
locked: false
|
|
||||||
cardinality: 9
|
|
||||||
translatable: true
|
|
||||||
indexes: { }
|
|
||||||
persist_with_no_fields: false
|
|
||||||
custom_storage: false
|
|
|
@ -1,34 +0,0 @@
|
||||||
uuid: bafc7219-d76b-411d-9eb2-a3be3d94dc4a
|
|
||||||
langcode: en
|
|
||||||
status: true
|
|
||||||
dependencies:
|
|
||||||
module:
|
|
||||||
- markdown
|
|
||||||
name: Markdown
|
|
||||||
format: markdown
|
|
||||||
weight: 0
|
|
||||||
filters:
|
|
||||||
markdown:
|
|
||||||
id: markdown
|
|
||||||
provider: markdown
|
|
||||||
status: true
|
|
||||||
weight: 0
|
|
||||||
settings:
|
|
||||||
id: commonmark
|
|
||||||
enabled: true
|
|
||||||
render_strategy:
|
|
||||||
type: filter_output
|
|
||||||
custom_allowed_html: ''
|
|
||||||
plugins:
|
|
||||||
commonmark: true
|
|
||||||
commonmark-external-links: false
|
|
||||||
commonmark-footnotes: false
|
|
||||||
commonmark-heading-permalink: false
|
|
||||||
commonmark-strikethrough: false
|
|
||||||
commonmark-table: false
|
|
||||||
commonmark-task-list: false
|
|
||||||
filter_align: false
|
|
||||||
filter_caption: false
|
|
||||||
media_embed: false
|
|
||||||
override: false
|
|
||||||
filterFormat: markdown
|
|
|
@ -1,11 +0,0 @@
|
||||||
uuid: c44fdcff-1798-4006-94c1-d9b2090eac40
|
|
||||||
langcode: en
|
|
||||||
status: true
|
|
||||||
dependencies:
|
|
||||||
enforced:
|
|
||||||
module:
|
|
||||||
- webform
|
|
||||||
name: 'Webform (Default) - DO NOT EDIT'
|
|
||||||
format: webform_default
|
|
||||||
weight: 100
|
|
||||||
filters: { }
|
|
|
@ -1,25 +0,0 @@
|
||||||
_core:
|
|
||||||
default_config_hash: UvSCt3S_NldJPFzvhSNOy9vWoPPFhmsmTC12vtVss9s
|
|
||||||
favicon:
|
|
||||||
use_default: true
|
|
||||||
features:
|
|
||||||
comment_user_picture: true
|
|
||||||
comment_user_verification: true
|
|
||||||
favicon: true
|
|
||||||
node_user_picture: true
|
|
||||||
logo:
|
|
||||||
use_default: true
|
|
||||||
third_party_settings:
|
|
||||||
shortcut:
|
|
||||||
module_link: true
|
|
||||||
preset_accent_color: dark_purple
|
|
||||||
preset_focus_color: gin
|
|
||||||
enable_darkmode: '0'
|
|
||||||
classic_toolbar: horizontal
|
|
||||||
secondary_toolbar_frontend: true
|
|
||||||
high_contrast_mode: false
|
|
||||||
accent_color: ''
|
|
||||||
focus_color: ''
|
|
||||||
layout_density: default
|
|
||||||
show_description_toggle: true
|
|
||||||
show_user_theme_settings: true
|
|
|
@ -1,17 +0,0 @@
|
||||||
uuid: b722a525-a7df-492c-bb37-7c51d6a0fe40
|
|
||||||
langcode: en
|
|
||||||
status: true
|
|
||||||
dependencies: { }
|
|
||||||
_core:
|
|
||||||
default_config_hash: N1S0PHZeyxfFqgzB-sDeGPaxi0dDOL8NUiP_d6WXSV0
|
|
||||||
name: crop_thumbnail
|
|
||||||
label: 'Crop thumbnail'
|
|
||||||
effects:
|
|
||||||
8fc26706-68dc-4eb7-8121-33e3936ed55f:
|
|
||||||
uuid: 8fc26706-68dc-4eb7-8121-33e3936ed55f
|
|
||||||
id: image_scale
|
|
||||||
weight: 1
|
|
||||||
data:
|
|
||||||
width: 400
|
|
||||||
height: null
|
|
||||||
upscale: false
|
|
|
@ -1,20 +0,0 @@
|
||||||
uuid: 949cdfef-b4c1-4714-80e7-37e6a43a1403
|
|
||||||
langcode: en
|
|
||||||
status: true
|
|
||||||
dependencies:
|
|
||||||
enforced:
|
|
||||||
module:
|
|
||||||
- media_library
|
|
||||||
_core:
|
|
||||||
default_config_hash: 7qJqToD1OQLAyeswpmg7M0LRxQlw1URQkJDWUJCnmR8
|
|
||||||
name: media_library
|
|
||||||
label: 'Media Library thumbnail (220×220)'
|
|
||||||
effects:
|
|
||||||
75b076a8-1234-4b42-85db-bf377c4d8d5f:
|
|
||||||
uuid: 75b076a8-1234-4b42-85db-bf377c4d8d5f
|
|
||||||
id: image_scale
|
|
||||||
weight: 0
|
|
||||||
data:
|
|
||||||
width: 220
|
|
||||||
height: 220
|
|
||||||
upscale: false
|
|
|
@ -1,12 +0,0 @@
|
||||||
_core:
|
|
||||||
default_config_hash: UYGkeE2iH3UGp9lBPsELb3VSgHz9vkMJeaGzcYwE7Uw
|
|
||||||
settings:
|
|
||||||
library_url: ''
|
|
||||||
css_url: ''
|
|
||||||
crop_preview_image_style: crop_thumbnail
|
|
||||||
crop_list: { }
|
|
||||||
crop_types_required: { }
|
|
||||||
warn_multiple_usages: false
|
|
||||||
show_default_crop: true
|
|
||||||
notify_apply: false
|
|
||||||
notify_update: true
|
|
|
@ -1,11 +0,0 @@
|
||||||
uuid: fa4ee272-a1d0-4058-8257-9b45b9a83c8c
|
|
||||||
langcode: en
|
|
||||||
status: true
|
|
||||||
dependencies:
|
|
||||||
config:
|
|
||||||
- block_content.type.content_reference
|
|
||||||
id: block_content.content_reference
|
|
||||||
target_entity_type_id: block_content
|
|
||||||
target_bundle: content_reference
|
|
||||||
default_langcode: site_default
|
|
||||||
language_alterable: false
|
|
|
@ -1,2 +0,0 @@
|
||||||
settings:
|
|
||||||
label: Tipo
|
|
|
@ -1,2 +0,0 @@
|
||||||
settings:
|
|
||||||
label: Tipo
|
|
|
@ -1,2 +0,0 @@
|
||||||
settings:
|
|
||||||
label: Tipo
|
|
|
@ -1 +0,0 @@
|
||||||
label: Descripción
|
|
|
@ -1 +0,0 @@
|
||||||
label: Administración
|
|
|
@ -1,20 +0,0 @@
|
||||||
display:
|
|
||||||
default:
|
|
||||||
display_title: 'Por defecto'
|
|
||||||
display_options:
|
|
||||||
fields:
|
|
||||||
media_bulk_form:
|
|
||||||
action_title: Acción
|
|
||||||
bundle:
|
|
||||||
label: Tipo
|
|
||||||
status:
|
|
||||||
label: Estado
|
|
||||||
operations:
|
|
||||||
label: Operaciones
|
|
||||||
exposed_form:
|
|
||||||
options:
|
|
||||||
submit_button: Filter
|
|
||||||
filters:
|
|
||||||
bundle:
|
|
||||||
expose:
|
|
||||||
label: Tipo
|
|
|
@ -1,36 +0,0 @@
|
||||||
display:
|
|
||||||
default:
|
|
||||||
display_title: 'Por defecto'
|
|
||||||
display_options:
|
|
||||||
fields:
|
|
||||||
media_bulk_form:
|
|
||||||
action_title: Acción
|
|
||||||
filters:
|
|
||||||
name:
|
|
||||||
expose:
|
|
||||||
label: Nombre
|
|
||||||
page:
|
|
||||||
display_title: Página
|
|
||||||
display_options:
|
|
||||||
fields:
|
|
||||||
media_bulk_form:
|
|
||||||
action_title: Acción
|
|
||||||
edit_media:
|
|
||||||
text: Editar
|
|
||||||
delete_media:
|
|
||||||
text: Eliminar
|
|
||||||
widget:
|
|
||||||
display_options:
|
|
||||||
filters:
|
|
||||||
name:
|
|
||||||
expose:
|
|
||||||
label: Nombre
|
|
||||||
widget_table:
|
|
||||||
display_options:
|
|
||||||
fields:
|
|
||||||
name:
|
|
||||||
label: Nombre
|
|
||||||
filters:
|
|
||||||
name:
|
|
||||||
expose:
|
|
||||||
label: Nombre
|
|
|
@ -1,22 +0,0 @@
|
||||||
display:
|
|
||||||
default:
|
|
||||||
display_title: 'Por defecto'
|
|
||||||
display_options:
|
|
||||||
fields:
|
|
||||||
type:
|
|
||||||
label: Tipo
|
|
||||||
timestamp:
|
|
||||||
label: Fecha
|
|
||||||
name:
|
|
||||||
label: Usuario
|
|
||||||
link:
|
|
||||||
label: Operaciones
|
|
||||||
exposed_form:
|
|
||||||
options:
|
|
||||||
submit_button: Filter
|
|
||||||
filters:
|
|
||||||
type:
|
|
||||||
expose:
|
|
||||||
label: Tipo
|
|
||||||
page:
|
|
||||||
display_title: Página
|
|
|
@ -1,3 +0,0 @@
|
||||||
display:
|
|
||||||
default:
|
|
||||||
display_title: 'Por defecto'
|
|
|
@ -1,27 +0,0 @@
|
||||||
title: Contact
|
|
||||||
elements: |
|
|
||||||
introduction:
|
|
||||||
'#markup': 'Usted – nuestros clientes, colegas, y admiradores locos – es la razón por la que hacemos lo que hacemos. Nos encantaría saber de usted.'
|
|
||||||
name:
|
|
||||||
'#title': 'Tu Nombre'
|
|
||||||
email:
|
|
||||||
'#title': 'Tu Correo Electrónico'
|
|
||||||
subject:
|
|
||||||
'#title': 'El Tema'
|
|
||||||
message:
|
|
||||||
'#title': Mensaje
|
|
||||||
actions:
|
|
||||||
'#submit__label': 'Enviar Mensaje'
|
|
||||||
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.'
|
|
||||||
handlers:
|
|
||||||
email_notification:
|
|
||||||
settings:
|
|
||||||
body: |
|
|
||||||
Hola Agarics,
|
|
||||||
|
|
||||||
Tú recibiste un nuevo mensaje.
|
|
||||||
|
|
||||||
<p>Submitted on {{ webform_token('[webform_submission:created]', webform_submission) }}</p>
|
|
||||||
<p>Submitted values are:</p>
|
|
||||||
{{ webform_token('[webform_submission:values]', webform_submission) }}
|
|
|
@ -1,79 +0,0 @@
|
||||||
dependencies:
|
|
||||||
module:
|
|
||||||
- markdown
|
|
||||||
id: commonmark
|
|
||||||
enabled: true
|
|
||||||
weight: 0
|
|
||||||
render_strategy:
|
|
||||||
type: filter_output
|
|
||||||
custom_allowed_html: ''
|
|
||||||
plugins:
|
|
||||||
commonmark: true
|
|
||||||
commonmark-external-links: false
|
|
||||||
commonmark-footnotes: false
|
|
||||||
commonmark-heading-permalink: false
|
|
||||||
commonmark-strikethrough: false
|
|
||||||
commonmark-table: false
|
|
||||||
commonmark-task-list: false
|
|
||||||
settings:
|
|
||||||
allow_unsafe_links: true
|
|
||||||
enable_em: true
|
|
||||||
enable_strong: true
|
|
||||||
html_input: allow
|
|
||||||
max_nesting_level: 0
|
|
||||||
use_asterisk: true
|
|
||||||
use_underscore: true
|
|
||||||
extensions:
|
|
||||||
-
|
|
||||||
id: commonmark-attributes
|
|
||||||
enabled: false
|
|
||||||
weight: 0
|
|
||||||
-
|
|
||||||
id: commonmark-autolink
|
|
||||||
enabled: true
|
|
||||||
weight: 0
|
|
||||||
-
|
|
||||||
id: commonmark-disallowed-raw-html
|
|
||||||
enabled: false
|
|
||||||
weight: 0
|
|
||||||
-
|
|
||||||
id: commonmark-external-links
|
|
||||||
enabled: false
|
|
||||||
weight: 0
|
|
||||||
settings: { }
|
|
||||||
-
|
|
||||||
id: commonmark-footnotes
|
|
||||||
enabled: false
|
|
||||||
weight: 0
|
|
||||||
settings: { }
|
|
||||||
-
|
|
||||||
id: commonmark-heading-permalink
|
|
||||||
enabled: false
|
|
||||||
weight: 0
|
|
||||||
settings: { }
|
|
||||||
-
|
|
||||||
id: commonmark-mention
|
|
||||||
enabled: false
|
|
||||||
weight: 0
|
|
||||||
-
|
|
||||||
id: commonmark-smart-punctuation
|
|
||||||
enabled: false
|
|
||||||
weight: 0
|
|
||||||
settings: { }
|
|
||||||
-
|
|
||||||
id: commonmark-strikethrough
|
|
||||||
enabled: false
|
|
||||||
weight: 0
|
|
||||||
-
|
|
||||||
id: commonmark-table
|
|
||||||
enabled: false
|
|
||||||
weight: 0
|
|
||||||
-
|
|
||||||
id: commonmark-table-of-contents
|
|
||||||
enabled: false
|
|
||||||
weight: 0
|
|
||||||
settings: { }
|
|
||||||
-
|
|
||||||
id: commonmark-task-list
|
|
||||||
enabled: false
|
|
||||||
weight: 0
|
|
|
@ -1,6 +0,0 @@
|
||||||
_core:
|
|
||||||
default_config_hash: PlWtVQXY5oKYZqCMPXh6SPamXagn5BoZqgAI8EY9WsY
|
|
||||||
icon_base_uri: 'public://media-icons/generic'
|
|
||||||
iframe_domain: null
|
|
||||||
oembed_providers_url: 'https://oembed.com/providers.json'
|
|
||||||
standalone_url: false
|
|
|
@ -1,3 +0,0 @@
|
||||||
_core:
|
|
||||||
default_config_hash: _3gQsCnZELUjUUqHk8SSh8bXnx7TZwN95vctAeVJG60
|
|
||||||
advanced_ui: false
|
|
|
@ -1,10 +0,0 @@
|
||||||
uuid: 3608b2be-c89a-45a1-9bf2-c2603cfd3c3d
|
|
||||||
langcode: en
|
|
||||||
status: true
|
|
||||||
dependencies: { }
|
|
||||||
id: embedded_content
|
|
||||||
label: 'Embedded content'
|
|
||||||
icon_uuid: null
|
|
||||||
icon_default: null
|
|
||||||
description: 'Embed a full piece of content in another piece of content. Used for example to include our training FAQ on each individual training page.'
|
|
||||||
behavior_plugins: { }
|
|
|
@ -1,25 +0,0 @@
|
||||||
_core:
|
|
||||||
default_config_hash: 2SiIYRsf-Gi9ND77G28c3dFL1cVw6F7QLmrIafNZp-g
|
|
||||||
script:
|
|
||||||
domain: agaric.coop
|
|
||||||
api: ''
|
|
||||||
src: 'https://plausible.io/js/plausible.js'
|
|
||||||
visibility:
|
|
||||||
enable: true
|
|
||||||
admin_route_mode: 0
|
|
||||||
request_path_mode: 1
|
|
||||||
request_path_pages: ''
|
|
||||||
user_role_roles:
|
|
||||||
contributor: contributor
|
|
||||||
editor: editor
|
|
||||||
manager: manager
|
|
||||||
administrator: administrator
|
|
||||||
anonymous: '0'
|
|
||||||
authenticated: '0'
|
|
||||||
past: '0'
|
|
||||||
partner: '0'
|
|
||||||
staff: '0'
|
|
||||||
user_role_mode: 2
|
|
||||||
events:
|
|
||||||
403: false
|
|
||||||
404: false
|
|
|
@ -1,4 +0,0 @@
|
||||||
enabled_entity_types: { }
|
|
||||||
multiple_entities: false
|
|
||||||
expiry_seconds: 604800
|
|
||||||
display_message: subsequent
|
|
|
@ -1,8 +0,0 @@
|
||||||
uuid: 88e54612-d4d1-4bf6-98e0-a08e9b6a1083
|
|
||||||
langcode: en
|
|
||||||
status: true
|
|
||||||
dependencies: { }
|
|
||||||
id: nameacontentmanagementframeworkwhichagarichasexpertisewith
|
|
||||||
question: 'Name a content management framework which Agaric has expertise with!'
|
|
||||||
solution: 'Drupal,Drupal!,Django,Django!,React,Hugo,Wordpress,ReadTheDocs,Flask,Drutopia,Visions Unite,VisionsUnite,FindIt,Find It'
|
|
||||||
hint: null
|
|
|
@ -1,28 +0,0 @@
|
||||||
_core:
|
|
||||||
default_config_hash: n7m4vlCPoB3_1C7l13LKYsifmLur4QR71mOD7S_5hSE
|
|
||||||
default_cron_limit: 50
|
|
||||||
cron_worker_runtime: 15
|
|
||||||
default_tracker: default
|
|
||||||
tracking_page_size: 100
|
|
||||||
boost_factors:
|
|
||||||
- 0.0
|
|
||||||
- 0.1
|
|
||||||
- 0.2
|
|
||||||
- 0.3
|
|
||||||
- 0.5
|
|
||||||
- 0.6
|
|
||||||
- 0.7
|
|
||||||
- 0.8
|
|
||||||
- 0.9
|
|
||||||
- 1.0
|
|
||||||
- 1.1
|
|
||||||
- 1.2
|
|
||||||
- 1.3
|
|
||||||
- 1.4
|
|
||||||
- 1.5
|
|
||||||
- 2.0
|
|
||||||
- 3.0
|
|
||||||
- 5.0
|
|
||||||
- 8.0
|
|
||||||
- 13.0
|
|
||||||
- 21.0
|
|
Some files were not shown because too many files have changed in this diff Show more
Loading…
Reference in a new issue