This file contains hidden or 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
<?php | |
namespace GM\VirtualPages; | |
/** | |
* @author Giuseppe Mazzapica <[email protected]> | |
* @license http://opensource.org/licenses/MIT MIT | |
*/ | |
class Controller implements ControllerInterface { | |
private $pages; |
This file contains hidden or 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
#!/usr/bin/env bash | |
# | |
# Moves DSpace collections from one community to another. Takes a list of | |
# handles, then resolves their internal resource_id's and reassigns the | |
# community relationship. Assumed to be running as `postgres` Linux user. | |
# | |
# I don't think reindexing is required, because no metadata has changed, | |
# and therefore no search or browse indexes need to be updated. You might | |
# need to clear the Cocoon cache to see the updated breadcrumb trails. | |
# |