如何覆盖 DSpace 中 RSS 提要的生成?
How to override the generation of RSS feeds in DSpace?
这和我的另一个有点关系。我被要求修改 RSS 提要的结果,使列表与您按降序查看 /browse?type=dateissued
时的列表相同。我找不到生成 RSS 提要结果列表的位置。或者这甚至可行吗?
我正在使用 DSpace 版本 5.3 Mirage 2 主题。
提前致谢。
dspace.cfg 中有 recent.submissions.sort-option
声称也适用于提要:
# the sort option name (from webui.itemlist.sort-option above) to use for
# displaying recent submissions. (this
# is used by the Recent Submissions system and any other time based
# browse query such as FeedServlet)
recent.submissions.sort-option = dateaccessioned
Looks like 也在 XMLUI 中使用,因此您可以通过将此选项设置为 dateissued
.
来实现您所描述的内容
这和我的另一个/browse?type=dateissued
时的列表相同。我找不到生成 RSS 提要结果列表的位置。或者这甚至可行吗?
我正在使用 DSpace 版本 5.3 Mirage 2 主题。
提前致谢。
dspace.cfg 中有 recent.submissions.sort-option
声称也适用于提要:
# the sort option name (from webui.itemlist.sort-option above) to use for
# displaying recent submissions. (this
# is used by the Recent Submissions system and any other time based
# browse query such as FeedServlet)
recent.submissions.sort-option = dateaccessioned
Looks like 也在 XMLUI 中使用,因此您可以通过将此选项设置为 dateissued
.