From: David Kalnischkies <david@kalnischkies.de>
Date: Wed, 8 Feb 2017 23:52:00 +0000 (+0100)
Subject: rss_converter_facebook.com.xsl: new wrapper classname
X-Git-Tag: v1.1.0~12
X-Git-Url: https://git.ao2.it/tweeper.git/commitdiff_plain/0ea00a5f93f7a0ab1c52020ab75aa15bd190497f?hp=e686dd8220ae668e8c828c0ade7264468e78f7b3

rss_converter_facebook.com.xsl: new wrapper classname

Facebook seems to have changed the classname of the wrapping div
from "userContentWrapper" to "fbUserContent".
---

diff --git a/src/rss_converter_facebook.com.xsl b/src/rss_converter_facebook.com.xsl
index 933d3d2..bff19d3 100644
--- a/src/rss_converter_facebook.com.xsl
+++ b/src/rss_converter_facebook.com.xsl
@@ -52,7 +52,7 @@
         name="page-id"
         select="substring-after(//meta[@property='al:android:url']/@content, 'fb://page/')"/>
 
-    <xsl:template match="//div[contains(@class, 'userContentWrapper')]">
+    <xsl:template match="//div[contains(@class, 'fbUserContent')]">
         <xsl:variable name="story-id" select=".//input[@name='ft_ent_identifier']/@value"/>
         <xsl:variable
             name="item-permalink"
@@ -106,7 +106,7 @@
 
     <xsl:template match="/">
         <xsl:variable name="channel-title" select="//title"/>
-        <xsl:variable name="channel-link" select="//div[contains(@class, 'userContentWrapper')][1]//a[1]/@href"/>
+        <xsl:variable name="channel-link" select="//div[contains(@class, 'fbUserContent')][1]//a[1]/@href"/>
 
         <rss version="2.0">
             <xsl:attribute name="xml:base"><xsl:value-of select="$BaseURL" /></xsl:attribute>
@@ -134,7 +134,7 @@
                         <xsl:value-of select="//img[@class='profilePic img']/@src"/>
                     </url>
                 </image>
-                <xsl:apply-templates select="//div[contains(@class, 'userContentWrapper')]"/>
+                <xsl:apply-templates select="//div[contains(@class, 'fbUserContent')]"/>
             </channel>
         </rss>
     </xsl:template>