A collection of non-WordPress extensions for django-wordpress (the real one)
Project description
A collection of useful, non-WordPress extensions for django-wordpress (the real one).
pip install the-real-django-wordpress-extras
Add wordpressext to INSTALLED_APPS in settings.py.
Be sure to put wordpressext above wordpress in urls.py:
urlpatterns += patterns('', ... url(r'^blog/', include('wordpressext.urls')), url(r'^blog/', include('wordpress.urls')), ... )
Email sender is determined in the following order:
settings.WPEXT_SENDER email address
settings.POSTMARK_SENDER if Postmark settings are configured and WPEXT_SENDER does not exist
settings.ADMINS the first admin email address, if POSTMARK_SENDER does not exist
Features
Parse.ly Meta Template Tag
Generate a Parse.ly meta tag:
{% parselymeta post %}
Disqus Comment Notifications
It’s the only feature for now! And it’s only half implemented!
If you use Disqus for comments, you can provide a post-comment JavaScript hook to notify post authors of the new comment. Here is some example JavaScript you can do enable comment notifications:
var newComment = function(comment) { var url = window.location.href + "disqus/"; var params = { id: comment.id, text: comment.text, csrfmiddlewaretoken: csrftoken // you'll have to get this from somewhere }; $.post(url, comment, function(data) { // don't really need to do anything }); }; var disqus_config = function() { this.callbacks.onNewComment = [function(comment) { newComment(comment); }]; };
The comment endpoint is located at <path_to_blog>/<year>/<month>/<day>/<slug>/disqus/. It accepts the following POST parameters:
id the Disqus ID of the comment
text the text of the comment
csrfmiddlewaretoken a CSRF token, if protection is enabled
Refer to the onNewComment callback on how to implement your own.
Future versions will connect with the Disqus API to do various things.
Project details
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
File details
Details for the file the-real-django-wordpress-extras-0.4.tar.gz
.
File metadata
- Download URL: the-real-django-wordpress-extras-0.4.tar.gz
- Upload date:
- Size: 4.6 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 24ea0465c33d233025d45d1671db716e19bbf4f554a06dc909f35747392e686e |
|
MD5 | 69e3886c64e99420a6957aaa6c9d4dea |
|
BLAKE2b-256 | 789456106ab2a780bf7cf621644cf864ac5b77fa6d111d3278f25d00bdff34e2 |