1 ############################################################################### |
1 #copyright ReportLab Inc. 2000 |
2 # |
2 #see license.txt for license details |
3 # ReportLab Public License Version 1.0 |
3 #history http://cvs.sourceforge.net/cgi-bin/cvsweb.cgi/reportlab/demos/odyssey/dodyssey.py?cvsroot=reportlab |
4 # |
4 #$Header: /tmp/reportlab/reportlab/demos/odyssey/dodyssey.py,v 1.8 2000/10/25 08:57:44 rgbecker Exp $ |
5 # Except for the change of names the spirit and intention of this |
5 __version__=''' $Id: dodyssey.py,v 1.8 2000/10/25 08:57:44 rgbecker Exp $ ''' |
6 # license is the same as that of Python |
|
7 # |
|
8 # (C) Copyright ReportLab Inc. 1998-2000. |
|
9 # |
|
10 # |
|
11 # All Rights Reserved |
|
12 # |
|
13 # Permission to use, copy, modify, and distribute this software and its |
|
14 # documentation for any purpose and without fee is hereby granted, provided |
|
15 # that the above copyright notice appear in all copies and that both that |
|
16 # copyright notice and this permission notice appear in supporting |
|
17 # documentation, and that the name of ReportLab not be used |
|
18 # in advertising or publicity pertaining to distribution of the software |
|
19 # without specific, written prior permission. |
|
20 # |
|
21 # |
|
22 # Disclaimer |
|
23 # |
|
24 # ReportLab Inc. DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS |
|
25 # SOFTWARE, INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS, |
|
26 # IN NO EVENT SHALL ReportLab BE LIABLE FOR ANY SPECIAL, INDIRECT |
|
27 # OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS |
|
28 # OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR |
|
29 # OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR |
|
30 # PERFORMANCE OF THIS SOFTWARE. |
|
31 # |
|
32 ############################################################################### |
|
33 # $Log: dodyssey.py,v $ |
|
34 # Revision 1.7 2000/06/01 15:23:06 rgbecker |
|
35 # Platypus re-organisation |
|
36 # |
|
37 # Revision 1.6 2000/06/01 09:41:11 rgbecker |
|
38 # test filename case fix |
|
39 # |
|
40 # Revision 1.5 2000/05/17 22:15:58 rgbecker |
|
41 # Renamed BasicFrame to Frame |
|
42 # |
|
43 # Revision 1.4 2000/05/13 09:23:45 rgbecker |
|
44 # Fix spacing bugs |
|
45 # |
|
46 # Revision 1.3 2000/05/12 16:19:07 rgbecker |
|
47 # Title leading changes |
|
48 # |
|
49 # Revision 1.2 2000/05/12 14:19:03 andy_robinson |
|
50 # Added 'if __name__=='__main__'' handlers to demos |
|
51 # |
|
52 # Revision 1.1 2000/05/12 12:45:27 rgbecker |
|
53 # Initial doctemplate version of fodyssey.py |
|
54 # |
|
55 # Revision 1.4 2000/04/14 12:17:05 rgbecker |
|
56 # Splitting layout.py |
|
57 # |
|
58 # Revision 1.3 2000/04/13 14:48:41 rgbecker |
|
59 # <para> tag added in layout.py paraparser.py |
|
60 # |
|
61 # Revision 1.2 2000/04/12 16:24:34 rgbecker |
|
62 # XML Tagged Paragraph parser changes |
|
63 # |
|
64 # Revision 1.1 2000/04/06 08:58:09 rgbecker |
|
65 # Paragraph formatting version of odyssey.py |
|
66 # |
|
67 __version__=''' $Id: dodyssey.py,v 1.7 2000/06/01 15:23:06 rgbecker Exp $ ''' |
|
68 __doc__='' |
6 __doc__='' |
69 |
7 |
70 #REPORTLAB_TEST_SCRIPT |
8 #REPORTLAB_TEST_SCRIPT |
71 import sys, copy, string, os |
9 import sys, copy, string, os |
72 from reportlab.platypus import * |
10 from reportlab.platypus import * |