Ted,
Here's an example from an old TODO list that I happen to still have:
<assigned>
Craig McClanahan
</assigned>
While you're in there, if someone can confirm that the item "XML ->
ActionForm Code Generator" corresponds to what I described in my message
"Automatically generating form beans" a few days ago, then you can sign me
up for that one. I have the go-ahead from my company now.
--
Martin Cooper
Tumbleweed Communications
At 09:21 AM 1/18/01 -0500, Ted Husted wrote:
>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.
>