SUNScholar/XMLUI Theme/Common Elements
Jump to navigation
Jump to search
Back to XMLUI Theme
Contents
Introduction
Also see: http://wiki.lib.sun.ac.za/index.php/SUNScholar/XMLUI_Theme/M1/Language
Some style elements are common to both XMLUI Mirage themes. This wiki page will assist you in defining the configuration for these elements.
The configuration is done with the dspace.cfg file.
Edit the following file:
nano $HOME/source/dspace/config/dspace.cfg
Show counters
Search for webui.strengths.show and change to true.
Show recommendations
Search for webui.suggest.enable and change to true.
Show file thumbnails with item lists
Search for xmlui.theme.mirage.item-list.emphasis and uncomment by removing the hash character in front, so that the emphasis becomes "file" not "metadata".
In the DSpace config file, set the following and rebuild.
xmlui.user.registration=false
Remove Recent Submissions
Hi Gary, Remove org.dspace.app.webui.components.RecentSiteSubmissions from plugin.sequence.org.dspace.plugin.SiteHomeProcessor in [dspace]/config/dspace.cfg for home page. and remove org.dspace.app.webui.components.RecentCommunitySubmissions from plugin.sequence.org.dspace.plugin.CommunityHomeProcessor for community home page. Regards, Keiji Suzuki
Edit the following file:
https://github.com/DSpace/DSpace/blob/master/dspace-xmlui/src/main/webapp/themes/Mirage/lib/xsl/core/navigation.xsl#L131
And modify as follows:
Hi Charlene,
In navigation.xsl, in the “dri:options” template, instead of:
<!-- Once the search box is built, the other parts of the options are added -->
<xsl:apply-templates/>
You should just be able to do:
<xsl:apply-templates select="dri:list[@n='browse']"/>
<xsl:apply-templates select="dri:list[@n='discovery']"/>
<xsl:apply-templates select="dri:list[@n='context']"/>
<xsl:apply-templates select="dri:list[@n='administrative']"/>
<xsl:apply-templates select="dri:list[@n='account']"/>
If you have any other custom lists, you’ll need to be sure to select for those as well.
Jacob Brown
Related Java Code
- https://github.com/DSpace/DSpace/blob/master/dspace-xmlui/src/main/java/org/dspace/app/xmlui/aspect/discovery/Navigation.java#L123
- https://github.com/DSpace/DSpace/blob/master/dspace-xmlui/src/main/java/org/dspace/app/xmlui/aspect/browseArtifacts/Navigation.java#L111
- https://github.com/DSpace/DSpace/blob/master/dspace-xmlui/src/main/java/org/dspace/app/xmlui/aspect/artifactbrowser/Navigation.java#L114