summaryrefslogtreecommitdiffstats
path: root/askbot/skins
diff options
context:
space:
mode:
authorEvgeny Fadeev <evgeny.fadeev@gmail.com>2012-11-27 01:39:10 -0300
committerEvgeny Fadeev <evgeny.fadeev@gmail.com>2012-11-27 01:39:10 -0300
commitb719aefcbe92886b1ac49f7de420f283f9811f57 (patch)
treeb5d7bcdd95218468036065d21f49c30ccceccf2f /askbot/skins
parent57d9360bebbbe16754ecd6168982aaa094963509 (diff)
downloadaskbot-b719aefcbe92886b1ac49f7de420f283f9811f57.tar.gz
askbot-b719aefcbe92886b1ac49f7de420f283f9811f57.tar.bz2
askbot-b719aefcbe92886b1ac49f7de420f283f9811f57.zip
added full text title search for mysql
Diffstat (limited to 'askbot/skins')
-rw-r--r--askbot/skins/utils.py5
1 files changed, 4 insertions, 1 deletions
diff --git a/askbot/skins/utils.py b/askbot/skins/utils.py
index f0e149d0..da367aa6 100644
--- a/askbot/skins/utils.py
+++ b/askbot/skins/utils.py
@@ -169,12 +169,15 @@ def get_media_url(url, ignore_missing = False):
#print after - before
return url
-def update_media_revision(skin = None):
+def update_media_revision(skin=None):
"""update skin media revision number based on the contents
of the skin media directory"""
from askbot.conf import settings as askbot_settings
resource_revision = askbot_settings.MEDIA_RESOURCE_REVISION
+ import pdb
+ pdb.set_trace()
+
if skin:
if skin in get_skin_choices():
skin_path = get_path_to_skin(skin)