We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
We need a way to get the information from mediaflux and import it into the front end
What fields do we need to make the record in the front end?
Script Chuck uses for extracting information currently. Use as reference for field names
set ids [xvalues id [asset.query :where xpath(tigerdata:project/ProjectID) has value]] foreach id $ids { set asset [asset.get :id $id] puts "*************************************" puts "Project: " [xvalue asset/name $asset] puts "File Count: " [xvalue asset/collection/accumulator/value/non-collections $asset] puts "Collection Count: " [xvalue asset/collection/accumulator/value/collections $asset] puts "Storage Size: " [xvalue asset/collection/accumulator/value/total/@h $asset] puts "Data Sponsor: " [xvalue asset/meta/tigerdata:project/DataSponsor $asset] puts "Department: " [xvalue asset/meta/tigerdata:project/Department $asset] puts "Quota Allocation: " [xvalue asset/collection/quota/allocation/@h $asset] puts "Quota Used: " [xvalue asset/collection/quota/used/@h $asset] puts " " }
The text was updated successfully, but these errors were encountered:
carolyncole
No branches or pull requests
We need a way to get the information from mediaflux and import it into the front end
What fields do we need to make the record in the front end?
Acceptance Criteria
Implementation notes
Script Chuck uses for extracting information currently. Use as reference for field names
The text was updated successfully, but these errors were encountered: