Customization

This section of the manual covers how to customize/setup pyBlog to do what you want it to do. This ranges from setting configuration (also known as conf) files to how to install your own archive system.

A short discussion about conf files is in order here. pyBlog uses Python's ConfigParser module for configuration files. That means it follows the RFC 822 standard for configuration files. So all sections have a title and then have a "variable: value" or "variable=value" setup. So an example of this is the posts.conf file:

[settings]
page_location=../blog.html
[settings] is the header with page_location=../blog.html being the variable=value pair.

pyBlog 1.0; 2001-09-02