To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=83264
Issue #|83264
Summary|XHTML export filter not support equations
Component|Word processor
Version|OOo 2.3
Platform|All
URL|
OS/Version|All
Status|UNCONFIRMED
Status whiteboard|
Keywords|
Resolution|
Issue type|DEFECT
Priority|P2
Subcomponent|save-export
Assigned to|mru
Reported by|vsedov
------- Additional comments from [EMAIL PROTECTED] Fri Nov 2 17:25:56 +0000
2007 -------
please add to share/xslt/export/xhtml/body.xsl this templates for supporting
MathML exporting into xhtml
<xsl:template match="draw:object[math:math]">
<math xmlns="http://www.w3.org/1998/Math/MathML">
<xsl:apply-templates
select="math:math/math:semantics/*" mode="math"/>
</math>
</xsl:template>
<xsl:template match="*" mode="math">
<xsl:element name="{local-name()}"
namespace="http://www.w3.org/1998/Math/MathML">
<xsl:apply-templates select="@*|node()" mode="math"/>
</xsl:element>
</xsl:template>
<xsl:template match="@*" mode="math">
<xsl:attribute name="{local-name()}">
<xsl:value-of select="."/>
</xsl:attribute>
</xsl:template>
<xsl:template match="math:annotation" mode="math"/>
---------------------------------------------------------------------
Please do not reply to this automatically generated notification from
Issue Tracker. Please log onto the website and enter your comments.
http://qa.openoffice.org/issue_handling/project_issues.html#notification
---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]