Commit d1458bd9417a96a736871fb7ff67743f940d176c

Authored by Sergio Oliveira
1 parent 4a3e8b3d

Updating feedzilla to latest stable version

requirements.txt
... ... @@ -24,10 +24,9 @@ git+https://github.com/TracyWebTech/django-revproxy/
24 24 django-conversejs
25 25  
26 26 # Feedzilla (planet) and deps
27   -https://bitbucket.org/lorien/feedzilla/get/tip.tar.gz # Temporarily work around
  27 +feedzilla==0.22
28 28 django-common
29 29 django-taggit
30   -django-taggit-templatetags
31 30 feedparser
32 31 lxml
33 32 grab
... ...
src/colab/custom_settings.py
... ... @@ -36,7 +36,6 @@ INSTALLED_APPS = INSTALLED_APPS + (
36 36 # Feedzilla and deps
37 37 'feedzilla',
38 38 'taggit',
39   - 'taggit_templatetags',
40 39 'common',
41 40 )
42 41  
... ...
src/planet/templates/feedzilla/base.html
1 1 {% extends 'base.html' %}
2   -{% load i18n feedzilla_tags taggit_extras %}
  2 +{% load i18n feedzilla_tags %}
3 3  
4 4 {% block main-content %}
5 5 <h2>{% trans 'Planet' %}</h2>
... ...