Author: vhennebert
Date: Tue Oct 13 17:13:39 2009
New Revision: 824845
URL: http://svn.apache.org/viewvc?rev=824845&view=rev
Log:
Re-format addPtr.xsl to make it readable.
Also add a ptr attribute to fo:table-and-caption and fo:table-caption, even if
they are not supported, in order to avoid a crash.
Modified:
xmlgraphics/fop/branches/Temp_Accessibility/src/java/org/apache/fop/accessibility/addPtr.xsl
Modified:
xmlgraphics/fop/branches/Temp_Accessibility/src/java/org/apache/fop/accessibility/addPtr.xsl
URL:
http://svn.apache.org/viewvc/xmlgraphics/fop/branches/Temp_Accessibility/src/java/org/apache/fop/accessibility/addPtr.xsl?rev=824845&r1=824844&r2=824845&view=diff
==============================================================================
---
xmlgraphics/fop/branches/Temp_Accessibility/src/java/org/apache/fop/accessibility/addPtr.xsl
(original)
+++
xmlgraphics/fop/branches/Temp_Accessibility/src/java/org/apache/fop/accessibility/addPtr.xsl
Tue Oct 13 17:13:39 2009
@@ -16,15 +16,46 @@
limitations under the License.
-->
<!-- $Id$ -->
-<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
xmlns:fo="http://www.w3.org/1999/XSL/Format"
xmlns:foi="http://xmlgraphics.apache.org/fop/internal">
-<xsl:template match="fo:block|fo:block-container"><xsl:call-template
name="addPtr"/></xsl:template>
-<xsl:template
match="fo:list-block|fo:list-item|fo:list-item-label|fo:list-item-body"><xsl:call-template
name="addPtr"/></xsl:template>
-<xsl:template
match="fo:table|fo:table-body|fo:table-header|fo:table-footer|fo:table-row|fo:table-cell"><xsl:call-template
name="addPtr"/></xsl:template>
-<xsl:template
match="fo:inline|fo:wrapper|fo:basic-link|fo:character"><xsl:call-template
name="addPtr"/></xsl:template>
-<xsl:template
match="fo:instream-foreign-object|fo:external-graphic"><xsl:call-template
name="addPtr"/></xsl:template>
-<xsl:template
match="fo:page-number|fo:page-number-citation|fo:page-number-citation-last"><xsl:call-template
name="addPtr"/></xsl:template>
-<xsl:template match="fo:footnote|fo:footnote-body"><xsl:call-template
name="addPtr"/></xsl:template>
-<xsl:template match="fo:marker"><xsl:call-template
name="addPtr"/></xsl:template>
-<xsl:template name="addPtr"><xsl:element name="{name()}"
namespace="{namespace-uri()}"><xsl:apply-templates select="@*"/><xsl:attribute
name="foi:ptr"><xsl:value-of
select="generate-id()"/></xsl:attribute><xsl:apply-templates/></xsl:element></xsl:template>
-<xsl:template match="@*|node()"><xsl:copy><xsl:apply-templates
select="@*|node()"/></xsl:copy></xsl:template>
-</xsl:stylesheet>
\ No newline at end of file
+<xsl:stylesheet version="1.0"
+ xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
+ xmlns:fo="http://www.w3.org/1999/XSL/Format"
+ xmlns:foi="http://xmlgraphics.apache.org/fop/internal">
+ <xsl:template match="fo:block|fo:block-container">
+ <xsl:call-template name="addPtr"/>
+ </xsl:template>
+ <xsl:template
match="fo:list-block|fo:list-item|fo:list-item-label|fo:list-item-body">
+ <xsl:call-template name="addPtr"/>
+ </xsl:template>
+ <xsl:template
match="fo:table-and-caption|fo:table-caption|fo:table|fo:table-body|fo:table-header|fo:table-footer|fo:table-row|fo:table-cell">
+ <xsl:call-template name="addPtr"/>
+ </xsl:template>
+ <xsl:template match="fo:inline|fo:wrapper|fo:basic-link|fo:character">
+ <xsl:call-template name="addPtr"/>
+ </xsl:template>
+ <xsl:template match="fo:instream-foreign-object|fo:external-graphic">
+ <xsl:call-template name="addPtr"/>
+ </xsl:template>
+ <xsl:template
match="fo:page-number|fo:page-number-citation|fo:page-number-citation-last">
+ <xsl:call-template name="addPtr"/>
+ </xsl:template>
+ <xsl:template match="fo:footnote|fo:footnote-body">
+ <xsl:call-template name="addPtr"/>
+ </xsl:template>
+ <xsl:template match="fo:marker">
+ <xsl:call-template name="addPtr"/>
+ </xsl:template>
+ <xsl:template name="addPtr">
+ <xsl:element name="{name()}" namespace="{namespace-uri()}">
+ <xsl:apply-templates select="@*"/>
+ <xsl:attribute name="foi:ptr">
+ <xsl:value-of select="generate-id()"/>
+ </xsl:attribute>
+ <xsl:apply-templates/>
+ </xsl:element>
+ </xsl:template>
+ <xsl:template match="@*|node()">
+ <xsl:copy>
+ <xsl:apply-templates select="@*|node()"/>
+ </xsl:copy>
+ </xsl:template>
+</xsl:stylesheet>
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]