forked from alxp/islandora
-
Notifications
You must be signed in to change notification settings - Fork 119
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'Islandora:2.x' into filter-by-tid
- Loading branch information
Showing
27 changed files
with
693 additions
and
116 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,5 @@ | ||
broker_url: 'tcp://localhost:61613' | ||
jwt_expiry: '+2 hour' | ||
gemini_url: '' | ||
delete_media_and_files: TRUE | ||
gemini_pseudo_bundles: [] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
.container .islandora-media-items { | ||
margin: 0; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
islandora: | ||
version: VERSION | ||
css: | ||
theme: | ||
css/islandora.css: {} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
<?php | ||
|
||
/** | ||
* @file | ||
* Post updates. | ||
*/ | ||
|
||
/** | ||
* Set default value for delete_media_and_files field in settings. | ||
*/ | ||
function islandora_post_update_delete_media_and_files() { | ||
$config_factory = \Drupal::configFactory(); | ||
$config = $config_factory->getEditable('islandora.settings'); | ||
$config->set('delete_media_and_files', TRUE); | ||
$config->save(TRUE); | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
21 changes: 20 additions & 1 deletion
21
modules/islandora_core_feature/config/install/filehash.settings.yml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,24 @@ | ||
algos: | ||
sha1: sha1 | ||
blake2b_128: '0' | ||
blake2b_160: '0' | ||
blake2b_224: '0' | ||
blake2b_256: '0' | ||
blake2b_384: '0' | ||
blake2b_512: '0' | ||
md5: '0' | ||
sha1: sha1 | ||
sha224: '0' | ||
sha256: '0' | ||
sha384: '0' | ||
sha512_224: '0' | ||
sha512_256: '0' | ||
sha512: '0' | ||
sha3_224: '0' | ||
sha3_256: '0' | ||
sha3_384: '0' | ||
sha3_512: '0' | ||
dedupe: 0 | ||
rehash: true | ||
original: true | ||
dedupe_original: false | ||
mime_types: { } |
Oops, something went wrong.