Browse Source

Merge pull request #720 from whikloj/7.x-ISLANDORA-2424

Allow PHP 5.3.3 to fail
pull/724/head
Diego Pino Navarro 5 years ago committed by GitHub
parent
commit
e15544f210
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 13
      .travis.yml
  2. 2
      README.md
  3. 8
      includes/tuque_wrapper.inc
  4. 11
      islandora.install
  5. 2
      islandora.module

13
.travis.yml

@ -17,6 +17,19 @@ matrix:
- php: 5.3.3 - php: 5.3.3
dist: precise dist: precise
env: FEDORA_VERSION="3.8.1" env: FEDORA_VERSION="3.8.1"
allow_failures:
- php: 5.3.3
dist: precise
env: FEDORA_VERSION="3.5"
- php: 5.3.3
dist: precise
env: FEDORA_VERSION="3.6.2"
- php: 5.3.3
dist: precise
env: FEDORA_VERSION="3.7.0"
- php: 5.3.3
dist: precise
env: FEDORA_VERSION="3.8.1"
php: php:
- 5.4 - 5.4
- 5.5 - 5.5

2
README.md

@ -69,8 +69,6 @@ Further documentation for this module is available at [our documentation wiki](h
## Troubleshooting/Issues ## Troubleshooting/Issues
NOTE: There has been a function signature change for the `ingestDatastream` function within Tuque which will be deprecated after the 7.x-1.10 release. To read about it in detail please see the [JIRA ticket](https://jira.duraspace.org/browse/ISLANDORA-1995). For the time being there is a warning stating that this will become deprecated and that code that utilizes this specific behavior should be updated. Once this code is updated the `islandora_deprecation_return_false_when_datastream_exists` variable may be set to FALSE so the warning no longer displays. An example for doing this with drush: `drush vset islandora_deprecation_return_false_when_datastream_exists FALSE`.
Having problems or solved a problem? Check out the Islandora google groups for a solution. Having problems or solved a problem? Check out the Islandora google groups for a solution.
* [Islandora Group](https://groups.google.com/forum/?hl=en&fromgroups#!forum/islandora) * [Islandora Group](https://groups.google.com/forum/?hl=en&fromgroups#!forum/islandora)

8
includes/tuque_wrapper.inc

@ -253,14 +253,6 @@ class IslandoraFedoraObject extends FedoraObject {
return $ret; return $ret;
} }
catch (Exception $e) { catch (Exception $e) {
if ($e instanceof DatastreamExistsException && variable_get('islandora_deprecation_return_false_when_datastream_exists', TRUE)) {
$message = format_string('The datastream @dsid already exists on the object: @pid. As of 7.x-1.10 the function signature for ingestDatastream will be changed from returning FALSE on failure to throwing an exception.', array(
'@dsid' => $datastream->id,
'@pid' => $object->id,
));
trigger_error(filter_xss($message), E_USER_DEPRECATED);
return FALSE;
}
watchdog('islandora', 'Failed to ingest datastream @dsid on object: @pid</br>code: @code<br/>message: @msg', array( watchdog('islandora', 'Failed to ingest datastream @dsid on object: @pid</br>code: @code<br/>message: @msg', array(
'@pid' => $object->id, '@pid' => $object->id,
'@dsid' => $datastream->id, '@dsid' => $datastream->id,

11
islandora.install

@ -133,3 +133,14 @@ function islandora_update_7001(&$sandbox) {
$t = get_t(); $t = get_t();
return $t("Islandora database updates complete"); return $t("Islandora database updates complete");
} }
/**
* Implements hook_update_N().
*
* Removing old variable around changes to ingestDatastream signature.
* These changes are complete and deprecation warnings are removed.
*/
function islandora_update_7002() {
// Removing as the deprecation has been removed.
variable_del('islandora_deprecation_return_false_when_datastream_exists');
}

2
islandora.module

@ -663,7 +663,7 @@ function islandora_i18n_string_info() {
} }
/** /**
* Implements islandora_i18n_string_list(). * Implements hook_i18n_string_list().
*/ */
function islandora_i18n_string_list($group) { function islandora_i18n_string_list($group) {
if ($group == 'islandora') { if ($group == 'islandora') {

Loading…
Cancel
Save