logilab/doctools

view __init__.py @ 0:cc367abb080e

forget the past. forget the past.
author root
date Wed, 26 Apr 2006 10:48:09 +0000
parents
children 62b682036b6e
line source
1 # Copyright (c) 2000-2003 LOGILAB S.A. (Paris, FRANCE).
2 # http://www.logilab.fr/ -- mailto:contact@logilab.fr
3 #
4 # This program is free software; you can redistribute it and/or modify it under
5 # the terms of the GNU General Public License as published by the Free Software
6 # Foundation; either version 2 of the License, or (at your option) any later
7 # version.
8 #
9 # This program is distributed in the hope that it will be useful, but WITHOUT
10 # ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
11 # FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details.
12 #
13 # You should have received a copy of the GNU General Public License along with
14 # this program; if not, write to the Free Software Foundation, Inc.,
15 # 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
16 """
17 doctools is a python package to transform xml files into fo, pdf or html files
18 """
20 __revision__ = "$Id: __init__.py,v 1.2 2004-05-27 13:26:45 sand Exp $"
22 try:
23 false = False
24 except NameError:
25 false = None
27 true = (not false)
29 __builtins__['false'] = false
30 __builtins__['true'] = true