Derek Baum wrote:
>
> I've just started using the OpenOffice ODT plugin and it works pretty well!
>
> I noticed that numbered and bulleted lists were both rendered as
> unordered lists, even using the SVN head revision.
>
> I think I've found the problem in odt_to_xhtml.xsl:
>
> <!-- Now select the <text:list-level-style-foo> element at this
> level of nesting for this list -->
> <xsl:variable name="node" select="key('listTypes',
> $listClass)/[EMAIL PROTECTED]:level='$level']"/>
>
> '$level' should not be quoted:
>
> <xsl:variable name="node" select="key('listTypes',
> $listClass)/[EMAIL PROTECTED]:level=$level]"/>
Thanks, that is applied now.
Please do other contributions via our issue tracker:
http://forrest.apache.org/issues.html
Even with a small change, a diff is actually easier and more reliable.
Thanks again, and we hope to see more.
-David