diff --git a/src/libprs500/ebooks/lrf/web/profiles/__init__.py b/src/libprs500/ebooks/lrf/web/profiles/__init__.py index 4e21873a00..27e6a5144d 100644 --- a/src/libprs500/ebooks/lrf/web/profiles/__init__.py +++ b/src/libprs500/ebooks/lrf/web/profiles/__init__.py @@ -156,6 +156,13 @@ class DefaultProfile(object): def parse_feeds(self): ''' Create list of articles from a list of feeds. + @return: A list of dictionaries, each of the form: + { + 'title' : article title, + 'url' : URL of print version, + 'date' : The publication date of the article as a string, + 'description' : A summary of the article + } ''' added_articles = {} feeds = self.get_feeds()