How to create community and collection hierarchy in xml format for dspace xmlui -


how create community , collection hierarchy list in xml format dspace xmlui. need create xml of community , colection list hierarchy.

this covered in terrywb's comment, facility can use "structure importer".

the documentation features example xml file makes clear how need put together: https://wiki.duraspace.org/display/dsdoc5x/importing+community+and+collection+hierarchy

copying example here:

<import_structure>         <community>                 <name>community name</name>                 <description>descriptive text</description>                 <intro>introductory text</intro>                 <copyright>special copyright notice</copyright>                 <sidebar>sidebar text</sidebar>                 <community>                    <name>sub community name</name>                    <community> ...[ad infinitum]...                    </community>                 </community>                 <collection>                    <name>collection name</name>                    <description>descriptive text</description>                    <intro>introductory text</intro>                    <copyright>special copyright notice</copyright>                    <sidebar>sidebar text</sidebar>                    <license>special licence</license>                    <provenance>provenance information</provenance>                 </collection>          </community> </import_structure> 

Comments