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

Source Code for Package Pyblosxom.cache

 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  PyBlosxom works by pulling data from the file system, passing it through 
13  a series of filters and transformations, and then rendering it.  Some 
14  of these steps are somewhat intensive and to alleviate this, we cache 
15  things. 
16   
17  For example, the entries.base.BaseEntry class allows entries to be  
18  cached after they've been pulled from the file system and passed  
19  through a series of filters/formatters. 
20   
21  There are several cache mechanisms.  Read the documentation for each 
22  to understand how they work and how to set them up.  Additional caching 
23  mechanisms can be dropped in this directory and used by setting the 
24  "cacheDriver" item in the config dict. 
25  """ 
26   
27  __revision__ = "$Revision: 913 $" 
28