Skip to content

Commit

Permalink
Merge pull request #372 from DSpace/configurable_entities
Browse files Browse the repository at this point in the history
Adding Configurable "Entities" to DSpace 7 (Part 1: Search/Browse, Display)
  • Loading branch information
tdonohue committed May 13, 2019
2 parents 9e0846a + badfb1f commit 8865d6e
Show file tree
Hide file tree
Showing 223 changed files with 6,684 additions and 520 deletions.
4 changes: 2 additions & 2 deletions config/environment.default.js
Expand Up @@ -10,10 +10,10 @@ module.exports = {
// The REST API server settings.
rest: {
ssl: true,
host: 'dspace7.4science.cloud',
host: 'dspace7-entities.atmire.com',
port: 443,
// NOTE: Space is capitalized because 'namespace' is a reserved string in TypeScript
nameSpace: '/dspace-spring-rest/api'
nameSpace: '/rest/api'
},
// Caching settings
cache: {
Expand Down
135 changes: 134 additions & 1 deletion resources/i18n/en.json
Expand Up @@ -91,12 +91,14 @@
},
"item": {
"page": {
"author": "Author",
"author": "Authors",
"abstract": "Abstract",
"date": "Date",
"uri": "URI",
"files": "Files",
"collections": "Collections",
"subject": "Keywords",
"citation": "Citation",
"filesection": {
"download": "Download",
"name": "Name:",
Expand Down Expand Up @@ -270,6 +272,114 @@
}
}
},
"relationships": {
"isPublicationOf": "Publications",
"isProjectOf": "Research Projects",
"isOrgUnitOf": "Organizational Units",
"isAuthorOf": "Authors",
"isPersonOf": "Authors",
"isJournalOf": "Journals",
"isSingleJournalOf": "Journal",
"isVolumeOf": "Journal Volumes",
"isSingleVolumeOf": "Journal Volume",
"isIssueOf": "Journal Issues",
"isJournalIssueOf": "Journal Issue",
"isPublicationOfJournalIssue": "Articles"
},
"person": {
"page": {
"titleprefix": "Person: ",
"jobtitle": "Job Title",
"lastname": "Last Name",
"firstname": "First Name",
"email": "Email Address",
"orcid": "ORCID",
"birthdate": "Birth Date",
"staffid": "Staff ID",
"link": {
"full": "Show all metadata"
}
},
"listelement": {
"badge": "Person"
}
},
"project": {
"page": {
"titleprefix": "Research Project: ",
"status": "Status",
"contributor": "Contributors",
"funder": "Funders",
"id": "ID",
"expectedcompletion": "Expected Completion",
"description": "Description",
"keyword": "Keywords"
},
"listelement": {
"badge": "Research Project"
}
},
"orgunit": {
"page": {
"titleprefix": "Organizational Unit: ",
"dateestablished": "Date established",
"city": "City",
"country": "Country",
"id": "ID",
"description": "Description"
},
"listelement": {
"badge": "Organizational Unit"
}
},
"journal": {
"page": {
"titleprefix": "Journal: ",
"issn": "ISSN",
"publisher": "Publisher",
"description": "Description",
"editor": "Editor-in-Chief"
},
"listelement": {
"badge": "Journal"
}
},
"journalvolume": {
"page": {
"titleprefix": "Journal Volume: ",
"volume": "Volume",
"issuedate": "Issue Date",
"description": "Description"
},
"listelement": {
"badge": "Journal Volume"
}
},
"journalissue": {
"page": {
"titleprefix": "Journal Issue: ",
"number": "Number",
"issuedate": "Issue Date",
"description": "Description",
"keyword": "Keywords",
"journal-title": "Journal Title",
"journal-issn": "Journal ISSN"
},
"listelement": {
"badge": "Journal Issue"
}
},
"publication": {
"page": {
"titleprefix": "Publication: ",
"journal-title": "Journal Title",
"journal-issn": "Journal ISSN",
"volume-title": "Volume Title"
},
"listelement": {
"badge": "Publication"
}
},
"nav": {
"browse": {
"header": "All of DSpace"
Expand Down Expand Up @@ -371,6 +481,24 @@
}
},
"search": {
"journal": {
"title": "DSpace Angular :: Journal Search",
"results": {
"head": "Journal Search Results"
}
},
"person": {
"title": "DSpace Angular :: Person Search",
"results": {
"head": "Person Search Results"
}
},
"publication": {
"title": "DSpace Angular :: Publication Search",
"results": {
"head": "Publication Search Results"
}
},
"title": "DSpace Angular :: Search",
"description": "",
"form": {
Expand Down Expand Up @@ -413,6 +541,7 @@
"f.dateIssued.max": "End date",
"f.subject": "Subject",
"f.has_content_in_original_bundle": "Has files",
"f.entityType": "Item Type",
"f.namedresourcetype": "Status",
"f.dateSubmitted": "Date submitted",
"f.itemtype": "Type",
Expand Down Expand Up @@ -445,6 +574,10 @@
"has_content_in_original_bundle": {
"head": "Has files"
},
"entityType": {
"placeholder": "Item Type",
"head": "Item Type"
},
"namedresourcetype": {
"placeholder": "Status",
"head": "Status"
Expand Down
13 changes: 13 additions & 0 deletions resources/images/orgunit-placeholder.svg
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
13 changes: 13 additions & 0 deletions resources/images/person-placeholder.svg
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
118 changes: 118 additions & 0 deletions resources/images/project-placeholder.svg
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.

0 comments on commit 8865d6e

Please sign in to comment.