Package Pyblosxom :: Package renderers
[hide private]
[frames] | no frames]

Source Code for Package Pyblosxom.renderers

 1  ####################################################################### 
 2  # This file is part of PyBlosxom. 
 3  # 
 4  # Copyright (c) 2003, 2004, 2005, 2006 Wari Wahab 
 5  #  
 6  # PyBlosxom is distributed under the MIT license.  See the file LICENSE 
 7  # for distribution details. 
 8  # 
 9  # $Id: __init__.py 913 2006-08-08 20:29:42Z willhelm $ 
10  ####################################################################### 
11  """ 
12  The end of the PyBlosxom request lifecycle involves rendering the  
13  entries we've decided we want to render.  This is the job of the 
14  renderers.  They handle pulling in templates, expanding variables, 
15  formatting entries into stories, and then outputting it to stdout 
16  (or wherever) for final output. 
17   
18  Creating a new renderer involves dropping a new module in this 
19  directory and adjusting your config file to use your new module. 
20  """ 
21   
22  __revision__ = "$Revision: 913 $" 
23