[open-ils-commits] r16265 - trunk/Open-ILS/xsl (miker)
svn at svn.open-ils.org
svn at svn.open-ils.org
Sat Apr 17 17:09:00 EDT 2010
Author: miker
Date: 2010-04-17 17:08:54 -0400 (Sat, 17 Apr 2010)
New Revision: 16265
Modified:
trunk/Open-ILS/xsl/ATOM2XHTML.xsl
trunk/Open-ILS/xsl/CNBrowse2HTML.xsl
Log:
addressing LP bug #562553, added content in the slimpac and callnumber browser
Modified: trunk/Open-ILS/xsl/ATOM2XHTML.xsl
===================================================================
--- trunk/Open-ILS/xsl/ATOM2XHTML.xsl 2010-04-17 00:31:55 UTC (rev 16264)
+++ trunk/Open-ILS/xsl/ATOM2XHTML.xsl 2010-04-17 21:08:54 UTC (rev 16265)
@@ -307,15 +307,15 @@
<xsl:choose>
<xsl:when test="substring-before($isbnraw,' ')">
<xsl:variable name="isbntrimmed"><xsl:value-of select="substring-before($isbnraw,' ')"/></xsl:variable>
- <xsl:value-of select="concat('/opac/extras/jacket/small/',$isbntrimmed)"/>
+ <xsl:value-of select="concat('/opac/extras/ac/jacket/small/',$isbntrimmed)"/>
</xsl:when>
<xsl:otherwise>
- <xsl:value-of select="concat('/opac/extras/jacket/small/',$isbnraw)"/>
+ <xsl:value-of select="concat('/opac/extras/ac/jacket/small/',$isbnraw)"/>
</xsl:otherwise>
</xsl:choose>
</xsl:when>
<xsl:otherwise>
- <xsl:text>/opac/extras/jacket/small/</xsl:text>
+ <xsl:text>/opac/extras/ac/jacket/small/</xsl:text>
</xsl:otherwise>
</xsl:choose>
</xsl:attribute>
Modified: trunk/Open-ILS/xsl/CNBrowse2HTML.xsl
===================================================================
--- trunk/Open-ILS/xsl/CNBrowse2HTML.xsl 2010-04-17 00:31:55 UTC (rev 16264)
+++ trunk/Open-ILS/xsl/CNBrowse2HTML.xsl 2010-04-17 21:08:54 UTC (rev 16265)
@@ -71,10 +71,10 @@
<xsl:choose>
<xsl:when test="substring-before($isbnraw,' ')">
<xsl:variable name="isbntrimmed"><xsl:value-of select="substring-before($isbnraw,' ')"/></xsl:variable>
- <xsl:value-of select="concat('/opac/extras/jacket/small/',$isbntrimmed)"/>
+ <xsl:value-of select="concat('/opac/extras/ac/jacket/small/',$isbntrimmed)"/>
</xsl:when>
<xsl:otherwise>
- <xsl:value-of select="concat('/opac/extras/jacket/small/',$isbnraw)"/>
+ <xsl:value-of select="concat('/opac/extras/ac/jacket/small/',$isbnraw)"/>
</xsl:otherwise>
</xsl:choose>
</xsl:attribute>
More information about the open-ils-commits
mailing list