Commit 188fcc44 authored by Michal Čihař's avatar Michal Čihař

Mention optional requirement in docs

parent 9a3abb94
...@@ -26,6 +26,8 @@ PyGtk ...@@ -26,6 +26,8 @@ PyGtk
http://www.pygtk.org/ http://www.pygtk.org/
south south
http://south.aeracode.org/ http://south.aeracode.org/
libravatar (optional for federated avatar support)
https://pypi.python.org/pypi/pyLibravatar
Database backend Database backend
Any database supported in Django will work, check their documentation for more details. Any database supported in Django will work, check their documentation for more details.
......
...@@ -27,6 +27,7 @@ from django.utils.translation import ugettext as _ ...@@ -27,6 +27,7 @@ from django.utils.translation import ugettext as _
from django.contrib import messages from django.contrib import messages
from django.conf import settings from django.conf import settings
from weblate import appsettings from weblate import appsettings
from trans.util import HAS_LIBRAVATAR
import weblate import weblate
import os import os
...@@ -112,6 +113,11 @@ def performance(request): ...@@ -112,6 +113,11 @@ def performance(request):
), ),
'production-email', 'production-email',
)) ))
checks.append((
_('Federated avatar support'),
HAS_LIBRAVATAR,
'production-avatar',
))
return render_to_response( return render_to_response(
"admin/performance.html", "admin/performance.html",
RequestContext( RequestContext(
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment