Where is the “folder view" for RSS feeds in Thunderbird?

All,

I switched from Google Reader to Thunderbird to read / manage RSS feeds.

For some reason, the folder view of my imported feeds does not appear in Thunderbird, but the folder hierarchy is maintained in the "manage subscriptions" panel.

See attached screenshot.

Any thoughts?

Thank!

Thunderbird RSS folder issue

+5
source share
2 answers

I don't think there is a folder view for rss in Thunderbird. You can install the Bamboo add-on, but you can also do it in Firefox.

Here's a workaround:

  • Right click on your rss folder
  • Search for messages ...
  • Change the drop-down field from "contains" to "does not contain"
  • ( "zigloo", , rss-, )
  • " "

, .

+2

.opml Xml, ( ) , Thunderbird. , .opml:

<opml version="1.0">
  <body>
    <outline text="Birds">
      <outline title="ParrotBlog" xmlUrl="http://parrot.com/feed"/>
    </outline>
  </body>
</opml>

:

<opml version="1.0">
  <body>
    <outline text="Birds">
      <outline text="ParrotBlog">
        <outline title="ParrotBlog" xmlUrl="http://parrot.com/feed"/>
      </outline>
    </outline>
  </body>
</opml>

- Xslt (, ) (xml + xslt) → xml. Xsl:

<?xml version="1.0" encoding="utf-8"?>
<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
<xsl:template match="outline[not(child::*)]">
  <xsl:element name="outline">
      <xsl:attribute name="text"><xsl:value-of select="@title"/></xsl:attribute>
      <xsl:copy>
        <xsl:apply-templates select="@* | node()"/>  
      </xsl:copy>
  </xsl:element>
</xsl:template>
    <xsl:template match="/ | @* | node()">
  <xsl:copy>
    <xsl:apply-templates select="@* | node()"/>  
  </xsl:copy>
</xsl:template>
</xsl:stylesheet>

This workaround may work for you until you find a decent feed aggregator.

0
source

All Articles