├── .gitattributes ├── .gitignore ├── LICENSE ├── README.md ├── easy_comment ├── __init__.py ├── admin.py ├── apps.py ├── forms.py ├── handlers.py ├── migrations │ └── __init__.py ├── models.py ├── static │ ├── ckeditor │ │ └── ckeditor │ │ │ └── plugins │ │ │ └── prism │ │ │ ├── Creating and Editing Code Snippets.txt │ │ │ ├── Installation Guide.txt │ │ │ ├── LICENSE.txt │ │ │ ├── README.md │ │ │ ├── lib │ │ │ └── prism │ │ │ │ ├── prism_patched.min.css │ │ │ │ └── prism_patched.min.js │ │ │ └── plugin.js │ ├── easy_comment │ │ ├── css │ │ │ ├── bootstrap.css │ │ │ ├── comment.css │ │ │ └── prism.css │ │ ├── image │ │ │ └── default.png │ │ └── js │ │ │ └── comment.js │ └── notifications │ │ └── notice.js ├── templates │ ├── easy_comment │ │ ├── comment.html │ │ └── comment_entry.html │ └── notifications │ │ ├── email │ │ ├── email.html │ │ └── email.txt │ │ ├── list.html │ │ ├── notice.html │ │ └── test_tags.html ├── templatetags │ ├── __init__.py │ └── comment_tags.py ├── tests.py ├── urls.py └── views.py ├── online_status ├── __init__.py ├── admin.py ├── apps.py ├── middleware.py ├── migrations │ └── __init__.py ├── models.py ├── settings.py ├── tests.py └── views.py └── requirements └── requirements.txt /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r26zhao/django-easy-comment/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r26zhao/django-easy-comment/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r26zhao/django-easy-comment/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r26zhao/django-easy-comment/HEAD/README.md -------------------------------------------------------------------------------- /easy_comment/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /easy_comment/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r26zhao/django-easy-comment/HEAD/easy_comment/admin.py -------------------------------------------------------------------------------- /easy_comment/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r26zhao/django-easy-comment/HEAD/easy_comment/apps.py -------------------------------------------------------------------------------- /easy_comment/forms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r26zhao/django-easy-comment/HEAD/easy_comment/forms.py -------------------------------------------------------------------------------- /easy_comment/handlers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r26zhao/django-easy-comment/HEAD/easy_comment/handlers.py -------------------------------------------------------------------------------- /easy_comment/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /easy_comment/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r26zhao/django-easy-comment/HEAD/easy_comment/models.py -------------------------------------------------------------------------------- /easy_comment/static/ckeditor/ckeditor/plugins/prism/Creating and Editing Code Snippets.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r26zhao/django-easy-comment/HEAD/easy_comment/static/ckeditor/ckeditor/plugins/prism/Creating and Editing Code Snippets.txt -------------------------------------------------------------------------------- /easy_comment/static/ckeditor/ckeditor/plugins/prism/Installation Guide.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r26zhao/django-easy-comment/HEAD/easy_comment/static/ckeditor/ckeditor/plugins/prism/Installation Guide.txt -------------------------------------------------------------------------------- /easy_comment/static/ckeditor/ckeditor/plugins/prism/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r26zhao/django-easy-comment/HEAD/easy_comment/static/ckeditor/ckeditor/plugins/prism/LICENSE.txt -------------------------------------------------------------------------------- /easy_comment/static/ckeditor/ckeditor/plugins/prism/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r26zhao/django-easy-comment/HEAD/easy_comment/static/ckeditor/ckeditor/plugins/prism/README.md -------------------------------------------------------------------------------- /easy_comment/static/ckeditor/ckeditor/plugins/prism/lib/prism/prism_patched.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r26zhao/django-easy-comment/HEAD/easy_comment/static/ckeditor/ckeditor/plugins/prism/lib/prism/prism_patched.min.css -------------------------------------------------------------------------------- /easy_comment/static/ckeditor/ckeditor/plugins/prism/lib/prism/prism_patched.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r26zhao/django-easy-comment/HEAD/easy_comment/static/ckeditor/ckeditor/plugins/prism/lib/prism/prism_patched.min.js -------------------------------------------------------------------------------- /easy_comment/static/ckeditor/ckeditor/plugins/prism/plugin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r26zhao/django-easy-comment/HEAD/easy_comment/static/ckeditor/ckeditor/plugins/prism/plugin.js -------------------------------------------------------------------------------- /easy_comment/static/easy_comment/css/bootstrap.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r26zhao/django-easy-comment/HEAD/easy_comment/static/easy_comment/css/bootstrap.css -------------------------------------------------------------------------------- /easy_comment/static/easy_comment/css/comment.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r26zhao/django-easy-comment/HEAD/easy_comment/static/easy_comment/css/comment.css -------------------------------------------------------------------------------- /easy_comment/static/easy_comment/css/prism.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r26zhao/django-easy-comment/HEAD/easy_comment/static/easy_comment/css/prism.css -------------------------------------------------------------------------------- /easy_comment/static/easy_comment/image/default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r26zhao/django-easy-comment/HEAD/easy_comment/static/easy_comment/image/default.png -------------------------------------------------------------------------------- /easy_comment/static/easy_comment/js/comment.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r26zhao/django-easy-comment/HEAD/easy_comment/static/easy_comment/js/comment.js -------------------------------------------------------------------------------- /easy_comment/static/notifications/notice.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r26zhao/django-easy-comment/HEAD/easy_comment/static/notifications/notice.js -------------------------------------------------------------------------------- /easy_comment/templates/easy_comment/comment.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r26zhao/django-easy-comment/HEAD/easy_comment/templates/easy_comment/comment.html -------------------------------------------------------------------------------- /easy_comment/templates/easy_comment/comment_entry.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r26zhao/django-easy-comment/HEAD/easy_comment/templates/easy_comment/comment_entry.html -------------------------------------------------------------------------------- /easy_comment/templates/notifications/email/email.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r26zhao/django-easy-comment/HEAD/easy_comment/templates/notifications/email/email.html -------------------------------------------------------------------------------- /easy_comment/templates/notifications/email/email.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r26zhao/django-easy-comment/HEAD/easy_comment/templates/notifications/email/email.txt -------------------------------------------------------------------------------- /easy_comment/templates/notifications/list.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r26zhao/django-easy-comment/HEAD/easy_comment/templates/notifications/list.html -------------------------------------------------------------------------------- /easy_comment/templates/notifications/notice.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r26zhao/django-easy-comment/HEAD/easy_comment/templates/notifications/notice.html -------------------------------------------------------------------------------- /easy_comment/templates/notifications/test_tags.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r26zhao/django-easy-comment/HEAD/easy_comment/templates/notifications/test_tags.html -------------------------------------------------------------------------------- /easy_comment/templatetags/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /easy_comment/templatetags/comment_tags.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r26zhao/django-easy-comment/HEAD/easy_comment/templatetags/comment_tags.py -------------------------------------------------------------------------------- /easy_comment/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r26zhao/django-easy-comment/HEAD/easy_comment/tests.py -------------------------------------------------------------------------------- /easy_comment/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r26zhao/django-easy-comment/HEAD/easy_comment/urls.py -------------------------------------------------------------------------------- /easy_comment/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r26zhao/django-easy-comment/HEAD/easy_comment/views.py -------------------------------------------------------------------------------- /online_status/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /online_status/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r26zhao/django-easy-comment/HEAD/online_status/admin.py -------------------------------------------------------------------------------- /online_status/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r26zhao/django-easy-comment/HEAD/online_status/apps.py -------------------------------------------------------------------------------- /online_status/middleware.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r26zhao/django-easy-comment/HEAD/online_status/middleware.py -------------------------------------------------------------------------------- /online_status/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /online_status/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r26zhao/django-easy-comment/HEAD/online_status/models.py -------------------------------------------------------------------------------- /online_status/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r26zhao/django-easy-comment/HEAD/online_status/settings.py -------------------------------------------------------------------------------- /online_status/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r26zhao/django-easy-comment/HEAD/online_status/tests.py -------------------------------------------------------------------------------- /online_status/views.py: -------------------------------------------------------------------------------- 1 | from django.shortcuts import render 2 | 3 | # Create your views here. 4 | -------------------------------------------------------------------------------- /requirements/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r26zhao/django-easy-comment/HEAD/requirements/requirements.txt --------------------------------------------------------------------------------