Compare commits
91
Commits
@@ -44,3 +44,6 @@ dbbackups
|
|||||||
*.mysql
|
*.mysql
|
||||||
*.tar.gz
|
*.tar.gz
|
||||||
*.zip
|
*.zip
|
||||||
|
|
||||||
|
# this is not working as missing config a simply delete on import
|
||||||
|
# sites/default/config/sync/system.performance.yml
|
||||||
|
|||||||
+1
-1
@@ -6,11 +6,11 @@
|
|||||||
"require": {
|
"require": {
|
||||||
"composer/installers": "^1.0.24",
|
"composer/installers": "^1.0.24",
|
||||||
"wikimedia/composer-merge-plugin": "^1.4",
|
"wikimedia/composer-merge-plugin": "^1.4",
|
||||||
|
"drupal/core": "^8.5",
|
||||||
"drupal/console": "^1.7",
|
"drupal/console": "^1.7",
|
||||||
"drush/drush": "^9"
|
"drush/drush": "^9"
|
||||||
},
|
},
|
||||||
"replace": {
|
"replace": {
|
||||||
"drupal/core": "^8.5"
|
|
||||||
},
|
},
|
||||||
"minimum-stability": "dev",
|
"minimum-stability": "dev",
|
||||||
"prefer-stable": true,
|
"prefer-stable": true,
|
||||||
|
|||||||
Generated
+390
-149
File diff suppressed because it is too large
Load Diff
+1
-1
@@ -82,7 +82,7 @@ class Drupal {
|
|||||||
/**
|
/**
|
||||||
* The current system version.
|
* The current system version.
|
||||||
*/
|
*/
|
||||||
const VERSION = '8.5.0';
|
const VERSION = '8.5.1';
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Core API compatibility.
|
* Core API compatibility.
|
||||||
|
|||||||
@@ -20,6 +20,7 @@ use Drupal\Core\File\MimeType\MimeTypeGuesser;
|
|||||||
use Drupal\Core\Http\TrustedHostsRequestFactory;
|
use Drupal\Core\Http\TrustedHostsRequestFactory;
|
||||||
use Drupal\Core\Installer\InstallerRedirectTrait;
|
use Drupal\Core\Installer\InstallerRedirectTrait;
|
||||||
use Drupal\Core\Language\Language;
|
use Drupal\Core\Language\Language;
|
||||||
|
use Drupal\Core\Security\RequestSanitizer;
|
||||||
use Drupal\Core\Site\Settings;
|
use Drupal\Core\Site\Settings;
|
||||||
use Drupal\Core\Test\TestDatabase;
|
use Drupal\Core\Test\TestDatabase;
|
||||||
use Symfony\Cmf\Component\Routing\RouteObjectInterface;
|
use Symfony\Cmf\Component\Routing\RouteObjectInterface;
|
||||||
@@ -542,6 +543,12 @@ class DrupalKernel implements DrupalKernelInterface, TerminableInterface {
|
|||||||
* {@inheritdoc}
|
* {@inheritdoc}
|
||||||
*/
|
*/
|
||||||
public function preHandle(Request $request) {
|
public function preHandle(Request $request) {
|
||||||
|
// Sanitize the request.
|
||||||
|
$request = RequestSanitizer::sanitize(
|
||||||
|
$request,
|
||||||
|
(array) Settings::get(RequestSanitizer::SANITIZE_WHITELIST, []),
|
||||||
|
(bool) Settings::get(RequestSanitizer::SANITIZE_LOG, FALSE)
|
||||||
|
);
|
||||||
|
|
||||||
$this->loadLegacyIncludes();
|
$this->loadLegacyIncludes();
|
||||||
|
|
||||||
|
|||||||
@@ -0,0 +1,99 @@
|
|||||||
|
<?php
|
||||||
|
|
||||||
|
namespace Drupal\Core\Security;
|
||||||
|
|
||||||
|
use Symfony\Component\HttpFoundation\Request;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Sanitizes user input.
|
||||||
|
*/
|
||||||
|
class RequestSanitizer {
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Request attribute to mark the request as sanitized.
|
||||||
|
*/
|
||||||
|
const SANITIZED = '_drupal_request_sanitized';
|
||||||
|
|
||||||
|
/**
|
||||||
|
* The name of the setting that configures the whitelist.
|
||||||
|
*/
|
||||||
|
const SANITIZE_WHITELIST = 'sanitize_input_whitelist';
|
||||||
|
|
||||||
|
/**
|
||||||
|
* The name of the setting that determines if sanitized keys are logged.
|
||||||
|
*/
|
||||||
|
const SANITIZE_LOG = 'sanitize_input_logging';
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Strips dangerous keys from user input.
|
||||||
|
*
|
||||||
|
* @param \Symfony\Component\HttpFoundation\Request $request
|
||||||
|
* The incoming request to sanitize.
|
||||||
|
* @param string[] $whitelist
|
||||||
|
* An array of keys to whitelist as safe. See default.settings.php.
|
||||||
|
* @param bool $log_sanitized_keys
|
||||||
|
* (optional) Set to TRUE to log an keys that are sanitized.
|
||||||
|
*
|
||||||
|
* @return \Symfony\Component\HttpFoundation\Request
|
||||||
|
* The sanitized request.
|
||||||
|
*/
|
||||||
|
public static function sanitize(Request $request, $whitelist, $log_sanitized_keys = FALSE) {
|
||||||
|
if (!$request->attributes->get(self::SANITIZED, FALSE)) {
|
||||||
|
// Process query string parameters.
|
||||||
|
$get_sanitized_keys = [];
|
||||||
|
$request->query->replace(static::stripDangerousValues($request->query->all(), $whitelist, $get_sanitized_keys));
|
||||||
|
if ($log_sanitized_keys && !empty($get_sanitized_keys)) {
|
||||||
|
trigger_error(sprintf('Potentially unsafe keys removed from query string parameters (GET): %s', implode(', ', $get_sanitized_keys)));
|
||||||
|
}
|
||||||
|
|
||||||
|
// Request body parameters.
|
||||||
|
$post_sanitized_keys = [];
|
||||||
|
$request->request->replace(static::stripDangerousValues($request->request->all(), $whitelist, $post_sanitized_keys));
|
||||||
|
if ($log_sanitized_keys && !empty($post_sanitized_keys)) {
|
||||||
|
trigger_error(sprintf('Potentially unsafe keys removed from request body parameters (POST): %s', implode(', ', $post_sanitized_keys)));
|
||||||
|
}
|
||||||
|
|
||||||
|
// Cookie parameters.
|
||||||
|
$cookie_sanitized_keys = [];
|
||||||
|
$request->cookies->replace(static::stripDangerousValues($request->cookies->all(), $whitelist, $cookie_sanitized_keys));
|
||||||
|
if ($log_sanitized_keys && !empty($cookie_sanitized_keys)) {
|
||||||
|
trigger_error(sprintf('Potentially unsafe keys removed from cookie parameters: %s', implode(', ', $cookie_sanitized_keys)));
|
||||||
|
}
|
||||||
|
|
||||||
|
if (!empty($get_sanitized_keys) || !empty($post_sanitized_keys) || !empty($cookie_sanitized_keys)) {
|
||||||
|
$request->overrideGlobals();
|
||||||
|
}
|
||||||
|
$request->attributes->set(self::SANITIZED, TRUE);
|
||||||
|
}
|
||||||
|
return $request;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Strips dangerous keys from $input.
|
||||||
|
*
|
||||||
|
* @param mixed $input
|
||||||
|
* The input to sanitize.
|
||||||
|
* @param string[] $whitelist
|
||||||
|
* An array of keys to whitelist as safe.
|
||||||
|
* @param string[] $sanitized_keys
|
||||||
|
* An array of keys that have been removed.
|
||||||
|
*
|
||||||
|
* @return mixed
|
||||||
|
* The sanitized input.
|
||||||
|
*/
|
||||||
|
protected static function stripDangerousValues($input, array $whitelist, array &$sanitized_keys) {
|
||||||
|
if (is_array($input)) {
|
||||||
|
foreach ($input as $key => $value) {
|
||||||
|
if ($key !== '' && $key[0] === '#' && !in_array($key, $whitelist, TRUE)) {
|
||||||
|
unset($input[$key]);
|
||||||
|
$sanitized_keys[] = $key;
|
||||||
|
}
|
||||||
|
else {
|
||||||
|
$input[$key] = static::stripDangerousValues($input[$key], $whitelist, $sanitized_keys);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
return $input;
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
||||||
@@ -2,12 +2,6 @@ name: Actions
|
|||||||
type: module
|
type: module
|
||||||
description: 'Perform tasks on specific events triggered within the system.'
|
description: 'Perform tasks on specific events triggered within the system.'
|
||||||
package: Core
|
package: Core
|
||||||
# version: VERSION
|
version: VERSION
|
||||||
# core: 8.x
|
core: 8.x
|
||||||
configure: entity.action.collection
|
configure: entity.action.collection
|
||||||
|
|
||||||
# Information added by Drupal.org packaging script on 2018-03-07
|
|
||||||
version: '8.5.0'
|
|
||||||
core: '8.x'
|
|
||||||
project: 'drupal'
|
|
||||||
datestamp: 1520457826
|
|
||||||
|
|||||||
@@ -2,15 +2,9 @@ name: 'Action bulk form test'
|
|||||||
type: module
|
type: module
|
||||||
description: 'Support module for action bulk form testing.'
|
description: 'Support module for action bulk form testing.'
|
||||||
package: Testing
|
package: Testing
|
||||||
# version: VERSION
|
version: VERSION
|
||||||
# core: 8.x
|
core: 8.x
|
||||||
dependencies:
|
dependencies:
|
||||||
- action
|
- action
|
||||||
- views
|
- views
|
||||||
- node
|
- node
|
||||||
|
|
||||||
# Information added by Drupal.org packaging script on 2018-03-07
|
|
||||||
version: '8.5.0'
|
|
||||||
core: '8.x'
|
|
||||||
project: 'drupal'
|
|
||||||
datestamp: 1520457826
|
|
||||||
|
|||||||
@@ -2,12 +2,6 @@ name: action_form_ajax_test
|
|||||||
type: module
|
type: module
|
||||||
description: 'module used for testing ajax in action config entity forms.'
|
description: 'module used for testing ajax in action config entity forms.'
|
||||||
package: Core
|
package: Core
|
||||||
# version: VERSION
|
version: VERSION
|
||||||
# core: 8.x
|
core: 8.x
|
||||||
hidden: true
|
hidden: true
|
||||||
|
|
||||||
# Information added by Drupal.org packaging script on 2018-03-07
|
|
||||||
version: '8.5.0'
|
|
||||||
core: '8.x'
|
|
||||||
project: 'drupal'
|
|
||||||
datestamp: 1520457826
|
|
||||||
|
|||||||
@@ -2,15 +2,9 @@ name: Aggregator
|
|||||||
type: module
|
type: module
|
||||||
description: 'Aggregates syndicated content (RSS, RDF, and Atom feeds) from external sources.'
|
description: 'Aggregates syndicated content (RSS, RDF, and Atom feeds) from external sources.'
|
||||||
package: Core
|
package: Core
|
||||||
# version: VERSION
|
version: VERSION
|
||||||
# core: 8.x
|
core: 8.x
|
||||||
configure: aggregator.admin_settings
|
configure: aggregator.admin_settings
|
||||||
dependencies:
|
dependencies:
|
||||||
- file
|
- file
|
||||||
- options
|
- options
|
||||||
|
|
||||||
# Information added by Drupal.org packaging script on 2018-03-07
|
|
||||||
version: '8.5.0'
|
|
||||||
core: '8.x'
|
|
||||||
project: 'drupal'
|
|
||||||
datestamp: 1520457826
|
|
||||||
|
|||||||
@@ -2,11 +2,5 @@ name: 'Aggregator module tests'
|
|||||||
type: module
|
type: module
|
||||||
description: 'Support module for aggregator related testing.'
|
description: 'Support module for aggregator related testing.'
|
||||||
package: Testing
|
package: Testing
|
||||||
# version: VERSION
|
version: VERSION
|
||||||
# core: 8.x
|
core: 8.x
|
||||||
|
|
||||||
# Information added by Drupal.org packaging script on 2018-03-07
|
|
||||||
version: '8.5.0'
|
|
||||||
core: '8.x'
|
|
||||||
project: 'drupal'
|
|
||||||
datestamp: 1520457826
|
|
||||||
|
|||||||
+2
-8
@@ -2,14 +2,8 @@ name: 'Aggregator test views'
|
|||||||
type: module
|
type: module
|
||||||
description: 'Provides default views for views aggregator tests.'
|
description: 'Provides default views for views aggregator tests.'
|
||||||
package: Testing
|
package: Testing
|
||||||
# version: VERSION
|
version: VERSION
|
||||||
# core: 8.x
|
core: 8.x
|
||||||
dependencies:
|
dependencies:
|
||||||
- aggregator
|
- aggregator
|
||||||
- views
|
- views
|
||||||
|
|
||||||
# Information added by Drupal.org packaging script on 2018-03-07
|
|
||||||
version: '8.5.0'
|
|
||||||
core: '8.x'
|
|
||||||
project: 'drupal'
|
|
||||||
datestamp: 1520457826
|
|
||||||
|
|||||||
@@ -2,12 +2,6 @@ name: 'Automated Cron'
|
|||||||
type: module
|
type: module
|
||||||
description: 'Provides an automated way to run cron jobs, by executing them at the end of a server response.'
|
description: 'Provides an automated way to run cron jobs, by executing them at the end of a server response.'
|
||||||
package: Core
|
package: Core
|
||||||
# version: VERSION
|
version: VERSION
|
||||||
# core: 8.x
|
core: 8.x
|
||||||
configure: system.cron_settings
|
configure: system.cron_settings
|
||||||
|
|
||||||
# Information added by Drupal.org packaging script on 2018-03-07
|
|
||||||
version: '8.5.0'
|
|
||||||
core: '8.x'
|
|
||||||
project: 'drupal'
|
|
||||||
datestamp: 1520457826
|
|
||||||
|
|||||||
@@ -2,12 +2,6 @@ name: Ban
|
|||||||
type: module
|
type: module
|
||||||
description: 'Enables banning of IP addresses.'
|
description: 'Enables banning of IP addresses.'
|
||||||
package: Core
|
package: Core
|
||||||
# version: VERSION
|
version: VERSION
|
||||||
# core: 8.x
|
core: 8.x
|
||||||
configure: ban.admin_page
|
configure: ban.admin_page
|
||||||
|
|
||||||
# Information added by Drupal.org packaging script on 2018-03-07
|
|
||||||
version: '8.5.0'
|
|
||||||
core: '8.x'
|
|
||||||
project: 'drupal'
|
|
||||||
datestamp: 1520457826
|
|
||||||
|
|||||||
@@ -2,13 +2,7 @@ name: 'HTTP Basic Authentication'
|
|||||||
type: module
|
type: module
|
||||||
description: 'Provides the HTTP Basic authentication provider'
|
description: 'Provides the HTTP Basic authentication provider'
|
||||||
package: Web services
|
package: Web services
|
||||||
# version: VERSION
|
version: VERSION
|
||||||
# core: 8.x
|
core: 8.x
|
||||||
dependencies:
|
dependencies:
|
||||||
- user
|
- user
|
||||||
|
|
||||||
# Information added by Drupal.org packaging script on 2018-03-07
|
|
||||||
version: '8.5.0'
|
|
||||||
core: '8.x'
|
|
||||||
project: 'drupal'
|
|
||||||
datestamp: 1520457826
|
|
||||||
|
|||||||
@@ -2,11 +2,5 @@ name: 'HTTP Basic Authentication test'
|
|||||||
type: module
|
type: module
|
||||||
description: 'Support module for HTTP Basic Authentication testing.'
|
description: 'Support module for HTTP Basic Authentication testing.'
|
||||||
package: Testing
|
package: Testing
|
||||||
# version: VERSION
|
version: VERSION
|
||||||
# core: 8.x
|
core: 8.x
|
||||||
|
|
||||||
# Information added by Drupal.org packaging script on 2018-03-07
|
|
||||||
version: '8.5.0'
|
|
||||||
core: '8.x'
|
|
||||||
project: 'drupal'
|
|
||||||
datestamp: 1520457826
|
|
||||||
|
|||||||
@@ -2,11 +2,5 @@ name: BigPipe
|
|||||||
type: module
|
type: module
|
||||||
description: 'Sends pages using the BigPipe technique that allows browsers to show them much faster.'
|
description: 'Sends pages using the BigPipe technique that allows browsers to show them much faster.'
|
||||||
package: Core
|
package: Core
|
||||||
# version: VERSION
|
version: VERSION
|
||||||
# core: 8.x
|
core: 8.x
|
||||||
|
|
||||||
# Information added by Drupal.org packaging script on 2018-03-07
|
|
||||||
version: '8.5.0'
|
|
||||||
core: '8.x'
|
|
||||||
project: 'drupal'
|
|
||||||
datestamp: 1520457826
|
|
||||||
|
|||||||
+2
-8
@@ -2,11 +2,5 @@ name: 'BigPipe regression test'
|
|||||||
type: module
|
type: module
|
||||||
description: 'Support module for BigPipe regression testing.'
|
description: 'Support module for BigPipe regression testing.'
|
||||||
package: Testing
|
package: Testing
|
||||||
# version: VERSION
|
version: VERSION
|
||||||
# core: 8.x
|
core: 8.x
|
||||||
|
|
||||||
# Information added by Drupal.org packaging script on 2018-03-07
|
|
||||||
version: '8.5.0'
|
|
||||||
core: '8.x'
|
|
||||||
project: 'drupal'
|
|
||||||
datestamp: 1520457826
|
|
||||||
|
|||||||
@@ -2,11 +2,5 @@ name: 'BigPipe test'
|
|||||||
type: module
|
type: module
|
||||||
description: 'Support module for BigPipe testing.'
|
description: 'Support module for BigPipe testing.'
|
||||||
package: Testing
|
package: Testing
|
||||||
# version: VERSION
|
version: VERSION
|
||||||
# core: 8.x
|
core: 8.x
|
||||||
|
|
||||||
# Information added by Drupal.org packaging script on 2018-03-07
|
|
||||||
version: '8.5.0'
|
|
||||||
core: '8.x'
|
|
||||||
project: 'drupal'
|
|
||||||
datestamp: 1520457826
|
|
||||||
|
|||||||
@@ -1,11 +1,5 @@
|
|||||||
name: 'BigPipe test theme'
|
name: 'BigPipe test theme'
|
||||||
type: theme
|
type: theme
|
||||||
description: 'Theme for testing BigPipe edge cases.'
|
description: 'Theme for testing BigPipe edge cases.'
|
||||||
# version: VERSION
|
version: VERSION
|
||||||
# core: 8.x
|
core: 8.x
|
||||||
|
|
||||||
# Information added by Drupal.org packaging script on 2018-03-07
|
|
||||||
version: '8.5.0'
|
|
||||||
core: '8.x'
|
|
||||||
project: 'drupal'
|
|
||||||
datestamp: 1520457826
|
|
||||||
|
|||||||
@@ -2,12 +2,6 @@ name: Block
|
|||||||
type: module
|
type: module
|
||||||
description: 'Controls the visual building blocks a page is constructed with. Blocks are boxes of content rendered into an area, or region, of a web page.'
|
description: 'Controls the visual building blocks a page is constructed with. Blocks are boxes of content rendered into an area, or region, of a web page.'
|
||||||
package: Core
|
package: Core
|
||||||
# version: VERSION
|
version: VERSION
|
||||||
# core: 8.x
|
core: 8.x
|
||||||
configure: block.admin_display
|
configure: block.admin_display
|
||||||
|
|
||||||
# Information added by Drupal.org packaging script on 2018-03-07
|
|
||||||
version: '8.5.0'
|
|
||||||
core: '8.x'
|
|
||||||
project: 'drupal'
|
|
||||||
datestamp: 1520457826
|
|
||||||
|
|||||||
@@ -2,13 +2,7 @@ name: 'Block test'
|
|||||||
type: module
|
type: module
|
||||||
description: 'Provides test blocks.'
|
description: 'Provides test blocks.'
|
||||||
package: Testing
|
package: Testing
|
||||||
# version: VERSION
|
version: VERSION
|
||||||
# core: 8.x
|
core: 8.x
|
||||||
dependencies:
|
dependencies:
|
||||||
- block
|
- block
|
||||||
|
|
||||||
# Information added by Drupal.org packaging script on 2018-03-07
|
|
||||||
version: '8.5.0'
|
|
||||||
core: '8.x'
|
|
||||||
project: 'drupal'
|
|
||||||
datestamp: 1520457826
|
|
||||||
|
|||||||
+1
-7
@@ -1,13 +1,7 @@
|
|||||||
name: '<"Cat" & ''Mouse''>'
|
name: '<"Cat" & ''Mouse''>'
|
||||||
type: theme
|
type: theme
|
||||||
description: 'Theme for testing special characters in block admin.'
|
description: 'Theme for testing special characters in block admin.'
|
||||||
# core: 8.x
|
core: 8.x
|
||||||
regions:
|
regions:
|
||||||
content: Content
|
content: Content
|
||||||
help: Help
|
help: Help
|
||||||
|
|
||||||
# Information added by Drupal.org packaging script on 2018-03-07
|
|
||||||
version: '8.5.0'
|
|
||||||
core: '8.x'
|
|
||||||
project: 'drupal'
|
|
||||||
datestamp: 1520457826
|
|
||||||
|
|||||||
+2
-8
@@ -1,8 +1,8 @@
|
|||||||
name: 'Block test theme'
|
name: 'Block test theme'
|
||||||
type: theme
|
type: theme
|
||||||
description: 'Theme for testing the block system'
|
description: 'Theme for testing the block system'
|
||||||
# version: VERSION
|
version: VERSION
|
||||||
# core: 8.x
|
core: 8.x
|
||||||
regions:
|
regions:
|
||||||
sidebar_first: 'Left sidebar'
|
sidebar_first: 'Left sidebar'
|
||||||
sidebar_second: 'Right sidebar'
|
sidebar_second: 'Right sidebar'
|
||||||
@@ -14,9 +14,3 @@ regions:
|
|||||||
regions_hidden:
|
regions_hidden:
|
||||||
- sidebar_first
|
- sidebar_first
|
||||||
- sidebar_second
|
- sidebar_second
|
||||||
|
|
||||||
# Information added by Drupal.org packaging script on 2018-03-07
|
|
||||||
version: '8.5.0'
|
|
||||||
core: '8.x'
|
|
||||||
project: 'drupal'
|
|
||||||
datestamp: 1520457826
|
|
||||||
|
|||||||
@@ -2,14 +2,8 @@ name: 'Block test views'
|
|||||||
type: module
|
type: module
|
||||||
description: 'Provides a view and block to test block displays in views.'
|
description: 'Provides a view and block to test block displays in views.'
|
||||||
package: Testing
|
package: Testing
|
||||||
# version: VERSION
|
version: VERSION
|
||||||
# core: 8.x
|
core: 8.x
|
||||||
dependencies:
|
dependencies:
|
||||||
- block
|
- block
|
||||||
- views
|
- views
|
||||||
|
|
||||||
# Information added by Drupal.org packaging script on 2018-03-07
|
|
||||||
version: '8.5.0'
|
|
||||||
core: '8.x'
|
|
||||||
project: 'drupal'
|
|
||||||
datestamp: 1520457826
|
|
||||||
|
|||||||
@@ -2,16 +2,10 @@ name: 'Custom Block'
|
|||||||
type: module
|
type: module
|
||||||
description: 'Allows the creation of custom blocks through the user interface.'
|
description: 'Allows the creation of custom blocks through the user interface.'
|
||||||
package: Core
|
package: Core
|
||||||
# version: VERSION
|
version: VERSION
|
||||||
# core: 8.x
|
core: 8.x
|
||||||
dependencies:
|
dependencies:
|
||||||
- block
|
- block
|
||||||
- text
|
- text
|
||||||
- user
|
- user
|
||||||
configure: entity.block_content.collection
|
configure: entity.block_content.collection
|
||||||
|
|
||||||
# Information added by Drupal.org packaging script on 2018-03-07
|
|
||||||
version: '8.5.0'
|
|
||||||
core: '8.x'
|
|
||||||
project: 'drupal'
|
|
||||||
datestamp: 1520457826
|
|
||||||
|
|||||||
+2
-8
@@ -2,13 +2,7 @@ name: "Custom Block module tests"
|
|||||||
type: module
|
type: module
|
||||||
description: "Support module for custom block related testing."
|
description: "Support module for custom block related testing."
|
||||||
package: Testing
|
package: Testing
|
||||||
# version: VERSION
|
version: VERSION
|
||||||
# core: 8.x
|
core: 8.x
|
||||||
dependencies:
|
dependencies:
|
||||||
- block_content
|
- block_content
|
||||||
|
|
||||||
# Information added by Drupal.org packaging script on 2018-03-07
|
|
||||||
version: '8.5.0'
|
|
||||||
core: '8.x'
|
|
||||||
project: 'drupal'
|
|
||||||
datestamp: 1520457826
|
|
||||||
|
|||||||
+2
-8
@@ -2,14 +2,8 @@ name: 'Block Content test views'
|
|||||||
type: module
|
type: module
|
||||||
description: 'Provides default views for views block_content tests.'
|
description: 'Provides default views for views block_content tests.'
|
||||||
package: Testing
|
package: Testing
|
||||||
# version: VERSION
|
version: VERSION
|
||||||
# core: 8.x
|
core: 8.x
|
||||||
dependencies:
|
dependencies:
|
||||||
- block_content
|
- block_content
|
||||||
- views
|
- views
|
||||||
|
|
||||||
# Information added by Drupal.org packaging script on 2018-03-07
|
|
||||||
version: '8.5.0'
|
|
||||||
core: '8.x'
|
|
||||||
project: 'drupal'
|
|
||||||
datestamp: 1520457826
|
|
||||||
|
|||||||
@@ -2,14 +2,8 @@ name: Place Blocks
|
|||||||
type: module
|
type: module
|
||||||
description: 'Allow administrators to place blocks from any Drupal page'
|
description: 'Allow administrators to place blocks from any Drupal page'
|
||||||
package: Core (Experimental)
|
package: Core (Experimental)
|
||||||
# version: VERSION
|
version: VERSION
|
||||||
# core: 8.x
|
core: 8.x
|
||||||
hidden: true
|
hidden: true
|
||||||
dependencies:
|
dependencies:
|
||||||
- block
|
- block
|
||||||
|
|
||||||
# Information added by Drupal.org packaging script on 2018-03-07
|
|
||||||
version: '8.5.0'
|
|
||||||
core: '8.x'
|
|
||||||
project: 'drupal'
|
|
||||||
datestamp: 1520457826
|
|
||||||
|
|||||||
@@ -2,14 +2,8 @@ name: Book
|
|||||||
type: module
|
type: module
|
||||||
description: 'Allows users to create and organize related content in an outline.'
|
description: 'Allows users to create and organize related content in an outline.'
|
||||||
package: Core
|
package: Core
|
||||||
# version: VERSION
|
version: VERSION
|
||||||
# core: 8.x
|
core: 8.x
|
||||||
dependencies:
|
dependencies:
|
||||||
- node
|
- node
|
||||||
configure: book.settings
|
configure: book.settings
|
||||||
|
|
||||||
# Information added by Drupal.org packaging script on 2018-03-07
|
|
||||||
version: '8.5.0'
|
|
||||||
core: '8.x'
|
|
||||||
project: 'drupal'
|
|
||||||
datestamp: 1520457826
|
|
||||||
|
|||||||
@@ -2,11 +2,5 @@ name: 'Book module breadcrumb tests'
|
|||||||
type: module
|
type: module
|
||||||
description: 'Support module for book module breadcrumb testing.'
|
description: 'Support module for book module breadcrumb testing.'
|
||||||
package: Testing
|
package: Testing
|
||||||
# version: VERSION
|
version: VERSION
|
||||||
# core: 8.x
|
core: 8.x
|
||||||
|
|
||||||
# Information added by Drupal.org packaging script on 2018-03-07
|
|
||||||
version: '8.5.0'
|
|
||||||
core: '8.x'
|
|
||||||
project: 'drupal'
|
|
||||||
datestamp: 1520457826
|
|
||||||
|
|||||||
@@ -2,11 +2,5 @@ name: 'Book module tests'
|
|||||||
type: module
|
type: module
|
||||||
description: 'Support module for book module testing.'
|
description: 'Support module for book module testing.'
|
||||||
package: Testing
|
package: Testing
|
||||||
# version: VERSION
|
version: VERSION
|
||||||
# core: 8.x
|
core: 8.x
|
||||||
|
|
||||||
# Information added by Drupal.org packaging script on 2018-03-07
|
|
||||||
version: '8.5.0'
|
|
||||||
core: '8.x'
|
|
||||||
project: 'drupal'
|
|
||||||
datestamp: 1520457826
|
|
||||||
|
|||||||
@@ -2,14 +2,8 @@ name: 'Book test views'
|
|||||||
type: module
|
type: module
|
||||||
description: 'Provides default views for views book tests.'
|
description: 'Provides default views for views book tests.'
|
||||||
package: Testing
|
package: Testing
|
||||||
# version: VERSION
|
version: VERSION
|
||||||
# core: 8.x
|
core: 8.x
|
||||||
dependencies:
|
dependencies:
|
||||||
- book
|
- book
|
||||||
- views
|
- views
|
||||||
|
|
||||||
# Information added by Drupal.org packaging script on 2018-03-07
|
|
||||||
version: '8.5.0'
|
|
||||||
core: '8.x'
|
|
||||||
project: 'drupal'
|
|
||||||
datestamp: 1520457826
|
|
||||||
|
|||||||
@@ -2,11 +2,5 @@ name: Breakpoint
|
|||||||
type: module
|
type: module
|
||||||
description: 'Manage breakpoints and breakpoint groups for responsive designs.'
|
description: 'Manage breakpoints and breakpoint groups for responsive designs.'
|
||||||
package: Core
|
package: Core
|
||||||
# version: VERSION
|
version: VERSION
|
||||||
# core: 8.x
|
core: 8.x
|
||||||
|
|
||||||
# Information added by Drupal.org packaging script on 2018-03-07
|
|
||||||
version: '8.5.0'
|
|
||||||
core: '8.x'
|
|
||||||
project: 'drupal'
|
|
||||||
datestamp: 1520457826
|
|
||||||
|
|||||||
+2
-8
@@ -2,12 +2,6 @@ name: 'Breakpoint test module'
|
|||||||
type: module
|
type: module
|
||||||
description: 'Test module for breakpoint.'
|
description: 'Test module for breakpoint.'
|
||||||
package: Testing
|
package: Testing
|
||||||
# version: VERSION
|
version: VERSION
|
||||||
# core: 8.x
|
core: 8.x
|
||||||
|
|
||||||
|
|
||||||
# Information added by Drupal.org packaging script on 2018-03-07
|
|
||||||
version: '8.5.0'
|
|
||||||
core: '8.x'
|
|
||||||
project: 'drupal'
|
|
||||||
datestamp: 1520457826
|
|
||||||
|
|||||||
+2
-8
@@ -1,12 +1,6 @@
|
|||||||
name: 'Breakpoint test theme'
|
name: 'Breakpoint test theme'
|
||||||
type: theme
|
type: theme
|
||||||
description: 'Test theme for breakpoint.'
|
description: 'Test theme for breakpoint.'
|
||||||
# version: VERSION
|
version: VERSION
|
||||||
# core: 8.x
|
core: 8.x
|
||||||
base theme: bartik
|
base theme: bartik
|
||||||
|
|
||||||
# Information added by Drupal.org packaging script on 2018-03-07
|
|
||||||
version: '8.5.0'
|
|
||||||
core: '8.x'
|
|
||||||
project: 'drupal'
|
|
||||||
datestamp: 1520457826
|
|
||||||
|
|||||||
@@ -2,13 +2,7 @@ name: CKEditor
|
|||||||
type: module
|
type: module
|
||||||
description: "WYSIWYG editing for rich text fields using CKEditor."
|
description: "WYSIWYG editing for rich text fields using CKEditor."
|
||||||
package: Core
|
package: Core
|
||||||
# core: 8.x
|
core: 8.x
|
||||||
# version: VERSION
|
version: VERSION
|
||||||
dependencies:
|
dependencies:
|
||||||
- editor
|
- editor
|
||||||
|
|
||||||
# Information added by Drupal.org packaging script on 2018-03-07
|
|
||||||
version: '8.5.0'
|
|
||||||
core: '8.x'
|
|
||||||
project: 'drupal'
|
|
||||||
datestamp: 1520457826
|
|
||||||
|
|||||||
@@ -1,12 +1,6 @@
|
|||||||
name: CKEditor test
|
name: CKEditor test
|
||||||
type: module
|
type: module
|
||||||
description: Support module for the CKEditor module tests.
|
description: Support module for the CKEditor module tests.
|
||||||
# core: 8.x
|
core: 8.x
|
||||||
package: Testing
|
package: Testing
|
||||||
# version: VERSION
|
version: VERSION
|
||||||
|
|
||||||
# Information added by Drupal.org packaging script on 2018-03-07
|
|
||||||
version: '8.5.0'
|
|
||||||
core: '8.x'
|
|
||||||
project: 'drupal'
|
|
||||||
datestamp: 1520457826
|
|
||||||
|
|||||||
@@ -2,11 +2,5 @@ name: Color
|
|||||||
type: module
|
type: module
|
||||||
description: 'Allows administrators to change the color scheme of compatible themes.'
|
description: 'Allows administrators to change the color scheme of compatible themes.'
|
||||||
package: Core
|
package: Core
|
||||||
# version: VERSION
|
version: VERSION
|
||||||
# core: 8.x
|
core: 8.x
|
||||||
|
|
||||||
# Information added by Drupal.org packaging script on 2018-03-07
|
|
||||||
version: '8.5.0'
|
|
||||||
core: '8.x'
|
|
||||||
project: 'drupal'
|
|
||||||
datestamp: 1520457826
|
|
||||||
|
|||||||
@@ -2,11 +2,5 @@ name: 'Color test'
|
|||||||
type: module
|
type: module
|
||||||
description: 'Provides test helpers for color module.'
|
description: 'Provides test helpers for color module.'
|
||||||
package: Testing
|
package: Testing
|
||||||
# version: VERSION
|
version: VERSION
|
||||||
# core: 8.x
|
core: 8.x
|
||||||
|
|
||||||
# Information added by Drupal.org packaging script on 2018-03-07
|
|
||||||
version: '8.5.0'
|
|
||||||
core: '8.x'
|
|
||||||
project: 'drupal'
|
|
||||||
datestamp: 1520457826
|
|
||||||
|
|||||||
+2
-8
@@ -1,13 +1,7 @@
|
|||||||
name: 'Color test theme'
|
name: 'Color test theme'
|
||||||
type: theme
|
type: theme
|
||||||
description: 'Theme for testing the color module'
|
description: 'Theme for testing the color module'
|
||||||
# version: VERSION
|
version: VERSION
|
||||||
# core: 8.x
|
core: 8.x
|
||||||
libraries:
|
libraries:
|
||||||
- color_test_theme/base
|
- color_test_theme/base
|
||||||
|
|
||||||
# Information added by Drupal.org packaging script on 2018-03-07
|
|
||||||
version: '8.5.0'
|
|
||||||
core: '8.x'
|
|
||||||
project: 'drupal'
|
|
||||||
datestamp: 1520457826
|
|
||||||
|
|||||||
@@ -2,14 +2,8 @@ name: Comment
|
|||||||
type: module
|
type: module
|
||||||
description: 'Allows users to comment on and discuss published content.'
|
description: 'Allows users to comment on and discuss published content.'
|
||||||
package: Core
|
package: Core
|
||||||
# version: VERSION
|
version: VERSION
|
||||||
# core: 8.x
|
core: 8.x
|
||||||
dependencies:
|
dependencies:
|
||||||
- text
|
- text
|
||||||
configure: comment.admin
|
configure: comment.admin
|
||||||
|
|
||||||
# Information added by Drupal.org packaging script on 2018-03-07
|
|
||||||
version: '8.5.0'
|
|
||||||
core: '8.x'
|
|
||||||
project: 'drupal'
|
|
||||||
datestamp: 1520457826
|
|
||||||
|
|||||||
+2
-8
@@ -2,13 +2,7 @@ name: 'Comment empty titles test'
|
|||||||
type: module
|
type: module
|
||||||
description: 'Support module for testing empty title accessibility with Comment module.'
|
description: 'Support module for testing empty title accessibility with Comment module.'
|
||||||
package: Testing
|
package: Testing
|
||||||
# version: VERSION
|
version: VERSION
|
||||||
# core: 8.x
|
core: 8.x
|
||||||
dependencies:
|
dependencies:
|
||||||
- comment
|
- comment
|
||||||
|
|
||||||
# Information added by Drupal.org packaging script on 2018-03-07
|
|
||||||
version: '8.5.0'
|
|
||||||
core: '8.x'
|
|
||||||
project: 'drupal'
|
|
||||||
datestamp: 1520457826
|
|
||||||
|
|||||||
@@ -2,13 +2,7 @@ name: 'Comment test'
|
|||||||
type: module
|
type: module
|
||||||
description: 'Support module for Comment module testing.'
|
description: 'Support module for Comment module testing.'
|
||||||
package: Testing
|
package: Testing
|
||||||
# version: VERSION
|
version: VERSION
|
||||||
# core: 8.x
|
core: 8.x
|
||||||
dependencies:
|
dependencies:
|
||||||
- comment
|
- comment
|
||||||
|
|
||||||
# Information added by Drupal.org packaging script on 2018-03-07
|
|
||||||
version: '8.5.0'
|
|
||||||
core: '8.x'
|
|
||||||
project: 'drupal'
|
|
||||||
datestamp: 1520457826
|
|
||||||
|
|||||||
@@ -2,14 +2,8 @@ name: 'Comment test views'
|
|||||||
type: module
|
type: module
|
||||||
description: 'Provides default views for views comment tests.'
|
description: 'Provides default views for views comment tests.'
|
||||||
package: Testing
|
package: Testing
|
||||||
# version: VERSION
|
version: VERSION
|
||||||
# core: 8.x
|
core: 8.x
|
||||||
dependencies:
|
dependencies:
|
||||||
- comment
|
- comment
|
||||||
- views
|
- views
|
||||||
|
|
||||||
# Information added by Drupal.org packaging script on 2018-03-07
|
|
||||||
version: '8.5.0'
|
|
||||||
core: '8.x'
|
|
||||||
project: 'drupal'
|
|
||||||
datestamp: 1520457826
|
|
||||||
|
|||||||
@@ -2,12 +2,6 @@ name: 'Configuration Manager'
|
|||||||
type: module
|
type: module
|
||||||
description: 'Allows administrators to manage configuration changes.'
|
description: 'Allows administrators to manage configuration changes.'
|
||||||
package: Core
|
package: Core
|
||||||
# version: VERSION
|
version: VERSION
|
||||||
# core: 8.x
|
core: 8.x
|
||||||
configure: config.sync
|
configure: config.sync
|
||||||
|
|
||||||
# Information added by Drupal.org packaging script on 2018-03-07
|
|
||||||
version: '8.5.0'
|
|
||||||
core: '8.x'
|
|
||||||
project: 'drupal'
|
|
||||||
datestamp: 1520457826
|
|
||||||
|
|||||||
@@ -1,16 +1,10 @@
|
|||||||
name: 'Test theme for configuration clash detection'
|
name: 'Test theme for configuration clash detection'
|
||||||
type: theme
|
type: theme
|
||||||
description: 'Test theme for configuration clash detection'
|
description: 'Test theme for configuration clash detection'
|
||||||
# version: VERSION
|
version: VERSION
|
||||||
base theme: classy
|
base theme: classy
|
||||||
# core: 8.x
|
core: 8.x
|
||||||
regions:
|
regions:
|
||||||
content: Content
|
content: Content
|
||||||
left: Left
|
left: Left
|
||||||
right: Right
|
right: Right
|
||||||
|
|
||||||
# Information added by Drupal.org packaging script on 2018-03-07
|
|
||||||
version: '8.5.0'
|
|
||||||
core: '8.x'
|
|
||||||
project: 'drupal'
|
|
||||||
datestamp: 1520457826
|
|
||||||
|
|||||||
+2
-8
@@ -3,13 +3,7 @@
|
|||||||
name: 'Config collection clash test module'
|
name: 'Config collection clash test module'
|
||||||
type: module
|
type: module
|
||||||
package: Testing
|
package: Testing
|
||||||
# version: VERSION
|
version: VERSION
|
||||||
# core: 8.x
|
core: 8.x
|
||||||
dependencies:
|
dependencies:
|
||||||
- config_collection_install_test
|
- config_collection_install_test
|
||||||
|
|
||||||
# Information added by Drupal.org packaging script on 2018-03-07
|
|
||||||
version: '8.5.0'
|
|
||||||
core: '8.x'
|
|
||||||
project: 'drupal'
|
|
||||||
datestamp: 1520457826
|
|
||||||
|
|||||||
+2
-8
@@ -1,11 +1,5 @@
|
|||||||
name: 'Configuration events test'
|
name: 'Configuration events test'
|
||||||
type: module
|
type: module
|
||||||
package: Testing
|
package: Testing
|
||||||
# version: VERSION
|
version: VERSION
|
||||||
# core: 8.x
|
core: 8.x
|
||||||
|
|
||||||
# Information added by Drupal.org packaging script on 2018-03-07
|
|
||||||
version: '8.5.0'
|
|
||||||
core: '8.x'
|
|
||||||
project: 'drupal'
|
|
||||||
datestamp: 1520457826
|
|
||||||
|
|||||||
+2
-8
@@ -1,11 +1,5 @@
|
|||||||
name: 'Configuration entity static cache test'
|
name: 'Configuration entity static cache test'
|
||||||
type: module
|
type: module
|
||||||
package: Testing
|
package: Testing
|
||||||
# version: VERSION
|
version: VERSION
|
||||||
# core: 8.x
|
core: 8.x
|
||||||
|
|
||||||
# Information added by Drupal.org packaging script on 2018-03-07
|
|
||||||
version: '8.5.0'
|
|
||||||
core: '8.x'
|
|
||||||
project: 'drupal'
|
|
||||||
datestamp: 1520457826
|
|
||||||
|
|||||||
@@ -1,11 +1,5 @@
|
|||||||
name: 'Configuration events test'
|
name: 'Configuration events test'
|
||||||
type: module
|
type: module
|
||||||
package: Testing
|
package: Testing
|
||||||
# version: VERSION
|
version: VERSION
|
||||||
# core: 8.x
|
core: 8.x
|
||||||
|
|
||||||
# Information added by Drupal.org packaging script on 2018-03-07
|
|
||||||
version: '8.5.0'
|
|
||||||
core: '8.x'
|
|
||||||
project: 'drupal'
|
|
||||||
datestamp: 1520457826
|
|
||||||
|
|||||||
@@ -1,11 +1,5 @@
|
|||||||
name: 'Configuration import test'
|
name: 'Configuration import test'
|
||||||
type: module
|
type: module
|
||||||
package: Testing
|
package: Testing
|
||||||
# version: VERSION
|
version: VERSION
|
||||||
# core: 8.x
|
core: 8.x
|
||||||
|
|
||||||
# Information added by Drupal.org packaging script on 2018-03-07
|
|
||||||
version: '8.5.0'
|
|
||||||
core: '8.x'
|
|
||||||
project: 'drupal'
|
|
||||||
datestamp: 1520457826
|
|
||||||
|
|||||||
+2
-8
@@ -1,11 +1,5 @@
|
|||||||
name: 'Config install dependency test'
|
name: 'Config install dependency test'
|
||||||
type: module
|
type: module
|
||||||
package: Testing
|
package: Testing
|
||||||
# version: VERSION
|
version: VERSION
|
||||||
# core: 8.x
|
core: 8.x
|
||||||
|
|
||||||
# Information added by Drupal.org packaging script on 2018-03-07
|
|
||||||
version: '8.5.0'
|
|
||||||
core: '8.x'
|
|
||||||
project: 'drupal'
|
|
||||||
datestamp: 1520457826
|
|
||||||
|
|||||||
+2
-8
@@ -1,11 +1,5 @@
|
|||||||
name: 'Config install double dependency test'
|
name: 'Config install double dependency test'
|
||||||
type: module
|
type: module
|
||||||
package: Testing
|
package: Testing
|
||||||
# version: VERSION
|
version: VERSION
|
||||||
# core: 8.x
|
core: 8.x
|
||||||
|
|
||||||
# Information added by Drupal.org packaging script on 2018-03-07
|
|
||||||
version: '8.5.0'
|
|
||||||
core: '8.x'
|
|
||||||
project: 'drupal'
|
|
||||||
datestamp: 1520457826
|
|
||||||
|
|||||||
+2
-8
@@ -1,13 +1,7 @@
|
|||||||
name: 'Configuration install fail test'
|
name: 'Configuration install fail test'
|
||||||
type: module
|
type: module
|
||||||
package: Testing
|
package: Testing
|
||||||
# version: VERSION
|
version: VERSION
|
||||||
# core: 8.x
|
core: 8.x
|
||||||
dependencies:
|
dependencies:
|
||||||
- config_test
|
- config_test
|
||||||
|
|
||||||
# Information added by Drupal.org packaging script on 2018-03-07
|
|
||||||
version: '8.5.0'
|
|
||||||
core: '8.x'
|
|
||||||
project: 'drupal'
|
|
||||||
datestamp: 1520457826
|
|
||||||
|
|||||||
@@ -1,13 +1,7 @@
|
|||||||
name: 'ConfigTest integration'
|
name: 'ConfigTest integration'
|
||||||
type: module
|
type: module
|
||||||
package: 'Testing'
|
package: 'Testing'
|
||||||
# version: VERSION
|
version: VERSION
|
||||||
# core: 8.x
|
core: 8.x
|
||||||
dependencies:
|
dependencies:
|
||||||
- config_test
|
- config_test
|
||||||
|
|
||||||
# Information added by Drupal.org packaging script on 2018-03-07
|
|
||||||
version: '8.5.0'
|
|
||||||
core: '8.x'
|
|
||||||
project: 'drupal'
|
|
||||||
datestamp: 1520457826
|
|
||||||
|
|||||||
+2
-8
@@ -1,11 +1,5 @@
|
|||||||
name: 'Config other module config'
|
name: 'Config other module config'
|
||||||
type: module
|
type: module
|
||||||
package: Testing
|
package: Testing
|
||||||
# version: VERSION
|
version: VERSION
|
||||||
# core: 8.x
|
core: 8.x
|
||||||
|
|
||||||
# Information added by Drupal.org packaging script on 2018-03-07
|
|
||||||
version: '8.5.0'
|
|
||||||
core: '8.x'
|
|
||||||
project: 'drupal'
|
|
||||||
datestamp: 1520457826
|
|
||||||
|
|||||||
+2
-8
@@ -1,15 +1,9 @@
|
|||||||
name: 'Configuration override integration test'
|
name: 'Configuration override integration test'
|
||||||
type: module
|
type: module
|
||||||
package: Testing
|
package: Testing
|
||||||
# version: VERSION
|
version: VERSION
|
||||||
# core: 8.x
|
core: 8.x
|
||||||
|
|
||||||
dependencies:
|
dependencies:
|
||||||
- block
|
- block
|
||||||
- block_test
|
- block_test
|
||||||
|
|
||||||
# Information added by Drupal.org packaging script on 2018-03-07
|
|
||||||
version: '8.5.0'
|
|
||||||
core: '8.x'
|
|
||||||
project: 'drupal'
|
|
||||||
datestamp: 1520457826
|
|
||||||
|
|||||||
@@ -1,15 +1,9 @@
|
|||||||
name: 'Configuration override test'
|
name: 'Configuration override test'
|
||||||
type: module
|
type: module
|
||||||
package: Testing
|
package: Testing
|
||||||
# version: VERSION
|
version: VERSION
|
||||||
# core: 8.x
|
core: 8.x
|
||||||
|
|
||||||
dependencies:
|
dependencies:
|
||||||
- block
|
- block
|
||||||
- block_content
|
- block_content
|
||||||
|
|
||||||
# Information added by Drupal.org packaging script on 2018-03-07
|
|
||||||
version: '8.5.0'
|
|
||||||
core: '8.x'
|
|
||||||
project: 'drupal'
|
|
||||||
datestamp: 1520457826
|
|
||||||
|
|||||||
@@ -1,12 +1,6 @@
|
|||||||
name: 'Configuration schema test'
|
name: 'Configuration schema test'
|
||||||
type: module
|
type: module
|
||||||
package: Testing
|
package: Testing
|
||||||
# version: VERSION
|
version: VERSION
|
||||||
# core: 8.x
|
core: 8.x
|
||||||
hidden: true
|
hidden: true
|
||||||
|
|
||||||
# Information added by Drupal.org packaging script on 2018-03-07
|
|
||||||
version: '8.5.0'
|
|
||||||
core: '8.x'
|
|
||||||
project: 'drupal'
|
|
||||||
datestamp: 1520457826
|
|
||||||
|
|||||||
@@ -1,11 +1,5 @@
|
|||||||
name: 'Configuration test'
|
name: 'Configuration test'
|
||||||
type: module
|
type: module
|
||||||
package: Testing
|
package: Testing
|
||||||
# version: VERSION
|
version: VERSION
|
||||||
# core: 8.x
|
core: 8.x
|
||||||
|
|
||||||
# Information added by Drupal.org packaging script on 2018-03-07
|
|
||||||
version: '8.5.0'
|
|
||||||
core: '8.x'
|
|
||||||
project: 'drupal'
|
|
||||||
datestamp: 1520457826
|
|
||||||
|
|||||||
@@ -1,12 +1,7 @@
|
|||||||
name: 'Configuration test languages'
|
name: 'Configuration test languages'
|
||||||
type: module
|
type: module
|
||||||
package: Testing
|
package: Testing
|
||||||
# version: VERSION
|
version: VERSION
|
||||||
# core: 8.x
|
core: 8.x
|
||||||
dependencies:
|
dependencies:
|
||||||
- config_test
|
- config_test
|
||||||
# Information added by Drupal.org packaging script on 2018-03-07
|
|
||||||
version: '8.5.0'
|
|
||||||
core: '8.x'
|
|
||||||
project: 'drupal'
|
|
||||||
datestamp: 1520457826
|
|
||||||
@@ -2,14 +2,8 @@ name: 'Configuration Translation'
|
|||||||
type: module
|
type: module
|
||||||
description: 'Provides a translation interface for configuration.'
|
description: 'Provides a translation interface for configuration.'
|
||||||
package: Multilingual
|
package: Multilingual
|
||||||
# version: VERSION
|
version: VERSION
|
||||||
# core: 8.x
|
core: 8.x
|
||||||
configure: config_translation.mapper_list
|
configure: config_translation.mapper_list
|
||||||
dependencies:
|
dependencies:
|
||||||
- locale
|
- locale
|
||||||
|
|
||||||
# Information added by Drupal.org packaging script on 2018-03-07
|
|
||||||
version: '8.5.0'
|
|
||||||
core: '8.x'
|
|
||||||
project: 'drupal'
|
|
||||||
datestamp: 1520457826
|
|
||||||
|
|||||||
+2
-8
@@ -2,14 +2,8 @@ name: 'Configuration Translation Test'
|
|||||||
description: 'Helpers to test the configuration translation system'
|
description: 'Helpers to test the configuration translation system'
|
||||||
type: module
|
type: module
|
||||||
package: Testing
|
package: Testing
|
||||||
# version: VERSION
|
version: VERSION
|
||||||
# core: 8.x
|
core: 8.x
|
||||||
dependencies:
|
dependencies:
|
||||||
- config_translation
|
- config_translation
|
||||||
- config_test
|
- config_test
|
||||||
|
|
||||||
# Information added by Drupal.org packaging script on 2018-03-07
|
|
||||||
version: '8.5.0'
|
|
||||||
core: '8.x'
|
|
||||||
project: 'drupal'
|
|
||||||
datestamp: 1520457826
|
|
||||||
|
|||||||
+2
-8
@@ -1,11 +1,5 @@
|
|||||||
name: 'Configuration Translation Test Theme'
|
name: 'Configuration Translation Test Theme'
|
||||||
type: theme
|
type: theme
|
||||||
description: 'Theme for testing the configuration translation mapper system'
|
description: 'Theme for testing the configuration translation mapper system'
|
||||||
# version: VERSION
|
version: VERSION
|
||||||
# core: 8.x
|
core: 8.x
|
||||||
|
|
||||||
# Information added by Drupal.org packaging script on 2018-03-07
|
|
||||||
version: '8.5.0'
|
|
||||||
core: '8.x'
|
|
||||||
project: 'drupal'
|
|
||||||
datestamp: 1520457826
|
|
||||||
|
|||||||
@@ -2,12 +2,6 @@ name: Contact
|
|||||||
type: module
|
type: module
|
||||||
description: 'Enables the use of both personal and site-wide contact forms.'
|
description: 'Enables the use of both personal and site-wide contact forms.'
|
||||||
package: Core
|
package: Core
|
||||||
# version: VERSION
|
version: VERSION
|
||||||
# core: 8.x
|
core: 8.x
|
||||||
configure: entity.contact_form.collection
|
configure: entity.contact_form.collection
|
||||||
|
|
||||||
# Information added by Drupal.org packaging script on 2018-03-07
|
|
||||||
version: '8.5.0'
|
|
||||||
core: '8.x'
|
|
||||||
project: 'drupal'
|
|
||||||
datestamp: 1520457826
|
|
||||||
|
|||||||
+2
-8
@@ -2,14 +2,8 @@ name: 'Contact test storage'
|
|||||||
type: module
|
type: module
|
||||||
description: 'Tests that contact messages can be stored.'
|
description: 'Tests that contact messages can be stored.'
|
||||||
package: Testing
|
package: Testing
|
||||||
# version: VERSION
|
version: VERSION
|
||||||
# core: 8.x
|
core: 8.x
|
||||||
dependencies:
|
dependencies:
|
||||||
- contact
|
- contact
|
||||||
- user
|
- user
|
||||||
|
|
||||||
# Information added by Drupal.org packaging script on 2018-03-07
|
|
||||||
version: '8.5.0'
|
|
||||||
core: '8.x'
|
|
||||||
project: 'drupal'
|
|
||||||
datestamp: 1520457826
|
|
||||||
|
|||||||
@@ -2,13 +2,7 @@ name: 'Contact test module'
|
|||||||
type: module
|
type: module
|
||||||
description: 'Contains test contact form.'
|
description: 'Contains test contact form.'
|
||||||
package: Testing
|
package: Testing
|
||||||
# version: VERSION
|
version: VERSION
|
||||||
# core: 8.x
|
core: 8.x
|
||||||
dependencies:
|
dependencies:
|
||||||
- contact
|
- contact
|
||||||
|
|
||||||
# Information added by Drupal.org packaging script on 2018-03-07
|
|
||||||
version: '8.5.0'
|
|
||||||
core: '8.x'
|
|
||||||
project: 'drupal'
|
|
||||||
datestamp: 1520457826
|
|
||||||
|
|||||||
@@ -2,15 +2,9 @@ name: 'Contact test views'
|
|||||||
type: module
|
type: module
|
||||||
description: 'Provides default views for views contact tests.'
|
description: 'Provides default views for views contact tests.'
|
||||||
package: Testing
|
package: Testing
|
||||||
# version: VERSION
|
version: VERSION
|
||||||
# core: 8.x
|
core: 8.x
|
||||||
dependencies:
|
dependencies:
|
||||||
- contact
|
- contact
|
||||||
- views
|
- views
|
||||||
- user
|
- user
|
||||||
|
|
||||||
# Information added by Drupal.org packaging script on 2018-03-07
|
|
||||||
version: '8.5.0'
|
|
||||||
core: '8.x'
|
|
||||||
project: 'drupal'
|
|
||||||
datestamp: 1520457826
|
|
||||||
|
|||||||
@@ -1,15 +1,9 @@
|
|||||||
name: 'Content Moderation'
|
name: 'Content Moderation'
|
||||||
type: module
|
type: module
|
||||||
description: 'Provides moderation states for content.'
|
description: 'Provides moderation states for content.'
|
||||||
# version: VERSION
|
version: VERSION
|
||||||
# core: 8.x
|
core: 8.x
|
||||||
package: Core
|
package: Core
|
||||||
configure: entity.workflow.collection
|
configure: entity.workflow.collection
|
||||||
dependencies:
|
dependencies:
|
||||||
- workflows
|
- workflows
|
||||||
|
|
||||||
# Information added by Drupal.org packaging script on 2018-03-07
|
|
||||||
version: '8.5.0'
|
|
||||||
core: '8.x'
|
|
||||||
project: 'drupal'
|
|
||||||
datestamp: 1520457826
|
|
||||||
|
|||||||
+2
-8
@@ -2,14 +2,8 @@ name: 'Content moderation test local task'
|
|||||||
type: module
|
type: module
|
||||||
description: 'Provides a local task for testing.'
|
description: 'Provides a local task for testing.'
|
||||||
package: Testing
|
package: Testing
|
||||||
# version: VERSION
|
version: VERSION
|
||||||
# core: 8.x
|
core: 8.x
|
||||||
dependencies:
|
dependencies:
|
||||||
- content_moderation
|
- content_moderation
|
||||||
- node
|
- node
|
||||||
|
|
||||||
# Information added by Drupal.org packaging script on 2018-03-07
|
|
||||||
version: '8.5.0'
|
|
||||||
core: '8.x'
|
|
||||||
project: 'drupal'
|
|
||||||
datestamp: 1520457826
|
|
||||||
|
|||||||
+2
-8
@@ -2,16 +2,10 @@ name: 'Content moderation test views'
|
|||||||
type: module
|
type: module
|
||||||
description: 'Provides default views for views Content moderation tests.'
|
description: 'Provides default views for views Content moderation tests.'
|
||||||
package: Testing
|
package: Testing
|
||||||
# version: VERSION
|
version: VERSION
|
||||||
# core: 8.x
|
core: 8.x
|
||||||
dependencies:
|
dependencies:
|
||||||
- content_moderation
|
- content_moderation
|
||||||
- node
|
- node
|
||||||
- views
|
- views
|
||||||
- entity_test
|
- entity_test
|
||||||
|
|
||||||
# Information added by Drupal.org packaging script on 2018-03-07
|
|
||||||
version: '8.5.0'
|
|
||||||
core: '8.x'
|
|
||||||
project: 'drupal'
|
|
||||||
datestamp: 1520457826
|
|
||||||
|
|||||||
@@ -4,12 +4,6 @@ description: 'Allows users to translate content entities.'
|
|||||||
dependencies:
|
dependencies:
|
||||||
- language
|
- language
|
||||||
package: Multilingual
|
package: Multilingual
|
||||||
# version: VERSION
|
version: VERSION
|
||||||
# core: 8.x
|
core: 8.x
|
||||||
configure: language.content_settings_page
|
configure: language.content_settings_page
|
||||||
|
|
||||||
# Information added by Drupal.org packaging script on 2018-03-07
|
|
||||||
version: '8.5.0'
|
|
||||||
core: '8.x'
|
|
||||||
project: 'drupal'
|
|
||||||
datestamp: 1520457826
|
|
||||||
|
|||||||
+2
-8
@@ -2,15 +2,9 @@ name: 'Content translation tests'
|
|||||||
type: module
|
type: module
|
||||||
description: 'Provides content translation tests.'
|
description: 'Provides content translation tests.'
|
||||||
package: Testing
|
package: Testing
|
||||||
# version: VERSION
|
version: VERSION
|
||||||
# core: 8.x
|
core: 8.x
|
||||||
dependencies:
|
dependencies:
|
||||||
- content_translation
|
- content_translation
|
||||||
- language
|
- language
|
||||||
- entity_test
|
- entity_test
|
||||||
|
|
||||||
# Information added by Drupal.org packaging script on 2018-03-07
|
|
||||||
version: '8.5.0'
|
|
||||||
core: '8.x'
|
|
||||||
project: 'drupal'
|
|
||||||
datestamp: 1520457826
|
|
||||||
|
|||||||
+2
-8
@@ -2,14 +2,8 @@ name: 'Content translation test views'
|
|||||||
type: module
|
type: module
|
||||||
description: 'Provides default views for views content translation tests.'
|
description: 'Provides default views for views content translation tests.'
|
||||||
package: Testing
|
package: Testing
|
||||||
# version: VERSION
|
version: VERSION
|
||||||
# core: 8.x
|
core: 8.x
|
||||||
dependencies:
|
dependencies:
|
||||||
- content_translation
|
- content_translation
|
||||||
- views
|
- views
|
||||||
|
|
||||||
# Information added by Drupal.org packaging script on 2018-03-07
|
|
||||||
version: '8.5.0'
|
|
||||||
core: '8.x'
|
|
||||||
project: 'drupal'
|
|
||||||
datestamp: 1520457826
|
|
||||||
|
|||||||
@@ -2,11 +2,5 @@ name: 'Contextual Links'
|
|||||||
type: module
|
type: module
|
||||||
description: 'Provides contextual links to perform actions related to elements on a page.'
|
description: 'Provides contextual links to perform actions related to elements on a page.'
|
||||||
package: Core
|
package: Core
|
||||||
# version: VERSION
|
version: VERSION
|
||||||
# core: 8.x
|
core: 8.x
|
||||||
|
|
||||||
# Information added by Drupal.org packaging script on 2018-03-07
|
|
||||||
version: '8.5.0'
|
|
||||||
core: '8.x'
|
|
||||||
project: 'drupal'
|
|
||||||
datestamp: 1520457826
|
|
||||||
|
|||||||
@@ -2,13 +2,7 @@ name: 'Contextual Test'
|
|||||||
type: module
|
type: module
|
||||||
description: 'Provides test contextual links.'
|
description: 'Provides test contextual links.'
|
||||||
package: Testing
|
package: Testing
|
||||||
# version: VERSION
|
version: VERSION
|
||||||
# core: 8.x
|
core: 8.x
|
||||||
dependencies:
|
dependencies:
|
||||||
- contextual
|
- contextual
|
||||||
|
|
||||||
# Information added by Drupal.org packaging script on 2018-03-07
|
|
||||||
version: '8.5.0'
|
|
||||||
core: '8.x'
|
|
||||||
project: 'drupal'
|
|
||||||
datestamp: 1520457826
|
|
||||||
|
|||||||
@@ -2,13 +2,7 @@ name: Datetime
|
|||||||
type: module
|
type: module
|
||||||
description: Defines datetime form elements and a datetime field type.
|
description: Defines datetime form elements and a datetime field type.
|
||||||
package: Field types
|
package: Field types
|
||||||
# version: VERSION
|
version: VERSION
|
||||||
# core: 8.x
|
core: 8.x
|
||||||
dependencies:
|
dependencies:
|
||||||
- field
|
- field
|
||||||
|
|
||||||
# Information added by Drupal.org packaging script on 2018-03-07
|
|
||||||
version: '8.5.0'
|
|
||||||
core: '8.x'
|
|
||||||
project: 'drupal'
|
|
||||||
datestamp: 1520457826
|
|
||||||
|
|||||||
@@ -2,13 +2,7 @@ name: 'Datetime test'
|
|||||||
type: module
|
type: module
|
||||||
description: 'Provides default views for tests.'
|
description: 'Provides default views for tests.'
|
||||||
package: Testing
|
package: Testing
|
||||||
# version: VERSION
|
version: VERSION
|
||||||
# core: 8.x
|
core: 8.x
|
||||||
dependencies:
|
dependencies:
|
||||||
- views
|
- views
|
||||||
|
|
||||||
# Information added by Drupal.org packaging script on 2018-03-07
|
|
||||||
version: '8.5.0'
|
|
||||||
core: '8.x'
|
|
||||||
project: 'drupal'
|
|
||||||
datestamp: 1520457826
|
|
||||||
|
|||||||
@@ -2,13 +2,7 @@ name: 'Datetime Range'
|
|||||||
type: module
|
type: module
|
||||||
description: 'Provides the ability to store end dates.'
|
description: 'Provides the ability to store end dates.'
|
||||||
package: Field types
|
package: Field types
|
||||||
# version: VERSION
|
version: VERSION
|
||||||
# core: 8.x
|
core: 8.x
|
||||||
dependencies:
|
dependencies:
|
||||||
- datetime
|
- datetime
|
||||||
|
|
||||||
# Information added by Drupal.org packaging script on 2018-03-07
|
|
||||||
version: '8.5.0'
|
|
||||||
core: '8.x'
|
|
||||||
project: 'drupal'
|
|
||||||
datestamp: 1520457826
|
|
||||||
|
|||||||
@@ -2,12 +2,6 @@ name: 'Database Logging'
|
|||||||
type: module
|
type: module
|
||||||
description: 'Logs and records system events to the database.'
|
description: 'Logs and records system events to the database.'
|
||||||
package: Core
|
package: Core
|
||||||
# version: VERSION
|
version: VERSION
|
||||||
# core: 8.x
|
core: 8.x
|
||||||
configure: system.logging_settings
|
configure: system.logging_settings
|
||||||
|
|
||||||
# Information added by Drupal.org packaging script on 2018-03-07
|
|
||||||
version: '8.5.0'
|
|
||||||
core: '8.x'
|
|
||||||
project: 'drupal'
|
|
||||||
datestamp: 1520457826
|
|
||||||
|
|||||||
@@ -2,14 +2,8 @@ name: 'Dblog test views'
|
|||||||
type: module
|
type: module
|
||||||
description: 'Provides default views for views dblog tests.'
|
description: 'Provides default views for views dblog tests.'
|
||||||
package: Testing
|
package: Testing
|
||||||
# version: VERSION
|
version: VERSION
|
||||||
# core: 8.x
|
core: 8.x
|
||||||
dependencies:
|
dependencies:
|
||||||
- dblog
|
- dblog
|
||||||
- views
|
- views
|
||||||
|
|
||||||
# Information added by Drupal.org packaging script on 2018-03-07
|
|
||||||
version: '8.5.0'
|
|
||||||
core: '8.x'
|
|
||||||
project: 'drupal'
|
|
||||||
datestamp: 1520457825
|
|
||||||
|
|||||||
@@ -2,11 +2,5 @@ name: Internal Dynamic Page Cache
|
|||||||
type: module
|
type: module
|
||||||
description: 'Caches pages for any user, handling dynamic content correctly.'
|
description: 'Caches pages for any user, handling dynamic content correctly.'
|
||||||
package: Core
|
package: Core
|
||||||
# version: VERSION
|
version: VERSION
|
||||||
# core: 8.x
|
core: 8.x
|
||||||
|
|
||||||
# Information added by Drupal.org packaging script on 2018-03-07
|
|
||||||
version: '8.5.0'
|
|
||||||
core: '8.x'
|
|
||||||
project: 'drupal'
|
|
||||||
datestamp: 1520457825
|
|
||||||
|
|||||||
+2
-8
@@ -2,11 +2,5 @@ name: 'Test Dynamic Page Cache'
|
|||||||
type: module
|
type: module
|
||||||
description: 'Provides test routes/responses for Dynamic Page Cache.'
|
description: 'Provides test routes/responses for Dynamic Page Cache.'
|
||||||
package: Testing
|
package: Testing
|
||||||
# version: VERSION
|
version: VERSION
|
||||||
# core: 8.x
|
core: 8.x
|
||||||
|
|
||||||
# Information added by Drupal.org packaging script on 2018-03-07
|
|
||||||
version: '8.5.0'
|
|
||||||
core: '8.x'
|
|
||||||
project: 'drupal'
|
|
||||||
datestamp: 1520457825
|
|
||||||
|
|||||||
@@ -2,15 +2,9 @@ name: 'Text Editor'
|
|||||||
type: module
|
type: module
|
||||||
description: 'Provides a means to associate text formats with text editor libraries such as WYSIWYGs or toolbars.'
|
description: 'Provides a means to associate text formats with text editor libraries such as WYSIWYGs or toolbars.'
|
||||||
package: Core
|
package: Core
|
||||||
# version: VERSION
|
version: VERSION
|
||||||
# core: 8.x
|
core: 8.x
|
||||||
dependencies:
|
dependencies:
|
||||||
- filter
|
- filter
|
||||||
- file
|
- file
|
||||||
configure: filter.admin_overview
|
configure: filter.admin_overview
|
||||||
|
|
||||||
# Information added by Drupal.org packaging script on 2018-03-07
|
|
||||||
version: '8.5.0'
|
|
||||||
core: '8.x'
|
|
||||||
project: 'drupal'
|
|
||||||
datestamp: 1520457825
|
|
||||||
|
|||||||
@@ -1,15 +1,9 @@
|
|||||||
name: 'Text Editor Private test'
|
name: 'Text Editor Private test'
|
||||||
type: module
|
type: module
|
||||||
description: 'Support module for the Text Editor Private module tests.'
|
description: 'Support module for the Text Editor Private module tests.'
|
||||||
# core: 8.x
|
core: 8.x
|
||||||
package: Testing
|
package: Testing
|
||||||
# version: VERSION
|
version: VERSION
|
||||||
dependencies:
|
dependencies:
|
||||||
- filter
|
- filter
|
||||||
- ckeditor
|
- ckeditor
|
||||||
|
|
||||||
# Information added by Drupal.org packaging script on 2018-03-07
|
|
||||||
version: '8.5.0'
|
|
||||||
core: '8.x'
|
|
||||||
project: 'drupal'
|
|
||||||
datestamp: 1520457825
|
|
||||||
|
|||||||
@@ -1,12 +1,6 @@
|
|||||||
name: 'Text Editor test'
|
name: 'Text Editor test'
|
||||||
type: module
|
type: module
|
||||||
description: 'Support module for the Text Editor module tests.'
|
description: 'Support module for the Text Editor module tests.'
|
||||||
# core: 8.x
|
core: 8.x
|
||||||
package: Testing
|
package: Testing
|
||||||
# version: VERSION
|
version: VERSION
|
||||||
|
|
||||||
# Information added by Drupal.org packaging script on 2018-03-07
|
|
||||||
version: '8.5.0'
|
|
||||||
core: '8.x'
|
|
||||||
project: 'drupal'
|
|
||||||
datestamp: 1520457825
|
|
||||||
|
|||||||
@@ -2,12 +2,6 @@ name: 'Entity Reference'
|
|||||||
type: module
|
type: module
|
||||||
description: 'Deprecated. All the functionality has been moved to Core.'
|
description: 'Deprecated. All the functionality has been moved to Core.'
|
||||||
package: Field types
|
package: Field types
|
||||||
# version: VERSION
|
version: VERSION
|
||||||
# core: 8.x
|
core: 8.x
|
||||||
hidden: true
|
hidden: true
|
||||||
|
|
||||||
# Information added by Drupal.org packaging script on 2018-03-07
|
|
||||||
version: '8.5.0'
|
|
||||||
core: '8.x'
|
|
||||||
project: 'drupal'
|
|
||||||
datestamp: 1520457825
|
|
||||||
|
|||||||
@@ -2,11 +2,5 @@ name: Field
|
|||||||
type: module
|
type: module
|
||||||
description: 'Field API to add fields to entities like nodes and users.'
|
description: 'Field API to add fields to entities like nodes and users.'
|
||||||
package: Core
|
package: Core
|
||||||
# version: VERSION
|
version: VERSION
|
||||||
# core: 8.x
|
core: 8.x
|
||||||
|
|
||||||
# Information added by Drupal.org packaging script on 2018-03-07
|
|
||||||
version: '8.5.0'
|
|
||||||
core: '8.x'
|
|
||||||
project: 'drupal'
|
|
||||||
datestamp: 1520457825
|
|
||||||
|
|||||||
@@ -1,14 +1,8 @@
|
|||||||
name: 'Field Plugins Test'
|
name: 'Field Plugins Test'
|
||||||
type: module
|
type: module
|
||||||
description: 'Support module for the field and entity display tests.'
|
description: 'Support module for the field and entity display tests.'
|
||||||
# core: 8.x
|
core: 8.x
|
||||||
package: Testing
|
package: Testing
|
||||||
# version: VERSION
|
version: VERSION
|
||||||
dependencies:
|
dependencies:
|
||||||
- text
|
- text
|
||||||
|
|
||||||
# Information added by Drupal.org packaging script on 2018-03-07
|
|
||||||
version: '8.5.0'
|
|
||||||
core: '8.x'
|
|
||||||
project: 'drupal'
|
|
||||||
datestamp: 1520457825
|
|
||||||
|
|||||||
@@ -1,14 +1,8 @@
|
|||||||
name: 'Field API Test'
|
name: 'Field API Test'
|
||||||
type: module
|
type: module
|
||||||
description: 'Support module for the Field API tests.'
|
description: 'Support module for the Field API tests.'
|
||||||
# core: 8.x
|
core: 8.x
|
||||||
package: Testing
|
package: Testing
|
||||||
# version: VERSION
|
version: VERSION
|
||||||
dependencies:
|
dependencies:
|
||||||
- entity_test
|
- entity_test
|
||||||
|
|
||||||
# Information added by Drupal.org packaging script on 2018-03-07
|
|
||||||
version: '8.5.0'
|
|
||||||
core: '8.x'
|
|
||||||
project: 'drupal'
|
|
||||||
datestamp: 1520457825
|
|
||||||
|
|||||||
+2
-8
@@ -1,14 +1,8 @@
|
|||||||
name: 'Boolean field Test'
|
name: 'Boolean field Test'
|
||||||
type: module
|
type: module
|
||||||
description: 'Support module for the field and entity display tests.'
|
description: 'Support module for the field and entity display tests.'
|
||||||
# core: 8.x
|
core: 8.x
|
||||||
package: Testing
|
package: Testing
|
||||||
# version: VERSION
|
version: VERSION
|
||||||
dependencies:
|
dependencies:
|
||||||
- field
|
- field
|
||||||
|
|
||||||
# Information added by Drupal.org packaging script on 2018-03-07
|
|
||||||
version: '8.5.0'
|
|
||||||
core: '8.x'
|
|
||||||
project: 'drupal'
|
|
||||||
datestamp: 1520457825
|
|
||||||
|
|||||||
@@ -1,12 +1,6 @@
|
|||||||
name: 'Field API configuration tests'
|
name: 'Field API configuration tests'
|
||||||
type: module
|
type: module
|
||||||
description: 'Support module for the Field API configuration tests.'
|
description: 'Support module for the Field API configuration tests.'
|
||||||
# core: 8.x
|
core: 8.x
|
||||||
package: Testing
|
package: Testing
|
||||||
# version: VERSION
|
version: VERSION
|
||||||
|
|
||||||
# Information added by Drupal.org packaging script on 2018-03-07
|
|
||||||
version: '8.5.0'
|
|
||||||
core: '8.x'
|
|
||||||
project: 'drupal'
|
|
||||||
datestamp: 1520457825
|
|
||||||
|
|||||||
@@ -2,13 +2,7 @@ name: 'Field test views'
|
|||||||
type: module
|
type: module
|
||||||
description: 'Provides default views for views field tests.'
|
description: 'Provides default views for views field tests.'
|
||||||
package: Testing
|
package: Testing
|
||||||
# version: VERSION
|
version: VERSION
|
||||||
# core: 8.x
|
core: 8.x
|
||||||
dependencies:
|
dependencies:
|
||||||
- views
|
- views
|
||||||
|
|
||||||
# Information added by Drupal.org packaging script on 2018-03-07
|
|
||||||
version: '8.5.0'
|
|
||||||
core: '8.x'
|
|
||||||
project: 'drupal'
|
|
||||||
datestamp: 1520457825
|
|
||||||
|
|||||||
+2
-8
@@ -1,15 +1,9 @@
|
|||||||
name: 'Field Third Party Settings Test'
|
name: 'Field Third Party Settings Test'
|
||||||
type: module
|
type: module
|
||||||
description: 'Support module for the Field API tests.'
|
description: 'Support module for the Field API tests.'
|
||||||
# core: 8.x
|
core: 8.x
|
||||||
package: Testing
|
package: Testing
|
||||||
# version: VERSION
|
version: VERSION
|
||||||
dependencies:
|
dependencies:
|
||||||
- entity_test
|
- entity_test
|
||||||
- field_test
|
- field_test
|
||||||
|
|
||||||
# Information added by Drupal.org packaging script on 2018-03-07
|
|
||||||
version: '8.5.0'
|
|
||||||
core: '8.x'
|
|
||||||
project: 'drupal'
|
|
||||||
datestamp: 1520457825
|
|
||||||
|
|||||||
@@ -1,15 +1,9 @@
|
|||||||
name: 'Field Timestamp Test'
|
name: 'Field Timestamp Test'
|
||||||
type: module
|
type: module
|
||||||
description: 'Support module for the Timestamp field item test.'
|
description: 'Support module for the Timestamp field item test.'
|
||||||
# core: 8.x
|
core: 8.x
|
||||||
package: Testing
|
package: Testing
|
||||||
# version: VERSION
|
version: VERSION
|
||||||
dependencies:
|
dependencies:
|
||||||
- entity_test
|
- entity_test
|
||||||
- field
|
- field
|
||||||
|
|
||||||
# Information added by Drupal.org packaging script on 2018-03-07
|
|
||||||
version: '8.5.0'
|
|
||||||
core: '8.x'
|
|
||||||
project: 'drupal'
|
|
||||||
datestamp: 1520457825
|
|
||||||
|
|||||||
@@ -2,13 +2,7 @@ name: 'Field Layout'
|
|||||||
type: module
|
type: module
|
||||||
description: 'Adds layout capabilities to the Field UI.'
|
description: 'Adds layout capabilities to the Field UI.'
|
||||||
package: Core (Experimental)
|
package: Core (Experimental)
|
||||||
# version: VERSION
|
version: VERSION
|
||||||
# core: 8.x
|
core: 8.x
|
||||||
dependencies:
|
dependencies:
|
||||||
- layout_discovery
|
- layout_discovery
|
||||||
|
|
||||||
# Information added by Drupal.org packaging script on 2018-03-07
|
|
||||||
version: '8.5.0'
|
|
||||||
core: '8.x'
|
|
||||||
project: 'drupal'
|
|
||||||
datestamp: 1520457825
|
|
||||||
|
|||||||
+2
-8
@@ -1,14 +1,8 @@
|
|||||||
name: 'Field Layout test'
|
name: 'Field Layout test'
|
||||||
type: module
|
type: module
|
||||||
description: 'Support module for Field Layout tests.'
|
description: 'Support module for Field Layout tests.'
|
||||||
# core: 8.x
|
core: 8.x
|
||||||
package: Testing
|
package: Testing
|
||||||
# version: VERSION
|
version: VERSION
|
||||||
dependencies:
|
dependencies:
|
||||||
- entity_test
|
- entity_test
|
||||||
|
|
||||||
# Information added by Drupal.org packaging script on 2018-03-07
|
|
||||||
version: '8.5.0'
|
|
||||||
core: '8.x'
|
|
||||||
project: 'drupal'
|
|
||||||
datestamp: 1520457825
|
|
||||||
|
|||||||
@@ -2,13 +2,7 @@ name: 'Field UI'
|
|||||||
type: module
|
type: module
|
||||||
description: 'User interface for the Field API.'
|
description: 'User interface for the Field API.'
|
||||||
package: Core
|
package: Core
|
||||||
# version: VERSION
|
version: VERSION
|
||||||
# core: 8.x
|
core: 8.x
|
||||||
dependencies:
|
dependencies:
|
||||||
- field
|
- field
|
||||||
|
|
||||||
# Information added by Drupal.org packaging script on 2018-03-07
|
|
||||||
version: '8.5.0'
|
|
||||||
core: '8.x'
|
|
||||||
project: 'drupal'
|
|
||||||
datestamp: 1520457825
|
|
||||||
|
|||||||
@@ -1,12 +1,6 @@
|
|||||||
name: 'Field UI test'
|
name: 'Field UI test'
|
||||||
type: module
|
type: module
|
||||||
description: 'Support module for Field UI tests.'
|
description: 'Support module for Field UI tests.'
|
||||||
# core: 8.x
|
core: 8.x
|
||||||
package: Testing
|
package: Testing
|
||||||
# version: VERSION
|
version: VERSION
|
||||||
|
|
||||||
# Information added by Drupal.org packaging script on 2018-03-07
|
|
||||||
version: '8.5.0'
|
|
||||||
core: '8.x'
|
|
||||||
project: 'drupal'
|
|
||||||
datestamp: 1520457825
|
|
||||||
|
|||||||
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user