forked from 4Science/DSpace
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request DSpace#9318 from leuphana/issue-9317
Controlled Vocabulary: Provide ability to store the id of a controlled vocabulary node and offer localized labels using cv.xml files per locale
- Loading branch information
Showing
5 changed files
with
203 additions
and
23 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
10 changes: 10 additions & 0 deletions
10
dspace-api/src/test/data/dspaceFolder/config/controlled-vocabularies/countries.xml
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 |
---|---|---|
@@ -0,0 +1,10 @@ | ||
<?xml version="1.0" encoding="UTF-8"?> | ||
<node id='Countries' label='Countries'> | ||
<isComposedBy> | ||
<node id='Africa' label='Africa'> | ||
<isComposedBy> | ||
<node id='DZA' label='Algeria'/> | ||
</isComposedBy> | ||
</node> | ||
</isComposedBy> | ||
</node> |
10 changes: 10 additions & 0 deletions
10
dspace-api/src/test/data/dspaceFolder/config/controlled-vocabularies/countries_de.xml
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 |
---|---|---|
@@ -0,0 +1,10 @@ | ||
<?xml version="1.0" encoding="UTF-8"?> | ||
<node id='Countries' label='Länder'> | ||
<isComposedBy> | ||
<node id='Africa' label='Afrika'> | ||
<isComposedBy> | ||
<node id='DZA' label='Algerien'/> | ||
</isComposedBy> | ||
</node> | ||
</isComposedBy> | ||
</node> |
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