动态地将URL超链接分配给XSLT中的图像,以放置在InDesign CS5中

时间:2011-01-24 09:14:23

标签: xslt hyperlink adobe-indesign

我目前正在使用以下XSLT代码成功/动态地放置facebook,linkedin和twitter图标,使用条件,如果XLM中的成员数据显示他们有facebook(即如果facebook元素非空) 。如何将XSLT输出到InDesign CS5输出(不输出到html)以自动为图像分配相应/唯一的facebook URL?感谢

这是XSLT代码(如果存在URL,我必须提供facebook,twitter和链接的图标图像):

<?xml version="1.0"?><!DOCTYPE xsl:stylesheet  [
<!ENTITY nbsp   "&#160;">
<!ENTITY mdash  "&#8212;">]>

<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" version="1.0">
<xsl:output method="xml" indent="no"/>

<xsl:template match="/">
<memberdata>  
<xsl:for-each select="memberdata/memberinfo">
<xsl:sort select="SortKey"/>

<memberdata>


<xsl:if test="twitter[.!='']">
<twitter><xsl:attribute name="href">file://logos/twitter.jpg</xsl:attribute></twitter>
</xsl:if>

<xsl:if test="facebook[.!='']">
<facebook><xsl:attribute name="href">file://logos/facebook.jpg</xsl:attribute></facebook>
</xsl:if>

<xsl:if test="linkedin[.!='']">
<linkedin><xsl:attribute name="href">file://logos/linkedin.jpg</xsl:attribute></linkedin>
</xsl:if>


</memberdata>

</xsl:for-each>

</memberdata> 

</xsl:template>
<xsl:template match="twitter">
</xsl:template>
<xsl:template match="facebook">
</xsl:template>
<xsl:template match="linkedin">
</xsl:template>

</xsl:stylesheet>

和XLM:

<?xml version="1.0"?> 
<memberdata xmlns:xsi="http://www.w3.org/1999/XMLSchema-instance">
<memberinfo>

<email>email1@abc.com</email>
<facebook>http://www.URL1a.com</facebook>
<linkedin>http://www.URL1b.com</linkedin>
<vimeo>http://www.URL1c.com</vimeo>

</memberinfo>
<memberinfo>

<email>email2@abc.com</email>
<facebook>http://www.URL2a.com</facebook>
<linkedin>http://www.URL2b.com</linkedin>
<vimeo>http://www.URL2c.com</vimeo>

</memberinfo>
</memberdata>

1 个答案:

答案 0 :(得分:0)

您的元素不需要if - 这将为您处理模板:

<xsl:template match="twitter[.!='']">
    <twitter>
        <xsl:attribute name="href">file://logos/twitter.jpg</xsl:attribute>
    </twitter>
</xsl:template>

<xsl:template match="facebook[.!='']">
    <facebook>
        <xsl:attribute name="href">file://logos/facebook.jpg</xsl:attribute>
    </facebook>
</xsl:template>

<xsl:template match="linkedin[.!='']">
    <linkedin>
        <xsl:attribute name="href">file://logos/linkedin.jpg</xsl:attribute>
    </linkedin>
</xsl:template>

也许你可以为你的样本xml添加所需的输出......例如,不清楚<email />元素会发生什么。