Changeset 2496

Show
Ignore:
Timestamp:
12/17/09 08:56:10
Author:
bleibson
Message:

o Fixed parameter lists on recursive call to processCategories template. Closes http://www.bedework.org/trac/bedework/ticket/491.
o Fixed a typo or two

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • trunk/deployment/feeder/webapp/resources/demoskins/MainCampus/default/default/grid-html.xsl

    r2491 r2496  
    12281228          <xsl:with-param name="group" select="$group" /> 
    12291229      <xsl:with-param name="list" select="$remaining" />  
    1230       <xsl:with-param name="dayPos" select="$remaining" />  
     1230      <xsl:with-param name="dayPos" select="$dayPos" />  
    12311231    </xsl:call-template> 
    12321232  </xsl:template> 
     
    12431243            <xsl:choose> 
    12441244                  <xsl:when test="$group = 'all'"> 
    1245                <xsl:apply-templates select="event[categories/category/id = $catid] mode="calendarLayout"">   
     1245>              <xsl:apply-templates select="event[categories/category/id = $catid]" mode="calendarLayout">   
    12461246                  <xsl:with-param name="dayPos" select="$dayPos"/> 
    12471247                </xsl:apply-templates>  
    12481248              </xsl:when> 
    12491249              <xsl:otherwise> 
    1250                 <xsl:apply-templates select="event[categories/category/id = $catid] mode="calendarLayout""> 
     1250                <xsl:apply-templates select="event[categories/category/id = $catid]" mode="calendarLayout"> 
    12511251                  <xsl:with-param name="dayPos" select="$dayPos"/> 
    12521252                </xsl:apply-templates> 
     
    12561256                <!-- now use recursion to process the remaining categories --> 
    12571257            <xsl:call-template name="processCategories"> 
     1258              <xsl:with-param name="group" select="$group" />              
    12581259              <xsl:with-param name="list" select="$remaining" />  
     1260              <xsl:with-param name="dayPos" select="$dayPos" /> 
    12591261            </xsl:call-template> 
    12601262          </xsl:when>