This problem was fixed. Thanks to Steve Breker for finding the problem.
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
| diff --git a/lib/filter/QubitSettingsFilter.class.php b/lib/filter/QubitSettingsFilter.class.php | |
| index 8894026..6e091fc 100644 | |
| --- a/lib/filter/QubitSettingsFilter.class.php | |
| +++ b/lib/filter/QubitSettingsFilter.class.php | |
| @@ -27,7 +27,34 @@ class QubitSettingsFilter extends sfFilter | |
| // Overwrite/populate settings into sfConfig object | |
| sfConfig::add(QubitSetting::getSettingsArray()); | |
| + // Load custom taxonomies | |
| + $this->loadCustomTaxonomies(); |
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
| import shlex | |
| s = "name=peanut priv=with\_underscore.*:ALL" | |
| # Ansible method | |
| print shlex.split(s) | |
| # Trying something different | |
| lex = shlex.shlex(s, posix=True) | |
| lex.whitespace_split = True |
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
| diff --git a/apps/qubit/modules/user/actions/indexAction.class.php b/apps/qubit/modules/user/actions/indexAction.class.php | |
| index 806c432..57dc69f 100644 | |
| --- a/apps/qubit/modules/user/actions/indexAction.class.php | |
| +++ b/apps/qubit/modules/user/actions/indexAction.class.php | |
| @@ -32,6 +32,6 @@ class UserIndexAction extends sfAction | |
| } | |
| } | |
| - $this->amountOfNotes = count($this->resource->notes); | |
| + $this->amountOfNotes = count($this->resource->getNotes()); |
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
| data/fixtures/settings.yml | 7 +- | |
| lib/task/migrate/arUpgradeSqlTask.class.php | 118 +++++++++++++++++++- | |
| lib/task/migrate/arUpgrader130.class.php | 49 -------- | |
| .../migrate/migrations/arMigration0093.class.php | 50 +++++++++ | |
| .../migrate/migrations/arMigration0094.class.php | 49 ++++++++ | |
| 5 files changed, 220 insertions(+), 53 deletions(-) | |
| diff --git a/data/fixtures/settings.yml b/data/fixtures/settings.yml | |
| index e292b26..924ac85 100644 | |
| --- a/data/fixtures/settings.yml |
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 | |
| /* | |
| * This file is part of the AccesstoMemory (AtoM) software. | |
| * | |
| * AccesstoMemory (AtoM) is free software: you can redistribute it and/or modify | |
| * it under the terms of the GNU Affero General Public License as published by | |
| * the Free Software Foundation, either version 3 of the License, or | |
| * (at your option) any later version. | |
| * |
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 | |
| /* | |
| * This file is part of the AccesstoMemory (AtoM) software. | |
| * | |
| * AccesstoMemory (AtoM) is free software: you can redistribute it and/or modify | |
| * it under the terms of the GNU Affero General Public License as published by | |
| * the Free Software Foundation, either version 3 of the License, or | |
| * (at your option) any later version. | |
| * |
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 | |
| // See https://developers.google.com/maps/documentation/geocoding | |
| // Thanks Google! | |
| foreach (QubitRepository::getAll() as $item) | |
| { | |
| if (null !== $contact = $item->getPrimaryContact()) | |
| { | |
| $address = $contact->streetAddress . ' ' . $contact->postalCode . ' ' . $contact->countryCode; |
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
| M plugins/qtElasticSearchPlugin/config/qtElasticSearchPluginConfiguration.class.php | |
| M plugins/qtElasticSearchPlugin/lib/model/QubitTermMapping.class.php | |
| M plugins/qtElasticSearchPlugin/lib/model/QubitActorMapping.class.php | |
| M plugins/qtElasticSearchPlugin/lib/model/QubitInformationObjectMapping.class.php | |
| M plugins/qtElasticSearchPlugin/lib/model/QubitPdoActor.class.php | |
| M plugins/qtElasticSearchPlugin/lib/model/QubitRepositoryMapping.class.php | |
| M plugins/qtElasticSearchPlugin/lib/model/QubitContactInformationMapping.class.php | |
| M plugins/qtElasticSearchPlugin/lib/model/QubitPdoInformationObject.class.php | |
| M plugins/qtElasticSearchPlugin/lib/qtElasticSearchPlugin.class.php | |
| M plugins/qtElasticSearchPlugin/lib/QubitMapping.class.php |
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
| <dublincore xmlns:dcterms="http://purl.org/dc/terms/" xsi:schemaLocation="http://purl.org/dc/terms/ http://dublincore.org/schemas/xmls/qdc/2008/02/11/dcterms.xsd"> | |
| <dcterms:title>Policy Development records</dcterms:title> | |
| <dcterms:creator/> | |
| <dcterms:subject/> | |
| <dcterms:description>Records documenting rules and procedures for developing, authoring and approving corporate policies.</dcterms:description> | |
| <dcterms:publisher/> | |
| <dcterms:contributor/> | |
| <dcterms:date>08-19-2008/01-02-2010</dcterms:date> | |
| <dcterms:type/> | |
| <dcterms:format> </dcterms:format> |