xsl-list
[Top] [All Lists]

[xsl] Adding a border to graphics

2007-10-30 05:34:58
Hi guys!

I have encountered the following issue:

I wanna have two kinds of images in my documents: 
with a border and without a border.

So I did two things:

1) in my template for bordered images I inserted a
"role" attribute with value "bordered" like that:

<xsl:template match="diagram_border"> 
<xsl:element name="figure">
    <xsl:attribute name="id">
      <xsl:value-of select="@ref"/>
    </xsl:attribute>
    <xsl:attribute name="role">
    <xsl:value-of select="@bordered"/>
    </xsl:attribute>        
    <title>
      <xsl:value-of select="@t"/>
    </title>
    <mediaobject>
      <imageobject>
        <xsl:element name="imagedata">
          <xsl:attribute
name="width">80%</xsl:attribute>
          <xsl:attribute
name="scalefit">1</xsl:attribute>
          <xsl:attribute name="fileref">
          <xsl:value-of select="concat('images/', @ref,
'.png')"/>
          </xsl:attribute>
        </xsl:element>
      </imageobject>
    </mediaobject>
  </xsl:element>
</xsl:template>


2) I added the following in the customization layer:

<xsl:template match="imagedata">
<fo:external-graphic>
    <xsl:if test="ancestor::figure[role|@bordered]">
    <xsl:attribute
name="border-color">black</xsl:attribute>
    <xsl:attribute
name="border-style">solid</xsl:attribute>
    </xsl:if>
</fo:external-graphic>
</xsl:template>

However, it does not work. Please, advise!

Thanks in advance,
Nancy


__________________________________________________
Do You Yahoo!?
Tired of spam?  Yahoo! Mail has the best spam protection around 
http://mail.yahoo.com 

--~------------------------------------------------------------------
XSL-List info and archive:  http://www.mulberrytech.com/xsl/xsl-list
To unsubscribe, go to: http://lists.mulberrytech.com/xsl-list/
or e-mail: <mailto:xsl-list-unsubscribe(_at_)lists(_dot_)mulberrytech(_dot_)com>
--~--

<Prev in Thread] Current Thread [Next in Thread>