trackback - Trackback support....¶
Summary¶
This plugin allows pyblosxom to process trackback http://www.sixapart.com/pronet/docs/trackback_spec pings.
Install¶
Requires the comments
plugin. Though you don’t need to have
comments enabled on your blog in order for trackbacks to work.
This plugin comes with Pyblosxom. To install, do the following:
Add
Pyblosxom.plugins.trackback
to theload_plugins
list in yourconfig.py
file.Add this to your
config.py
file:py['trackback_urltrigger'] = "/trackback"
These web forms are useful for testing. You can use them to send trackback pings with arbitrary content to the URL of your choice:
Now you need to advertise the trackback ping link. Add this to your
story
template:<a href="$(base_url)/trackback/$(file_path)" title="Trackback">TB</a>
You can supply an embedded RDF description of the trackback ping, too. Add this to your
story
orcomment-story
template:<!-- <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:trackback="http://madskills.com/public/xml/rss/module/trackback/"> <rdf:Description about="$(base_url)/$(file_path)" dc:title="$(title)" dc:identifier="$(base_url)/$(file_path)" trackback:ping="$(base_url)/trackback/$(file_path)" /> </rdf:RDF> -->
License¶
Plugin is distributed under license: MIT