Update to Drupal 8.0-dev-2015-11-17. Commits through da81cd220, Tue Nov 17 15:53:49 2015 +0000, Issue #2617224 by Wim Leers: Move around/fix some documentation.
This commit is contained in:
parent
4afb23bbd3
commit
7784f4c23d
929 changed files with 19798 additions and 5304 deletions
|
@ -12,6 +12,7 @@ source:
|
|||
- search_cron_limit
|
||||
- search_tag_weights
|
||||
- search_and_or_limit
|
||||
- search_default_module
|
||||
process:
|
||||
'index/minimum_word_size': minimum_word_size
|
||||
'index/overlap_cjk': overlap_cjk
|
||||
|
@ -19,6 +20,13 @@ process:
|
|||
'index/tag_weights': search_tag_weights
|
||||
and_or_limit: search_and_or_limit
|
||||
logging: 'constants/status'
|
||||
default_page:
|
||||
plugin: static_map
|
||||
source:
|
||||
- search_default_module
|
||||
map:
|
||||
node: node_search
|
||||
user: user_search
|
||||
destination:
|
||||
plugin: config
|
||||
config_name: search.settings
|
||||
|
|
|
@ -31,6 +31,7 @@ class MigrateSearchSettingsTest extends MigrateDrupal7TestBase {
|
|||
*/
|
||||
public function testSearchSettings() {
|
||||
$config = $this->config('search.settings');
|
||||
$this->assertIdentical('node_search', $config->get('default_page'));
|
||||
$this->assertIdentical(4, $config->get('index.minimum_word_size'));
|
||||
$this->assertTrue($config->get('index.overlap_cjk'));
|
||||
$this->assertIdentical(100, $config->get('index.cron_limit'));
|
||||
|
|
Reference in a new issue