On Wed, Sep 5, 2012 at 5:19 PM, Jose Blanco <[email protected]> wrote: > I'm using Mirage, and I'm trying to find the xsl that puts the "Show simple > item record" at the bottom of the detail display. I want to put a line > break before this link, but I can't find where the xsl that creates this > link is at.
That link is put into DRI by an Aspect, so you probably won't any XSL specifically matching it. Here's how you can match and modify it: <xsl:template name="modify-summary-view-link" match="dri:p[@rend='item-view-toggle item-view-toggle-bottom']"> XXX Your content here XXX <xsl:apply-templates /> </xsl:template> Regards, ~~helix84 ------------------------------------------------------------------------------ Live Security Virtual Conference Exclusive live event will cover all the ways today's security and threat landscape has changed and how IT managers can respond. Discussions will include endpoint security, mobile security and the latest in malware threats. http://www.accelacomm.com/jaw/sfrnl04242012/114/50122263/ _______________________________________________ DSpace-tech mailing list [email protected] https://lists.sourceforge.net/lists/listinfo/dspace-tech

