diff -r fd3682228853 -r 6ed552aebeb4 reportlab/lib/enums.py --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/reportlab/lib/enums.py Thu Apr 13 14:14:58 2000 +0000 @@ -0,0 +1,45 @@ +############################################################################### +# +# ReportLab Public License Version 1.0 +# +# Except for the change of names the spirit and intention of this +# license is the same as that of Python +# +# (C) Copyright ReportLab Inc. 1998-2000. +# +# +# All Rights Reserved +# +# Permission to use, copy, modify, and distribute this software and its +# documentation for any purpose and without fee is hereby granted, provided +# that the above copyright notice appear in all copies and that both that +# copyright notice and this permission notice appear in supporting +# documentation, and that the name of ReportLab not be used +# in advertising or publicity pertaining to distribution of the software +# without specific, written prior permission. +# +# +# Disclaimer +# +# ReportLab Inc. DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS +# SOFTWARE, INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS, +# IN NO EVENT SHALL ReportLab BE LIABLE FOR ANY SPECIAL, INDIRECT +# OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS +# OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR +# OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +# PERFORMANCE OF THIS SOFTWARE. +# +############################################################################### +# $Log: enums.py,v $ +# Revision 1.1 2000/04/13 14:14:58 rgbecker +# Added enums.py as a place for project wide constants +# +# +__version__=''' $Id: enums.py,v 1.1 2000/04/13 14:14:58 rgbecker Exp $ ''' +__doc__=""" +holder for all reportlab's enumerated types +""" +TA_LEFT = 0 +TA_CENTER = 1 +TA_RIGHT = 2 +TA_JUSTIFY = 4