所以,希望这将是我对这个项目的最后帮助请求,因为你们已经提供了很多帮助。
基本上,我正在编写一些代码来获取 YouTube 播放列表并将其转换为 RSS 提要。我已经让它按照我想要的方式工作,除了一个小细节:我不知道为什么,但我需要在它编译之前从 YouTube XML 中删除其中一个命名空间。
YouTube 的命名空间声明如下所示:
<feed xmlns:media='http://search.yahoo.com/mrss/' xmlns:openSearch='http://a9.com/-/spec/opensearch/1.1/' xmlns:gd='http://schemas.google.com/g/2005' xmlns:gml='http://www.opengis.net/gml' xmlns:yt='http://gdata.youtube.com/schemas/2007' xmlns:georss='http://www.georss.org/georss' gd:etag='W/"A04NRn47eCp7I2A9WhJTF0g."'>
通常,我会使用完全相同的那些,除非出于任何原因,如果我包含该xmlns='http://www.w3.org/2005/Atom'
段,则整个内容都返回 null。
到目前为止,我的技术一直是从 YouTube XML 中删除该行,但这让我觉得有点不雅。如果比我了解更多的人可以指出我当前代码的问题,我将不胜感激。
亚当
编辑:作为参考,这是我的 XSLT:
<?xml version="1.0" encoding="UTF-8"?>
<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform" xmlns='http://www.w3.org/2005/Atom' xmlns:media='http://search.yahoo.com/mrss/' xmlns:openSearch='http://a9.com/-/spec/opensearch/1.1/' xmlns:gd='http://schemas.google.com/g/2005' xmlns:yt='http://gdata.youtube.com/schemas/2007' gd:etag='W/"Ak8EQX47eCp7I2A9WhdSEkQ."'>
<xsl:template match="/">
<xsl:for-each select="entry">
<xsl:if test="yt:position < 3">
<item>
<title><xsl:value-of select="title" /></title>
<xsl:variable name="videoid" select="substring-before(substring-after(media:group/media:content/@url, 'v/'), '?')" /> <!--Extracting the YouTube video ID-->
<description>
<embed src="http://www.youtube.com/v/{$videoid}" type="application/x-shockwave-flash" allowscriptaccess="never" allowfullscreen="true" width="500" height="300"></embed> <!--Embed code for the video-->
<br />
<br />
<xsl:call-template name="ParseLink"> <!--Parses the video description such that URLs become links-->
<xsl:with-param name="text" select="media:group/media:description" />
</xsl:call-template>
<img src="http://i.ytimg.com/vi/{$videoid}/hqdefault.jpg" style="display:none"/> <!--Includes hidden thumbnail-->
</description>
<link>http://www.youtube.com/watch?v=<xsl:value-of select="$videoid" /></link> <!--Link to video on YouTube-->
<guid isPermaLink="false">http://www.youtube.com/watch?v=<xsl:value-of select="$videoid" /></guid>
</item>
</xsl:if>
</xsl:for-each>
</xsl:template>
<xsl:template name="ParseLink"> <!--YouTube automatically turns URLs into links, this performs the same function for RSS-->
<xsl:param name="text"/>
<xsl:choose>
<xsl:when test="contains($text,'http')">
<a href="http{substring-before(substring-after($text, 'http'), '
')}">Watch the complete video on our website</a>
<br/>
<xsl:call-template name="ParseText"> <!--Once the link is found, parses the rest of the text-->
<xsl:with-param name="text">
<xsl:value-of select="substring-after($text,'
')"/>
</xsl:with-param>
</xsl:call-template>
</xsl:when>
<xsl:otherwise>
<xsl:value-of select="$text"/>
</xsl:otherwise>
</xsl:choose>
</xsl:template>
<xsl:template name="ParseText"> <!--Replaces line breaks in the description to <br> tags-->
<xsl:param name="text"/>
<xsl:choose>
<xsl:when test="contains($text,'
')">
<xsl:value-of select="substring-before($text,'
')"/>
<br />
<xsl:call-template name="ParseText">
<xsl:with-param name="text">
<xsl:value-of select="substring-after($text,'
')"/>
</xsl:with-param>
</xsl:call-template>
</xsl:when>
<xsl:otherwise>
<xsl:value-of select="$text"/>
</xsl:otherwise>
</xsl:choose>
</xsl:template>