forked from egbot/Symbiota
-
Notifications
You must be signed in to change notification settings - Fork 53
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Hotfix 2023 06 19 (#518) * Taxonomy Harvesting minor adjustments - Check resources before interpretation and again after interpretation - If name is matched within one recourse, skip the unnecessary step to check other resources - Synchronize display text * Refactor ImageLocalProcessor and resolve various bugs - Provide support for input file to include medium and thumbnail image derivatives - Expand Image Map processing to allow mapping file to include any images table field name - Expand images insert function to handle any valid field found within images table - Merge duplicate actions into shared private functions - MD5 hash large version of image input file, but don't overwrite hash if supplied by source, unless image is not modified by upload scripts - Handle BOM characters at start of csv file. - Trim header elements for testing column names. - Enforce default action of accepting derivative urls supplied within a csv image map file - Improve uriExists function - Make sure to remove staging images * Occurrence Public Display page - Allow occurrence archive (deleted occurrences) to be searchable by GUID (occurrenceID, recordID), thus reporting when a record is deleted * Checklist multi-polygon map Issue - Multipolygons defined within a checklist fail to map within both simple and dynamic maps * Suppress geo ref index during stats update * Occurrence Reviewer bug - Fix for field name and start and end date filter variables failing to be carried forward when advancing to pages beyond 1000 records #335 * Collection metadata editor bug - Reset contact array to ensure that JSON string is standardized as a non-associated array Resolves issue: #487 --------- Co-authored-by: Greg Post <[email protected]> * DwcArchivePublishing - Material Sample publishing bug * hotfix - DwC-A upload Scientific name failed to be built when taxonomic data is supplied by by individual components (e.g. genus, specificEpithet, infraSpecificEpithet) * hotfix - Taxonomic autocomplete - Allow autocomplete handle apostrophes - Update code version * hotfix - checklist display - Bug fix that interfered with display of linked voucher images * hotfix - Checklist Manager issue - Checklist taxon search autocomplete failed to include higher taxa (parent data) * hotfix - Taxonomy Harvester bug - Fdex harvest failed to grab parents when source was not "Index Fungorum" * Specimen Upload tool adjustment - version data changes via file upload is set as the default action only when a collection is live managed * Occurrence Search Harvest adjustment - Reworked search form validation to be more efficient - Fix error with occurrence attribute checkbox/radio failing to be recognized as selected elements --------- Co-authored-by: Greg Post <[email protected]>
- Loading branch information
1 parent
8b35321
commit 1af38ae
Showing
15 changed files
with
107 additions
and
156 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,13 +1,13 @@ | ||
<?php | ||
include_once('../../config/symbini.php'); | ||
include_once($SERVER_ROOT.'/classes/ChecklistManager.php'); | ||
header("Content-Type: text/html; charset=".$CHARSET); | ||
header('Content-Type: text/html; charset='.$CHARSET); | ||
|
||
$clid = $_REQUEST['clid']; | ||
$term = $_REQUEST['term']; | ||
$deep = (isset($_REQUEST['deep'])?$_REQUEST['deep']:0); | ||
|
||
$clManager = new ChecklistManager(); | ||
$retArr = $clManager->getTaxonSearch($term,$clid,$deep); | ||
$retArr = $clManager->getTaxonSearch($term, $clid, $deep); | ||
echo json_encode($retArr); | ||
?> |
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
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
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
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
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
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
Oops, something went wrong.