如何为dspace xmlui创建xml格式的社区和集合层次结构列表。 我需要创建一个xml的社区和集合列表层次结构。
答案 0 :(得分:0)
这在terrywb的评论中也有所涉及,但您可以使用的设施是“结构导入器”。
该文档提供了一个示例XML文件,清楚地说明了如何将它们组合在一起: https://wiki.duraspace.org/display/DSDOC5x/Importing+Community+and+Collection+Hierarchy
在此处复制此示例:
<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>