[Rapforums-developer] src/stylesheets/edu/fullcoll/uportal/channels/rap/forum thread.xsl,1.2,1.3
Status: Beta
Brought to you by:
brippe
From: <br...@us...> - 2003-10-03 17:20:57
|
Update of /cvsroot/rapforums/src/stylesheets/edu/fullcoll/uportal/channels/rap/forum In directory sc8-pr-cvs1:/tmp/cvs-serv32223 Modified Files: thread.xsl Log Message: Update message bug - template would not display first line of a reply - FIXED Index: thread.xsl =================================================================== RCS file: /cvsroot/rapforums/src/stylesheets/edu/fullcoll/uportal/channels/rap/forum/thread.xsl,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** thread.xsl 25 Sep 2003 22:57:08 -0000 1.2 --- thread.xsl 3 Oct 2003 17:20:52 -0000 1.3 *************** *** 154,160 **** </td> </tr> ! </table> ! ! <!-- show the available forums --> --- 154,158 ---- </td> </tr> ! </table> <!-- show the available forums --> *************** *** 195,199 **** <td> <div class="PRE"> ! <xsl:call-template name="break"> <xsl:with-param name="text" select="body"/> </xsl:call-template> --- 193,198 ---- <td> <div class="PRE"> ! <!--<xsl:value-of select="body"/>--> ! <xsl:call-template name="break"> <xsl:with-param name="text" select="body"/> </xsl:call-template> *************** *** 283,287 **** <xsl:choose> <xsl:when test="contains($text, '
')"> ! <br/> <xsl:call-template name="break"> <xsl:with-param name="text" select="substring-after($text, '
')"/> --- 282,287 ---- <xsl:choose> <xsl:when test="contains($text, '
')"> ! <xsl:variable name="before-end-of-line" select="substring-before($text, '
')"/> ! <xsl:value-of select="$before-end-of-line"/><br/> <xsl:call-template name="break"> <xsl:with-param name="text" select="substring-after($text, '
')"/> |