Skip to content

Commit

Permalink
Merge pull request #117 from rosiel/coi
Browse files Browse the repository at this point in the history
Add Config Override Inspector (COI).
  • Loading branch information
aOelschlager authored Nov 17, 2023
2 parents 4bc74d6 + ac390b1 commit f9c671e
Show file tree
Hide file tree
Showing 9 changed files with 129 additions and 12 deletions.
1 change: 1 addition & 0 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,7 @@
"drupal/better_exposed_filters": "^6.0",
"drupal/bibcite": "^2.0@beta",
"drupal/citation_select": "^1.0@beta",
"drupal/coi": "^4.0",
"drupal/config_update": "^2.0@alpha",
"drupal/context": "^5@RC",
"drupal/controlled_access_terms": "^2",
Expand Down
103 changes: 102 additions & 1 deletion composer.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

13 changes: 13 additions & 0 deletions config/sync/coi.settings.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
_core:
default_config_hash: bO--lQ6KgJ0tb7_TBJybomU61yvfcSyI5qRzOxpLFvE
override_behavior: disable
message:
enabled: true
template: 'This field is overridden by settings.php configuration.'
overridden_value:
enabled: true
element: true
secrets: false
styling:
selectors: true
default: true
2 changes: 2 additions & 0 deletions config/sync/core.extension.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,10 @@ module:
breakpoint: 0
citation_select: 0
ckeditor5: 0
coi: 0
comment: 0
config: 0
config_override_core_fields: 0
config_update: 0
contact: 0
context: 0
Expand Down
4 changes: 2 additions & 2 deletions config/sync/search_api_solr.solr_field_type.text_en_6_0_0.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@ field_type:
name: text_en
class: solr.TextField
positionIncrementGap: 100
storeOffsetsWithPositions: true
analyzers:
-
type: index
Expand Down Expand Up @@ -90,11 +91,11 @@ field_type:
language: English
-
class: solr.RemoveDuplicatesTokenFilterFactory
storeOffsetsWithPositions: true
unstemmed_field_type:
name: text_unstemmed_en
class: solr.TextField
positionIncrementGap: 100
storeOffsetsWithPositions: true
analyzers:
-
type: index
Expand Down Expand Up @@ -163,7 +164,6 @@ unstemmed_field_type:
class: solr.LowerCaseFilterFactory
-
class: solr.RemoveDuplicatesTokenFilterFactory
storeOffsetsWithPositions: true
spellcheck_field_type: null
collated_field_type:
name: collated_en
Expand Down
4 changes: 2 additions & 2 deletions config/sync/search_api_solr.solr_field_type.text_en_7_0_0.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@ field_type:
name: text_en
class: solr.TextField
positionIncrementGap: 100
storeOffsetsWithPositions: true
analyzers:
-
type: index
Expand Down Expand Up @@ -92,11 +93,11 @@ field_type:
language: English
-
class: solr.RemoveDuplicatesTokenFilterFactory
storeOffsetsWithPositions: true
unstemmed_field_type:
name: text_unstemmed_en
class: solr.TextField
positionIncrementGap: 100
storeOffsetsWithPositions: true
analyzers:
-
type: index
Expand Down Expand Up @@ -167,7 +168,6 @@ unstemmed_field_type:
class: solr.LowerCaseFilterFactory
-
class: solr.RemoveDuplicatesTokenFilterFactory
storeOffsetsWithPositions: true
spellcheck_field_type: null
collated_field_type:
name: collated_en
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@ field_type:
name: text_phonetic_en
class: solr.TextField
positionIncrementGap: 100
storeOffsetsWithPositions: true
analyzers:
-
type: index
Expand Down Expand Up @@ -83,7 +84,6 @@ field_type:
concat: true
-
class: solr.RemoveDuplicatesTokenFilterFactory
storeOffsetsWithPositions: true
unstemmed_field_type: null
spellcheck_field_type: null
collated_field_type: null
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -58,9 +58,9 @@ field_type:
filters:
-
class: solr.SynonymFilterFactory
ignoreCase: true
synonyms: synonyms_und.txt
expand: true
ignoreCase: true
-
class: solr.StopFilterFactory
ignoreCase: true
Expand Down Expand Up @@ -190,8 +190,6 @@ solr_configs:
text_files:
stopwords: |
synonyms: |
drupal, durpal
protwords: |
accents: |
Expand Down Expand Up @@ -343,3 +341,5 @@ text_files:
"\uFB05" => "st"
# st => st
"\uFB06" => "st"
synonyms: |
drupal, durpal
Original file line number Diff line number Diff line change
Expand Up @@ -60,9 +60,9 @@ field_type:
filters:
-
class: solr.SynonymGraphFilterFactory
ignoreCase: true
synonyms: synonyms_und.txt
expand: true
ignoreCase: true
-
class: solr.StopFilterFactory
ignoreCase: true
Expand Down Expand Up @@ -192,8 +192,6 @@ solr_configs:
text_files:
stopwords: |
synonyms: |
drupal, durpal
protwords: |
accents: |
Expand Down Expand Up @@ -345,3 +343,5 @@ text_files:
"\uFB05" => "st"
# st => st
"\uFB06" => "st"
synonyms: |
drupal, durpal

0 comments on commit f9c671e

Please sign in to comment.