想修改Dspace中某些SidebarFacet话题的显示值 4.x XMLUI
Want to modify the display value of some SidebarFacet topic in Dspace 4.x XMLUI
在上图中,在'Language'部分,语言显示为'en'、'es'等,我想显示它像 'English','Spanish' 等。
为此,我更改了 [dspace-install]/config/input-forms.xml 文件的以下部分 ->
<value-pairs value-pairs-name="common_iso_languages" dc-term="language_iso">
<pair>
<displayed-value>English</displayed-value>
<stored-value>english</stored-value>
</pair>
<pair>
<displayed-value>Assamese</displayed-value>
<stored-value>assamese</stored-value>
</pair>
<pair>
<displayed-value>Hindi</displayed-value>
<stored-value>hindi</stored-value>
</pair>
<pair>
<displayed-value>Bengali</displayed-value>
<stored-value>bengali</stored-value>
</pair>
<pair>
<displayed-value>Marathi</displayed-value>
<stored-value>marathi</stored-value>
</pair>
<pair>
<displayed-value>Tamil</displayed-value>
<stored-value>tamil</stored-value>
</pair>
<pair>
<displayed-value>Orisa</displayed-value>
<stored-value>orisa</stored-value>
</pair>
<pair>
<displayed-value>Kannada</displayed-value>
<stored-value>kannada</stored-value>
</pair>
<pair>
<displayed-value>(Other)</displayed-value>
<stored-value>other</stored-value>
</pair>
</value-pairs>
我已经更改了所有<存储值>,现在在进行更改后,'display value' 'Language' 部分 sidebar facet 对于已经提交的项目没有更改,如果我在更改 之后提交任何项目input-forms.xml,仅针对它正在反映的那个项目。但我也想更改所有提交的项目。怎么可能?
您在输入表单中所做的更改对提交的项目没有追溯力(即,值已经设置),您应该改用 Batch Metadata Editing。然后重新索引你的数据空间。
在上图中,在'Language'部分,语言显示为'en'、'es'等,我想显示它像 'English','Spanish' 等。 为此,我更改了 [dspace-install]/config/input-forms.xml 文件的以下部分 ->
<value-pairs value-pairs-name="common_iso_languages" dc-term="language_iso">
<pair>
<displayed-value>English</displayed-value>
<stored-value>english</stored-value>
</pair>
<pair>
<displayed-value>Assamese</displayed-value>
<stored-value>assamese</stored-value>
</pair>
<pair>
<displayed-value>Hindi</displayed-value>
<stored-value>hindi</stored-value>
</pair>
<pair>
<displayed-value>Bengali</displayed-value>
<stored-value>bengali</stored-value>
</pair>
<pair>
<displayed-value>Marathi</displayed-value>
<stored-value>marathi</stored-value>
</pair>
<pair>
<displayed-value>Tamil</displayed-value>
<stored-value>tamil</stored-value>
</pair>
<pair>
<displayed-value>Orisa</displayed-value>
<stored-value>orisa</stored-value>
</pair>
<pair>
<displayed-value>Kannada</displayed-value>
<stored-value>kannada</stored-value>
</pair>
<pair>
<displayed-value>(Other)</displayed-value>
<stored-value>other</stored-value>
</pair>
</value-pairs>
我已经更改了所有<存储值>,现在在进行更改后,'display value' 'Language' 部分 sidebar facet 对于已经提交的项目没有更改,如果我在更改 之后提交任何项目input-forms.xml,仅针对它正在反映的那个项目。但我也想更改所有提交的项目。怎么可能?
您在输入表单中所做的更改对提交的项目没有追溯力(即,值已经设置),您应该改用 Batch Metadata Editing。然后重新索引你的数据空间。