Title: RE: 1.1 TODO
I tried to add myself to some of the items on the list, but can't read the XLS stylesheet well enough to figure out how.
 
The style sheet says
 
  <!-- Process an individual task (in a TODO list) -->
  <xsl:template match="task">
    <tr>
      <td>
        <xsl:choose>
          <xsl:when test="@name">
            <em><xsl:value-of select="@name"/></em>.
          </xsl:when>
        </xsl:choose>
        <xsl:value-of select="info"/>
      </td>
      <td><xsl:value-of select="assigned"/></td>
    </tr>
  </xsl:template>
 
So, I tried this
 
    <task name="Better Database Support">
      <info>
        <p>Use a "real" database of some sort (while still making Struts
        easy to install.</p>
      </info>
      <assigned>
        <p>Ted Husted</p>
      </assigned>
    </task>
 
and
 
      </info>
      <name assigned="Ted Husted">
    </task>

but that didn't work. No one else is volunteered for anything right now, so I don't have a working example at my finger tips.
 

Reply via email to