├── .gitignore ├── CONTRIBUTORS ├── LICENSE ├── MANIFEST.in ├── README.rst ├── djangoratings ├── __init__.py ├── admin.py ├── default_settings.py ├── exceptions.py ├── fields.py ├── forms.py ├── management │ ├── __init__.py │ └── commands │ │ ├── __init__.py │ │ └── update_recommendations.py ├── managers.py ├── migrations │ ├── 0001_initial.py │ ├── 0002_add_mean_and_stddev.py │ ├── 0003_add_correlations.py │ ├── 0004_rethink_recommendations.py │ ├── 0005_add_exclusions.py │ ├── 0006_add_cookies.py │ └── __init__.py ├── models.py ├── runtests.py ├── templatetags │ ├── __init__.py │ └── ratings.py ├── tests.py └── views.py └── setup.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcramer/django-ratings/HEAD/.gitignore -------------------------------------------------------------------------------- /CONTRIBUTORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcramer/django-ratings/HEAD/CONTRIBUTORS -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcramer/django-ratings/HEAD/LICENSE -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcramer/django-ratings/HEAD/MANIFEST.in -------------------------------------------------------------------------------- /README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcramer/django-ratings/HEAD/README.rst -------------------------------------------------------------------------------- /djangoratings/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcramer/django-ratings/HEAD/djangoratings/__init__.py -------------------------------------------------------------------------------- /djangoratings/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcramer/django-ratings/HEAD/djangoratings/admin.py -------------------------------------------------------------------------------- /djangoratings/default_settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcramer/django-ratings/HEAD/djangoratings/default_settings.py -------------------------------------------------------------------------------- /djangoratings/exceptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcramer/django-ratings/HEAD/djangoratings/exceptions.py -------------------------------------------------------------------------------- /djangoratings/fields.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcramer/django-ratings/HEAD/djangoratings/fields.py -------------------------------------------------------------------------------- /djangoratings/forms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcramer/django-ratings/HEAD/djangoratings/forms.py -------------------------------------------------------------------------------- /djangoratings/management/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /djangoratings/management/commands/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /djangoratings/management/commands/update_recommendations.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcramer/django-ratings/HEAD/djangoratings/management/commands/update_recommendations.py -------------------------------------------------------------------------------- /djangoratings/managers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcramer/django-ratings/HEAD/djangoratings/managers.py -------------------------------------------------------------------------------- /djangoratings/migrations/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcramer/django-ratings/HEAD/djangoratings/migrations/0001_initial.py -------------------------------------------------------------------------------- /djangoratings/migrations/0002_add_mean_and_stddev.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcramer/django-ratings/HEAD/djangoratings/migrations/0002_add_mean_and_stddev.py -------------------------------------------------------------------------------- /djangoratings/migrations/0003_add_correlations.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcramer/django-ratings/HEAD/djangoratings/migrations/0003_add_correlations.py -------------------------------------------------------------------------------- /djangoratings/migrations/0004_rethink_recommendations.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcramer/django-ratings/HEAD/djangoratings/migrations/0004_rethink_recommendations.py -------------------------------------------------------------------------------- /djangoratings/migrations/0005_add_exclusions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcramer/django-ratings/HEAD/djangoratings/migrations/0005_add_exclusions.py -------------------------------------------------------------------------------- /djangoratings/migrations/0006_add_cookies.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcramer/django-ratings/HEAD/djangoratings/migrations/0006_add_cookies.py -------------------------------------------------------------------------------- /djangoratings/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /djangoratings/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcramer/django-ratings/HEAD/djangoratings/models.py -------------------------------------------------------------------------------- /djangoratings/runtests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcramer/django-ratings/HEAD/djangoratings/runtests.py -------------------------------------------------------------------------------- /djangoratings/templatetags/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /djangoratings/templatetags/ratings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcramer/django-ratings/HEAD/djangoratings/templatetags/ratings.py -------------------------------------------------------------------------------- /djangoratings/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcramer/django-ratings/HEAD/djangoratings/tests.py -------------------------------------------------------------------------------- /djangoratings/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcramer/django-ratings/HEAD/djangoratings/views.py -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcramer/django-ratings/HEAD/setup.py --------------------------------------------------------------------------------