Mercurial > public > sg101
comparison smiley/__init__.py @ 613:0729c73d5761
For issue #18, use absolute URLs to the smilies for RSS readers.
author | Brian Neal <bgneal@gmail.com> |
---|---|
date | Sat, 01 Sep 2012 15:17:40 -0500 |
parents | ee87ea74d46b |
children | 7429c98c8ece |
comparison
equal
deleted
inserted
replaced
612:5be850a66dfc | 613:0729c73d5761 |
---|---|
1 """ | 1 """ |
2 Smiley classes and functions. | 2 Smiley classes and functions. |
3 | |
3 """ | 4 """ |
4 import re | |
5 | |
6 from django.utils.safestring import SafeData | 5 from django.utils.safestring import SafeData |
7 from django.utils.html import conditional_escape | 6 from django.utils.html import conditional_escape |
8 | 7 |
9 from smiley.models import Smiley | 8 from smiley.models import Smiley |
10 | 9 |