* Bump versions of django and django-haystack in requirements.txt
* Update django-djconfig to django-1.9-compatible version
* Changed the old style usage of get_model to new django.apps
This change is backward-compatible to django-1.7.
* Do not autoescape rendered template contexts in tests
A change in django
(django/django@19a5f6da32) caused all
rendered templates to be autoescaped by default, which broke some
of the tests by escaping ampersands in rendered urls.
* Remove Python 3.3 from .travis.yml
Django 1.8 is the last one to support Python 3.3.
Elasticsearch backend in Haystack doesn't convert Python Boolean False to the `'false'` string, as stored in the index, but a filter of 0 (zero) is translated to 'false' in Whoosh and Elasticsearch.
* core.timezone UTC timezones
* user.auth fix failing tests due to key based rate-limit
* core.utils.timezone tests
* user.middleware handle timezone errors
* user.tests timezone middleware
* user move timezone choices from model to form
* user timezone choices tests
* core.rate_limit make is_limited a callable
* core.rate_limit refactor
* core.rate_limit fix random tests fails due to rate_limit.fixed_window
* topic do not rate-limit on form error
template.category and subcategory colors, fixes#113
* Spirit #113: Fixes the color issue in subcategories
* Spirit #113: Fixed color issue in list overview
* Spirit #110 - Added colour in 2 html spots as well as added the field to the model and created a form validation to make sure it is a valid hex colour
* Spirit #110
+ Renamed from colour -> color
+ Changed if value = '' to if value
+ Removed accidentally placed background color
+ Added null=True to model field
+ Extended regex to allow for uppercase as well
+ Restored comment section in html
* Spirit #110
+ Reversed the fix ;)
* Spirit #110
+ Removed the null=True
+ Added help text
+ Added unit test
- track number of given and received likes when liking/unliking
- update comment and topic counts with post_save/post_delete signal
- data migration to update existing profiles
- includes tests