diff options
author | Cédric Bonhomme <cedric@cedricbonhomme.org> | 2018-10-31 22:18:19 +0100 |
---|---|---|
committer | Cédric Bonhomme <cedric@cedricbonhomme.org> | 2018-10-31 22:18:19 +0100 |
commit | f53453069d81989670586ef54130b026dd31a1e1 (patch) | |
tree | ac08e0fd27ac0475b5b819f2b33955a9ee4b9a02 /src/web/templates/opml.xml | |
parent | Improved filtering to get only articles from public feed via the public profi... (diff) | |
download | newspipe-f53453069d81989670586ef54130b026dd31a1e1.tar.gz newspipe-f53453069d81989670586ef54130b026dd31a1e1.tar.bz2 newspipe-f53453069d81989670586ef54130b026dd31a1e1.zip |
Improved the import/export functions for data liberation. It is now possible to export all feeds to OPML with ou without enabled and private feeds.
Diffstat (limited to 'src/web/templates/opml.xml')
-rw-r--r-- | src/web/templates/opml.xml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/web/templates/opml.xml b/src/web/templates/opml.xml index 3862772d..7159e279 100644 --- a/src/web/templates/opml.xml +++ b/src/web/templates/opml.xml @@ -8,6 +8,6 @@ <ownerName>{{ user.nickname }}</ownerName> </head> <body> - {% for feed in user.feeds %} <outline title="{{ feed.title|escape }}" text="{{ feed.title|escape }}" description="{{ feed.description|escape }}" {% if feed.category_id != None %}category="/{{ categories[feed.category_id].name }}"{% endif %} xmlUrl="{{ feed.link|escape }}" htmlUrl="{{ feed.site_link|escape }}" /> + {% for feed in feeds %} <outline title="{{ feed.title|escape }}" text="{{ feed.title|escape }}" description="{{ feed.description|escape }}" {% if feed.category_id != None %}category="/{{ categories[feed.category_id].name }}"{% endif %} xmlUrl="{{ feed.link|escape }}" htmlUrl="{{ feed.site_link|escape }}" /> {% endfor %}</body> </opml> |