--
You received this message because you are subscribed to the Google Groups "DSpace Technical Support" group.
To unsubscribe from this group and stop receiving emails from it, send an email to dspace-tech+unsubscribe@googlegroups.com.
To post to this group, send email to dspac...@googlegroups.com.
Visit this group at https://groups.google.com/group/dspace-tech.
For more options, visit https://groups.google.com/d/optout.
I would consider breaking up the abstract field into 2 separate dc.description.abstract entries rather than relying on the XSLT to parse for newlines.To help troubleshoot this issue, which version of DSpace are you running and which theme are you using?
On Mon, Feb 13, 2017 at 1:52 PM, David Brian Holt <holt...@gmail.com> wrote:
What's the easiest method to do this?I see the instructions here but it looks like they're outdated: https://wiki.duraspace.org/pages/viewpage.action?pageId=19006441Thanks,David
--
You received this message because you are subscribed to the Google Groups "DSpace Technical Support" group.
To unsubscribe from this group and stop receiving emails from it, send an email to dspace-tech...@googlegroups.com.
To post to this group, send email to dspac...@googlegroups.com.
Visit this group at https://groups.google.com/group/dspace-tech.
For more options, visit https://groups.google.com/d/optout.
To unsubscribe from this group and stop receiving emails from it, send an email to dspace-tech+unsubscribe@googlegroups.com.
To post to this group, send email to dspac...@googlegroups.com.
Visit this group at https://groups.google.com/group/dspace-tech.
For more options, visit https://groups.google.com/d/optout.
<xsl:template name="itemSummaryView-DIM-description"> <xsl:if test="dim:field[@element='description']"> <div class="simple-item-view-description item-page-field-wrapper table"> <h5><i18n:text>xmlui.dri2xhtml.METS-1.0.item-description</i18n:text></h5> <xsl:for-each select="dim:field[@element='description'][not(@qualifier)]"> <xsl:choose> <xsl:when test="node()"> <xsl:copy-of select="node()"/> </xsl:when> <xsl:otherwise> <xsl:text> </xsl:text> </xsl:otherwise> </xsl:choose> </xsl:for-each> </div> </xsl:if> </xsl:template>To unsubscribe from this group and stop receiving emails from it, send an email to dspace-tech+unsubscribe@googlegroups.com.
To post to this group, send email to dspac...@googlegroups.com.
Visit this group at https://groups.google.com/group/dspace-tech.
For more options, visit https://groups.google.com/d/optout.
<xsl:template name="itemSummaryView-DIM-description"> <xsl:if test="dim:field[@element='description']"> <div class="simple-item-view-description item-page-field-wrapper table"> <h5><i18n:text>xmlui.dri2xhtml.METS-1.0.item-description</i18n:text></h5> <xsl:for-each select="dim:field[@element='description'][not(@qualifier)]"> <xsl:choose> <xsl:when test="contains(., '
')"> <xsl:value-of select="substring-before(., '
')"/> <p/> <xsl:value-of select="substring-after(., '
')"/> </xsl:when> <xsl:when test="node()"> <xsl:copy-of select="node()"/> </xsl:when> <xsl:otherwise> <xsl:text> </xsl:text> </xsl:otherwise> </xsl:choose> </xsl:for-each> </div> </xsl:if> </xsl:template>--
You received this message because you are subscribed to the Google Groups "DSpace Technical Support" group.
To unsubscribe from this group and stop receiving emails from it, send an email to dspace-tech+unsubscribe@googlegroups.com.
To post to this group, send email to dspac...@googlegroups.com.
Visit this group at https://groups.google.com/group/dspace-tech.
For more options, visit https://groups.google.com/d/optout.
To unsubscribe from this group and stop receiving emails from it, send an email to dspace-tech...@googlegroups.com.
To post to this group, send email to dspac...@googlegroups.com.
Visit this group at https://groups.google.com/group/dspace-tech.
For more options, visit https://groups.google.com/d/optout.