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

Source Code for Package Pyblosxom.entries

 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 does most of its work on "entries".  Each entry is a single 
13  unit of content which has a series of metadata properties (mtime, filename, 
14  id, ...) and also a block of data content.  Entries can come from the 
15  filesystem, SQL, or anywhere else.  They can be generated dynamically 
16  or statically. 
17   
18  The purpose of an Entry object is to encapsulate the metadata and data  
19  of the entry for later filtering and rendering by the other components  
20  of Pyblosxom. 
21  """ 
22   
23  __revision__ = "$Revision: 913 $" 
24