From 31cabee3489feaca2ceaf223f93cd33a85ee6659 Mon Sep 17 00:00:00 2001 From: Cédric Bonhomme Date: Wed, 10 Feb 2016 07:39:06 +0100 Subject: The OPML generation now includes the category of the feeds. --- src/web/views/views.py | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) (limited to 'src/web/views') diff --git a/src/web/views/views.py b/src/web/views/views.py index 84f2be5f..a4631d7d 100644 --- a/src/web/views/views.py +++ b/src/web/views/views.py @@ -412,8 +412,11 @@ def export_opml(): Export all feeds to OPML. """ user = UserController(g.user.id).get(id=g.user.id) + categories = {cat.id: cat.dump() + for cat in CategoryController(g.user.id).read()} response = make_response(render_template('opml.xml', user=user, - now=datetime.datetime.now())) + categories=categories, + now=datetime.datetime.now())) response.headers['Content-Type'] = 'application/xml' response.headers['Content-Disposition'] = 'attachment; filename=feeds.opml' return response -- cgit