aboutsummaryrefslogtreecommitdiff
path: root/source
diff options
context:
space:
mode:
authorcedricbonhomme <devnull@localhost>2012-05-01 13:13:16 +0200
committercedricbonhomme <devnull@localhost>2012-05-01 13:13:16 +0200
commit93fff98d5ba071c478daf046c6c3efac5a0dea50 (patch)
tree28e8feb69c8258f65abd3a25ad2f91cccd6a2029 /source
parentOne line between each function. (diff)
downloadnewspipe-93fff98d5ba071c478daf046c6c3efac5a0dea50.tar.gz
newspipe-93fff98d5ba071c478daf046c6c3efac5a0dea50.tar.bz2
newspipe-93fff98d5ba071c478daf046c6c3efac5a0dea50.zip
Export tp webzine nearly OK.
Diffstat (limited to 'source')
-rw-r--r--source/export.py40
-rwxr-xr-xsource/pyAggr3g470r.py4
2 files changed, 21 insertions, 23 deletions
diff --git a/source/export.py b/source/export.py
index a14d47c0..97b185a4 100644
--- a/source/export.py
+++ b/source/export.py
@@ -37,9 +37,9 @@ __license__ = "GPLv3"
import os
import hashlib
+import conf
import utils
-
htmlheader = '<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">\n' + \
'<head>' + \
'\n\t<title>pyAggr3g470r - News aggregator</title>\n' + \
@@ -52,60 +52,56 @@ htmlfooter = '<p>This software is under GPLv3 license. You are welcome to copy,
' <a href="http://www.gnu.org/licenses/gpl-3.0.txt">GPLv3</a> license.</p></div>\n' + \
'</body>\n</html>'
-
-
-def export_html(feeds):
+def export_html(mongo_db):
"""
Export the articles given in parameter in a simple Webzine.
"""
+ feeds = mongo_db.get_all_feeds()
index = htmlheader
index += "<br />\n<ul>"
- for feed in feeds.values():
+ for feed in feeds:
# creates a folder for each stream
- feed_folder = utils.path + "/var/export/webzine/" + \
- utils.normalize_filename(feed.feed_id)
+ feed_folder = conf.path + "/var/export/webzine/" + \
+ utils.normalize_filename(feed["feed_id"])
try:
os.makedirs(feed_folder)
except OSError:
# directories already exists (not a problem)
pass
-
index += """<li><a href="%s">%s</a></a></li>\n""" % \
- (feed.feed_id, feed.feed_title)
+ (feed["feed_id"], feed["feed_title"])
posts = htmlheader
- for article in feed.articles.values():
+ for article in mongo_db.get_articles_from_collection(feed["feed_id"]):
- post_file_name = os.path.normpath(feed_folder + "/" + article.article_id + ".html")
+ post_file_name = os.path.normpath(feed_folder + "/" + article["article_id"] + ".html")
feed_index = os.path.normpath(feed_folder + "/index.html")
- posts += article.article_date + " - " + \
+ posts += article["article_date"].ctime() + " - " + \
"""<a href="./%s.html">%s</a>""" % \
- (article.article_id, article.article_title[:150]) + "<br />\n"
-
+ (article["article_id"], article["article_title"][:150]) + "<br />\n"
a_post = htmlheader
a_post += '\n<div style="width: 50%; overflow:hidden; text-align: justify; margin:0 auto">\n'
a_post += """<h1><a href="%s">%s</a></h1><br />""" % \
- (article.article_link, article.article_title)
- a_post += article.article_description
+ (article["article_link"], article["article_title"])
+ a_post += article["article_content"]
a_post += "</div>\n<hr />\n"
- a_post += """<br />\n<a href="%s">Complete story</a>\n<br />\n""" % (article.article_link,)
+ a_post += """<br />\n<a href="%s">Complete story</a>\n<br />\n""" % (article["article_link"],)
a_post += "<hr />\n" + htmlfooter
-
with open(post_file_name, "w") as f:
- f.write(a_post)
+ f.write(a_post.encode('utf-8'))
posts += htmlfooter
with open(feed_index, "w") as f:
- f.write(posts)
+ f.write(posts.encode('utf-8'))
index += "\n</ul>\n<br />"
index += htmlfooter
- with open(utils.path + "/var/export/webzine/" + "index.html", "w") as f:
- f.write(index)
+ with open(conf.path + "/var/export/webzine/" + "index.html", "w") as f:
+ f.write(index.encode('utf-8'))
def export_txt(feeds):
"""
diff --git a/source/pyAggr3g470r.py b/source/pyAggr3g470r.py
index 577b3451..a135debd 100755
--- a/source/pyAggr3g470r.py
+++ b/source/pyAggr3g470r.py
@@ -1171,9 +1171,11 @@ class Root:
Export articles currently loaded from the MongoDB database with
the appropriate function of the 'export' module.
"""
+ getattr(export, export_method)(self.mongo)
try:
- getattr(export, export_method)(self.mongo.get_all_articles())
+ getattr(export, export_method)(self.mongo)
except Exception, e:
+ print e
return self.error_page(e)
return self.management()
bgstack15