annotate potd/tasks.py @ 645:99f7917702ca

Fix 081a88b3bfc8, javascript resize of forum images. Commit 081a88b3bfc8 broke those pages that loaded forums.js but did not load the imagesLoaded jQuery extension. Now we have arranged it so that only the forums topic view loads imagesLoaded and put the resizing javascript inline.
author Brian Neal <bgneal@gmail.com>
date Mon, 11 Mar 2013 15:30:25 -0500
parents ee87ea74d46b
children aeafbf3ecebf
rev   line source
bgneal@515 1 """
bgneal@515 2 Celery tasks for the POTD app.
bgneal@515 3
bgneal@515 4 """
bgneal@515 5 from celery.task import task
bgneal@515 6
bgneal@515 7 import potd.tools
bgneal@515 8
bgneal@515 9
bgneal@515 10 @task
bgneal@515 11 def pick_potd():
bgneal@515 12 potd.tools.pick_potd()