forked from egbot/Symbiota
-
Notifications
You must be signed in to change notification settings - Fork 53
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[3.3] 1924 export associations as resource relationship #1933
Open
Atticus29
wants to merge
39
commits into
Development
Choose a base branch
from
1924-export-associations-as-resource-relationship
base: Development
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Changes from all commits
Commits
Show all changes
39 commits
Select commit
Hold shift + click to select a range
1f00e00
create DwcArchiverAssociation.php and implement mapping in setFieldAr…
Atticus29 b12ac39
finish implementing first version of classes/DwcArchiverAssociation.php
Atticus29 fa08ff9
silence association sql print
Atticus29 31843c8
add translations, include Resource Relationship extension checkbox, a…
Atticus29 1204989
fix minor bug
Atticus29 bc9520e
make association download work. Populate? No.
Atticus29 a356238
allow writeOutRecordBlock to handle the union required for two-way as…
Atticus29 4320a0a
add symbiota native columns to the export
Atticus29 0976003
make it so there is no data cutoff for xdebugger
Atticus29 8e8464f
fix bug where download was not working when association search was be…
Atticus29 50604f5
comment out associatedOccurrences
Atticus29 5db000b
remove appendSpecimenDuplicateAssociations, getAssociationJSON, and g…
Atticus29 20a3b08
remove some cruft and change some translations
Atticus29 439e119
fix bug where occurrence download was not respecting association cons…
Atticus29 ba6a9c4
fix bug where ->associationManager->getAssociatedRecords was being ru…
Atticus29 229be08
begin to implement the changes where omoccurassociations is joined to…
Atticus29 33ed860
association export mod
egbot 44fc6f8
Merge pull request #1961 from BioKIC/associations-export-egbot
egbot 77948ac
cherry pick copy changes and resolve merge conflicts
Atticus29 5015abf
resolve merge conflicts with Development
Atticus29 af00f35
add warning to users about uniqueness of occurrenceId over other iden…
Atticus29 894fa64
fix typo in recordID
Atticus29 572d440
add temporary columns to aid in troubleshooting
Atticus29 5bf4767
fix typos and minor bugs in collections/search/js/searchform.js
Atticus29 e8e2138
resolve merge conflicts with Development
Atticus29 61db6fa
fix bug where was not targeting the correct keys for DWC-formatted d…
Atticus29 9bcbfc6
rename DwcArchiverAssociation to DwcArchiverResourceRelationship
Atticus29 b50ad33
remove renamed class file
Atticus29 3b44f25
comment out appendSpecimenDuplicateAssociations call per ticket issue…
Atticus29 e3fdff9
remove no-longer-needed schema change
Atticus29 d7c609f
remove unnecessary TODO
Atticus29 5451d3c
get more things from the omoccurrences table. Fix bug in setSqlBase l…
Atticus29 8b2f361
add left join of the object omoccurrences entry to fetch relatedResou…
Atticus29 8c5128d
refine relatedResourceID and resourceRelationshipID
Atticus29 70076ea
make relatedResourceID refer to the object
Atticus29 de7712a
continue improvements to resourceRelationshipID and relatedResourceID
Atticus29 f266105
add missing translations
Atticus29 2f8bb6d
resolve merge conflicts
Atticus29 d961163
1924 pt2 external and observational occurrences (#2135)
Atticus29 File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,48 +1,51 @@ | ||
{ | ||
// Use IntelliSense to learn about possible attributes. | ||
// Hover to view descriptions of existing attributes. | ||
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387 | ||
"version": "0.2.0", | ||
"configurations": [ | ||
{ | ||
"name": "Listen for Xdebug", | ||
"type": "php", | ||
"request": "launch", | ||
"port": 9003 | ||
}, | ||
{ | ||
"name": "Launch currently open script", | ||
"type": "php", | ||
"request": "launch", | ||
"program": "${file}", | ||
"cwd": "${fileDirname}", | ||
"port": 0, | ||
"runtimeArgs": [ | ||
"-dxdebug.start_with_request=yes" | ||
], | ||
"env": { | ||
"XDEBUG_MODE": "debug,develop", | ||
"XDEBUG_CONFIG": "client_port=${port}" | ||
} | ||
}, | ||
{ | ||
"name": "Launch Built-in web server", | ||
"type": "php", | ||
"request": "launch", | ||
"runtimeArgs": [ | ||
"-dxdebug.mode=debug", | ||
"-dxdebug.start_with_request=yes", | ||
"-S", | ||
"localhost:0" | ||
], | ||
"program": "", | ||
"cwd": "${workspaceRoot}", | ||
"port": 9003, | ||
"serverReadyAction": { | ||
"pattern": "Development Server \\(http://localhost:([0-9]+)\\) started", | ||
"uriFormat": "http://localhost:%s", | ||
"action": "openExternally" | ||
} | ||
} | ||
] | ||
} | ||
// Use IntelliSense to learn about possible attributes. | ||
// Hover to view descriptions of existing attributes. | ||
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387 | ||
"version": "0.2.0", | ||
"configurations": [ | ||
{ | ||
"name": "Listen for Xdebug", | ||
"type": "php", | ||
"request": "launch", | ||
"port": 9003, | ||
"xdebugSettings": { | ||
"max_children": 128, | ||
"max_data": -1, | ||
"max_depth": 3 | ||
} | ||
}, | ||
{ | ||
"name": "Launch currently open script", | ||
"type": "php", | ||
"request": "launch", | ||
"program": "${file}", | ||
"cwd": "${fileDirname}", | ||
"port": 0, | ||
"runtimeArgs": ["-dxdebug.start_with_request=yes"], | ||
"env": { | ||
"XDEBUG_MODE": "debug,develop", | ||
"XDEBUG_CONFIG": "client_port=${port}" | ||
} | ||
}, | ||
{ | ||
"name": "Launch Built-in web server", | ||
"type": "php", | ||
"request": "launch", | ||
"runtimeArgs": [ | ||
"-dxdebug.mode=debug", | ||
"-dxdebug.start_with_request=yes", | ||
"-S", | ||
"localhost:0" | ||
], | ||
"program": "", | ||
"cwd": "${workspaceRoot}", | ||
"port": 9003, | ||
"serverReadyAction": { | ||
"pattern": "Development Server \\(http://localhost:([0-9]+)\\) started", | ||
"uriFormat": "http://localhost:%s", | ||
"action": "openExternally" | ||
} | ||
} | ||
] | ||
} |
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.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This file was autoformatted. But also the xdebugSettings section was added because my xDebugger values were being very confusingly truncated. Fixed here slash not at all sure why this is being tracked in the repo.