From 329fa76fae015c8f7faee17dd498e8e87125477b Mon Sep 17 00:00:00 2001 From: Cédric Bonhomme Date: Wed, 3 Apr 2013 08:26:27 +0200 Subject: THe code for the QR Code generation is now in utils.py. --- source/pyAggr3g470r.py | 20 ++------------------ 1 file changed, 2 insertions(+), 18 deletions(-) (limited to 'source/pyAggr3g470r.py') diff --git a/source/pyAggr3g470r.py b/source/pyAggr3g470r.py index 79181d68..282ec600 100755 --- a/source/pyAggr3g470r.py +++ b/source/pyAggr3g470r.py @@ -60,9 +60,6 @@ import export import mongodb import feedgetter import auth -#from qrcode.pyqrnative.PyQRNative import QRCode, QRErrorCorrectLevel, CodeOverflowException -#from qrcode import qr - def error_404(status, message, traceback, version): """ @@ -220,22 +217,9 @@ class pyAggr3g470r(object): description += "\n
\n" else: description = "

No description available.

\n
\n" - """ + # Generation of the QR Code for the current article - try: - os.makedirs("./var/qrcode/") - except OSError: - pass - if not os.path.isfile("./var/qrcode/" + article_id + ".png"): - # QR Code generation - try: - f = qr.QRUrl(url = article["article_link"]) - f.make() - except: - f = qr.QRUrl(url = "URL too long.") - f.make() - f.save("./var/qrcode/"+article_id+".png") - """ + utils.generate_qr_code(article) # Previous and following articles previous, following = None, None -- cgit