
For the impatient:
Download index.py
PyBlosxom home page
PyBlosxom plugin registry
Updated 5/4/2007.
index.py is a PyBlosxom plugin that displays displays an alphabetical index of all entries. It's similar to other index plugins, except that it indexes the entries by name, instead of by date.
As an example, here's the index for this site.
There are number of config parameters available to customize index.py's behavior, all optional. Here they are, along with their defaults:
py['index_trigger'] = '/site-index'
py['index_num_columns'] = 2
py['index_letters_first'] = True
py['index_title'] = 'index'
py['index_use_story_template'] = True
index.py is copyright 2006 Ryan Barrett, and is distributed
under the GPL.
See also:
I was trying to set up index.py for my pyblosxom installation as I did for all the other plugins (pycalendar, pyarchives, comments, etc.).
In all those cases, I for example had to put `$calendar' into my flavour file (head.html) in this paritcular case which does look like
"<div class=\"menu\">
<div class=\"menuhead\">
Calendar
</div>
<div class=\"menubody\">
$calendar
</div>
</div>"
THE QUESTION:
I wasn't able to set up index.py for some reason I don't know yet. Well, index.py is in place as pycalendar.py etc. is so I think thats all fine. What I don't understand is this "index_trigger" thing and how do I integrate this into my flavour file? Can you maybe add this to the doc string of index.py?
TIA Markus :)