add URL master 0.1
authorRadek Czajka <radekczajka@nowoczesnapolska.org.pl>
Fri, 9 Aug 2013 12:38:25 +0000 (14:38 +0200)
committerRadek Czajka <radekczajka@nowoczesnapolska.org.pl>
Fri, 9 Aug 2013 14:00:15 +0000 (16:00 +0200)
Changelog.txt
django_libravatar/templatetags/libravatar_tags.py
setup.py

index 54f7c75..c7e6818 100644 (file)
@@ -1,3 +1,3 @@
-1.0 (2013-08-09)
-  - Initial release
+0.1 (2013-08-09)
+       - Initial release
 
index 34d5446..7702a3f 100644 (file)
@@ -12,7 +12,7 @@ register = template.Library()
 @register.simple_tag(takes_context=True)
 def libravatar(context, email, size=None):
     https = context['request'].is_secure()
-    default = LIBRAVATAR_DEFAULT_HTTPS if https else LIBRAVATAR_DEFAULT_HTTP
+    default = LIBRAVATAR_DEFAULT_HTTPS if https else LIBRAVATAR_DEFAULT
     if hasattr(default, '__call__'):
         default = default(size)
     if not email:
index 246cd21..1462d5a 100755 (executable)
--- a/setup.py
+++ b/setup.py
@@ -15,7 +15,7 @@ setup(
     version=__version__,
     author='Radek Czajka',
     author_email='radekczajka@nowoczesnapolska.org.pl',
-    url = '',
+    url = 'http://git.nowoczesnapolska.org.pl/?p=django-libravatar.git',
     packages=find_packages(),
     include_package_data=True,
     license='GNU AGPL 3.0',