├── .gitignore ├── LICENSE ├── README ├── activity_stream ├── __init__.py ├── admin.py ├── management.py ├── models.py ├── templates │ ├── activity_stream │ │ ├── activity_item.html │ │ ├── ajax_following_stream.html │ │ ├── ajax_global_stream.html │ │ ├── follower_list.html │ │ ├── following_list.html │ │ ├── friends_activity_stream.html │ │ ├── global_activity_stream.html │ │ └── user_activity_stream.html │ └── notification │ │ └── new_follower │ │ ├── full.txt │ │ ├── notice.html │ │ └── short.txt ├── templatetags │ ├── __init__.py │ └── activity_stream_tags.py ├── tests.py ├── urls.py └── views.py ├── app_test_runner.py ├── run_tests.sh └── setup.py /.gitignore: -------------------------------------------------------------------------------- 1 | *.pyc 2 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philippWassibauer/django-activity-stream/HEAD/LICENSE -------------------------------------------------------------------------------- /README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philippWassibauer/django-activity-stream/HEAD/README -------------------------------------------------------------------------------- /activity_stream/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philippWassibauer/django-activity-stream/HEAD/activity_stream/__init__.py -------------------------------------------------------------------------------- /activity_stream/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philippWassibauer/django-activity-stream/HEAD/activity_stream/admin.py -------------------------------------------------------------------------------- /activity_stream/management.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philippWassibauer/django-activity-stream/HEAD/activity_stream/management.py -------------------------------------------------------------------------------- /activity_stream/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philippWassibauer/django-activity-stream/HEAD/activity_stream/models.py -------------------------------------------------------------------------------- /activity_stream/templates/activity_stream/activity_item.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /activity_stream/templates/activity_stream/ajax_following_stream.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philippWassibauer/django-activity-stream/HEAD/activity_stream/templates/activity_stream/ajax_following_stream.html -------------------------------------------------------------------------------- /activity_stream/templates/activity_stream/ajax_global_stream.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philippWassibauer/django-activity-stream/HEAD/activity_stream/templates/activity_stream/ajax_global_stream.html -------------------------------------------------------------------------------- /activity_stream/templates/activity_stream/follower_list.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philippWassibauer/django-activity-stream/HEAD/activity_stream/templates/activity_stream/follower_list.html -------------------------------------------------------------------------------- /activity_stream/templates/activity_stream/following_list.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philippWassibauer/django-activity-stream/HEAD/activity_stream/templates/activity_stream/following_list.html -------------------------------------------------------------------------------- /activity_stream/templates/activity_stream/friends_activity_stream.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philippWassibauer/django-activity-stream/HEAD/activity_stream/templates/activity_stream/friends_activity_stream.html -------------------------------------------------------------------------------- /activity_stream/templates/activity_stream/global_activity_stream.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philippWassibauer/django-activity-stream/HEAD/activity_stream/templates/activity_stream/global_activity_stream.html -------------------------------------------------------------------------------- /activity_stream/templates/activity_stream/user_activity_stream.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philippWassibauer/django-activity-stream/HEAD/activity_stream/templates/activity_stream/user_activity_stream.html -------------------------------------------------------------------------------- /activity_stream/templates/notification/new_follower/full.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philippWassibauer/django-activity-stream/HEAD/activity_stream/templates/notification/new_follower/full.txt -------------------------------------------------------------------------------- /activity_stream/templates/notification/new_follower/notice.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philippWassibauer/django-activity-stream/HEAD/activity_stream/templates/notification/new_follower/notice.html -------------------------------------------------------------------------------- /activity_stream/templates/notification/new_follower/short.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philippWassibauer/django-activity-stream/HEAD/activity_stream/templates/notification/new_follower/short.txt -------------------------------------------------------------------------------- /activity_stream/templatetags/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /activity_stream/templatetags/activity_stream_tags.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philippWassibauer/django-activity-stream/HEAD/activity_stream/templatetags/activity_stream_tags.py -------------------------------------------------------------------------------- /activity_stream/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philippWassibauer/django-activity-stream/HEAD/activity_stream/tests.py -------------------------------------------------------------------------------- /activity_stream/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philippWassibauer/django-activity-stream/HEAD/activity_stream/urls.py -------------------------------------------------------------------------------- /activity_stream/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philippWassibauer/django-activity-stream/HEAD/activity_stream/views.py -------------------------------------------------------------------------------- /app_test_runner.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philippWassibauer/django-activity-stream/HEAD/app_test_runner.py -------------------------------------------------------------------------------- /run_tests.sh: -------------------------------------------------------------------------------- 1 | python app_test_runner.py activity_stream/ 2 | 3 | -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philippWassibauer/django-activity-stream/HEAD/setup.py --------------------------------------------------------------------------------