File: changes

package info (click to toggle)
python-reportlab 1.20debian-1
  • links: PTS
  • area: main
  • in suites: sarge
  • size: 6,068 kB
  • ctags: 5,801
  • sloc: python: 53,293; xml: 1,494; makefile: 85
file content (6965 lines) | stat: -rw-r--r-- 354,010 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
2035
2036
2037
2038
2039
2040
2041
2042
2043
2044
2045
2046
2047
2048
2049
2050
2051
2052
2053
2054
2055
2056
2057
2058
2059
2060
2061
2062
2063
2064
2065
2066
2067
2068
2069
2070
2071
2072
2073
2074
2075
2076
2077
2078
2079
2080
2081
2082
2083
2084
2085
2086
2087
2088
2089
2090
2091
2092
2093
2094
2095
2096
2097
2098
2099
2100
2101
2102
2103
2104
2105
2106
2107
2108
2109
2110
2111
2112
2113
2114
2115
2116
2117
2118
2119
2120
2121
2122
2123
2124
2125
2126
2127
2128
2129
2130
2131
2132
2133
2134
2135
2136
2137
2138
2139
2140
2141
2142
2143
2144
2145
2146
2147
2148
2149
2150
2151
2152
2153
2154
2155
2156
2157
2158
2159
2160
2161
2162
2163
2164
2165
2166
2167
2168
2169
2170
2171
2172
2173
2174
2175
2176
2177
2178
2179
2180
2181
2182
2183
2184
2185
2186
2187
2188
2189
2190
2191
2192
2193
2194
2195
2196
2197
2198
2199
2200
2201
2202
2203
2204
2205
2206
2207
2208
2209
2210
2211
2212
2213
2214
2215
2216
2217
2218
2219
2220
2221
2222
2223
2224
2225
2226
2227
2228
2229
2230
2231
2232
2233
2234
2235
2236
2237
2238
2239
2240
2241
2242
2243
2244
2245
2246
2247
2248
2249
2250
2251
2252
2253
2254
2255
2256
2257
2258
2259
2260
2261
2262
2263
2264
2265
2266
2267
2268
2269
2270
2271
2272
2273
2274
2275
2276
2277
2278
2279
2280
2281
2282
2283
2284
2285
2286
2287
2288
2289
2290
2291
2292
2293
2294
2295
2296
2297
2298
2299
2300
2301
2302
2303
2304
2305
2306
2307
2308
2309
2310
2311
2312
2313
2314
2315
2316
2317
2318
2319
2320
2321
2322
2323
2324
2325
2326
2327
2328
2329
2330
2331
2332
2333
2334
2335
2336
2337
2338
2339
2340
2341
2342
2343
2344
2345
2346
2347
2348
2349
2350
2351
2352
2353
2354
2355
2356
2357
2358
2359
2360
2361
2362
2363
2364
2365
2366
2367
2368
2369
2370
2371
2372
2373
2374
2375
2376
2377
2378
2379
2380
2381
2382
2383
2384
2385
2386
2387
2388
2389
2390
2391
2392
2393
2394
2395
2396
2397
2398
2399
2400
2401
2402
2403
2404
2405
2406
2407
2408
2409
2410
2411
2412
2413
2414
2415
2416
2417
2418
2419
2420
2421
2422
2423
2424
2425
2426
2427
2428
2429
2430
2431
2432
2433
2434
2435
2436
2437
2438
2439
2440
2441
2442
2443
2444
2445
2446
2447
2448
2449
2450
2451
2452
2453
2454
2455
2456
2457
2458
2459
2460
2461
2462
2463
2464
2465
2466
2467
2468
2469
2470
2471
2472
2473
2474
2475
2476
2477
2478
2479
2480
2481
2482
2483
2484
2485
2486
2487
2488
2489
2490
2491
2492
2493
2494
2495
2496
2497
2498
2499
2500
2501
2502
2503
2504
2505
2506
2507
2508
2509
2510
2511
2512
2513
2514
2515
2516
2517
2518
2519
2520
2521
2522
2523
2524
2525
2526
2527
2528
2529
2530
2531
2532
2533
2534
2535
2536
2537
2538
2539
2540
2541
2542
2543
2544
2545
2546
2547
2548
2549
2550
2551
2552
2553
2554
2555
2556
2557
2558
2559
2560
2561
2562
2563
2564
2565
2566
2567
2568
2569
2570
2571
2572
2573
2574
2575
2576
2577
2578
2579
2580
2581
2582
2583
2584
2585
2586
2587
2588
2589
2590
2591
2592
2593
2594
2595
2596
2597
2598
2599
2600
2601
2602
2603
2604
2605
2606
2607
2608
2609
2610
2611
2612
2613
2614
2615
2616
2617
2618
2619
2620
2621
2622
2623
2624
2625
2626
2627
2628
2629
2630
2631
2632
2633
2634
2635
2636
2637
2638
2639
2640
2641
2642
2643
2644
2645
2646
2647
2648
2649
2650
2651
2652
2653
2654
2655
2656
2657
2658
2659
2660
2661
2662
2663
2664
2665
2666
2667
2668
2669
2670
2671
2672
2673
2674
2675
2676
2677
2678
2679
2680
2681
2682
2683
2684
2685
2686
2687
2688
2689
2690
2691
2692
2693
2694
2695
2696
2697
2698
2699
2700
2701
2702
2703
2704
2705
2706
2707
2708
2709
2710
2711
2712
2713
2714
2715
2716
2717
2718
2719
2720
2721
2722
2723
2724
2725
2726
2727
2728
2729
2730
2731
2732
2733
2734
2735
2736
2737
2738
2739
2740
2741
2742
2743
2744
2745
2746
2747
2748
2749
2750
2751
2752
2753
2754
2755
2756
2757
2758
2759
2760
2761
2762
2763
2764
2765
2766
2767
2768
2769
2770
2771
2772
2773
2774
2775
2776
2777
2778
2779
2780
2781
2782
2783
2784
2785
2786
2787
2788
2789
2790
2791
2792
2793
2794
2795
2796
2797
2798
2799
2800
2801
2802
2803
2804
2805
2806
2807
2808
2809
2810
2811
2812
2813
2814
2815
2816
2817
2818
2819
2820
2821
2822
2823
2824
2825
2826
2827
2828
2829
2830
2831
2832
2833
2834
2835
2836
2837
2838
2839
2840
2841
2842
2843
2844
2845
2846
2847
2848
2849
2850
2851
2852
2853
2854
2855
2856
2857
2858
2859
2860
2861
2862
2863
2864
2865
2866
2867
2868
2869
2870
2871
2872
2873
2874
2875
2876
2877
2878
2879
2880
2881
2882
2883
2884
2885
2886
2887
2888
2889
2890
2891
2892
2893
2894
2895
2896
2897
2898
2899
2900
2901
2902
2903
2904
2905
2906
2907
2908
2909
2910
2911
2912
2913
2914
2915
2916
2917
2918
2919
2920
2921
2922
2923
2924
2925
2926
2927
2928
2929
2930
2931
2932
2933
2934
2935
2936
2937
2938
2939
2940
2941
2942
2943
2944
2945
2946
2947
2948
2949
2950
2951
2952
2953
2954
2955
2956
2957
2958
2959
2960
2961
2962
2963
2964
2965
2966
2967
2968
2969
2970
2971
2972
2973
2974
2975
2976
2977
2978
2979
2980
2981
2982
2983
2984
2985
2986
2987
2988
2989
2990
2991
2992
2993
2994
2995
2996
2997
2998
2999
3000
3001
3002
3003
3004
3005
3006
3007
3008
3009
3010
3011
3012
3013
3014
3015
3016
3017
3018
3019
3020
3021
3022
3023
3024
3025
3026
3027
3028
3029
3030
3031
3032
3033
3034
3035
3036
3037
3038
3039
3040
3041
3042
3043
3044
3045
3046
3047
3048
3049
3050
3051
3052
3053
3054
3055
3056
3057
3058
3059
3060
3061
3062
3063
3064
3065
3066
3067
3068
3069
3070
3071
3072
3073
3074
3075
3076
3077
3078
3079
3080
3081
3082
3083
3084
3085
3086
3087
3088
3089
3090
3091
3092
3093
3094
3095
3096
3097
3098
3099
3100
3101
3102
3103
3104
3105
3106
3107
3108
3109
3110
3111
3112
3113
3114
3115
3116
3117
3118
3119
3120
3121
3122
3123
3124
3125
3126
3127
3128
3129
3130
3131
3132
3133
3134
3135
3136
3137
3138
3139
3140
3141
3142
3143
3144
3145
3146
3147
3148
3149
3150
3151
3152
3153
3154
3155
3156
3157
3158
3159
3160
3161
3162
3163
3164
3165
3166
3167
3168
3169
3170
3171
3172
3173
3174
3175
3176
3177
3178
3179
3180
3181
3182
3183
3184
3185
3186
3187
3188
3189
3190
3191
3192
3193
3194
3195
3196
3197
3198
3199
3200
3201
3202
3203
3204
3205
3206
3207
3208
3209
3210
3211
3212
3213
3214
3215
3216
3217
3218
3219
3220
3221
3222
3223
3224
3225
3226
3227
3228
3229
3230
3231
3232
3233
3234
3235
3236
3237
3238
3239
3240
3241
3242
3243
3244
3245
3246
3247
3248
3249
3250
3251
3252
3253
3254
3255
3256
3257
3258
3259
3260
3261
3262
3263
3264
3265
3266
3267
3268
3269
3270
3271
3272
3273
3274
3275
3276
3277
3278
3279
3280
3281
3282
3283
3284
3285
3286
3287
3288
3289
3290
3291
3292
3293
3294
3295
3296
3297
3298
3299
3300
3301
3302
3303
3304
3305
3306
3307
3308
3309
3310
3311
3312
3313
3314
3315
3316
3317
3318
3319
3320
3321
3322
3323
3324
3325
3326
3327
3328
3329
3330
3331
3332
3333
3334
3335
3336
3337
3338
3339
3340
3341
3342
3343
3344
3345
3346
3347
3348
3349
3350
3351
3352
3353
3354
3355
3356
3357
3358
3359
3360
3361
3362
3363
3364
3365
3366
3367
3368
3369
3370
3371
3372
3373
3374
3375
3376
3377
3378
3379
3380
3381
3382
3383
3384
3385
3386
3387
3388
3389
3390
3391
3392
3393
3394
3395
3396
3397
3398
3399
3400
3401
3402
3403
3404
3405
3406
3407
3408
3409
3410
3411
3412
3413
3414
3415
3416
3417
3418
3419
3420
3421
3422
3423
3424
3425
3426
3427
3428
3429
3430
3431
3432
3433
3434
3435
3436
3437
3438
3439
3440
3441
3442
3443
3444
3445
3446
3447
3448
3449
3450
3451
3452
3453
3454
3455
3456
3457
3458
3459
3460
3461
3462
3463
3464
3465
3466
3467
3468
3469
3470
3471
3472
3473
3474
3475
3476
3477
3478
3479
3480
3481
3482
3483
3484
3485
3486
3487
3488
3489
3490
3491
3492
3493
3494
3495
3496
3497
3498
3499
3500
3501
3502
3503
3504
3505
3506
3507
3508
3509
3510
3511
3512
3513
3514
3515
3516
3517
3518
3519
3520
3521
3522
3523
3524
3525
3526
3527
3528
3529
3530
3531
3532
3533
3534
3535
3536
3537
3538
3539
3540
3541
3542
3543
3544
3545
3546
3547
3548
3549
3550
3551
3552
3553
3554
3555
3556
3557
3558
3559
3560
3561
3562
3563
3564
3565
3566
3567
3568
3569
3570
3571
3572
3573
3574
3575
3576
3577
3578
3579
3580
3581
3582
3583
3584
3585
3586
3587
3588
3589
3590
3591
3592
3593
3594
3595
3596
3597
3598
3599
3600
3601
3602
3603
3604
3605
3606
3607
3608
3609
3610
3611
3612
3613
3614
3615
3616
3617
3618
3619
3620
3621
3622
3623
3624
3625
3626
3627
3628
3629
3630
3631
3632
3633
3634
3635
3636
3637
3638
3639
3640
3641
3642
3643
3644
3645
3646
3647
3648
3649
3650
3651
3652
3653
3654
3655
3656
3657
3658
3659
3660
3661
3662
3663
3664
3665
3666
3667
3668
3669
3670
3671
3672
3673
3674
3675
3676
3677
3678
3679
3680
3681
3682
3683
3684
3685
3686
3687
3688
3689
3690
3691
3692
3693
3694
3695
3696
3697
3698
3699
3700
3701
3702
3703
3704
3705
3706
3707
3708
3709
3710
3711
3712
3713
3714
3715
3716
3717
3718
3719
3720
3721
3722
3723
3724
3725
3726
3727
3728
3729
3730
3731
3732
3733
3734
3735
3736
3737
3738
3739
3740
3741
3742
3743
3744
3745
3746
3747
3748
3749
3750
3751
3752
3753
3754
3755
3756
3757
3758
3759
3760
3761
3762
3763
3764
3765
3766
3767
3768
3769
3770
3771
3772
3773
3774
3775
3776
3777
3778
3779
3780
3781
3782
3783
3784
3785
3786
3787
3788
3789
3790
3791
3792
3793
3794
3795
3796
3797
3798
3799
3800
3801
3802
3803
3804
3805
3806
3807
3808
3809
3810
3811
3812
3813
3814
3815
3816
3817
3818
3819
3820
3821
3822
3823
3824
3825
3826
3827
3828
3829
3830
3831
3832
3833
3834
3835
3836
3837
3838
3839
3840
3841
3842
3843
3844
3845
3846
3847
3848
3849
3850
3851
3852
3853
3854
3855
3856
3857
3858
3859
3860
3861
3862
3863
3864
3865
3866
3867
3868
3869
3870
3871
3872
3873
3874
3875
3876
3877
3878
3879
3880
3881
3882
3883
3884
3885
3886
3887
3888
3889
3890
3891
3892
3893
3894
3895
3896
3897
3898
3899
3900
3901
3902
3903
3904
3905
3906
3907
3908
3909
3910
3911
3912
3913
3914
3915
3916
3917
3918
3919
3920
3921
3922
3923
3924
3925
3926
3927
3928
3929
3930
3931
3932
3933
3934
3935
3936
3937
3938
3939
3940
3941
3942
3943
3944
3945
3946
3947
3948
3949
3950
3951
3952
3953
3954
3955
3956
3957
3958
3959
3960
3961
3962
3963
3964
3965
3966
3967
3968
3969
3970
3971
3972
3973
3974
3975
3976
3977
3978
3979
3980
3981
3982
3983
3984
3985
3986
3987
3988
3989
3990
3991
3992
3993
3994
3995
3996
3997
3998
3999
4000
4001
4002
4003
4004
4005
4006
4007
4008
4009
4010
4011
4012
4013
4014
4015
4016
4017
4018
4019
4020
4021
4022
4023
4024
4025
4026
4027
4028
4029
4030
4031
4032
4033
4034
4035
4036
4037
4038
4039
4040
4041
4042
4043
4044
4045
4046
4047
4048
4049
4050
4051
4052
4053
4054
4055
4056
4057
4058
4059
4060
4061
4062
4063
4064
4065
4066
4067
4068
4069
4070
4071
4072
4073
4074
4075
4076
4077
4078
4079
4080
4081
4082
4083
4084
4085
4086
4087
4088
4089
4090
4091
4092
4093
4094
4095
4096
4097
4098
4099
4100
4101
4102
4103
4104
4105
4106
4107
4108
4109
4110
4111
4112
4113
4114
4115
4116
4117
4118
4119
4120
4121
4122
4123
4124
4125
4126
4127
4128
4129
4130
4131
4132
4133
4134
4135
4136
4137
4138
4139
4140
4141
4142
4143
4144
4145
4146
4147
4148
4149
4150
4151
4152
4153
4154
4155
4156
4157
4158
4159
4160
4161
4162
4163
4164
4165
4166
4167
4168
4169
4170
4171
4172
4173
4174
4175
4176
4177
4178
4179
4180
4181
4182
4183
4184
4185
4186
4187
4188
4189
4190
4191
4192
4193
4194
4195
4196
4197
4198
4199
4200
4201
4202
4203
4204
4205
4206
4207
4208
4209
4210
4211
4212
4213
4214
4215
4216
4217
4218
4219
4220
4221
4222
4223
4224
4225
4226
4227
4228
4229
4230
4231
4232
4233
4234
4235
4236
4237
4238
4239
4240
4241
4242
4243
4244
4245
4246
4247
4248
4249
4250
4251
4252
4253
4254
4255
4256
4257
4258
4259
4260
4261
4262
4263
4264
4265
4266
4267
4268
4269
4270
4271
4272
4273
4274
4275
4276
4277
4278
4279
4280
4281
4282
4283
4284
4285
4286
4287
4288
4289
4290
4291
4292
4293
4294
4295
4296
4297
4298
4299
4300
4301
4302
4303
4304
4305
4306
4307
4308
4309
4310
4311
4312
4313
4314
4315
4316
4317
4318
4319
4320
4321
4322
4323
4324
4325
4326
4327
4328
4329
4330
4331
4332
4333
4334
4335
4336
4337
4338
4339
4340
4341
4342
4343
4344
4345
4346
4347
4348
4349
4350
4351
4352
4353
4354
4355
4356
4357
4358
4359
4360
4361
4362
4363
4364
4365
4366
4367
4368
4369
4370
4371
4372
4373
4374
4375
4376
4377
4378
4379
4380
4381
4382
4383
4384
4385
4386
4387
4388
4389
4390
4391
4392
4393
4394
4395
4396
4397
4398
4399
4400
4401
4402
4403
4404
4405
4406
4407
4408
4409
4410
4411
4412
4413
4414
4415
4416
4417
4418
4419
4420
4421
4422
4423
4424
4425
4426
4427
4428
4429
4430
4431
4432
4433
4434
4435
4436
4437
4438
4439
4440
4441
4442
4443
4444
4445
4446
4447
4448
4449
4450
4451
4452
4453
4454
4455
4456
4457
4458
4459
4460
4461
4462
4463
4464
4465
4466
4467
4468
4469
4470
4471
4472
4473
4474
4475
4476
4477
4478
4479
4480
4481
4482
4483
4484
4485
4486
4487
4488
4489
4490
4491
4492
4493
4494
4495
4496
4497
4498
4499
4500
4501
4502
4503
4504
4505
4506
4507
4508
4509
4510
4511
4512
4513
4514
4515
4516
4517
4518
4519
4520
4521
4522
4523
4524
4525
4526
4527
4528
4529
4530
4531
4532
4533
4534
4535
4536
4537
4538
4539
4540
4541
4542
4543
4544
4545
4546
4547
4548
4549
4550
4551
4552
4553
4554
4555
4556
4557
4558
4559
4560
4561
4562
4563
4564
4565
4566
4567
4568
4569
4570
4571
4572
4573
4574
4575
4576
4577
4578
4579
4580
4581
4582
4583
4584
4585
4586
4587
4588
4589
4590
4591
4592
4593
4594
4595
4596
4597
4598
4599
4600
4601
4602
4603
4604
4605
4606
4607
4608
4609
4610
4611
4612
4613
4614
4615
4616
4617
4618
4619
4620
4621
4622
4623
4624
4625
4626
4627
4628
4629
4630
4631
4632
4633
4634
4635
4636
4637
4638
4639
4640
4641
4642
4643
4644
4645
4646
4647
4648
4649
4650
4651
4652
4653
4654
4655
4656
4657
4658
4659
4660
4661
4662
4663
4664
4665
4666
4667
4668
4669
4670
4671
4672
4673
4674
4675
4676
4677
4678
4679
4680
4681
4682
4683
4684
4685
4686
4687
4688
4689
4690
4691
4692
4693
4694
4695
4696
4697
4698
4699
4700
4701
4702
4703
4704
4705
4706
4707
4708
4709
4710
4711
4712
4713
4714
4715
4716
4717
4718
4719
4720
4721
4722
4723
4724
4725
4726
4727
4728
4729
4730
4731
4732
4733
4734
4735
4736
4737
4738
4739
4740
4741
4742
4743
4744
4745
4746
4747
4748
4749
4750
4751
4752
4753
4754
4755
4756
4757
4758
4759
4760
4761
4762
4763
4764
4765
4766
4767
4768
4769
4770
4771
4772
4773
4774
4775
4776
4777
4778
4779
4780
4781
4782
4783
4784
4785
4786
4787
4788
4789
4790
4791
4792
4793
4794
4795
4796
4797
4798
4799
4800
4801
4802
4803
4804
4805
4806
4807
4808
4809
4810
4811
4812
4813
4814
4815
4816
4817
4818
4819
4820
4821
4822
4823
4824
4825
4826
4827
4828
4829
4830
4831
4832
4833
4834
4835
4836
4837
4838
4839
4840
4841
4842
4843
4844
4845
4846
4847
4848
4849
4850
4851
4852
4853
4854
4855
4856
4857
4858
4859
4860
4861
4862
4863
4864
4865
4866
4867
4868
4869
4870
4871
4872
4873
4874
4875
4876
4877
4878
4879
4880
4881
4882
4883
4884
4885
4886
4887
4888
4889
4890
4891
4892
4893
4894
4895
4896
4897
4898
4899
4900
4901
4902
4903
4904
4905
4906
4907
4908
4909
4910
4911
4912
4913
4914
4915
4916
4917
4918
4919
4920
4921
4922
4923
4924
4925
4926
4927
4928
4929
4930
4931
4932
4933
4934
4935
4936
4937
4938
4939
4940
4941
4942
4943
4944
4945
4946
4947
4948
4949
4950
4951
4952
4953
4954
4955
4956
4957
4958
4959
4960
4961
4962
4963
4964
4965
4966
4967
4968
4969
4970
4971
4972
4973
4974
4975
4976
4977
4978
4979
4980
4981
4982
4983
4984
4985
4986
4987
4988
4989
4990
4991
4992
4993
4994
4995
4996
4997
4998
4999
5000
5001
5002
5003
5004
5005
5006
5007
5008
5009
5010
5011
5012
5013
5014
5015
5016
5017
5018
5019
5020
5021
5022
5023
5024
5025
5026
5027
5028
5029
5030
5031
5032
5033
5034
5035
5036
5037
5038
5039
5040
5041
5042
5043
5044
5045
5046
5047
5048
5049
5050
5051
5052
5053
5054
5055
5056
5057
5058
5059
5060
5061
5062
5063
5064
5065
5066
5067
5068
5069
5070
5071
5072
5073
5074
5075
5076
5077
5078
5079
5080
5081
5082
5083
5084
5085
5086
5087
5088
5089
5090
5091
5092
5093
5094
5095
5096
5097
5098
5099
5100
5101
5102
5103
5104
5105
5106
5107
5108
5109
5110
5111
5112
5113
5114
5115
5116
5117
5118
5119
5120
5121
5122
5123
5124
5125
5126
5127
5128
5129
5130
5131
5132
5133
5134
5135
5136
5137
5138
5139
5140
5141
5142
5143
5144
5145
5146
5147
5148
5149
5150
5151
5152
5153
5154
5155
5156
5157
5158
5159
5160
5161
5162
5163
5164
5165
5166
5167
5168
5169
5170
5171
5172
5173
5174
5175
5176
5177
5178
5179
5180
5181
5182
5183
5184
5185
5186
5187
5188
5189
5190
5191
5192
5193
5194
5195
5196
5197
5198
5199
5200
5201
5202
5203
5204
5205
5206
5207
5208
5209
5210
5211
5212
5213
5214
5215
5216
5217
5218
5219
5220
5221
5222
5223
5224
5225
5226
5227
5228
5229
5230
5231
5232
5233
5234
5235
5236
5237
5238
5239
5240
5241
5242
5243
5244
5245
5246
5247
5248
5249
5250
5251
5252
5253
5254
5255
5256
5257
5258
5259
5260
5261
5262
5263
5264
5265
5266
5267
5268
5269
5270
5271
5272
5273
5274
5275
5276
5277
5278
5279
5280
5281
5282
5283
5284
5285
5286
5287
5288
5289
5290
5291
5292
5293
5294
5295
5296
5297
5298
5299
5300
5301
5302
5303
5304
5305
5306
5307
5308
5309
5310
5311
5312
5313
5314
5315
5316
5317
5318
5319
5320
5321
5322
5323
5324
5325
5326
5327
5328
5329
5330
5331
5332
5333
5334
5335
5336
5337
5338
5339
5340
5341
5342
5343
5344
5345
5346
5347
5348
5349
5350
5351
5352
5353
5354
5355
5356
5357
5358
5359
5360
5361
5362
5363
5364
5365
5366
5367
5368
5369
5370
5371
5372
5373
5374
5375
5376
5377
5378
5379
5380
5381
5382
5383
5384
5385
5386
5387
5388
5389
5390
5391
5392
5393
5394
5395
5396
5397
5398
5399
5400
5401
5402
5403
5404
5405
5406
5407
5408
5409
5410
5411
5412
5413
5414
5415
5416
5417
5418
5419
5420
5421
5422
5423
5424
5425
5426
5427
5428
5429
5430
5431
5432
5433
5434
5435
5436
5437
5438
5439
5440
5441
5442
5443
5444
5445
5446
5447
5448
5449
5450
5451
5452
5453
5454
5455
5456
5457
5458
5459
5460
5461
5462
5463
5464
5465
5466
5467
5468
5469
5470
5471
5472
5473
5474
5475
5476
5477
5478
5479
5480
5481
5482
5483
5484
5485
5486
5487
5488
5489
5490
5491
5492
5493
5494
5495
5496
5497
5498
5499
5500
5501
5502
5503
5504
5505
5506
5507
5508
5509
5510
5511
5512
5513
5514
5515
5516
5517
5518
5519
5520
5521
5522
5523
5524
5525
5526
5527
5528
5529
5530
5531
5532
5533
5534
5535
5536
5537
5538
5539
5540
5541
5542
5543
5544
5545
5546
5547
5548
5549
5550
5551
5552
5553
5554
5555
5556
5557
5558
5559
5560
5561
5562
5563
5564
5565
5566
5567
5568
5569
5570
5571
5572
5573
5574
5575
5576
5577
5578
5579
5580
5581
5582
5583
5584
5585
5586
5587
5588
5589
5590
5591
5592
5593
5594
5595
5596
5597
5598
5599
5600
5601
5602
5603
5604
5605
5606
5607
5608
5609
5610
5611
5612
5613
5614
5615
5616
5617
5618
5619
5620
5621
5622
5623
5624
5625
5626
5627
5628
5629
5630
5631
5632
5633
5634
5635
5636
5637
5638
5639
5640
5641
5642
5643
5644
5645
5646
5647
5648
5649
5650
5651
5652
5653
5654
5655
5656
5657
5658
5659
5660
5661
5662
5663
5664
5665
5666
5667
5668
5669
5670
5671
5672
5673
5674
5675
5676
5677
5678
5679
5680
5681
5682
5683
5684
5685
5686
5687
5688
5689
5690
5691
5692
5693
5694
5695
5696
5697
5698
5699
5700
5701
5702
5703
5704
5705
5706
5707
5708
5709
5710
5711
5712
5713
5714
5715
5716
5717
5718
5719
5720
5721
5722
5723
5724
5725
5726
5727
5728
5729
5730
5731
5732
5733
5734
5735
5736
5737
5738
5739
5740
5741
5742
5743
5744
5745
5746
5747
5748
5749
5750
5751
5752
5753
5754
5755
5756
5757
5758
5759
5760
5761
5762
5763
5764
5765
5766
5767
5768
5769
5770
5771
5772
5773
5774
5775
5776
5777
5778
5779
5780
5781
5782
5783
5784
5785
5786
5787
5788
5789
5790
5791
5792
5793
5794
5795
5796
5797
5798
5799
5800
5801
5802
5803
5804
5805
5806
5807
5808
5809
5810
5811
5812
5813
5814
5815
5816
5817
5818
5819
5820
5821
5822
5823
5824
5825
5826
5827
5828
5829
5830
5831
5832
5833
5834
5835
5836
5837
5838
5839
5840
5841
5842
5843
5844
5845
5846
5847
5848
5849
5850
5851
5852
5853
5854
5855
5856
5857
5858
5859
5860
5861
5862
5863
5864
5865
5866
5867
5868
5869
5870
5871
5872
5873
5874
5875
5876
5877
5878
5879
5880
5881
5882
5883
5884
5885
5886
5887
5888
5889
5890
5891
5892
5893
5894
5895
5896
5897
5898
5899
5900
5901
5902
5903
5904
5905
5906
5907
5908
5909
5910
5911
5912
5913
5914
5915
5916
5917
5918
5919
5920
5921
5922
5923
5924
5925
5926
5927
5928
5929
5930
5931
5932
5933
5934
5935
5936
5937
5938
5939
5940
5941
5942
5943
5944
5945
5946
5947
5948
5949
5950
5951
5952
5953
5954
5955
5956
5957
5958
5959
5960
5961
5962
5963
5964
5965
5966
5967
5968
5969
5970
5971
5972
5973
5974
5975
5976
5977
5978
5979
5980
5981
5982
5983
5984
5985
5986
5987
5988
5989
5990
5991
5992
5993
5994
5995
5996
5997
5998
5999
6000
6001
6002
6003
6004
6005
6006
6007
6008
6009
6010
6011
6012
6013
6014
6015
6016
6017
6018
6019
6020
6021
6022
6023
6024
6025
6026
6027
6028
6029
6030
6031
6032
6033
6034
6035
6036
6037
6038
6039
6040
6041
6042
6043
6044
6045
6046
6047
6048
6049
6050
6051
6052
6053
6054
6055
6056
6057
6058
6059
6060
6061
6062
6063
6064
6065
6066
6067
6068
6069
6070
6071
6072
6073
6074
6075
6076
6077
6078
6079
6080
6081
6082
6083
6084
6085
6086
6087
6088
6089
6090
6091
6092
6093
6094
6095
6096
6097
6098
6099
6100
6101
6102
6103
6104
6105
6106
6107
6108
6109
6110
6111
6112
6113
6114
6115
6116
6117
6118
6119
6120
6121
6122
6123
6124
6125
6126
6127
6128
6129
6130
6131
6132
6133
6134
6135
6136
6137
6138
6139
6140
6141
6142
6143
6144
6145
6146
6147
6148
6149
6150
6151
6152
6153
6154
6155
6156
6157
6158
6159
6160
6161
6162
6163
6164
6165
6166
6167
6168
6169
6170
6171
6172
6173
6174
6175
6176
6177
6178
6179
6180
6181
6182
6183
6184
6185
6186
6187
6188
6189
6190
6191
6192
6193
6194
6195
6196
6197
6198
6199
6200
6201
6202
6203
6204
6205
6206
6207
6208
6209
6210
6211
6212
6213
6214
6215
6216
6217
6218
6219
6220
6221
6222
6223
6224
6225
6226
6227
6228
6229
6230
6231
6232
6233
6234
6235
6236
6237
6238
6239
6240
6241
6242
6243
6244
6245
6246
6247
6248
6249
6250
6251
6252
6253
6254
6255
6256
6257
6258
6259
6260
6261
6262
6263
6264
6265
6266
6267
6268
6269
6270
6271
6272
6273
6274
6275
6276
6277
6278
6279
6280
6281
6282
6283
6284
6285
6286
6287
6288
6289
6290
6291
6292
6293
6294
6295
6296
6297
6298
6299
6300
6301
6302
6303
6304
6305
6306
6307
6308
6309
6310
6311
6312
6313
6314
6315
6316
6317
6318
6319
6320
6321
6322
6323
6324
6325
6326
6327
6328
6329
6330
6331
6332
6333
6334
6335
6336
6337
6338
6339
6340
6341
6342
6343
6344
6345
6346
6347
6348
6349
6350
6351
6352
6353
6354
6355
6356
6357
6358
6359
6360
6361
6362
6363
6364
6365
6366
6367
6368
6369
6370
6371
6372
6373
6374
6375
6376
6377
6378
6379
6380
6381
6382
6383
6384
6385
6386
6387
6388
6389
6390
6391
6392
6393
6394
6395
6396
6397
6398
6399
6400
6401
6402
6403
6404
6405
6406
6407
6408
6409
6410
6411
6412
6413
6414
6415
6416
6417
6418
6419
6420
6421
6422
6423
6424
6425
6426
6427
6428
6429
6430
6431
6432
6433
6434
6435
6436
6437
6438
6439
6440
6441
6442
6443
6444
6445
6446
6447
6448
6449
6450
6451
6452
6453
6454
6455
6456
6457
6458
6459
6460
6461
6462
6463
6464
6465
6466
6467
6468
6469
6470
6471
6472
6473
6474
6475
6476
6477
6478
6479
6480
6481
6482
6483
6484
6485
6486
6487
6488
6489
6490
6491
6492
6493
6494
6495
6496
6497
6498
6499
6500
6501
6502
6503
6504
6505
6506
6507
6508
6509
6510
6511
6512
6513
6514
6515
6516
6517
6518
6519
6520
6521
6522
6523
6524
6525
6526
6527
6528
6529
6530
6531
6532
6533
6534
6535
6536
6537
6538
6539
6540
6541
6542
6543
6544
6545
6546
6547
6548
6549
6550
6551
6552
6553
6554
6555
6556
6557
6558
6559
6560
6561
6562
6563
6564
6565
6566
6567
6568
6569
6570
6571
6572
6573
6574
6575
6576
6577
6578
6579
6580
6581
6582
6583
6584
6585
6586
6587
6588
6589
6590
6591
6592
6593
6594
6595
6596
6597
6598
6599
6600
6601
6602
6603
6604
6605
6606
6607
6608
6609
6610
6611
6612
6613
6614
6615
6616
6617
6618
6619
6620
6621
6622
6623
6624
6625
6626
6627
6628
6629
6630
6631
6632
6633
6634
6635
6636
6637
6638
6639
6640
6641
6642
6643
6644
6645
6646
6647
6648
6649
6650
6651
6652
6653
6654
6655
6656
6657
6658
6659
6660
6661
6662
6663
6664
6665
6666
6667
6668
6669
6670
6671
6672
6673
6674
6675
6676
6677
6678
6679
6680
6681
6682
6683
6684
6685
6686
6687
6688
6689
6690
6691
6692
6693
6694
6695
6696
6697
6698
6699
6700
6701
6702
6703
6704
6705
6706
6707
6708
6709
6710
6711
6712
6713
6714
6715
6716
6717
6718
6719
6720
6721
6722
6723
6724
6725
6726
6727
6728
6729
6730
6731
6732
6733
6734
6735
6736
6737
6738
6739
6740
6741
6742
6743
6744
6745
6746
6747
6748
6749
6750
6751
6752
6753
6754
6755
6756
6757
6758
6759
6760
6761
6762
6763
6764
6765
6766
6767
6768
6769
6770
6771
6772
6773
6774
6775
6776
6777
6778
6779
6780
6781
6782
6783
6784
6785
6786
6787
6788
6789
6790
6791
6792
6793
6794
6795
6796
6797
6798
6799
6800
6801
6802
6803
6804
6805
6806
6807
6808
6809
6810
6811
6812
6813
6814
6815
6816
6817
6818
6819
6820
6821
6822
6823
6824
6825
6826
6827
6828
6829
6830
6831
6832
6833
6834
6835
6836
6837
6838
6839
6840
6841
6842
6843
6844
6845
6846
6847
6848
6849
6850
6851
6852
6853
6854
6855
6856
6857
6858
6859
6860
6861
6862
6863
6864
6865
6866
6867
6868
6869
6870
6871
6872
6873
6874
6875
6876
6877
6878
6879
6880
6881
6882
6883
6884
6885
6886
6887
6888
6889
6890
6891
6892
6893
6894
6895
6896
6897
6898
6899
6900
6901
6902
6903
6904
6905
6906
6907
6908
6909
6910
6911
6912
6913
6914
6915
6916
6917
6918
6919
6920
6921
6922
6923
6924
6925
6926
6927
6928
6929
6930
6931
6932
6933
6934
6935
6936
6937
6938
6939
6940
6941
6942
6943
6944
6945
6946
6947
6948
6949
6950
6951
6952
6953
6954
6955
6956
6957
6958
6959
6960
6961
6962
6963
6964
6965
#################################################################################
#################### RELEASE 1.20 at 18:00 GMT  25/Nov/2004     #################
#################################################################################
r2478 | rgbecker | 2004-11-25 14:18:03 +0000 (Thu, 25 Nov 2004)
   tables.py: extend span line blocking to multi lines
r2477 | rgbecker | 2004-11-24 18:29:57 +0000 (Wed, 24 Nov 2004)
   setup.py: add backin the missing sub-packages
r2476 | rgbecker | 2004-11-24 16:42:12 +0000 (Wed, 24 Nov 2004)
   reportlab: table improvments and better documentation
r2475 | rgbecker | 2004-11-23 17:08:33 +0000 (Tue, 23 Nov 2004)
   reportlab.setup.py: now works with and without rl_accel
r2462 | rgbecker | 2004-11-03 20:48:51 +0000 (Wed, 03 Nov 2004)
   M /reportlab/trunk/reportlab/lib/utils.py
   reportlab lib utils.py: add find_locals
r2461 | rgbecker | 2004-11-03 15:38:07 +0000 (Wed, 03 Nov 2004)
   M /reportlab/trunk/reportlab/graphics/renderPM.py
   M /reportlab/trunk/reportlab/graphics/renderPS.py
   reportlab graphics: changes for canvasadapter
r2460 | rgbecker | 2004-11-02 10:18:55 +0000 (Tue, 02 Nov 2004)
   M /reportlab/trunk/reportlab/platypus/flowables.py
   flowables.py: fix no PIL jpg problem reported by Martin.Zohlhuber@tttech.com
r2459 | rgbecker | 2004-10-23 16:46:56 +0100 (Sat, 23 Oct 2004)
   M /reportlab/trunk/reportlab/pdfgen/canvas.py
   M /reportlab/trunk/reportlab/platypus/flowables.py
   canvasadapter.py fixes
r2458 | rgbecker | 2004-10-22 17:37:01 +0100 (Fri, 22 Oct 2004)
   M /reportlab/trunk/reportlab/graphics/renderPM.py
   M /reportlab/trunk/reportlab/lib/colors.py
   minor changes for pdf canvas compatibility and tests
r2457 | rgbecker | 2004-10-20 20:27:07 +0100 (Wed, 20 Oct 2004)
   M /reportlab/trunk/reportlab/graphics/renderPM.py
   M /reportlab/trunk/reportlab/graphics/renderbase.py
   M /reportlab/trunk/reportlab/platypus/tables.py
   CanvasAdapter related changes
r2456 | rgbecker | 2004-10-19 18:52:20 +0100 (Tue, 19 Oct 2004)
   M /reportlab/trunk/reportlab/platypus/paragraph.py
   paragraph.py: use canvas.setFillColor
r2455 | rgbecker | 2004-10-07 18:51:31 +0100 (Thu, 07 Oct 2004)
   M /reportlab/trunk/reportlab/pdfbase/pdfutils.py
   pdfutils.py: added _fusc
r2454 | rgbecker | 2004-10-07 10:36:36 +0100 (Thu, 07 Oct 2004)
   M /reportlab/trunk/reportlab/tools/pythonpoint/stdparser.py
   stdparser.py: fix 2.1 brokenness
r2453 | andy | 2004-10-05 23:34:14 +0100 (Tue, 05 Oct 2004)
   M /reportlab/trunk/reportlab/platypus/tables.py
   fixed col/row shading bug where last row or col never got shaded - reported R Revill
r2452 | andy | 2004-10-04 21:52:20 +0100 (Mon, 04 Oct 2004)
   M /reportlab/trunk/reportlab/platypus/tables.py
   Tim Roberts' fix to vertical table cell alignment
r2451 | andy | 2004-10-04 08:03:42 +0100 (Mon, 04 Oct 2004)
   M /reportlab/trunk/reportlab/tools/pythonpoint/stdparser.py
   Francesco Pierfederici [fpierfed@noao.edu] fix to incorrect path argument
r2450 | rgbecker | 2004-10-01 13:28:12 +0100 (Fri, 01 Oct 2004)
   M /reportlab/trunk/reportlab/rl_config.py
   rl_config.py: use import for local_rl_config
r2449 | rgbecker | 2004-10-01 11:40:15 +0100 (Fri, 01 Oct 2004)
   M /reportlab/trunk/reportlab/platypus/tables.py
   tables.py: fix buglet in command adding
r2448 | andy | 2004-09-29 11:18:32 +0100 (Wed, 29 Sep 2004)
   M /reportlab/trunk/reportlab/lib/colors.py
   M /reportlab/trunk/reportlab/lib/corp.py
   M /reportlab/trunk/reportlab/platypus/flowables.py
   M /reportlab/trunk/reportlab/platypus/tables.py
   M /reportlab/trunk/reportlab/test/test_platypus_tables.py
   table color cycle changes
r2447 | andy | 2004-09-29 10:17:52 +0100 (Wed, 29 Sep 2004)
   M /reportlab/trunk/reportlab/license.txt
   Updated to 2004
r2446 | rgbecker | 2004-09-23 17:52:19 +0100 (Thu, 23 Sep 2004)
   D /reportlab/trunk/reportlab/lib/Makefile.pre.in
   D /reportlab/trunk/reportlab/lib/README.extensions
   D /reportlab/trunk/reportlab/lib/Setup.in
   D /reportlab/trunk/reportlab/lib/__BUILD.dsw
   D /reportlab/trunk/reportlab/lib/_rl_accel.c
   D /reportlab/trunk/reportlab/lib/_rl_accel.dsp
   D /reportlab/trunk/reportlab/lib/_rl_accel.java
   D /reportlab/trunk/reportlab/lib/hnjalloc.c
   D /reportlab/trunk/reportlab/lib/hnjalloc.h
   D /reportlab/trunk/reportlab/lib/hyphen.c
   D /reportlab/trunk/reportlab/lib/hyphen.h
   D /reportlab/trunk/reportlab/lib/hyphen.mashed
   D /reportlab/trunk/reportlab/lib/pyHnj.dsp
   D /reportlab/trunk/reportlab/lib/pyHnjmodule.c
   D /reportlab/trunk/reportlab/lib/setup.py
   D /reportlab/trunk/reportlab/lib/sgmlop.c
   D /reportlab/trunk/reportlab/lib/sgmlop.dsp
   M /reportlab/trunk/reportlab/setup.py
   A /reportlab/trunk/rl_addons/rl_accel
   A /reportlab/trunk/rl_addons/rl_accel/Makefile.pre.in (from /reportlab/trunk/reportlab/lib/Makefile.pre.in:2444)
   A /reportlab/trunk/rl_addons/rl_accel/README.extensions (from /reportlab/trunk/reportlab/lib/README.extensions:2444)
   A /reportlab/trunk/rl_addons/rl_accel/Setup.in (from /reportlab/trunk/reportlab/lib/Setup.in:2444)
   A /reportlab/trunk/rl_addons/rl_accel/__BUILD.dsw (from /reportlab/trunk/reportlab/lib/__BUILD.dsw:2444)
   A /reportlab/trunk/rl_addons/rl_accel/_rl_accel.c (from /reportlab/trunk/reportlab/lib/_rl_accel.c:2444)
   A /reportlab/trunk/rl_addons/rl_accel/_rl_accel.dsp (from /reportlab/trunk/reportlab/lib/_rl_accel.dsp:2444)
   A /reportlab/trunk/rl_addons/rl_accel/_rl_accel.java (from /reportlab/trunk/reportlab/lib/_rl_accel.java:2444)
   A /reportlab/trunk/rl_addons/rl_accel/hnjalloc.c (from /reportlab/trunk/reportlab/lib/hnjalloc.c:2444)
   A /reportlab/trunk/rl_addons/rl_accel/hnjalloc.h (from /reportlab/trunk/reportlab/lib/hnjalloc.h:2444)
   A /reportlab/trunk/rl_addons/rl_accel/hyphen.c (from /reportlab/trunk/reportlab/lib/hyphen.c:2444)
   A /reportlab/trunk/rl_addons/rl_accel/hyphen.h (from /reportlab/trunk/reportlab/lib/hyphen.h:2444)
   A /reportlab/trunk/rl_addons/rl_accel/hyphen.mashed (from /reportlab/trunk/reportlab/lib/hyphen.mashed:2444)
   A /reportlab/trunk/rl_addons/rl_accel/pyHnj.dsp (from /reportlab/trunk/reportlab/lib/pyHnj.dsp:2444)
   A /reportlab/trunk/rl_addons/rl_accel/pyHnjmodule.c (from /reportlab/trunk/reportlab/lib/pyHnjmodule.c:2444)
   A /reportlab/trunk/rl_addons/rl_accel/setup.py (from /reportlab/trunk/reportlab/lib/setup.py:2444)
   A /reportlab/trunk/rl_addons/rl_accel/sgmlop.c (from /reportlab/trunk/reportlab/lib/sgmlop.c:2444)
   A /reportlab/trunk/rl_addons/rl_accel/sgmlop.dsp (from /reportlab/trunk/reportlab/lib/sgmlop.dsp:2444)
   reportlab/lib: moved _rl_accel and friends to rl_addons/rl_accel
r2445 | rgbecker | 2004-09-23 13:36:41 +0100 (Thu, 23 Sep 2004)
   M /reportlab/trunk/reportlab/platypus/tables.py
   tables.py: robustify repr
r2443 | rgbecker | 2004-09-22 09:57:45 +0100 (Wed, 22 Sep 2004)
   M /reportlab/trunk/reportlab/platypus/flowables.py
   flowables.py: remove 2.1 incompatibility
r2442 | rgbecker | 2004-09-20 17:31:22 +0100 (Mon, 20 Sep 2004)
   M /reportlab/trunk/reportlab/platypus/flowables.py
   M /reportlab/trunk/reportlab/test/test_platypus_pto.py
   platypus/test: working pto (& inner pto)
r2441 | rgbecker | 2004-09-17 11:46:56 +0100 (Fri, 17 Sep 2004)
   M /reportlab/trunk/reportlab/graphics/renderPM.py
   renderPM.py: backward compatibility fix for _renderPM version <=0.98
r2440 | rgbecker | 2004-09-15 10:40:03 +0100 (Wed, 15 Sep 2004)
   M /reportlab/trunk/reportlab/setup.py
   setup.py: fix get_version using patch from michael@stroeder.com
r2439 | rgbecker | 2004-09-14 12:08:13 +0100 (Tue, 14 Sep 2004)
   M /reportlab/trunk/reportlab/platypus/__init__.py
   M /reportlab/trunk/reportlab/platypus/flowables.py
   M /reportlab/trunk/reportlab/platypus/tables.py
   A /reportlab/trunk/reportlab/test/test_platypus_pto.py
   M /reportlab/trunk/reportlab/test/test_platypus_tables.py
   platypus: added ptocontainer, moved tables test
r2438 | rgbecker | 2004-09-13 09:41:41 +0100 (Mon, 13 Sep 2004)
   M /reportlab/trunk/reportlab/test/test_platypus_general.py
   test_platypus_general.py: remove another 2.1 scope problem
r2437 | rgbecker | 2004-09-12 11:06:45 +0100 (Sun, 12 Sep 2004)
   M /reportlab/trunk/reportlab/test/test_platypus_general.py
   test_platypus_general.py: eliminate 2.1 scope problem
r2436 | rgbecker | 2004-09-11 15:18:33 +0100 (Sat, 11 Sep 2004)
   M /reportlab/trunk/reportlab/lib/randomtext.py
   randomtext.py: robustify textwrap import
r2435 | rgbecker | 2004-09-10 10:54:15 +0100 (Fri, 10 Sep 2004)
   M /reportlab/trunk/reportlab/lib/randomtext.py
   randomtext.py: fix argument handling
r2434 | rgbecker | 2004-09-09 18:42:18 +0100 (Thu, 09 Sep 2004)
   M /reportlab/trunk/reportlab/platypus/frames.py
   M /reportlab/trunk/reportlab/rl_config.py
   move _FUZZ to rl_config
r2433 | rgbecker | 2004-09-09 18:01:57 +0100 (Thu, 09 Sep 2004)
   M /reportlab/trunk/reportlab/pdfbase/pdfdoc.py
   pdfdoc.py: improve image masking given by Colors
r2432 | rgbecker | 2004-09-09 12:56:24 +0100 (Thu, 09 Sep 2004)
   M /reportlab/trunk/reportlab/lib/randomtext.py
   randomtext.py: some improvements
r2431 | rgbecker | 2004-09-08 18:41:10 +0100 (Wed, 08 Sep 2004)
   M /reportlab/trunk/reportlab/platypus/flowables.py
   M /reportlab/trunk/reportlab/platypus/paraparser.py
   flowables.py: minor change to PTOContainer
r2430 | rgbecker | 2004-09-08 18:37:26 +0100 (Wed, 08 Sep 2004)
   M /reportlab/trunk/reportlab/platypus/flowables.py
   M /reportlab/trunk/reportlab/platypus/frames.py
   platypus: almost finished PTOContainer
r2429 | rgbecker | 2004-09-08 12:02:58 +0100 (Wed, 08 Sep 2004)
   M /reportlab/trunk/reportlab/platypus/tables.py
   tables.py: implement Eric Stephen's border drawing suggestion
r2428 | rgbecker | 2004-09-08 11:47:55 +0100 (Wed, 08 Sep 2004)
   M /reportlab/trunk/reportlab/test/test_platypus_general.py
   test_platypus_general.py: fix so all output seen
r2427 | rgbecker | 2004-09-03 10:53:17 +0100 (Fri, 03 Sep 2004)
   M /reportlab/trunk/rl_addons/pyRXP/pyRXP.c
   M /reportlab/trunk/rl_addons/pyRXP/rxp/xmlparser.c
   pyRXP: fix buf bug in xmlparser.c -->1.05
r2426 | rgbecker | 2004-09-02 12:52:56 +0100 (Thu, 02 Sep 2004)
   M /reportlab/trunk/reportlab/platypus/xpreformatted.py
   XPreformatted: make __init__ lead args same as for paragraph
r2425 | rgbecker | 2004-08-27 17:08:32 +0100 (Fri, 27 Aug 2004)
   M /reportlab/trunk/reportlab/graphics/charts/axes.py
   axes.py: fix format bug
r2424 | rgbecker | 2004-08-25 15:38:48 +0100 (Wed, 25 Aug 2004)
   M /reportlab/trunk/reportlab/platypus/paraparser.py
   paraparser.py: minor speedup
r2423 | rgbecker | 2004-08-24 12:36:22 +0100 (Tue, 24 Aug 2004)
   M /reportlab/trunk/reportlab/lib/sequencer.py
   M /reportlab/trunk/reportlab/platypus/paraparser.py
   M /reportlab/trunk/reportlab/test/test_paragraphs.py
   added seqchain/format tags
r2422 | rgbecker | 2004-08-23 16:54:25 +0100 (Mon, 23 Aug 2004)
   M /reportlab/trunk/reportlab/platypus/paragraph.py
   M /reportlab/trunk/reportlab/test/test_paragraphs.py
   fix backcolour bug
r2421 | rgbecker | 2004-08-20 17:12:33 +0100 (Fri, 20 Aug 2004)
   M /reportlab/trunk/reportlab/platypus/__init__.py
   M /reportlab/trunk/reportlab/platypus/doctemplate.py
   M /reportlab/trunk/reportlab/platypus/paragraph.py
   M /reportlab/trunk/reportlab/test/test_paragraphs.py
   minor twitching on Indenter
r2420 | rgbecker | 2004-08-19 23:17:05 +0100 (Thu, 19 Aug 2004)
   M /reportlab/trunk/reportlab/lib/utils.py
   reportlab/lib/utils.py: added flatten utility function
r2419 | rgbecker | 2004-08-19 10:58:05 +0100 (Thu, 19 Aug 2004)
   M /reportlab/trunk/reportlab/lib/_rl_accel.c
   _rl_accel.c: patch from Yves Bastide
r2418 | rgbecker | 2004-08-18 14:11:15 +0100 (Wed, 18 Aug 2004)
   M /reportlab/trunk/reportlab/graphics/charts/textlabels.py
   M /reportlab/trunk/reportlab/graphics/widgetbase.py
   remove 2.2 isms
r2417 | rgbecker | 2004-08-18 12:17:54 +0100 (Wed, 18 Aug 2004)
   M /reportlab/trunk/reportlab/graphics/charts/textlabels.py
   textlabels.py: added keyword arguments
r2416 | rgbecker | 2004-08-17 14:52:21 +0100 (Tue, 17 Aug 2004)
   M /reportlab/trunk/reportlab/graphics/charts/lineplots.py
   lineplots.py: added filler handling
r2415 | rgbecker | 2004-08-07 16:00:28 +0100 (Sat, 07 Aug 2004)
   M /reportlab/trunk/reportlab/graphics/renderPDF.py
   M /reportlab/trunk/reportlab/graphics/renderPM.py
   M /reportlab/trunk/reportlab/graphics/renderPS.py
   M /reportlab/trunk/reportlab/graphics/renderSVG.py
   M /reportlab/trunk/reportlab/graphics/renderbase.py
   M /reportlab/trunk/reportlab/rl_config.py
   rl_config add _unset_, graphics.renderxxx refactoring
r2414 | rgbecker | 2004-07-28 08:53:41 +0100 (Wed, 28 Jul 2004)
   M /reportlab/trunk/reportlab/pdfbase/pdfdoc.py
   pdfdoc: fix rare bug (exposed in tinyrml)
r2413 | rgbecker | 2004-07-26 09:56:04 +0100 (Mon, 26 Jul 2004)
   M /reportlab/trunk/rl_addons/pyRXP/rxp/system.h
   Attempt to fix LONG_LONG defn problem
r2412 | rgbecker | 2004-07-23 17:57:11 +0100 (Fri, 23 Jul 2004)
   M /reportlab/trunk/reportlab/graphics/renderPM.py
   M /reportlab/trunk/rl_addons/renderPM/_renderPM.c
   M /reportlab/trunk/rl_addons/renderPM/gt1/gt1-parset1.c
   M /reportlab/trunk/rl_addons/renderPM/gt1/gt1-parset1.h
   Add reader callback arg to _renderPM.makeT1Font
r2411 | rgbecker | 2004-07-23 14:48:21 +0100 (Fri, 23 Jul 2004)
   M /reportlab/trunk/reportlab/lib/utils.py
   Minor fixes to lib.utils.rl_get_module
r2410 | rgbecker | 2004-07-23 10:43:00 +0100 (Fri, 23 Jul 2004)
   M /reportlab/trunk/reportlab/test/test_pdfbase_ttfonts.py
   test_pdfbase_ttfonts.py add multipage check
r2409 | rgbecker | 2004-07-22 11:59:29 +0100 (Thu, 22 Jul 2004)
   M /reportlab/trunk/reportlab/lib/utils.py
   reportlab.lib.utils fix rl_isdir
r2408 | rgbecker | 2004-07-17 20:43:44 +0100 (Sat, 17 Jul 2004)
   M /reportlab/trunk/rl_addons/pyRXP/patches/differ.bat
   D /reportlab/trunk/rl_addons/pyRXP/patches/rl-1.2.5.patch
   A /reportlab/trunk/rl_addons/pyRXP/patches/rl-1.4.0-patch
   M /reportlab/trunk/rl_addons/pyRXP/pyRXP.c
   M /reportlab/trunk/rl_addons/pyRXP/rxp/COPYRIGHT
   M /reportlab/trunk/rl_addons/pyRXP/rxp/Makefile
   M /reportlab/trunk/rl_addons/pyRXP/rxp/Manual
   A /reportlab/trunk/rl_addons/pyRXP/rxp/catalog.c
   A /reportlab/trunk/rl_addons/pyRXP/rxp/catalog.h
   A /reportlab/trunk/rl_addons/pyRXP/rxp/catalog_dtd.c
   A /reportlab/trunk/rl_addons/pyRXP/rxp/catutil.c
   A /reportlab/trunk/rl_addons/pyRXP/rxp/catutil.h
   M /reportlab/trunk/rl_addons/pyRXP/rxp/ctype16.c
   M /reportlab/trunk/rl_addons/pyRXP/rxp/ctype16.h
   M /reportlab/trunk/rl_addons/pyRXP/rxp/dtd.c
   M /reportlab/trunk/rl_addons/pyRXP/rxp/dtd.h
   A /reportlab/trunk/rl_addons/pyRXP/rxp/entityopener.c
   M /reportlab/trunk/rl_addons/pyRXP/rxp/infoset-print.c
   M /reportlab/trunk/rl_addons/pyRXP/rxp/input.c
   M /reportlab/trunk/rl_addons/pyRXP/rxp/input.h
   M /reportlab/trunk/rl_addons/pyRXP/rxp/namespaces.c
   M /reportlab/trunk/rl_addons/pyRXP/rxp/namespaces.h
   A /reportlab/trunk/rl_addons/pyRXP/rxp/nf16check.c
   A /reportlab/trunk/rl_addons/pyRXP/rxp/nf16check.h
   A /reportlab/trunk/rl_addons/pyRXP/rxp/nf16data.c
   A /reportlab/trunk/rl_addons/pyRXP/rxp/nf16data.h
   A /reportlab/trunk/rl_addons/pyRXP/rxp/resolve.c
   M /reportlab/trunk/rl_addons/pyRXP/rxp/rxp.1
   M /reportlab/trunk/rl_addons/pyRXP/rxp/rxp.c
   M /reportlab/trunk/rl_addons/pyRXP/rxp/rxputil.h
   M /reportlab/trunk/rl_addons/pyRXP/rxp/stdio16.c
   M /reportlab/trunk/rl_addons/pyRXP/rxp/system.h
   M /reportlab/trunk/rl_addons/pyRXP/rxp/url.c
   M /reportlab/trunk/rl_addons/pyRXP/rxp/version.c
   M /reportlab/trunk/rl_addons/pyRXP/rxp/xmlparser.c
   M /reportlab/trunk/rl_addons/pyRXP/rxp/xmlparser.h
   M /reportlab/trunk/rl_addons/pyRXP/setup.py
   Synchronize with rxp-1.4.0 --> version 1.04
r2407 | rgbecker | 2004-07-15 11:22:38 +0100 (Thu, 15 Jul 2004)
   M /reportlab/trunk/reportlab/lib/utils.py
   Another know location
r2406 | rgbecker | 2004-07-09 17:29:34 +0100 (Fri, 09 Jul 2004)
   M /reportlab/trunk/reportlab/rl_config.py
   Add user home to search paths
r2405 | kirpal | 2004-07-09 15:34:52 +0100 (Fri, 09 Jul 2004)
   M /reportlab/trunk/reportlab/docs/userguide/ch1_intro.py
   changes to refrences of CVS
r2404 | rgbecker | 2004-07-02 14:37:32 +0100 (Fri, 02 Jul 2004)
   A /reportlab/trunk/reportlab/tools/utils
   A /reportlab/trunk/reportlab/tools/utils/add_bleed.py
   Initial checkin
r2402 | kirpal | 2004-06-29 14:28:59 +0100 (Tue, 29 Jun 2004)
   D /reportlab/trunk/reportlab/tools/pythonpoint/demos/confKit.xml
   moved to users/kirpals
r2401 | kirpal | 2004-06-29 13:04:15 +0100 (Tue, 29 Jun 2004)
   M /reportlab/trunk/reportlab/tools/pythonpoint/demos/confKit.xml
   changes to presentation
r2400 | kirpal | 2004-06-29 10:52:08 +0100 (Tue, 29 Jun 2004)
   M /reportlab/trunk/reportlab/tools/pythonpoint/demos/confKit.xml
r2399 | kirpal | 2004-06-29 10:37:59 +0100 (Tue, 29 Jun 2004)
   M /reportlab/trunk/reportlab/tools/pythonpoint/demos/confKit.xml
   modified presentation
r2398 | kirpal | 2004-06-29 10:19:21 +0100 (Tue, 29 Jun 2004)
   M /reportlab/trunk/reportlab/tools/pythonpoint/demos/confKit.xml
   modified presentation
r2397 | kirpal | 2004-06-28 17:09:41 +0100 (Mon, 28 Jun 2004)
   M /reportlab/trunk/reportlab/tools/pythonpoint/demos/confKit.xml
   changes to presentation
r2396 | kirpal | 2004-06-28 15:40:16 +0100 (Mon, 28 Jun 2004)
   A /reportlab/trunk/reportlab/tools/pythonpoint/demos/confKit.xml
   python point presentation for Confkit
r2395 | rgbecker | 2004-06-25 19:10:50 +0100 (Fri, 25 Jun 2004)
   M /reportlab/trunk/reportlab/demos/stdfonts/stdfonts.py
   M /reportlab/trunk/reportlab/graphics/renderPDF.py
   M /reportlab/trunk/reportlab/graphics/shapes.py
   M /reportlab/trunk/reportlab/lib/validators.py
   M /reportlab/trunk/reportlab/pdfbase/pdfmetrics.py
   D /reportlab/trunk/reportlab/pdfbase/rl_codecs.py
   M /reportlab/trunk/reportlab/pdfbase/ttfonts.py
   M /reportlab/trunk/reportlab/pdfgen/canvas.py
   M /reportlab/trunk/reportlab/pdfgen/textobject.py
   M /reportlab/trunk/reportlab/platypus/flowables.py
   M /reportlab/trunk/reportlab/platypus/paragraph.py
   M /reportlab/trunk/reportlab/platypus/paraparser.py
   M /reportlab/trunk/reportlab/rl_config.py
   M /reportlab/trunk/reportlab/test/test_pdfbase_encodings.py
   M /reportlab/trunk/reportlab/test/test_pdfgen_general.py
   D /reportlab/trunk/reportlab/test/test_platypus_paraparser.py
   Removed unicode changes
r2393 | rgbecker | 2004-06-23 15:56:24 +0100 (Wed, 23 Jun 2004)
   M /reportlab/trunk/reportlab/lib/utils.py
   Fix 2.2 mktemp argument mismatch
r2392 | rgbecker | 2004-06-23 14:56:44 +0100 (Wed, 23 Jun 2004)
   M /reportlab/trunk/reportlab/lib/utils.py
   M /reportlab/trunk/reportlab/pdfbase/_fontdata.py
   M /reportlab/trunk/reportlab/rl_config.py
   More changes related to compact distro path recognition
r2391 | rgbecker | 2004-06-23 09:52:43 +0100 (Wed, 23 Jun 2004)
   M /reportlab/trunk/reportlab/pdfbase/pdfmetrics.py
   Changes to bruteforce search, non-invasive changes to rl_accel stuff
r2390 | rgbecker | 2004-06-23 09:49:10 +0100 (Wed, 23 Jun 2004)
   M /reportlab/trunk/reportlab/lib/codecharts.py
   Fix for unicode difficulties
r2389 | rgbecker | 2004-06-22 18:00:41 +0100 (Tue, 22 Jun 2004)
   A /reportlab/trunk/reportlab/pdfbase/rl_codecs.py
   First try at Adobe T1 encodings
r2388 | rgbecker | 2004-06-21 15:07:46 +0100 (Mon, 21 Jun 2004)
   M /reportlab/trunk/reportlab/demos/stdfonts/stdfonts.py
   Attempt to fix up for unicode
r2387 | jjlee | 2004-06-18 11:39:08 +0100 (Fri, 18 Jun 2004)
   M /reportlab/trunk/reportlab/pdfbase/ttfonts.py
   Fixed zero-length string case in stringWidth
r2386 | rgbecker | 2004-06-17 16:26:26 +0100 (Thu, 17 Jun 2004)
   M /reportlab/trunk/rl_addons/pyRXP/pyRXP.c
   M /reportlab/trunk/rl_addons/pyRXP/rxp/url.h
   M /reportlab/trunk/rl_addons/pyRXP/setup.py
   Remove $Header:, fix CopyRight & history
r2385 | rgbecker | 2004-06-17 16:26:05 +0100 (Thu, 17 Jun 2004)
   M /reportlab/trunk/reportlab/__init__.py
   M /reportlab/trunk/reportlab/demos/colors/colortest.py
   M /reportlab/trunk/reportlab/demos/gadflypaper/gfe.py
   M /reportlab/trunk/reportlab/demos/odyssey/dodyssey.py
   M /reportlab/trunk/reportlab/demos/odyssey/fodyssey.py
   M /reportlab/trunk/reportlab/demos/odyssey/odyssey.py
   M /reportlab/trunk/reportlab/demos/rlzope/rlzope.py
   M /reportlab/trunk/reportlab/demos/stdfonts/stdfonts.py
   M /reportlab/trunk/reportlab/demos/tests/testdemos.py
   M /reportlab/trunk/reportlab/docs/graphguide/ch1_intro.py
   M /reportlab/trunk/reportlab/docs/graphguide/ch2_concepts.py
   M /reportlab/trunk/reportlab/docs/graphguide/ch3_shapes.py
   M /reportlab/trunk/reportlab/docs/graphguide/ch4_widgets.py
   M /reportlab/trunk/reportlab/docs/graphguide/ch5_charts.py
   M /reportlab/trunk/reportlab/docs/graphguide/gengraphguide.py
   M /reportlab/trunk/reportlab/docs/reference/genreference.py
   M /reportlab/trunk/reportlab/docs/userguide/app_demos.py
   M /reportlab/trunk/reportlab/docs/userguide/ch1_intro.py
   M /reportlab/trunk/reportlab/docs/userguide/ch2_graphics.py
   M /reportlab/trunk/reportlab/docs/userguide/ch2a_fonts.py
   M /reportlab/trunk/reportlab/docs/userguide/ch3_pdffeatures.py
   M /reportlab/trunk/reportlab/docs/userguide/ch4_platypus_concepts.py
   M /reportlab/trunk/reportlab/docs/userguide/ch5_paragraphs.py
   M /reportlab/trunk/reportlab/docs/userguide/ch6_tables.py
   M /reportlab/trunk/reportlab/docs/userguide/ch7_custom.py
   M /reportlab/trunk/reportlab/docs/userguide/ch9_future.py
   M /reportlab/trunk/reportlab/docs/userguide/genuserguide.py
   M /reportlab/trunk/reportlab/extensions/__init__.py
   M /reportlab/trunk/reportlab/graphics/__init__.py
   M /reportlab/trunk/reportlab/graphics/charts/__init__.py
   M /reportlab/trunk/reportlab/graphics/charts/areas.py
   M /reportlab/trunk/reportlab/graphics/charts/axes.py
   M /reportlab/trunk/reportlab/graphics/charts/barcharts.py
   M /reportlab/trunk/reportlab/graphics/charts/doughnut.py
   M /reportlab/trunk/reportlab/graphics/charts/legends.py
   M /reportlab/trunk/reportlab/graphics/charts/linecharts.py
   M /reportlab/trunk/reportlab/graphics/charts/lineplots.py
   M /reportlab/trunk/reportlab/graphics/charts/markers.py
   M /reportlab/trunk/reportlab/graphics/charts/piecharts.py
   M /reportlab/trunk/reportlab/graphics/charts/spider.py
   M /reportlab/trunk/reportlab/graphics/charts/textlabels.py
   M /reportlab/trunk/reportlab/graphics/charts/utils.py
   M /reportlab/trunk/reportlab/graphics/renderPDF.py
   M /reportlab/trunk/reportlab/graphics/renderPM.py
   M /reportlab/trunk/reportlab/graphics/renderPS.py
   M /reportlab/trunk/reportlab/graphics/renderbase.py
   M /reportlab/trunk/reportlab/graphics/samples/__init__.py
   M /reportlab/trunk/reportlab/graphics/shapes.py
   M /reportlab/trunk/reportlab/graphics/testdrawings.py
   M /reportlab/trunk/reportlab/graphics/testshapes.py
   M /reportlab/trunk/reportlab/graphics/widgetbase.py
   M /reportlab/trunk/reportlab/graphics/widgets/__init__.py
   M /reportlab/trunk/reportlab/graphics/widgets/eventcal.py
   M /reportlab/trunk/reportlab/graphics/widgets/flags.py
   M /reportlab/trunk/reportlab/graphics/widgets/grids.py
   M /reportlab/trunk/reportlab/graphics/widgets/markers.py
   M /reportlab/trunk/reportlab/graphics/widgets/signsandsymbols.py
   M /reportlab/trunk/reportlab/lib/__init__.py
   M /reportlab/trunk/reportlab/lib/_rl_accel.c
   M /reportlab/trunk/reportlab/lib/abag.py
   M /reportlab/trunk/reportlab/lib/attrmap.py
   M /reportlab/trunk/reportlab/lib/codecharts.py
   M /reportlab/trunk/reportlab/lib/colors.py
   M /reportlab/trunk/reportlab/lib/corp.py
   M /reportlab/trunk/reportlab/lib/enums.py
   M /reportlab/trunk/reportlab/lib/extformat.py
   M /reportlab/trunk/reportlab/lib/fonts.py
   M /reportlab/trunk/reportlab/lib/formatters.py
   M /reportlab/trunk/reportlab/lib/logger.py
   M /reportlab/trunk/reportlab/lib/pagesizes.py
   M /reportlab/trunk/reportlab/lib/randomtext.py
   M /reportlab/trunk/reportlab/lib/sequencer.py
   M /reportlab/trunk/reportlab/lib/set_ops.py
   M /reportlab/trunk/reportlab/lib/setup.py
   M /reportlab/trunk/reportlab/lib/styles.py
   M /reportlab/trunk/reportlab/lib/tocindex.py
   M /reportlab/trunk/reportlab/lib/units.py
   M /reportlab/trunk/reportlab/lib/utils.py
   M /reportlab/trunk/reportlab/lib/validators.py
   M /reportlab/trunk/reportlab/lib/yaml.py
   M /reportlab/trunk/reportlab/pdfbase/__init__.py
   M /reportlab/trunk/reportlab/pdfbase/_cidfontdata.py
   M /reportlab/trunk/reportlab/pdfbase/_fontdata.py
   M /reportlab/trunk/reportlab/pdfbase/cidfonts.py
   M /reportlab/trunk/reportlab/pdfbase/pdfdoc.py
   M /reportlab/trunk/reportlab/pdfbase/pdfmetrics.py
   M /reportlab/trunk/reportlab/pdfbase/pdfutils.py
   M /reportlab/trunk/reportlab/pdfbase/ttfonts.py
   M /reportlab/trunk/reportlab/pdfgen/__init__.py
   M /reportlab/trunk/reportlab/pdfgen/canvas.py
   M /reportlab/trunk/reportlab/pdfgen/pathobject.py
   M /reportlab/trunk/reportlab/pdfgen/pdfgeom.py
   M /reportlab/trunk/reportlab/pdfgen/pdfimages.py
   M /reportlab/trunk/reportlab/pdfgen/textobject.py
   M /reportlab/trunk/reportlab/platypus/__init__.py
   M /reportlab/trunk/reportlab/platypus/doctemplate.py
   M /reportlab/trunk/reportlab/platypus/figures.py
   M /reportlab/trunk/reportlab/platypus/flowables.py
   M /reportlab/trunk/reportlab/platypus/frames.py
   M /reportlab/trunk/reportlab/platypus/paragraph.py
   M /reportlab/trunk/reportlab/platypus/paraparser.py
   M /reportlab/trunk/reportlab/platypus/tableofcontents.py
   M /reportlab/trunk/reportlab/platypus/tables.py
   M /reportlab/trunk/reportlab/platypus/xpreformatted.py
   M /reportlab/trunk/reportlab/rl_config.py
   M /reportlab/trunk/reportlab/setup.py
   M /reportlab/trunk/reportlab/test/__init__.py
   M /reportlab/trunk/reportlab/test/runAll.py
   M /reportlab/trunk/reportlab/test/test_charts_textlabels.py
   M /reportlab/trunk/reportlab/test/test_docstrings.py
   M /reportlab/trunk/reportlab/test/test_graphics_charts.py
   M /reportlab/trunk/reportlab/test/test_graphics_images.py
   M /reportlab/trunk/reportlab/test/test_graphics_layout.py
   M /reportlab/trunk/reportlab/test/test_graphics_speed.py
   M /reportlab/trunk/reportlab/test/test_hello.py
   M /reportlab/trunk/reportlab/test/test_images.py
   M /reportlab/trunk/reportlab/test/test_invariant.py
   M /reportlab/trunk/reportlab/test/test_lib_colors.py
   M /reportlab/trunk/reportlab/test/test_lib_sequencer.py
   M /reportlab/trunk/reportlab/test/test_multibyte_chs.py
   M /reportlab/trunk/reportlab/test/test_multibyte_cht.py
   M /reportlab/trunk/reportlab/test/test_multibyte_jpn.py
   M /reportlab/trunk/reportlab/test/test_paragraphs.py
   M /reportlab/trunk/reportlab/test/test_pdfbase_pdfmetrics.py
   M /reportlab/trunk/reportlab/test/test_pdfbase_pdfutils.py
   M /reportlab/trunk/reportlab/test/test_pdfbase_postscript.py
   M /reportlab/trunk/reportlab/test/test_pdfgen_callback.py
   M /reportlab/trunk/reportlab/test/test_pdfgen_general.py
   M /reportlab/trunk/reportlab/test/test_pdfgen_links.py
   M /reportlab/trunk/reportlab/test/test_pdfgen_pagemodes.py
   M /reportlab/trunk/reportlab/test/test_pdfgen_pycanvas.py
   M /reportlab/trunk/reportlab/test/test_platypus_breaking.py
   M /reportlab/trunk/reportlab/test/test_platypus_general.py
   M /reportlab/trunk/reportlab/test/test_platypus_indents.py
   M /reportlab/trunk/reportlab/test/test_platypus_paragraphs.py
   M /reportlab/trunk/reportlab/test/test_platypus_paraparser.py
   M /reportlab/trunk/reportlab/test/test_platypus_tables.py
   M /reportlab/trunk/reportlab/test/test_platypus_toc.py
   M /reportlab/trunk/reportlab/test/test_platypus_xref.py
   M /reportlab/trunk/reportlab/test/test_pyfiles.py
   M /reportlab/trunk/reportlab/test/test_source_chars.py
   M /reportlab/trunk/reportlab/test/test_widgetbase_tpc.py
   M /reportlab/trunk/reportlab/tools/__init__.py
   M /reportlab/trunk/reportlab/tools/docco/__init__.py
   M /reportlab/trunk/reportlab/tools/docco/codegrab.py
   M /reportlab/trunk/reportlab/tools/docco/docpy.py
   M /reportlab/trunk/reportlab/tools/docco/examples.py
   M /reportlab/trunk/reportlab/tools/docco/graphdocpy.py
   M /reportlab/trunk/reportlab/tools/docco/rl_doc_utils.py
   M /reportlab/trunk/reportlab/tools/docco/rltemplate.py
   M /reportlab/trunk/reportlab/tools/docco/stylesheet.py
   M /reportlab/trunk/reportlab/tools/docco/t_parse.py
   M /reportlab/trunk/reportlab/tools/docco/yaml.py
   M /reportlab/trunk/reportlab/tools/docco/yaml2pdf.py
   M /reportlab/trunk/reportlab/tools/py2pdf/__init__.py
   M /reportlab/trunk/reportlab/tools/py2pdf/idle_print.py
   M /reportlab/trunk/reportlab/tools/pythonpoint/__init__.py
   M /reportlab/trunk/reportlab/tools/pythonpoint/customshapes.py
   M /reportlab/trunk/reportlab/tools/pythonpoint/styles/__init__.py
   M /reportlab/trunk/reportlab/tools/pythonpoint/styles/horrible.py
   M /reportlab/trunk/reportlab/tools/pythonpoint/styles/modern.py
   Remove $Header:, fix CopyRight & history
r2384 | mike | 2004-06-17 15:50:51 +0100 (Thu, 17 Jun 2004)
   M /reportlab/trunk/reportlab/test/test_pdfgen_links.py
   Change back to native eol to fix line endings
r2383 | mike | 2004-06-17 15:44:11 +0100 (Thu, 17 Jun 2004)
   M /reportlab/trunk/reportlab/test/test_pdfgen_links.py
   Temporary change to binary to fix line endings
r2382 | rgbecker | 2004-06-17 15:23:21 +0100 (Thu, 17 Jun 2004)
   M /reportlab/trunk/reportlab/test/test_pdfgen_links.py
   Attempt to fix lineendings
r2381 | rgbecker | 2004-06-17 13:01:26 +0100 (Thu, 17 Jun 2004)
   M /reportlab/trunk/reportlab/pdfbase/pdfmetrics.py
   M /reportlab/trunk/reportlab/pdfgen/canvas.py
   Fix encoding for zap & symbol
r2380 | rgbecker | 2004-06-16 12:45:56 +0100 (Wed, 16 Jun 2004)
   M /reportlab/trunk/reportlab/lib/utils.py
   Forgot to check the exactly equal case for _startswith_rl
r2379 | rgbecker | 2004-06-15 14:10:37 +0100 (Tue, 15 Jun 2004)
   M /reportlab/trunk/reportlab/pdfbase/ttfonts.py
   M /reportlab/trunk/reportlab/pdfgen/textobject.py
   Moved encoding checks into splitString
r2378 | rgbecker | 2004-06-15 12:34:47 +0100 (Tue, 15 Jun 2004)
   M /reportlab/trunk/reportlab/test/test_platypus_paraparser.py
   Fix properties and possibly line-endings
r2377 | rgbecker | 2004-06-15 11:33:32 +0100 (Tue, 15 Jun 2004)
   M /reportlab/trunk/reportlab/graphics/charts/axes.py
   remove use of False (invalid in 2.2)
r2376 | andy | 2004-06-14 23:13:04 +0100 (Mon, 14 Jun 2004)
   M /reportlab/trunk/reportlab/pdfbase/ttfonts.py
   fixed widths bug for tt fonts
r2375 | rgbecker | 2004-06-14 18:51:15 +0100 (Mon, 14 Jun 2004)
   M /reportlab/trunk/reportlab/graphics/charts/axes.py
r2374 | andy | 2004-06-14 17:41:25 +0100 (Mon, 14 Jun 2004)
   M /reportlab/trunk/reportlab/graphics/renderPDF.py
   M /reportlab/trunk/reportlab/graphics/shapes.py
   M /reportlab/trunk/reportlab/lib/validators.py
   M /reportlab/trunk/reportlab/pdfbase/pdfmetrics.py
   M /reportlab/trunk/reportlab/pdfbase/ttfonts.py
   M /reportlab/trunk/reportlab/pdfgen/canvas.py
   M /reportlab/trunk/reportlab/pdfgen/textobject.py
   M /reportlab/trunk/reportlab/platypus/flowables.py
   M /reportlab/trunk/reportlab/platypus/paragraph.py
   M /reportlab/trunk/reportlab/platypus/paraparser.py
   M /reportlab/trunk/reportlab/test/test_pdfbase_encodings.py
   A /reportlab/trunk/reportlab/test/test_platypus_paraparser.py
   Unicode and UTF8 support changes
r2373 | rgbecker | 2004-06-14 17:29:04 +0100 (Mon, 14 Jun 2004)
   M /reportlab/trunk/reportlab/pdfgen/canvas.py
   Fix import of logger
r2372 | mike | 2004-06-11 18:11:22 +0100 (Fri, 11 Jun 2004)
   M /reportlab/trunk/reportlab/test/test_pdfbase_encodings.py
   Added more accurate checking of UTF8 output
r2371 | mike | 2004-06-11 17:15:45 +0100 (Fri, 11 Jun 2004)
   M /reportlab/trunk/reportlab/test/test_pdfbase_encodings.py
   Made some corrections and got all TextEncodingTestCase tests working
r2370 | mike | 2004-06-11 16:25:50 +0100 (Fri, 11 Jun 2004)
   M /reportlab/trunk/reportlab/pdfgen/canvas.py
   M /reportlab/trunk/reportlab/pdfgen/textobject.py
   Added support for mac_roman encoding and changed to always convert unicode strings to font encoding
r2369 | robin | 2004-06-11 11:17:18 +0100 (Fri, 11 Jun 2004)
   M /reportlab/trunk/reportlab/pdfgen/canvas.py
   M /reportlab/trunk/reportlab/test/test_pdfbase_encodings.py
   Early 2.x has no UnicodeDecodeError and no ''.decode
r2368 | andy_robinson | 2004-06-10 01:43:21 +0100 (Thu, 10 Jun 2004)
   M /reportlab/trunk/reportlab/pdfgen/canvas.py
   M /reportlab/trunk/reportlab/pdfgen/textobject.py
   M /reportlab/trunk/reportlab/test/test_pdfbase_encodings.py
   M /reportlab/trunk/reportlab/test/test_pdfgen_general.py
   Now has runnable encoding-conversion
r2367 | rgbecker | 2004-06-07 17:30:37 +0100 (Mon, 07 Jun 2004)
   M /reportlab/trunk/reportlab/platypus/tables.py
   Add xpre example
r2366 | rgbecker | 2004-06-03 12:26:44 +0100 (Thu, 03 Jun 2004)
   M /reportlab/trunk/reportlab/lib/utils.py
   Another rework of the open for read code
r2365 | rgbecker | 2004-06-03 11:38:25 +0100 (Thu, 03 Jun 2004)
   M /reportlab/trunk/reportlab/test/test_platypus_general.py
   Attempt to fix the file: form
r2364 | andy_robinson | 2004-05-29 00:41:18 +0100 (Sat, 29 May 2004)
   M /reportlab/trunk/reportlab/pdfgen/canvas.py
   M /reportlab/trunk/reportlab/pdfgen/textobject.py
   M /reportlab/trunk/reportlab/platypus/figures.py
   M /reportlab/trunk/reportlab/rl_config.py
   M /reportlab/trunk/reportlab/tools/pythonpoint/pythonpoint.dtd
   M /reportlab/trunk/reportlab/tools/pythonpoint/pythonpoint.py
   M /reportlab/trunk/reportlab/tools/pythonpoint/stdparser.py
   Prelim support for unicode conversion (disabled by
   rl_config.autoConvertEncodings at first);
   borders to drawings in pythonpoint and for figure
   objects;
r2363 | rgbecker | 2004-05-28 15:39:42 +0100 (Fri, 28 May 2004)
   M /reportlab/trunk/reportlab/test/test_platypus_general.py
   Attempt to test http urls for images
r2362 | rgbecker | 2004-05-28 15:04:25 +0100 (Fri, 28 May 2004)
   M /reportlab/trunk/reportlab/lib/utils.py
   Attempt to fix open_for_read again
r2361 | rgbecker | 2004-05-28 15:02:14 +0100 (Fri, 28 May 2004)
   M /reportlab/trunk/reportlab/test/test_lib_utils.py
   Added open_and_read tests
r2360 | rgbecker | 2004-05-26 19:44:55 +0100 (Wed, 26 May 2004)
   M /reportlab/trunk/reportlab/lib/utils.py
   More compact distro changes
r2359 | jjlee | 2004-05-26 10:37:07 +0100 (Wed, 26 May 2004)
   M /reportlab/trunk/reportlab/graphics/charts/lineplots.py
   M /reportlab/trunk/reportlab/graphics/shapes.py
   Make a couple of files emacs font-lock friendly
r2358 | rgbecker | 2004-05-25 22:12:31 +0100 (Tue, 25 May 2004)
   M /reportlab/trunk/reportlab/lib/utils.py
   Use more advanced __loader__ friendly code
r2357 | rgbecker | 2004-05-25 17:33:56 +0100 (Tue, 25 May 2004)
   M /reportlab/trunk/reportlab/docs/reference/genreference.py
   Fix missing module
r2356 | rgbecker | 2004-05-24 13:19:53 +0100 (Mon, 24 May 2004)
   M /reportlab/trunk/reportlab/lib/_rl_accel.c
   Attempt to fix 1.5 problems
r2355 | rgbecker | 2004-05-23 11:39:30 +0100 (Sun, 23 May 2004)
   M /reportlab/trunk/reportlab/lib/utils.py
   rl_get_module now seems to work as intended
r2354 | rgbecker | 2004-05-23 10:27:52 +0100 (Sun, 23 May 2004)
   M /reportlab/trunk/reportlab/lib/utils.py
   rl_get_module added
r2353 | rgbecker | 2004-05-20 11:10:27 +0100 (Thu, 20 May 2004)
   M /reportlab/trunk/reportlab/lib/utils.py
   Attempt to robustify the memo
r2352 | rgbecker | 2004-05-18 18:16:55 +0100 (Tue, 18 May 2004)
   M /reportlab/trunk/reportlab/platypus/tables.py
   Fix proposed by Derik Barclay <dbarclay@givex.com>
r2351 | rgbecker | 2004-05-08 18:19:54 +0100 (Sat, 08 May 2004)
   M /reportlab/trunk/reportlab/tools/docco/docpy.py
   M /reportlab/trunk/reportlab/tools/docco/graphdocpy.py
   D /reportlab/trunk/reportlab/tools/docco/inspect.py
   Removed private version of inspect
r2350 | rgbecker | 2004-05-07 17:56:29 +0100 (Fri, 07 May 2004)
   M /reportlab/trunk/reportlab/lib/utils.py
   Added some more stuff and script name to DebugMemo output
r2349 | rgbecker | 2004-05-07 16:28:33 +0100 (Fri, 07 May 2004)
   M /reportlab/trunk/reportlab/lib/utils.py
   Added capture_traceback=1 to DebugMemo init
r2348 | rgbecker | 2004-05-03 09:13:37 +0100 (Mon, 03 May 2004)
   M /reportlab/trunk/reportlab/graphics/widgets/grids.py
   Make stripe strokeColor same as fill
r2347 | rgbecker | 2004-05-03 09:11:48 +0100 (Mon, 03 May 2004)
   M /reportlab/trunk/reportlab/test/test_docstrings.py
   Minor changes
r2346 | rgbecker | 2004-05-03 09:09:52 +0100 (Mon, 03 May 2004)
   M /reportlab/trunk/reportlab/lib/_rl_accel.c
   Fix flagged and penalty values
r2345 | rgbecker | 2004-04-28 16:27:31 +0100 (Wed, 28 Apr 2004)
   M /reportlab/trunk/reportlab/tools/docco/graphdocpy.py
   Move to using inspect for getsource (actually works)
r2344 | rgbecker | 2004-04-28 15:41:56 +0100 (Wed, 28 Apr 2004)
   M /reportlab/trunk/reportlab/tools/docco/rl_doc_utils.py
   Added setStory
r2343 | rgbecker | 2004-04-28 15:40:21 +0100 (Wed, 28 Apr 2004)
   M /reportlab/trunk/reportlab/docs/graphguide/gengraphguide.py
   M /reportlab/trunk/reportlab/docs/reference/genreference.py
   M /reportlab/trunk/reportlab/docs/userguide/ch1_intro.py
   M /reportlab/trunk/reportlab/docs/userguide/ch2a_fonts.py
   M /reportlab/trunk/reportlab/docs/userguide/ch6_tables.py
   M /reportlab/trunk/reportlab/docs/userguide/genuserguide.py
   Fixing up to not use folder relative import
r2342 | rgbecker | 2004-04-22 18:36:41 +0100 (Thu, 22 Apr 2004)
   M /reportlab/trunk/reportlab/platypus/tables.py
   Attempt to fix the Mike Spanning example
r2341 | rgbecker | 2004-04-21 17:39:36 +0100 (Wed, 21 Apr 2004)
   M /reportlab/trunk/reportlab/platypus/tables.py
   Added Mike's counter span example
r2340 | rgbecker | 2004-04-14 14:10:51 +0100 (Wed, 14 Apr 2004)
   M /reportlab/trunk/reportlab/graphics/shapes.py
   Fix problem with empty charts
r2339 | rgbecker | 2004-04-08 17:02:52 +0100 (Thu, 08 Apr 2004)
   M /reportlab/trunk/reportlab/lib/_rl_accel.c
   remove Box stuff prior to 2.3
r2338 | rgbecker | 2004-04-08 15:17:42 +0100 (Thu, 08 Apr 2004)
   M /reportlab/trunk/reportlab/lib/_rl_accel.c
   removed PyDoc_STR for now; changed to do hex version checks
r2337 | rgbecker | 2004-04-05 19:07:42 +0100 (Mon, 05 Apr 2004)
   M /reportlab/trunk/reportlab/platypus/flowables.py
   M /reportlab/trunk/reportlab/platypus/tables.py
   Minor changes
r2336 | rgbecker | 2004-04-05 15:17:29 +0100 (Mon, 05 Apr 2004)
   M /reportlab/trunk/reportlab/pdfbase/ttfonts.py
   Another attempt to fix up wanrings
r2335 | rgbecker | 2004-04-05 13:59:56 +0100 (Mon, 05 Apr 2004)
   M /reportlab/trunk/reportlab/lib/_rl_accel.c
   Forgot to bump the version
r2334 | rgbecker | 2004-04-05 08:47:18 +0100 (Mon, 05 Apr 2004)
   M /reportlab/trunk/reportlab/lib/_rl_accel.c
   Added in BoxList, removed AttrDict
r2333 | rgbecker | 2004-04-01 18:00:33 +0100 (Thu, 01 Apr 2004)
   M /reportlab/trunk/reportlab/lib/extformat.py
   Added header lines
r2332 | rgbecker | 2004-04-01 17:59:22 +0100 (Thu, 01 Apr 2004)
   M /reportlab/trunk/reportlab/lib/utils.py
   Added get_rl_tempfile
r2331 | rgbecker | 2004-04-01 17:58:02 +0100 (Thu, 01 Apr 2004)
   A /reportlab/trunk/reportlab/lib/extformat.py
   Added for better formatting
r2330 | rgbecker | 2004-04-01 12:17:02 +0100 (Thu, 01 Apr 2004)
   M /reportlab/trunk/reportlab/platypus/tables.py
   Ensure _colWidths is defined
r2329 | rgbecker | 2004-03-30 15:58:35 +0100 (Tue, 30 Mar 2004)
   M /reportlab/trunk/reportlab/platypus/flowables.py
   Added HRFlowable
r2328 | rgbecker | 2004-03-27 09:42:24 +0000 (Sat, 27 Mar 2004)
   M /reportlab/trunk/reportlab/test/runAll.py
   Indicate output folder
r2327 | rgbecker | 2004-03-27 09:41:37 +0000 (Sat, 27 Mar 2004)
   M /reportlab/trunk/reportlab/pdfbase/pdfdoc.py
   Ensure external mask gets through in a85 cases
r2326 | rgbecker | 2004-03-26 21:34:03 +0000 (Fri, 26 Mar 2004)
   M /reportlab/trunk/reportlab/pdfbase/pdfdoc.py
   M /reportlab/trunk/reportlab/pdfbase/pdfutils.py
   Fix bug introduced during transparency/ImageReader changes
r2325 | rgbecker | 2004-03-26 16:54:37 +0000 (Fri, 26 Mar 2004)
   M /reportlab/trunk/reportlab/test/test_tools_pythonpoint.py
   Fix buglet in compact testing
r2324 | rgbecker | 2004-03-26 15:44:24 +0000 (Fri, 26 Mar 2004)
   M /reportlab/trunk/reportlab/platypus/tables.py
   Added percentages
r2323 | rgbecker | 2004-03-26 14:27:24 +0000 (Fri, 26 Mar 2004)
   M /reportlab/trunk/reportlab/test/test_pyfiles.py
   Move to having all test output in a temp folder
r2322 | rgbecker | 2004-03-26 14:26:50 +0000 (Fri, 26 Mar 2004)
   M /reportlab/trunk/reportlab/test/runAll.py
   Add test_*.txt cleanup
r2321 | rgbecker | 2004-03-26 14:20:44 +0000 (Fri, 26 Mar 2004)
   M /reportlab/trunk/reportlab/test/runAll.py
   M /reportlab/trunk/reportlab/test/test_charts_textlabels.py
   M /reportlab/trunk/reportlab/test/test_docstrings.py
   M /reportlab/trunk/reportlab/test/test_graphics_charts.py
   M /reportlab/trunk/reportlab/test/test_graphics_images.py
   M /reportlab/trunk/reportlab/test/test_graphics_speed.py
   M /reportlab/trunk/reportlab/test/test_hello.py
   M /reportlab/trunk/reportlab/test/test_invariant.py
   M /reportlab/trunk/reportlab/test/test_lib_colors.py
   M /reportlab/trunk/reportlab/test/test_multibyte_chs.py
   M /reportlab/trunk/reportlab/test/test_multibyte_cht.py
   M /reportlab/trunk/reportlab/test/test_multibyte_jpn.py
   M /reportlab/trunk/reportlab/test/test_multibyte_kor.py
   M /reportlab/trunk/reportlab/test/test_paragraphs.py
   M /reportlab/trunk/reportlab/test/test_pdfbase_encodings.py
   M /reportlab/trunk/reportlab/test/test_pdfbase_fontembed.py
   M /reportlab/trunk/reportlab/test/test_pdfbase_pdfmetrics.py
   M /reportlab/trunk/reportlab/test/test_pdfbase_postscript.py
   M /reportlab/trunk/reportlab/test/test_pdfbase_ttfonts.py
   M /reportlab/trunk/reportlab/test/test_pdfgen_callback.py
   M /reportlab/trunk/reportlab/test/test_pdfgen_general.py
   M /reportlab/trunk/reportlab/test/test_pdfgen_links.py
   M /reportlab/trunk/reportlab/test/test_pdfgen_pagemodes.py
   M /reportlab/trunk/reportlab/test/test_pdfgen_pycanvas.py
   M /reportlab/trunk/reportlab/test/test_platypus_breaking.py
   M /reportlab/trunk/reportlab/test/test_platypus_general.py
   M /reportlab/trunk/reportlab/test/test_platypus_indents.py
   M /reportlab/trunk/reportlab/test/test_platypus_paragraphs.py
   M /reportlab/trunk/reportlab/test/test_platypus_tables.py
   M /reportlab/trunk/reportlab/test/test_platypus_toc.py
   M /reportlab/trunk/reportlab/test/test_platypus_xref.py
   M /reportlab/trunk/reportlab/test/test_renderSVG.py
   M /reportlab/trunk/reportlab/test/test_source_chars.py
   M /reportlab/trunk/reportlab/test/test_table_layout.py
   M /reportlab/trunk/reportlab/test/test_tools_pythonpoint.py
   M /reportlab/trunk/reportlab/test/test_widgets_grids.py
   M /reportlab/trunk/reportlab/test/utils.py
   Move to having all test output in a temp folder
r2320 | rgbecker | 2004-03-26 11:37:09 +0000 (Fri, 26 Mar 2004)
   M /reportlab/trunk/reportlab/test/test_platypus_indents.py
   M /reportlab/trunk/reportlab/test/test_platypus_paragraphs.py
   M /reportlab/trunk/reportlab/test/test_widgetbase_tpc.py
   Remove unwanted import
r2319 | rgbecker | 2004-03-26 11:34:11 +0000 (Fri, 26 Mar 2004)
   M /reportlab/trunk/reportlab/test/test_charts_textlabels.py
   M /reportlab/trunk/reportlab/test/test_graphics_charts.py
   M /reportlab/trunk/reportlab/test/test_lib_utils.py
   M /reportlab/trunk/reportlab/test/test_platypus_toc.py
   Eliminate bad tempdir setting
r2318 | rgbecker | 2004-03-26 10:48:43 +0000 (Fri, 26 Mar 2004)
   M /reportlab/trunk/rl_addons/pyRXP/pyRXP.c
   Fix up bug introduced with new CB API
r2317 | rgbecker | 2004-03-24 17:17:05 +0000 (Wed, 24 Mar 2004)
   M /reportlab/trunk/reportlab/tools/pythonpoint/pythonpoint.py
   Add eoCB for compactdistro
r2316 | rgbecker | 2004-03-24 17:16:22 +0000 (Wed, 24 Mar 2004)
   M /reportlab/trunk/reportlab/test/test_tools_pythonpoint.py
   Fix test_tools_pythonpoint for compact distro
r2315 | rgbecker | 2004-03-24 17:14:53 +0000 (Wed, 24 Mar 2004)
   M /reportlab/trunk/rl_addons/pyRXP/pyRXP.c
   Allow eoCB to return (URI,contents) for compact distro
r2314 | rgbecker | 2004-03-24 14:04:51 +0000 (Wed, 24 Mar 2004)
   M /reportlab/trunk/reportlab/pdfbase/cidfonts.py
   Switch to using get_rl_tempdir
r2313 | rgbecker | 2004-03-24 14:03:31 +0000 (Wed, 24 Mar 2004)
   M /reportlab/trunk/reportlab/lib/utils.py
   Added get_rl_tempdir
r2312 | rgbecker | 2004-03-24 09:42:22 +0000 (Wed, 24 Mar 2004)
   M /reportlab/trunk/reportlab/lib/utils.py
   True/False aren't defined for Python < 2.3
r2311 | rgbecker | 2004-03-23 18:57:33 +0000 (Tue, 23 Mar 2004)
   M /reportlab/trunk/reportlab/lib/utils.py
   M /reportlab/trunk/reportlab/test/utils.py
   Remove things that python 2.1 fails on
r2310 | rgbecker | 2004-03-23 17:35:42 +0000 (Tue, 23 Mar 2004)
   M /reportlab/trunk/reportlab/pdfbase/pdfmetrics.py
   Compact distro friendly
r2309 | rgbecker | 2004-03-23 17:34:11 +0000 (Tue, 23 Mar 2004)
   M /reportlab/trunk/reportlab/lib/utils.py
   Added rl_glob
r2308 | rgbecker | 2004-03-23 17:32:20 +0000 (Tue, 23 Mar 2004)
   M /reportlab/trunk/reportlab/rl_config.py
   Use rl_isdir
r2307 | rgbecker | 2004-03-23 16:18:29 +0000 (Tue, 23 Mar 2004)
   M /reportlab/trunk/reportlab/pdfbase/ttfonts.py
   Now works in compact distro
r2306 | rgbecker | 2004-03-23 15:43:13 +0000 (Tue, 23 Mar 2004)
   M /reportlab/trunk/reportlab/test/test_invariant.py
   Now works in compact distro
r2305 | rgbecker | 2004-03-23 15:37:53 +0000 (Tue, 23 Mar 2004)
   M /reportlab/trunk/reportlab/test/test_pdfgen_general.py
   Fix for compact distro
r2304 | rgbecker | 2004-03-23 15:20:50 +0000 (Tue, 23 Mar 2004)
   M /reportlab/trunk/reportlab/lib/utils.py
   We prefer absolute RL DIR
r2303 | rgbecker | 2004-03-23 15:19:21 +0000 (Tue, 23 Mar 2004)
   M /reportlab/trunk/reportlab/test/test_platypus_paragraphs.py
   Now works in compact distro
r2302 | rgbecker | 2004-03-23 15:18:34 +0000 (Tue, 23 Mar 2004)
   M /reportlab/trunk/reportlab/test/utils.py
   Switch to using rl_isdir
r2301 | rgbecker | 2004-03-23 14:46:35 +0000 (Tue, 23 Mar 2004)
   M /reportlab/trunk/reportlab/test/runAll.py
   Allow specifying the pattern
r2300 | rgbecker | 2004-03-23 14:30:01 +0000 (Tue, 23 Mar 2004)
   M /reportlab/trunk/reportlab/lib/utils.py
   Added open_and_readlines
r2299 | rgbecker | 2004-03-23 14:28:47 +0000 (Tue, 23 Mar 2004)
   M /reportlab/trunk/reportlab/test/test_lib_utils.py
   M /reportlab/trunk/reportlab/test/test_pyfiles.py
   Fix up for compact distro
r2298 | rgbecker | 2004-03-23 14:15:47 +0000 (Tue, 23 Mar 2004)
   M /reportlab/trunk/reportlab/test/test_source_chars.py
   Fix up for compact distro (leave Zapping alone)
r2297 | rgbecker | 2004-03-23 13:54:42 +0000 (Tue, 23 Mar 2004)
   M /reportlab/trunk/reportlab/lib/utils.py
   Improvements for compact running
r2296 | rgbecker | 2004-03-23 13:50:40 +0000 (Tue, 23 Mar 2004)
   M /reportlab/trunk/reportlab/test/test_platypus_general.py
   Ensure runnable in compact distro
r2295 | rgbecker | 2004-03-23 12:55:44 +0000 (Tue, 23 Mar 2004)
   M /reportlab/trunk/reportlab/test/test_lib_utils.py
   Allow to run in a compact distro
r2294 | rgbecker | 2004-03-23 12:20:08 +0000 (Tue, 23 Mar 2004)
   M /reportlab/trunk/reportlab/platypus/flowables.py
   Make Image to use open_for_read
r2293 | rgbecker | 2004-03-22 18:09:51 +0000 (Mon, 22 Mar 2004)
   M /reportlab/trunk/reportlab/lib/utils.py
   Added rl_isfile
r2292 | rgbecker | 2004-03-22 18:08:50 +0000 (Mon, 22 Mar 2004)
   M /reportlab/trunk/reportlab/test/runAll.py
   M /reportlab/trunk/reportlab/test/test_images.py
   M /reportlab/trunk/reportlab/test/test_pdfgen_pycanvas.py
   M /reportlab/trunk/reportlab/test/test_platypus_general.py
   Small changes to make tests work compactly
r2291 | rgbecker | 2004-03-22 15:59:22 +0000 (Mon, 22 Mar 2004)
   M /reportlab/trunk/reportlab/test/utils.py
   Remove spurious print
r2290 | rgbecker | 2004-03-22 14:06:12 +0000 (Mon, 22 Mar 2004)
   M /reportlab/trunk/reportlab/platypus/flowables.py
   Fix up more Image cases
r2289 | rgbecker | 2004-03-22 14:01:09 +0000 (Mon, 22 Mar 2004)
   M /reportlab/trunk/reportlab/test/test_platypus_general.py
   Add new Image flowable exemplars
r2288 | rgbecker | 2004-03-22 13:21:06 +0000 (Mon, 22 Mar 2004)
   M /reportlab/trunk/reportlab/test/runAll.py
   M /reportlab/trunk/reportlab/test/test_pyfiles.py
   M /reportlab/trunk/reportlab/test/utils.py
   Minor changes preparing for zip comapct distros
r2287 | rgbecker | 2004-03-22 13:02:43 +0000 (Mon, 22 Mar 2004)
   M /reportlab/trunk/reportlab/pdfbase/pdfdoc.py
   Get the right fp
r2286 | rgbecker | 2004-03-22 12:54:30 +0000 (Mon, 22 Mar 2004)
   M /reportlab/trunk/reportlab/pdfbase/pdfdoc.py
   Attempt to fix the epc bug
r2285 | andy_robinson | 2004-03-19 22:18:37 +0000 (Fri, 19 Mar 2004)
   M /reportlab/trunk/reportlab/docs/userguide/ch4_platypus_concepts.py
   Documentation about hAlign
r2284 | rgbecker | 2004-03-19 18:00:56 +0000 (Fri, 19 Mar 2004)
   M /reportlab/trunk/reportlab/lib/utils.py
   First attempt at reading from the zip archive
r2283 | rgbecker | 2004-03-19 10:55:55 +0000 (Fri, 19 Mar 2004)
   M /reportlab/trunk/reportlab/rl_config.py
   Sys_version was being used in older python
r2282 | rgbecker | 2004-03-18 15:55:50 +0000 (Thu, 18 Mar 2004)
   M /reportlab/trunk/reportlab/lib/utils.py
   M /reportlab/trunk/reportlab/pdfbase/pdfdoc.py
   M /reportlab/trunk/reportlab/pdfbase/pdfutils.py
   M /reportlab/trunk/reportlab/pdfgen/canvas.py
   M /reportlab/trunk/reportlab/pdfgen/pdfimages.py
   Fix transparency & jpeg behaviour
r2281 | rgbecker | 2004-03-18 12:05:22 +0000 (Thu, 18 Mar 2004)
   M /reportlab/trunk/reportlab/pdfgen/textobject.py
   TextObject fixes from Ian Millington
r2280 | rgbecker | 2004-03-17 18:54:06 +0000 (Wed, 17 Mar 2004)
   M /reportlab/trunk/reportlab/lib/utils.py
   Move ImageReader open wrapper to where it should be
r2279 | rgbecker | 2004-03-17 16:29:30 +0000 (Wed, 17 Mar 2004)
   M /reportlab/trunk/reportlab/demos/rlzope/rlzope.py
   Attempt to fix to match ImageReader
r2278 | rgbecker | 2004-03-17 14:35:51 +0000 (Wed, 17 Mar 2004)
   M /reportlab/trunk/reportlab/lib/utils.py
   Improve the fs distro check
r2277 | rgbecker | 2004-03-17 14:34:41 +0000 (Wed, 17 Mar 2004)
   M /reportlab/trunk/reportlab/rl_config.py
   Added rlhome/../fonts
r2276 | rgbecker | 2004-03-17 00:21:39 +0000 (Wed, 17 Mar 2004)
   M /reportlab/trunk/reportlab/pdfgen/pdfimages.py
   Remove spurious print reported by Joel Pearson
r2275 | rgbecker | 2004-03-16 15:28:26 +0000 (Tue, 16 Mar 2004)
   M /reportlab/trunk/rl_addons/pyRXP/pyRXP.c
   Fix BOM removal buglet & valid/ext-sa/014
r2274 | andy_robinson | 2004-03-15 23:49:48 +0000 (Mon, 15 Mar 2004)
   M /reportlab/trunk/reportlab/platypus/tables.py
   corrected erroneous comment
r2273 | rgbecker | 2004-03-14 09:47:14 +0000 (Sun, 14 Mar 2004)
   M /reportlab/trunk/reportlab/platypus/tables.py
   Slightly more efficient linedrawing
r2272 | andy_robinson | 2004-03-12 23:54:11 +0000 (Fri, 12 Mar 2004)
   M /reportlab/trunk/reportlab/lib/corp.py
   M /reportlab/trunk/reportlab/pdfgen/canvas.py
   M /reportlab/trunk/reportlab/platypus/tables.py
   M /reportlab/trunk/reportlab/test/test_pdfgen_general.py
   Multiple lines and decimal alignments now supported
r2271 | rgbecker | 2004-03-11 10:57:59 +0000 (Thu, 11 Mar 2004)
   M /reportlab/trunk/utils/README
   Fix missing command instruction
r2270 | andy_robinson | 2004-03-09 23:24:34 +0000 (Tue, 09 Mar 2004)
   M /reportlab/trunk/reportlab/pdfbase/pdfmetrics.py
   M /reportlab/trunk/reportlab/pdfbase/ttfonts.py
   M /reportlab/trunk/reportlab/pdfgen/textobject.py
   Truetype fonts now convert latin-1 to utf8 if fed non-utf8
r2269 | andy_robinson | 2004-03-09 22:22:26 +0000 (Tue, 09 Mar 2004)
   M /reportlab/trunk/reportlab/__init__.py
   M /reportlab/trunk/reportlab/lib/fonts.py
   M /reportlab/trunk/reportlab/pdfbase/_fontdata.py
   M /reportlab/trunk/reportlab/pdfbase/pdfmetrics.py
   M /reportlab/trunk/reportlab/pdfbase/ttfonts.py
   M /reportlab/trunk/reportlab/platypus/doctemplate.py
   Font reregistration cleanup
r2268 | rgbecker | 2004-03-08 18:36:05 +0000 (Mon, 08 Mar 2004)
   M /reportlab/trunk/reportlab/lib/utils.py
   Added _findFiles & CIDict
r2267 | rgbecker | 2004-02-22 17:35:43 +0000 (Sun, 22 Feb 2004)
   M /reportlab/trunk/reportlab/graphics/renderPM.py
   URL change from Aleksander Piotrowski
r2266 | rgbecker | 2004-02-17 16:10:18 +0000 (Tue, 17 Feb 2004)
   M /reportlab/trunk/reportlab/platypus/frames.py
   M /reportlab/trunk/reportlab/rl_config.py
   Added overlapAttachedSpace
r2265 | andy_robinson | 2004-02-10 00:12:21 +0000 (Tue, 10 Feb 2004)
   M /reportlab/trunk/reportlab/pdfgen/canvas.py
   M /reportlab/trunk/reportlab/test/test_pdfbase_postscript.py
   Added finegrained control of where postscript commands appear
r2264 | rgbecker | 2004-02-05 18:31:35 +0000 (Thu, 05 Feb 2004)
   M /reportlab/trunk/reportlab/platypus/paragraph.py
   Fix to <u> from Ulrich Screiner
r2263 | rgbecker | 2004-02-05 18:21:50 +0000 (Thu, 05 Feb 2004)
   M /reportlab/trunk/reportlab/pdfgen/pdfimages.py
   Fix missing import found by Ulrich Schreiner
r2262 | rgbecker | 2004-02-02 08:43:51 +0000 (Mon, 02 Feb 2004)
   M /reportlab/trunk/reportlab/lib/_rl_accel.c
   Start on tex lib in C
r2261 | rgbecker | 2004-01-29 17:06:24 +0000 (Thu, 29 Jan 2004)
   M /reportlab/trunk/reportlab/graphics/renderPS.py
   Attempt to get delayed font setting and proper psNames
r2260 | rgbecker | 2004-01-28 13:03:47 +0000 (Wed, 28 Jan 2004)
   M /reportlab/trunk/reportlab/graphics/testshapes.py
   Allow for bad fonts in getDrawing13
r2259 | rgbecker | 2004-01-28 13:03:19 +0000 (Wed, 28 Jan 2004)
   M /reportlab/trunk/reportlab/graphics/renderPM.py
   Allow for no eps preview in tests
r2258 | rgbecker | 2004-01-23 00:04:40 +0000 (Fri, 23 Jan 2004)
   M /reportlab/trunk/rl_addons/pyRXP/rxp/url.c
   Attempt to fix UNC opening
r2257 | rgbecker | 2004-01-21 18:04:05 +0000 (Wed, 21 Jan 2004)
   M /reportlab/trunk/utils/README
#################################################################################
#################### RELEASE 1.19 at 18:00 GMT  21/Jan/2004     #################
#################################################################################
##### 2004/01/21 #####
	pdfbase/ttfonts.py 1.18 rgbecker  Improve error handling & naming
##### 2004/01/14 #####
	rl_addons/renderPM/pfm.py 1.3 rgbecker  Changes for 2.3 compatibility
##### 2004/01/13 #####
	pdfgen/canvas.py 1.118 rgbecker  Allow for possible restarts
	platypus/doctemplate.py 1.71 rgbecker  Allow for simple loop detection
##### 2004/01/10 #####
	platypus/figures.py 1.16 rgbecker  Added optional memory caching
##### 2004/01/09 #####
	platypus/tables.py 1.71 rgbecker  Modified version of Henning von Bargen's LongTables optimisation
##### 2004/01/08 #####
	platypus/doctemplate.py 1.70 andy_robinson  Upped empty page limit to 10
##### 2004/01/07 #####
	platypus/flowables.py 1.44 andy_robinson  Candidate fix for infinite looping
	platypus/doctemplate.py 1.69 andy_robinson  Candidate fix for infinite looping
	lib/codecharts.py 1.8 andy_robinson  Candidate fix for infinite looping
	platypus/figures.py 1.15 rgbecker  Fix up caption and split methods etc
	platypus/tables.py 1.70 dragan1  merging Jython-branch
	platypus/tables.py 1.69 rgbecker  Make _listCellGeom more specific
	platypus/__init__.py 1.16.2.2 dragan1  added conditional import linee for jython compatilibity
	platypus/figures.py 1.14 rgbecker  Improved FlexFigure scaling, in memory PageCatcherFigures
##### 2004/01/05 #####
	rl_addons/renderPM/_renderPM.c 1.31 rgbecker  Fix bad long field value
##### 2003/12/23 #####
	lib/_rl_accel.c 1.37 rgbecker  Added hex32
##### 2003/12/19 #####
	platypus/tables.py 1.68 rgbecker  Added splitfirst/last handling
##### 2003/12/18 #####
	tools/pythonpoint/styles/standard.py 1.3.4.1 dragan1  Platypus import structure changes
	tools/pythonpoint/styles/htu.py 1.1.4.1 dragan1  Platypus import structure changes
	tools/pythonpoint/pythonpoint.py 1.27.2.1 dragan1  Platypus import structure changes
	tools/pythonpoint/demos/examples.py 1.3.4.1 dragan1  Platypus import structure changes
	tools/docco/yaml2pdf.py 1.2.4.1 dragan1  Platypus import structure changes
	tools/docco/rltemplate.py 1.3.4.1 dragan1  Platypus import structure changes
	tools/docco/rl_doc_utils.py 1.6.4.1 dragan1  Platypus import structure changes
	tools/docco/examples.py 1.4.4.1 dragan1  Platypus import structure changes
	test/test_table_layout.py 1.1.4.1 dragan1  Platypus import structure changes
	test/test_rl_accel.py 1.3.2.1 dragan1  Platypus import structure changes
	test/test_platypus_xref.py 1.3.4.1 dragan1  Platypus import structure changes
	test/test_platypus_tables.py 1.3.4.1 dragan1  Platypus import structure changes
	test/test_platypus_paragraphs.py 1.11.4.1 dragan1  Platypus import structure changes
	test/test_platypus_indents.py 1.1.4.1 dragan1  Platypus import structure changes
	test/test_platypus_general.py 1.13.2.1 dragan1  Platypus import structure changes
	test/test_platypus_breaking.py 1.6.4.1 dragan1  Platypus import structure changes
	test/test_paragraphs.py 1.17.2.1 dragan1  Platypus import structure changes
	test/test_graphics_speed.py 1.12.4.1 dragan1  Platypus import structure changes
	test/test_graphics_charts.py 1.14.4.1 dragan1  Platypus import structure changes
	platypus/tables.py 1.67.2.1 dragan1  Platypus import structure changes
	platypus/paraparser.py 1.53.2.1 dragan1  Platypus import structure changes
	platypus/figures.py 1.13.2.1 dragan1  Platypus import structure changes
	platypus/__init__.py 1.16.2.1 dragan1  Platypus import structure changes
	lib/tocindex.py 1.10.2.1 dragan1  Platypus import structure changes
	lib/codecharts.py 1.7.4.1 dragan1  Platypus import structure changes
	graphics/shapes.py 1.100.2.1 dragan1  Platypus import structure changes
	graphics/renderPDF.py 1.24.2.1 dragan1  Platypus import structure changes
	docs/userguide/ch7_custom.py 1.4.4.1 dragan1  Platypus import structure changes
	docs/userguide/ch6_tables.py 1.6.4.1 dragan1  Platypus import structure changes
	docs/userguide/ch4_platypus_concepts.py 1.4.4.1 dragan1  Platypus import structure changes
	docs/userguide/ch2a_fonts.py 1.10.2.1 dragan1  Platypus import structure changes
	demos/rlzope/rlzope.py 1.5.4.1 dragan1  Platypus import structure changes
	demos/odyssey/fodyssey.py 1.17.4.1 dragan1  Platypus import structure changes
	demos/gadflypaper/gfe.py 1.15.4.1 dragan1  Platypus import structure changes
##### 2003/12/17 #####
	graphics/testshapes.py 1.20 rgbecker  Attempt to control ttf usage
	graphics/renderPM.py 1.44 rgbecker  Attempt to control ttf usage
	platypus/paragraph.py 1.71 rgbecker  Fix missing return
##### 2003/12/16 #####
	platypus/paragraph.py 1.70 rgbecker  Underline alignment fix from Marc Stober
##### 2003/12/15 #####
	test/test_lib_sequencer.py 1.7 dragan1  changed method call from this to _this - java keyword
	lib/sequencer.py 1.14 dragan1  renamed methid this to _this - java keyword
##### 2003/12/14 #####
	tools/pythonpoint/styles/modern.py 1.4 andy_robinson  Permits style file to live in local directory
	tools/pythonpoint/stdparser.py 1.20 andy_robinson  Permits style file to live in local directory
##### 2003/12/12 #####
	lib/rparsexml.py 1.6 rgbecker  Allow for both to have the fake entityReplacer thing
	rl_addons/pyRXP/examples/benchmarks.py 1.2 rgbecker  -->reportlab.lib.rparsexml
##### 2003/12/11 #####
	lib/rparsexml.py 1.5 rgbecker  Add some support for <!-- in the prolog stuff
##### 2003/12/10 #####
	platypus/figures.py 1.13 rgbecker  I can only get gensampler to work with these changes
	lib/validators.py 1.30 rgbecker  Allow autox/y boxanchor
	graphics/charts/textlabels.py 1.31 rgbecker  Allow autox/autoy boxanchor
	platypus/paragraph.py 1.69 rgbecker  Fixes to cope with rml2pdf weirds
	platypus/flowables.py 1.43 rgbecker  Fixes to cope with rml2pdf weirds
	graphics/renderPM.py 1.43 rgbecker  remove spurious import
##### 2003/12/09 #####
	tools/pythonpoint/stdparser.py 1.19 andy_robinson  Pythonpoint fixups
	tools/pythonpoint/pythonpoint.py 1.27 andy_robinson  Pythonpoint fixups
	platypus/figures.py 1.12 andy_robinson  Pythonpoint fixups
##### 2003/12/08 #####
	tools/pythonpoint/stdparser.py 1.18 andy_robinson  Enabled changing the page sizes
	tools/pythonpoint/pythonpoint.dtd 1.6 andy_robinson  Enabled changing the page sizes
	tools/pythonpoint/demos/slidebox.py 1.1 william_ng  Andy forgot to check in drawing
	tools/pythonpoint/demos/pythonpoint.xml 1.9 william_ng  Andy forgot to check in drawing
	tools/pythonpoint/stdparser.py 1.17 andy_robinson  New pagecatcher and drawing tags (experimental)
	tools/pythonpoint/pythonpoint.py 1.26 andy_robinson  New pagecatcher and drawing tags (experimental)
	tools/pythonpoint/pythonpoint.dtd 1.5 andy_robinson  New pagecatcher and drawing tags (experimental)
	tools/pythonpoint/demos/figures.xml 1.1 andy_robinson  New pagecatcher and drawing tags (experimental)
	platypus/figures.py 1.11 andy_robinson  New pagecatcher and drawing tags (experimental)
##### 2003/12/05 #####
	lib/_rl_accel.java 1.1 rgbecker  Moved from Dragan's home space
	lib/corp.py 1.12 rgbecker  Allow X/Y reversal in logo
##### 2003/12/03 #####
	platypus/figures.py 1.10 johnprecedo  Previous change caused unforseen problems with borders, so we're reversing it.
	platypus/figures.py 1.9 johnprecedo  Minor change - borders now appear over pagefigures, not under them.
	platypus/figures.py 1.8 johnprecedo  Added a background attribute (default None) to most figures - if it's a colour, it creates a coloured rectangle under the figure before drawing it on the page. Useful for when putting figures onto a coloured background.
##### 2003/12/02 #####
	test/test_lib_utils.py 1.3 rgbecker  Fix already imprted test module
	lib/utils.py 1.57 rgbecker  Minor changes to recursiveimport
	platypus/figures.py 1.7 andy_robinson  Bug in one figure
	tools/pythonpoint/demos/pythonpoint.xml 1.8 andy_robinson  Whoops, platform specific slashes.
	tools/pythonpoint/demos/monterey.xml 1.5 andy_robinson  Whoops, platform specific slashes.
	tools/pythonpoint/demos/htu.xml 1.5 andy_robinson  Whoops, platform specific slashes.
	test/test_tools_pythonpoint.py 1.11 andy_robinson  Whoops, platform specific slashes.
	platypus/flowables.py 1.42 andy_robinson  Whoops, platform specific slashes.
	platypus/figures.py 1.6 andy_robinson  Whoops, platform specific slashes.
	tools/pythonpoint/demos/pythonpoint.xml 1.7 andy_robinson  Added figure classes, made XML editable in XML-SPY
	tools/pythonpoint/demos/monterey.xml 1.4 andy_robinson  Added figure classes, made XML editable in XML-SPY
	tools/pythonpoint/demos/htu.xml 1.4 andy_robinson  Added figure classes, made XML editable in XML-SPY
	tools/pythonpoint/pythonpoint.py 1.25 andy_robinson  Added figure classes, made XML editable in XML-SPY
	tools/pythonpoint/pythonpoint.dtd 1.4 andy_robinson  Added figure classes, made XML editable in XML-SPY
	test/test_invariant.py 1.4 andy_robinson  Added figure classes, made XML editable in XML-SPY
	platypus/figures.py 1.5 andy_robinson  Added figure classes, made XML editable in XML-SPY
	lib/tocindex.py 1.10 andy_robinson  Added figure classes, made XML editable in XML-SPY
	lib/corp.py 1.11 andy_robinson  Added figure classes, made XML editable in XML-SPY
	lib/utils.py 1.56 rgbecker  First attempt at using import rather than imp
##### 2003/12/01 #####
	graphics/renderPM.py 1.42 rgbecker  Fix up dpi stuff
	lib/colors.py 1.45 rgbecker  Fix to use latest blue
##### 2003/11/30 #####
	graphics/charts/utils3d.py 1.14 rgbecker  Fix overlong integer
##### 2003/11/29 #####
	graphics/charts/utils3d.py 1.13 rgbecker  Fixes to 3D lines
	graphics/charts/lineplots.py 1.56 rgbecker  Fixes to 3D lines
	graphics/charts/linecharts.py 1.44 rgbecker  Fixes to 3D lines
##### 2003/11/28 #####
	graphics/charts/utils3d.py 1.12 rgbecker  Allow for non-tiling!
	graphics/charts/lineplots.py 1.55 rgbecker  Allow for non-tiling!
	graphics/charts/linecharts.py 1.43 rgbecker  Allow for non-tiling!
##### 2003/11/27 #####
	rl_addons/pyRXP/docs/PyRXP_Documentation.rml 1.5 dragan1  changed the address
##### 2003/11/26 #####
	rl_addons/pyRXP/MANIFEST.in 1.1 rgbecker  Added at Dirk Datzert's request as needed by RPM
##### 2003/11/25 #####
	test/test_multibyte_jpn.py 1.5 rptlab  Correct case errtor with UniJIS encoding
##### 2003/11/24 #####
	graphics/charts/lineplots.py 1.54 rgbecker  Add annotations
	graphics/charts/linecharts.py 1.42 rgbecker  Add annotations
	graphics/charts/barcharts.py 1.83 rgbecker  Add annotations
##### 2003/11/22 #####
	graphics/shapes.py 1.100 rgbecker  Improve bmp handling
	graphics/renderPM.py 1.41 rgbecker  Improve bmp handling
##### 2003/11/21 #####
	graphics/charts/linecharts.py 1.41 rgbecker  Missing import
	graphics/charts/lineplots.py 1.53 rgbecker  Add dasharray to allowed attributes for linechart lines
	graphics/charts/linecharts.py 1.40 rgbecker  Add dasharray to allowed attributes for linechart lines
##### 2003/11/20 #####
	graphics/testshapes.py 1.19 rgbecker  move drawing 13 to testshapes
	graphics/renderPM.py 1.40 rgbecker  move drawing 13 to testshapes
	graphics/renderPDF.py 1.24 rgbecker  Convert to using textobjects
##### 2003/11/19 #####
	graphics/renderPM.py 1.39 rgbecker  Fix typo
	graphics/renderPM.py 1.38 rgbecker  We can do drawing 12 even on the Mac
	lib/utils.py 1.55 rgbecker  Make fp_str more like _rl_accel(C/java) versions
	test/test_pdfbase_ttfonts.py 1.11 rgbecker  Allow for standard compression setting
	demos/odyssey/odyssey.txt 1.10 rgbecker  Minor textual changes
	demos/odyssey/dodyssey.py 1.16 rgbecker  Minor textual changes
	lib/colors.py 1.44 rgbecker  Fix doc comment
	pdfbase/pdfdoc.py 1.88 rgbecker  I think this should be virtual
	utils/daily.py 1.54 rgbecker  Force up to date
	utils/cvslh.py 1.7 rgbecker  Force up to date
	lib/utils.py 1.54 rgbecker  Fix tabs reported by Steve Holden
##### 2003/11/18 #####
	docs/userguide/ch2a_fonts.py 1.10 johnprecedo  Updated contact details for Viktorija Zaksiene.
##### 2003/11/17 #####
	docs/userguide/ch2a_fonts.py 1.9 johnprecedo  Updated contact details.
	docs/userguide/ch2a_fonts.py 1.8 johnprecedo  Added section on renderPM.py tests.
##### 2003/11/14 #####
	pdfbase/ttfonts.py 1.17 rgbecker  Remove 2.1 problem constants
	test/test_pdfbase_ttfonts.py 1.10 rgbecker  Remove 2.1 problem constants
	rl_addons/renderPM/setup.py 1.17 rgbecker  Disallow ft with <Python-2.0
##### 2003/11/13 #####
	platypus/doctemplate.py 1.68 william_ng  Allowing for strange flowables with no _traceIfo object
##### 2003/11/12 #####
	graphics/renderPM.py 1.37 rgbecker  Added better test example
	pdfbase/pdfmetrics.py 1.65 rgbecker  Fix isEqual as suggested by Peter Borocz (Fisher Investments)
##### 2003/11/10 #####
	graphics/renderPM.py 1.36 rgbecker  Attempt ttfonts in testing
	pdfbase/ttfonts.py 1.16 rgbecker  Change to _ttf_data
	test/test_pdfbase_ttfonts.py 1.9 rgbecker  Change to _ttf_data
	rl_addons/renderPM/_renderPM.c 1.30 rgbecker  Fix unset field change to _ttf_data
	rl_addons/pyRXP/setup.py 1.10 rgbecker  Fix for no move to DLLs
	lib/validators.py 1.29 rgbecker  Allow for True/False
##### 2003/11/09 #####
	rl_addons/pyRXP/pyRXP.c 1.24 rgbecker  Fix early free (thanks to Max Neunhffer)
	rl_addons/renderPM/setup.py 1.16 rgbecker  Fix setup.py VERSION and destination
	lib/setup.py 1.16 rgbecker  Fix setup.py VERSIOn and destination
	graphics/charts/axes.py 1.88 rgbecker  Add visibleLabels to value Axes
	lib/validators.py 1.28 rgbecker  Attempt at allowing isBoolean(True)
	rl_addons/renderPM/_renderPM.c 1.29 rgbecker  TTFONTS Render
	platypus/flowables.py 1.41 andy_robinson  Preliminary support for tracing through doc builds
	platypus/doctemplate.py 1.67 andy_robinson  Preliminary support for tracing through doc builds
	platypus/__init__.py 1.16 andy_robinson  Preliminary support for tracing through doc builds
##### 2003/11/08 #####
	graphics/testshapes.py 1.18 rgbecker  Added _FONTS
##### 2003/11/07 #####
	rl_addons/renderPM/_renderPM.c 1.28 rgbecker  Now compiles and runs, fails to draw TTF though
##### 2003/11/05 #####
	rl_addons/renderPM/_renderPM.c 1.27 rgbecker  Fixed memory family problems
	rl_addons/pyRXP/test/testRXPbasic.py 1.4 rgbecker  Add location + attributes test
##### 2003/11/04 #####
	rl_addons/renderPM/_renderPM.c 1.26 rgbecker  Now compiles&links cleanly
##### 2003/11/02 #####
	test/test_pdfbase_ttfonts.py 1.8 rgbecker  Back to int checksum & add32
	pdfbase/ttfonts.py 1.15 rgbecker  Back to int checksum & add32
	lib/_rl_accel.c 1.36 rgbecker  Back to int checksum & add32
##### 2003/11/01 #####
	rl_addons/pyRXP/test/testRXPbasic.py 1.3 rgbecker  Remove assignment to None
	graphics/charts/legends.py 1.26 rgbecker  Remove assignment to None
##### 2003/10/28 #####
	platypus/doctemplate.py 1.66 rgbecker  Allow for different first page template index
##### 2003/10/27 #####
	graphics/charts/legends.py 1.25 johnprecedo  LineLegend now works correctly when passed either a widget or a color as part of ColourNamePairs. Corrected minor problem with line positioning. Also added a couple of samples of LineLegends (vanilla and using a dash array).
	lib/sequencer.py 1.13 rgbecker  Add missing global statement
##### 2003/10/26 #####
	setup.py 1.10 rgbecker  Fix to use version from __init__
##### 2003/10/24 #####
	graphics/charts/legends.py 1.24 johnprecedo  Added a LineLegend class - similar to the standard Legend class, but uses lines for the swatches rather than rectangles. Useful for adding to LinePlots and LineCharts.
	graphics/charts/lineplots.py 1.52 johnprecedo  JoinAxis fix - similar to one in lineCharts
##### 2003/10/22 #####
	platypus/doctemplate.py 1.65 rgbecker  Eliminate 2.3 problem assignement to None
##### 2003/10/21 #####
	rl_addons/renderPM/_renderPM.c 1.25 rgbecker  Added in preliminary FT support
##### 2003/10/14 #####
	pdfbase/ttfonts.py 1.14 rgbecker  Added lambda speedup
	test/test_rl_accel.py 1.3 rgbecker  Fix missing test problem
	test/unittest.py 1.7 rgbecker  Update to 2.2 version
	pdfbase/pdfmetrics.py 1.64 dragan1  fixed weirdness for jython compatibility
	graphics/charts/barcharts.py 1.82 rgbecker  Make BarChart3D abstract
##### 2003/10/13 #####
	graphics/charts/linecharts.py 1.39 rgbecker  Fix up for joinAxis modes
##### 2003/10/10 #####
	lib/_rl_accel.c 1.35 rgbecker  Add getFonts method
##### 2003/10/09 #####
	graphics/charts/barcharts.py 1.81 rgbecker  Inheritance/Factorization improved, HorizontalBarChart3D added
	pdfbase/pdfmetrics.py 1.63 rgbecker  Remove excess import
##### 2003/10/06 #####
	lib/utils.py 1.53 dragan1  fixed java file read bug
	lib/utils.py 1.52 rgbecker  Revert towards Andy's code
	lib/utils.py 1.51 rgbecker  fix mispelling
	lib/randomtext.py 1.10 rgbecker  Allow for rl_config.invariant
	platypus/doctemplate.py 1.64 rgbecker  Use randomText from lib
##### 2003/10/02 #####
	graphics/charts/axes.py 1.87 rgbecker  Attempt to fix 2.2ism
##### 2003/09/22 #####
	graphics/charts/barcharts.py 1.80 rgbecker  Correct way that reversePlotOrder works
##### 2003/09/18 #####
	platypus/flowables.py 1.40 rgbecker  Added in lazy Image stuff
##### 2003/09/17 #####
	graphics/charts/lineplots.py 1.51 rgbecker  Set reasonable zSpace
	graphics/charts/linecharts.py 1.38 rgbecker  Set reasonable zSpace
	graphics/charts/utils3d.py 1.11 rgbecker  Fix up John's special scalings
	graphics/charts/barcharts.py 1.79 rgbecker  Fix up John's special scalings
##### 2003/09/16 #####
	graphics/charts/utils3d.py 1.10 johnprecedo  changes to make 3d vertical barchart more 'Excel-like'
	graphics/charts/barcharts.py 1.78 johnprecedo  changes to make 3d vertical barchart more 'Excel-like'
	graphics/charts/areas.py 1.6 johnprecedo  changes to make 3d vertical barchart more 'Excel-like'
	graphics/charts/utils3d.py 1.9 johnprecedo  Changed to make 3D barcharts look more 'Excel-like' - there is now a different level of shading on the bar tops than on their sides.
	graphics/charts/barcharts.py 1.77 johnprecedo  Changed to make 3D barcharts look more 'Excel-like' - there is now a different level of shading on the bar tops than on their sides.
	graphics/charts/piecharts.py 1.38 rgbecker  Fix the stupid x offset radius dependency
##### 2003/09/15 #####
	graphics/charts/piecharts.py 1.37 rgbecker  Add restriction to remove zero pies from 3D
	graphics/charts/areas.py 1.5 johnprecedo  Added dark floor in Plot Areas for use in 3D column charts (as per Ilan's request).
	graphics/charts/lineplots.py 1.50 rgbecker  Furniture should be at low z
	graphics/charts/linecharts.py 1.37 rgbecker  Furniture should be at low z
	graphics/charts/lineplots.py 1.49 rgbecker  Added in lineplot3d and got data labels working
	graphics/charts/linecharts.py 1.36 rgbecker  Added in lineplot3d and got data labels working
	graphics/charts/utils3d.py 1.8 rgbecker  Minor adjustmenst and added LinePlot3D
	graphics/charts/lineplots.py 1.48 rgbecker  Minor adjustmenst and added LinePlot3D
	graphics/charts/linecharts.py 1.35 rgbecker  Minor adjustmenst and added LinePlot3D
	graphics/charts/linecharts.py 1.34 rgbecker  Fix up parallel_3d style
##### 2003/09/12 #####
	graphics/charts/utils3d.py 1.7 rgbecker  Working HorizontalLineCharts3D
	graphics/charts/linecharts.py 1.33 rgbecker  Working HorizontalLineCharts3D
	graphics/charts/axes.py 1.86 rgbecker  Working HorizontalLineCharts3D
##### 2003/09/11 #####
	test/test_invariant.py 1.3 andy_robinson  Now deterministically formats all numbers
	pdfbase/pdfdoc.py 1.87 andy_robinson  Now deterministically formats all numbers
	test/test_rl_accel.py 1.2 andy_robinson  Prove that jython fp_str is wrong
	demos/odyssey/dodyssey.py 1.15 andy_robinson  Tried again to get invariant
	demos/odyssey/dodyssey.py 1.14 andy_robinson  Added an invariant testing digest
	demos/odyssey/odyssey.py 1.13 andy_robinson  Added an invariant digest printer
	test/test_invariant.py 1.2 andy_robinson  added an image
	test/test_invariant.py 1.1 andy_robinson  New test to help check invariance
	test/test_images.py 1.3 andy_robinson  New test to help check invariance
	demos/odyssey/odyssey.py 1.12 andy_robinson  Better readme and more helpful printouts
	demos/odyssey/00readme.txt 1.2 andy_robinson  Better readme and more helpful printouts
	lib/utils.py 1.50 dragan1  ImageReader can now take File objects as well as Strings
	test/test_rl_accel.py 1.1 dragan1  initial
	lib/utils.py 1.49 rptlab  Fixed so that file creator and types are now correctly set on the Mac again (had a missing import).
	graphics/charts/piecharts.py 1.36 rgbecker  remove spurious print
##### 2003/09/10 #####
	graphics/charts/utils3d.py 1.6 rgbecker  Fix up line join for 3d bars and remove print
	graphics/charts/piecharts.py 1.35 rgbecker  Factorise axes a bit and make them more 3d aware
	graphics/charts/lineplots.py 1.47 rgbecker  Factorise axes a bit and make them more 3d aware
	graphics/charts/linecharts.py 1.32 rgbecker  Factorise axes a bit and make them more 3d aware
	graphics/charts/barcharts.py 1.76 rgbecker  Factorise axes a bit and make them more 3d aware
	graphics/charts/axes.py 1.85 rgbecker  Factorise axes a bit and make them more 3d aware
	graphics/charts/areas.py 1.4 rgbecker  Factorise axes a bit and make them more 3d aware
##### 2003/09/09 #####
	platypus/paraparser.py 1.53 rgbecker  Removed checkImportError
	pdfbase/pdfutils.py 1.39 rgbecker  Removed checkImportError
	pdfbase/pdfmetrics.py 1.62 rgbecker  Removed checkImportError
	lib/xmllib.py 1.10 rgbecker  Removed checkImportError
	lib/utils.py 1.48 rgbecker  Removed checkImportError
	graphics/renderPM.py 1.35 johnprecedo  Now uses markfilename from lib.utils for setting the filetype for the index.html file (if on a Mac).
	lib/utils.py 1.47 johnprecedo  Added HTML to the Mac markfilename routine - HTML files should now 'know' that they are HTML and created by MSIE.
	graphics/charts/doughnut.py 1.6 johnprecedo  Fix to labels allowing it to work with quickchart (now doesn't attempt to add a list to a tuple).
##### 2003/09/08 #####
	graphics/charts/barcharts.py 1.75 rgbecker  Fix up to allow for a spce vefore and aft in 3d vertical bar charts
	graphics/charts/doughnut.py 1.5 johnprecedo  Some fixes to doughnut - labels in a multi-series doughnut act slighly more sanely. They at least appear now! May still need more fixes at a later date.
	lib/colors.py 1.43 dragan1  jython compatibility hack
	pdfgen/pdfimages.py 1.18 rgbecker  hack to ImageReader
	test/test_platypus_general.py 1.13 rgbecker  hack to ImageReader
	test/test_pdfgen_pycanvas.py 1.4 rgbecker  hack to ImageReader
	test/test_pdfgen_general.py 1.19 rgbecker  hack to ImageReader
	test/test_paragraphs.py 1.17 rgbecker  hack to ImageReader
	test/test_images.py 1.2 rgbecker  hack to ImageReader
	test/test_docstrings.py 1.11 rgbecker  hack to ImageReader
	platypus/flowables.py 1.39 rgbecker  hack to ImageReader
	pdfgen/canvas.py 1.117 rgbecker  hack to ImageReader
	pdfbase/pdfutils.py 1.38 rgbecker  hack to ImageReader
	pdfbase/pdfdoc.py 1.86 rgbecker  hack to ImageReader
	lib/utils.py 1.46 rgbecker  hack to ImageReader
	tools/pythonpoint/stdparser.py 1.16 andy_robinson  Various work on abstracting out images, plus outstanding patches on Pythonpoint for Drawings and Turgut Uyar's changes
	tools/pythonpoint/pythonpoint.dtd 1.3 andy_robinson  Various work on abstracting out images, plus outstanding patches on Pythonpoint for Drawings and Turgut Uyar's changes
	tools/pythonpoint/demos/htu.xml 1.3 andy_robinson  Various work on abstracting out images, plus outstanding patches on Pythonpoint for Drawings and Turgut Uyar's changes
	test/test_pdfgen_pycanvas.py 1.3 andy_robinson  Various work on abstracting out images, plus outstanding patches on Pythonpoint for Drawings and Turgut Uyar's changes
	test/test_pdfgen_general.py 1.18 andy_robinson  Various work on abstracting out images, plus outstanding patches on Pythonpoint for Drawings and Turgut Uyar's changes
	test/test_images.py 1.1 andy_robinson  Various work on abstracting out images, plus outstanding patches on Pythonpoint for Drawings and Turgut Uyar's changes
	pdfgen/pdfimages.py 1.17 andy_robinson  Various work on abstracting out images, plus outstanding patches on Pythonpoint for Drawings and Turgut Uyar's changes
	rl_config.py 1.39 andy_robinson  Various work on abstracting out images, plus outstanding patches on Pythonpoint for Drawings and Turgut Uyar's changes
	pdfbase/pdfutils.py 1.37 andy_robinson  Various work on abstracting out images, plus outstanding patches on Pythonpoint for Drawings and Turgut Uyar's changes
	lib/utils.py 1.45 andy_robinson  Various work on abstracting out images, plus outstanding patches on Pythonpoint for Drawings and Turgut Uyar's changes
	docs/userguide/ch1_intro.py 1.14 andy_robinson  Various work on abstracting out images, plus outstanding patches on Pythonpoint for Drawings and Turgut Uyar's changes
	tools/pythonpoint/pythonpoint.py 1.24 andy_robinson  Added PPDrawing class to make Diagra drawings easy to show
	rl_addons/renderPM/_renderPM.c 1.24 rgbecker  Attempt to eliminate small area fills
##### 2003/09/05 #####
	graphics/widgets/markers.py 1.14 rgbecker  Fix mispelling
	graphics/shapes.py 1.99 rgbecker  Attempt to be slightly cleverer about small segments
	graphics/charts/piecharts.py 1.34 rgbecker  Attempt to fix bit leakage
##### 2003/09/04 #####
	graphics/charts/linecharts.py 1.31 rgbecker  Fix type of symbol for linechart properties
	graphics/charts/piecharts.py 1.33 rgbecker  Use strokeLineJoin=1 for 3d wedges
##### 2003/09/03 #####
	graphics/charts/utils3d.py 1.5 rgbecker  First changes needed for 3d bars
	graphics/charts/barcharts.py 1.74 rgbecker  First changes needed for 3d bars
	graphics/charts/axes.py 1.84 rgbecker  First changes needed for 3d bars
	graphics/charts/barcharts.py 1.73 rgbecker  Fixed up data labels for stacked bars
##### 2003/09/01 #####
	graphics/charts/areas.py 1.3 rgbecker  Added _3d options for use with 3d charts
##### 2003/08/28 #####
	rl_addons/renderPM/_renderPM.c 1.23 rgbecker  Make pict transparent color optional
	lib/colors.py 1.42 johnprecedo  Fixed a typo in function Blacker.
##### 2003/08/27 #####
	graphics/shapes.py 1.98 johnprecedo  Andy's fix for turning on or off previews in EPS output.
	graphics/charts/utils3d.py 1.4 rgbecker  Fix up 2.2ism
	graphics/charts/piecharts.py 1.32 rgbecker  Fix up 2.2ism
	graphics/charts/axes.py 1.83 rgbecker  Fix up 2.2ism
	graphics/charts/piecharts.py 1.31 rgbecker  Added dynamic Wedgelabel3d class
##### 2003/08/26 #####
	lib/attrmap.py 1.9 rgbecker  Add check for shapeChecking to validateSetattr
##### 2003/08/22 #####
	graphics/charts/utils3d.py 1.3 rgbecker  Fix up depth sign for 3d line segments
##### 2003/08/21 #####
	lib/attrmap.py 1.8 rgbecker  Change name of hook func
	rl_addons/renderPM/_renderPM.c 1.22 rgbecker  Fix up error case
##### 2003/08/20 #####
	platypus/flowables.py 1.38 rgbecker  Fix typo found by Christoph Devenoges
	graphics/charts/utils3d.py 1.2 rgbecker  Some progress on ribbons
##### 2003/08/19 #####
	pdfgen/canvas.py 1.116 rgbecker  Fix missing = :( stupid robin
	pdfgen/canvas.py 1.115 rgbecker  Fix up Canvas argument processing so defaults are dynamically taken
##### 2003/08/15 #####
	graphics/charts/piecharts.py 1.30 rgbecker  Pie3d now shares code with Pie
##### 2003/08/14 #####
	graphics/charts/lineplots.py 1.46 rgbecker  Fixes to lineLabelArray detection
	graphics/charts/linecharts.py 1.30 rgbecker  Fixes to lineLabelArray detection
##### 2003/08/13 #####
	graphics/charts/utils3d.py 1.1 rgbecker  Working 3D Pie chart
	graphics/charts/piecharts.py 1.29 rgbecker  Working 3D Pie chart
##### 2003/08/12 #####
	graphics/widgets/grids.py 1.32 rgbecker  Comment problematic PICT code
	graphics/shapes.py 1.97 rgbecker  Comment problematic PICT code
	graphics/renderPM.py 1.34 rgbecker  Comment problematic PICT code
##### 2003/08/11 #####
	rl_addons/renderPM/_renderPM.c 1.21 rgbecker  Quark PICT testing
	graphics/shapes.py 1.96 rgbecker  Added getArcPoints & ArcPath
	platypus/frames.py 1.21 rgbecker  I think we actually need a width check
	platypus/tables.py 1.67 rgbecker  Allow for special case width overflows
##### 2003/08/05 #####
	rl_addons/renderPM/_renderPM.c 1.20 rgbecker  Attempt at transparancy by rendering
	pdfbase/pdfdoc.py 1.85 rgbecker  Added import of os
	pdfbase/pdfdoc.py 1.84 rgbecker  Slight change to markfilename usage
	graphics/renderPM.py 1.33 rgbecker  Test PICT transparency & move to better markfilename
	lib/utils.py 1.44 rgbecker  Added John's mac type dict to markfilename
##### 2003/08/04 #####
	graphics/charts/lineplots.py 1.45 rgbecker  Add proper data for AreaLinePlot
##### 2003/08/03 #####
	graphics/shapes.py 1.95 rgbecker  Slight efficiency saving & code reuse
	test/test_graphics_layout.py 1.1 andy_robinson  Added getBounds() logic throughout graphics hierarchy
	graphics/widgetbase.py 1.34 andy_robinson  Added getBounds() logic throughout graphics hierarchy
	graphics/shapes.py 1.94 andy_robinson  Added getBounds() logic throughout graphics hierarchy
##### 2003/08/01 #####
	rl_config.py 1.38 rgbecker  Added eps_preview_transparent
	lib/colors.py 1.41 rgbecker  Fix type problem
##### 2003/07/31 #####
	lib/colors.py 1.40 rgbecker  Added bitmap_rgb function
	graphics/renderPM.py 1.32 rgbecker  Allow for tiff transparency
	lib/utils.py 1.43 rptlab  Added more debugs and allowed for multiple removes
##### 2003/07/30 #####
	graphics/charts/lineplots.py 1.44 rgbecker  Fixup for bubble charts
	graphics/charts/axes.py 1.82 rgbecker  Fixup for bubble charts
	rl_addons/pyRXP/pyRXP.c 1.23 rgbecker  Fix bugs in fourth argument found by Max Neunhffer
##### 2003/07/29 #####
	graphics/charts/lineplots.py 1.43 rgbecker  dded in stuff for area plots, fixes to axis formatting etc
	graphics/charts/linecharts.py 1.29 rgbecker  dded in stuff for area plots, fixes to axis formatting etc
	graphics/charts/axes.py 1.81 rgbecker  dded in stuff for area plots, fixes to axis formatting etc
	graphics/charts/linecharts.py 1.28 rgbecker  Added inFill stuff/reversePlotOrder for LineChart
	platypus/flowables.py 1.37 rgbecker  Attempt to allow for overlong KeepTogethers
##### 2003/07/26 #####
	graphics/renderPM.py 1.31 rgbecker  Fix up resolution for TIFF
##### 2003/07/25 #####
	platypus/paragraph.py 1.68 rgbecker  Attempt to fix lines access
##### 2003/07/22 #####
	lib/colors.py 1.39 fuzzypuffin  added ReportLabGreen
#################################################################################
#################### RELEASE 1.18 at 12:00 GMT  9/Jul/2003      #################
#################################################################################
##### 2003/07/09 #####
	changes 1.20 rgbecker  Release 1.18
	__init__.py 1.26 rgbecker  Release 1.18
##### 2003/07/09 #####
	platypus/tables.py 1.66 rgbecker  Attempt to fix up identity for early errors
##### 2003/07/08 #####
	lib/rparsexml.py 1.4 rgbecker  Attempt at fixing the silly return wrong tuple size problem
	pdfbase/pdfdoc.py 1.83 rgbecker  Finally commit changes to allow invariant pdfencryption to work properly
	platypus/para.py 1.9 rgbecker  Fixes to remove 'import as'
	pdfbase/pdfdoc.py 1.82 rgbecker  Fix up for 1.1.4 PIL palette access
	lib/rparsexml.py 1.3 rgbecker  Allow for no entuty replacement
	platypus/para.py 1.8 rgbecker  Added Dirk Holtwick's patch and better entities/charrefs
	tools/pythonpoint/pythonpoint.py 1.23 rgbecker  Karl Putland's speaker notes patch
##### 2003/07/07 #####
	pdfbase/_fontdata.py 1.13 rgbecker  Fixed up fake font searching again
	graphics/charts/piecharts.py 1.28 rgbecker  Remove 2.1 ism
	rl_config.py 1.37 rgbecker  Attempt to fix up for linux 2
	test/runAll.py 1.12 rgbecker  Fix 2.1 ism
##### 2003/07/03 #####
	pdfbase/pdfdoc.py 1.81 rgbecker  Fix up invariance
	pdfgen/canvas.py 1.114 rgbecker  Remove excess import of time
##### 2003/07/02 #####
	rl_config.py 1.36 rgbecker  Fix up setting of invariant
	graphics/charts/lineplots.py 1.42 rgbecker  Fixes to makeGrids etc
	graphics/charts/linecharts.py 1.27 rgbecker  Fixes to makeGrids etc
	graphics/charts/barcharts.py 1.72 rgbecker  Fixes to makeGrids etc
	graphics/charts/axes.py 1.80 rgbecker  Fixes to makeGrids etc
	graphics/shapes.py 1.93 johnprecedo  If a PDF is made on a mac (ie OS 9 rather than OX X), now adds the correct creater type.
	graphics/charts/axes.py 1.79 rgbecker  Fix up no avoidBoundFrac case
	graphics/charts/axes.py 1.78 rgbecker  Fix up excel type avoidBoundFrac
##### 2003/07/01 #####
	lib/setup.py 1.15 rgbecker  Added linux2 flag
	graphics/renderPDF.py 1.23 johnprecedo  Now sets the file association correctly when producing PDFs on Apple Macs running MacOS < X.
##### 2003/06/25 #####
	graphics/charts/axes.py 1.77 rgbecker  Fixed grid thickness error
	graphics/charts/axes.py 1.76 rgbecker  Added zrangePref
##### 2003/06/24 #####
	test/test_pdfgen_general.py 1.17 rgbecker  Use new getpdfdata method
	pdfgen/canvas.py 1.113 rgbecker  David Fraser's GetPDFData patch (to avoid unwanted StringIOs
	pdfbase/pdfdoc.py 1.80 rgbecker  David Fraser's GetPDFData patch (to avoid unwanted StringIOs
##### 2003/06/20 #####
	graphics/charts/axes.py 1.75 rgbecker  Fix my stupid logic error using labelTextFormat
##### 2003/06/19 #####
	lib/validators.py 1.27 rgbecker  Added isStringOrNone
	graphics/charts/spider.py 1.9 rgbecker  Attempt to be more generic with markers
	graphics/charts/spider.py 1.8 rgbecker  Allow for proper labels in piechart and some clean ups
	graphics/charts/piecharts.py 1.27 rgbecker  Allow for proper labels in piechart and some clean ups
	graphics/charts/doughnut.py 1.4 rgbecker  Allow for proper labels in piechart and some clean ups
	graphics/charts/axes.py 1.74 andy_robinson  Added visibleLabels
##### 2003/06/17 #####
	graphics/charts/axes.py 1.73 rgbecker  Fix up to use excel rule for equal valueMin/Max
	graphics/charts/axes.py 1.72 rgbecker  Added atempt at auto ticking ints
##### 2003/06/13 #####
	graphics/charts/axes.py 1.71 rgbecker  Move avoidBoundFrac etc into base class
	graphics/charts/axes.py 1.70 rgbecker  Change unset labelTextFormat handling
	graphics/charts/doughnut.py 1.3 johnprecedo  Fixed a type which was causing problems with single series doughnut charts.
	graphics/charts/doughnut.py 1.2 johnprecedo  Fixed a typo, expanded docstring. No other changes.
	graphics/charts/doughnut.py 1.1 johnprecedo  Initial commit of a new 'doughnut' chart type - does doughnut charts like those which Excel produces. Can handle multiple series, but not popouts or inter-series gaps (yet).
##### 2003/06/12 #####
	graphics/renderPS.py 1.23 rgbecker  Attempt at adding in a generalised wedge
	graphics/renderPDF.py 1.22 rgbecker  Attempt at adding in a generalised wedge
	graphics/shapes.py 1.92 rgbecker  Attempt at adding in a generalised wedge
	graphics/charts/textlabels.py 1.30 rgbecker  Added padding to Label
##### 2003/06/10 #####
	graphics/charts/axes.py 1.69 rgbecker  Use union of date sequences
	lib/set_ops.py 1.1 rgbecker  Initial check in
##### 2003/06/09 #####
	graphics/charts/spider.py 1.7 johnprecedo  Added capacity for markers.
	graphics/charts/axes.py 1.68 rgbecker  Fix typo
##### 2003/06/05 #####
	graphics/charts/axes.py 1.67 rgbecker  Allow avoidBoundFrac to be a tuple
##### 2003/06/04 #####
	platypus/paragraph.py 1.67 rgbecker  added testcase
	platypus/paraparser.py 1.52 rgbecker  laissez faire case
##### 2003/06/03 #####
	rl_addons/renderPM/libart_lgpl/configure.in 1.4 rgbecker  Sync to 2.3.12
	rl_addons/renderPM/libart_lgpl/art_uta_vpath.c 1.3 rgbecker  Sync to 2.3.12
	rl_addons/renderPM/libart_lgpl/art_svp_wind.c 1.5 rgbecker  Sync to 2.3.12
	rl_addons/renderPM/libart_lgpl/art_svp_vpath_stroke.c 1.3 rgbecker  Sync to 2.3.12
	rl_addons/renderPM/libart_lgpl/art_svp_ops.c 1.3 rgbecker  Sync to 2.3.12
	rl_addons/renderPM/libart_lgpl/art_render_svp.c 1.3 rgbecker  Sync to 2.3.12
	rl_addons/renderPM/libart_lgpl/ChangeLog 1.4 rgbecker  Sync to 2.3.12
	graphics/charts/axes.py 1.66 rgbecker  factorize labelling for NaormalDate axis
	lib/validators.py 1.26 rgbecker  Added Non==false for isBoolean
##### 2003/06/01 #####
	platypus/xpreformatted.py 1.17 rgbecker  Henning von Bargen's caseSensitive flag
	platypus/paraparser.py 1.51 rgbecker  Henning von Bargen's caseSensitive flag
	platypus/paragraph.py 1.66 rgbecker  Henning von Bargen's caseSensitive flag
	test/test_paragraphs.py 1.16 rgbecker  Henning von Bargen's caseSensitive flag
##### 2003/05/30 #####
	platypus/para.py 1.7 rgbecker  Added Sidnei da Silva's patches
	pdfgen/canvas.py 1.112 rgbecker  White space fixes
##### 2003/05/29 #####
	graphics/charts/piecharts.py 1.26 fuzzypuffin  This seems the right way to do this
	graphics/charts/lineplots.py 1.41 andy_robinson  Adaptations for quickchart
	graphics/charts/barcharts.py 1.71 andy_robinson  Adaptations for quickchart
##### 2003/05/27 #####
	graphics/charts/lineplots.py 1.40 rgbecker  Cosmetics
	graphics/charts/lineplots.py 1.39 rgbecker  Attempt at getting SplitLinePlot & allow for inFill
	graphics/charts/axes.py 1.65 rgbecker  Attempt at getting SplitLinePlot & allow for inFill
	graphics/charts/axes.py 1.64 rgbecker  Ensure _labelTextFormat exists
##### 2003/05/26 #####
	platypus/paraparser.py 1.50 rgbecker  Final fixes to special charrefs
	platypus/paraparser.py 1.49 rgbecker  Added in more special entities as suggested by Christoph Zwerschke
	graphics/charts/axes.py 1.63 andy_robinson  Fixed unitialized parameter in axes (broken in last checkin?)
##### 2003/05/24 #####
	rl_addons/pyRXP/test/testRXPbasic.py 1.2 rgbecker  Added in Max Neunhffer's patch for ReturnCDATASectionsAsTuples flag
	rl_addons/pyRXP/pyRXP.c 1.22 rgbecker  Added in Max Neunhffer's patch for ReturnCDATASectionsAsTuples flag
##### 2003/05/22 #####
	graphics/charts/axes.py 1.62 rgbecker  Non-intrusive changes (I hope)
##### 2003/05/16 #####
	lib/_rl_accel.c 1.34 johnprecedo  Fix Code Warrior strict error messages (on Mac).
##### 2003/05/11 #####
	platypus/doctemplate.py 1.63 rgbecker  Make PageTemplate default size None
##### 2003/05/08 #####
	graphics/charts/linecharts.py 1.26 rgbecker  Dirk Datzert's None Patch
##### 2003/05/07 #####
	graphics/renderPM.py 1.30 rgbecker  Fix up for import of test
##### 2003/05/01 #####
	test/test_platypus_indents.py 1.1 andy_robinson  Added relative indentation
	platypus/frames.py 1.20 andy_robinson  Added relative indentation
	platypus/doctemplate.py 1.62 andy_robinson  Added relative indentation
##### 2003/04/29 #####
	graphics/shapes.py 1.91 rgbecker  Fix up asString format lists
	graphics/renderPM.py 1.29 rgbecker  Fix example output index.html title
##### 2003/04/24 #####
	fonts/LeERC___.AFM 1.2 rgbecker  Attempt to fix -kb problem
	test/test_platypus_general.py 1.12 rgbecker  Make os & cwd agnostic
	rl_addons/renderPM/_renderPM.c 1.19 jvr  fixed compile error with CodeWarrior Pro 6 on the Mac
##### 2003/04/22 #####
	platypus/tables.py 1.65 rgbecker  Prepare for a more general idea of cell size
	platypus/flowables.py 1.36 rgbecker  Prepare for a more general idea of cell size
	test/test_charts_textlabels.py 1.5 rgbecker  Make runAll.py more robust
	test/runAll.py 1.11 rgbecker  Make runAll.py more robust
	platypus/paragraph.py 1.65 rgbecker  Added in Ury Marshak's underlining stuff hacked for <2.2
	lib/_rl_accel.c 1.33 rgbecker  Added underline to same frag routine
	test/test_paragraphs.py 1.15 rgbecker  Added an underline sample
##### 2003/04/21 #####
	test/test_table_layout.py 1.1 andy_robinson  Finished off sizing logic to go with row and column spanning; added a substantial set of examples.
	platypus/tables.py 1.64 andy_robinson  Finished off sizing logic to go with row and column spanning; added a substantial set of examples.
##### 2003/04/17 #####
	tools/docco/graphdocpy.py 1.21 andy_robinson  Added conveniences to control where docs are created
	tools/docco/docpy.py 1.5 andy_robinson  Added conveniences to control where docs are created
	test/test_pdfgen_general.py 1.16 andy_robinson  Added conveniences to control where docs are created
	docs/graphguide/gengraphguide.py 1.8 andy_robinson  Added conveniences to control where docs are created
	docs/graphguide/gengraphguide.py 1.7 andy_robinson  Added a default page size
	tools/docco/rl_doc_utils.py 1.6 andy_robinson  Now runs from other scripts
	tools/docco/graphdocpy.py 1.20 andy_robinson  Now runs from other scripts
	docs/reference/genreference.py 1.5 andy_robinson  Temoved references to sys.argv[0], allowed some flexibility in which directory they run in
	docs/graphguide/gengraphguide.py 1.6 andy_robinson  Temoved references to sys.argv[0], allowed some flexibility in which directory they run in
	graphics/samples/runall.py 1.4 johnprecedo  Fix a typo.
	graphics/shapes.py 1.90 rgbecker  added pict/pct capability
	graphics/samples/runall.py 1.3 johnprecedo  Now allows multiple formats and if you don't specify any will assume you want PDF, PICT and PNG.
	graphics/renderPS.py 1.22 rgbecker  Added markfilename call
	graphics/renderPM.py 1.28 rgbecker  Added markfilename call
	pdfbase/pdfdoc.py 1.79 rgbecker  Moved markfilename to lib/utils.py
	lib/utils.py 1.42 rgbecker  Moved markfilename from pdfdoc
	graphics/renderPM.py 1.27 andy_robinson  Use pct instead of pict as extension in tests
##### 2003/04/16 #####
	rl_addons/pyRXP/setup.py 1.9 rgbecker  Fix my silliness
	graphics/renderPM.py 1.26 rgbecker  Added support for pict
	rl_addons/renderPM/_renderPM.c 1.18 rgbecker  Added PICT conversion utility
##### 2003/04/15 #####
	rl_addons/pyRXP/setup.py 1.8 dragan1  add linux-i386
	rl_addons/renderPM/setup.py 1.15 dragan1  add linux-i386
	setup.py 1.9 jvr  whitespace change to test my commit rights
##### 2003/04/14 #####
	graphics/renderPM.py 1.25 rgbecker  Added some entry points for PIL workers
	test/runAll.py 1.10 johnprecedo  Andy's latest changes on test machine (snowdon).
	rl_addons/renderPM/libart_lgpl/art_affine.c 1.4 rgbecker  Fix buglet reported on list
##### 2003/04/13 #####
	rl_addons/pyRXP/test/test_xmltestsuite.py 1.2 rgbecker  Fix & changes for memory checks
##### 2003/04/11 #####
	rl_addons/pyRXP/docs/PyRXP_Documentation.rml 1.4 johnprecedo  Interim checkin. More work needs to be done on this.
	rl_addons/pyRXP/test/test_xmltestsuite.py 1.1 rgbecker  S Bishop's unittests
	rl_addons/pyRXP/test/testRXPbasic.py 1.1 johnprecedo  Test program t.py moved to testRXPbasic.py - namechange to make it more consistent with other Reportlab test programs.
	rl_addons/pyRXP/test/t.py 1.12 johnprecedo  Test program t.py moved to testRXPbasic.py - namechange to make it more consistent with other Reportlab test programs.
##### 2003/04/10 #####
	rl_addons/pyRXP/docs/PyRXP_Documentation.rml 1.3 johnprecedo  Tutorial sections updated with info on new changes from 0.97. (Pages need renumbering).
	pdfgen/canvas.py 1.111 andy_robinson  Added setPageRotation
##### 2003/04/09 #####
	platypus/para.py 1.6 andy_robinson  Added tt tag as suggested by Stephen Diehl
	rl_addons/pyRXP/test/t.py 1.11 rgbecker  Make easier to comprehend
##### 2003/04/07 #####
	graphics/widgets/grids.py 1.31 rgbecker  Allow for outer rect to be special
##### 2003/04/05 #####
	platypus/tables.py 1.63 andy_robinson  Initial try at column spanning
	platypus/flowables.py 1.35 andy_robinson  Fixed mask bug (lexical/dynamic scoping?)
	docs/userguide/ch3_pdffeatures.py 1.5 andy_robinson  Removed some fancy quote characters
##### 2003/04/04 #####
	platypus/flowables.py 1.34 rgbecker  Allow for image transparancy mask
	platypus/flowables.py 1.33 rgbecker  Fix trivial spelling burble
##### 2003/04/03 #####
	rl_addons/pyRXP/test/t.py 1.10 rgbecker  Added in 16 bit mode patch inspired by Stuart Bishop
	rl_addons/pyRXP/pyRXP.c 1.21 rgbecker  Added in 16 bit mode patch inspired by Stuart Bishop
	rl_addons/pyRXP/setup.py 1.7 rgbecker  Attempt at the 16 bit patch
	rl_addons/pyRXP/pyRXP.c 1.20 rgbecker  Attempt at the 16 bit patch
##### 2003/04/01 #####
	rl_addons/pyRXP/pyRXP.c 1.19 rgbecker  Sync with rxp 1.3.0
	rl_addons/pyRXP/test/t.py 1.9 rgbecker  Fix test
	rl_addons/pyRXP/rxp/xmlparser.h 1.3 rgbecker  Synchronize with 1.3.0
	rl_addons/pyRXP/rxp/xmlparser.c 1.3 rgbecker  Synchronize with 1.3.0
	rl_addons/pyRXP/rxp/version.c 1.2 rgbecker  Synchronize with 1.3.0
	rl_addons/pyRXP/rxp/url.h 1.2 rgbecker  Synchronize with 1.3.0
	rl_addons/pyRXP/rxp/stdio16.h 1.2 rgbecker  Synchronize with 1.3.0
	rl_addons/pyRXP/rxp/stdio16.c 1.3 rgbecker  Synchronize with 1.3.0
	rl_addons/pyRXP/rxp/rxp.c 1.2 rgbecker  Synchronize with 1.3.0
	rl_addons/pyRXP/rxp/rxp.1 1.2 rgbecker  Synchronize with 1.3.0
	rl_addons/pyRXP/rxp/input.h 1.2 rgbecker  Synchronize with 1.3.0
	rl_addons/pyRXP/rxp/input.c 1.4 rgbecker  Synchronize with 1.3.0
	rl_addons/pyRXP/rxp/RELNOTES 1.2 rgbecker  Synchronize with 1.3.0
	rl_addons/pyRXP/rxp/Makefile 1.2 rgbecker  Synchronize with 1.3.0
	graphics/widgets/eventcal.py 1.4 fuzzypuffin  added talk details for 4 days as a tuple
	graphics/widgets/eventcal.py 1.3 andy_robinson  Now crudely displays talk details
	rl_addons/pyRXP/patches/differ.bat 1.2 rgbecker  Improved discrimination
	graphics/widgets/eventcal.py 1.2 andy_robinson  Now beginning to look like a calendar :-)
##### 2003/03/28 #####
	graphics/widgets/eventcal.py 1.1 andy_robinson  Initial; checkin of calendar widget
##### 2003/03/27 #####
	rl_addons/renderPM/libart_lgpl/config.h 1.3 rgbecker  Attempt to make this semi-automatic
	rl_addons/renderPM/libart_lgpl/art_render_gradient.c 1.3 jvr  Fixing compile errors with CodeWarrior Pro 6 on MacOS.
##### 2003/03/20 #####
	graphics/samples/bubble.py 1.1 johnprecedo  Forgot to check in last night... oops.
##### 2003/03/19 #####
	graphics/samples/scatter_lines_markers.py 1.1 johnprecedo  Added scatter plots, line charts and bubble plots (and some varients).
	graphics/samples/scatter_lines.py 1.1 johnprecedo  Added scatter plots, line charts and bubble plots (and some varients).
	graphics/samples/scatter.py 1.1 johnprecedo  Added scatter plots, line charts and bubble plots (and some varients).
	graphics/samples/linechart_with_markers.py 1.1 johnprecedo  Added scatter plots, line charts and bubble plots (and some varients).
	graphics/samples/line_chart.py 1.1 johnprecedo  Added scatter plots, line charts and bubble plots (and some varients).
	graphics/shapes.py 1.89 rgbecker  Fixed up TIF vs TIFF
	graphics/renderPM.py 1.24 rgbecker  Fixed up TIF vs TIFF
	graphics/shapes.py 1.88 rgbecker  Space saving optimisation
##### 2003/03/18 #####
	graphics/samples/runall.py 1.2 andy_robinson  Drawings can now do asString(format)
	graphics/shapes.py 1.87 andy_robinson  Drawings can now do asString(format)
##### 2003/03/17 #####
	graphics/samples/stacked_column.py 1.3 johnprecedo  Added in preview attribute required for EPS output.
	graphics/samples/stacked_bar.py 1.3 johnprecedo  Added in preview attribute required for EPS output.
	graphics/samples/simple_pie.py 1.3 johnprecedo  Added in preview attribute required for EPS output.
	graphics/samples/radar.py 1.3 johnprecedo  Added in preview attribute required for EPS output.
	graphics/samples/filled_radar.py 1.3 johnprecedo  Added in preview attribute required for EPS output.
	graphics/samples/exploded_pie.py 1.3 johnprecedo  Added in preview attribute required for EPS output.
	graphics/samples/clustered_column.py 1.3 johnprecedo  Added in preview attribute required for EPS output.
	graphics/samples/clustered_bar.py 1.3 johnprecedo  Added in preview attribute required for EPS output.
	graphics/samples/stacked_column.py 1.2 johnprecedo  Changed outdir from '.' to None - should no longer create a folder called '.' on a Mac.
	graphics/samples/stacked_bar.py 1.2 johnprecedo  Changed outdir from '.' to None - should no longer create a folder called '.' on a Mac.
	graphics/samples/simple_pie.py 1.2 johnprecedo  Changed outdir from '.' to None - should no longer create a folder called '.' on a Mac.
	graphics/samples/radar.py 1.2 johnprecedo  Changed outdir from '.' to None - should no longer create a folder called '.' on a Mac.
	graphics/samples/filled_radar.py 1.2 johnprecedo  Changed outdir from '.' to None - should no longer create a folder called '.' on a Mac.
	graphics/samples/exploded_pie.py 1.2 johnprecedo  Changed outdir from '.' to None - should no longer create a folder called '.' on a Mac.
	graphics/samples/clustered_column.py 1.2 johnprecedo  Changed outdir from '.' to None - should no longer create a folder called '.' on a Mac.
	graphics/samples/clustered_bar.py 1.2 johnprecedo  Changed outdir from '.' to None - should no longer create a folder called '.' on a Mac.
	graphics/samples/stacked_column.py 1.1 johnprecedo  Directory of samples which mimic the standard Excel chart classes. iInitial checkin - copied across from users/john/excel_samples.
	graphics/samples/stacked_bar.py 1.1 johnprecedo  Directory of samples which mimic the standard Excel chart classes. iInitial checkin - copied across from users/john/excel_samples.
	graphics/samples/simple_pie.py 1.1 johnprecedo  Directory of samples which mimic the standard Excel chart classes. iInitial checkin - copied across from users/john/excel_samples.
	graphics/samples/runall.py 1.1 johnprecedo  Directory of samples which mimic the standard Excel chart classes. iInitial checkin - copied across from users/john/excel_samples.
	graphics/samples/radar.py 1.1 johnprecedo  Directory of samples which mimic the standard Excel chart classes. iInitial checkin - copied across from users/john/excel_samples.
	graphics/samples/filled_radar.py 1.1 johnprecedo  Directory of samples which mimic the standard Excel chart classes. iInitial checkin - copied across from users/john/excel_samples.
	graphics/samples/exploded_pie.py 1.1 johnprecedo  Directory of samples which mimic the standard Excel chart classes. iInitial checkin - copied across from users/john/excel_samples.
	graphics/samples/excelcolors.py 1.1 johnprecedo  Directory of samples which mimic the standard Excel chart classes. iInitial checkin - copied across from users/john/excel_samples.
	graphics/samples/clustered_column.py 1.1 johnprecedo  Directory of samples which mimic the standard Excel chart classes. iInitial checkin - copied across from users/john/excel_samples.
	graphics/samples/clustered_bar.py 1.1 johnprecedo  Directory of samples which mimic the standard Excel chart classes. iInitial checkin - copied across from users/john/excel_samples.
	graphics/samples/__init__.py 1.1 johnprecedo  Directory of samples which mimic the standard Excel chart classes. iInitial checkin - copied across from users/john/excel_samples.
##### 2003/03/14 #####
	tools/pythonpoint/pythonpoint.py 1.22 andy_robinson  Whoops, stray print statement removed
	tools/pythonpoint/pythonpoint.py 1.21 andy_robinson  Ian Sparks' expanded bookmarkPage function
	test/test_pdfgen_links.py 1.1 andy_robinson  Ian Sparks' expanded bookmarkPage function
	pdfgen/canvas.py 1.110 andy_robinson  Ian Sparks' expanded bookmarkPage function
	docs/userguide/ch3_pdffeatures.py 1.4 andy_robinson  Ian Sparks' expanded bookmarkPage function
##### 2003/03/13 #####
	rl_addons/pyRXP/pyRXP.c 1.18 rgbecker  Fix braindead MS VC++ string length overflow
	rl_addons/pyRXP/test/t.py 1.8 rgbecker  This was stupidly wrong
	rl_addons/pyRXP/pyRXP.c 1.17 rgbecker  Added slight commentation
	rl_addons/pyRXP/pyRXP.c 1.16 rgbecker  0.96 added pyRXP.recordLocation
	rl_addons/pyRXP/docs/PyRXP_Documentation.rml 1.2 rgbecker  Upgraded to 0.96
	rl_addons/pyRXP/test/t.py 1.7 rgbecker  Added recordLocation handling
	rl_addons/pyRXP/pyRXP.c 1.15 rgbecker  Added recordLocation handling
##### 2003/03/08 #####
	rl_addons/pyRXP/test/t.py 1.6 rgbecker  Changed to comply with new nodes for comment/pi
	rl_addons/pyRXP/pyRXP.c 1.14 rgbecker  Fixed finding first proper node in ReturnList==0 case
	rl_addons/pyRXP/pyRXP.c 1.13 rgbecker  Added new comment & pi stuff
##### 2003/03/04 #####
	graphics/charts/spider.py 1.6 rgbecker  Fix for labels=None case
##### 2003/03/03 #####
	rl_addons/pyRXP/test/t.py 1.5 rgbecker  Added processing instructions
	rl_addons/pyRXP/pyRXP.c 1.12 rgbecker  Added processing instructions
##### 2003/03/02 #####
	graphics/renderPM.py 1.23 rgbecker  Added argument to get at PIL save
##### 2003/02/27 #####
	lib/colors.py 1.38 rgbecker  Added special reportLabFid colours
##### 2003/02/24 #####
	graphics/shapes.py 1.86 rgbecker  Use title instead of fnroot
##### 2003/02/19 #####
	rl_addons/pyRXP/pyRXP.c 1.11 rgbecker  Fix wrong call, suggested by Stuart Bishop's patch
##### 2003/02/06 #####
	pdfbase/pdfdoc.py 1.78 andy_robinson  Bug fix from Ian Sparks - missing keyword argument on pdf zoom
##### 2003/02/03 #####
	pdfbase/pdfdoc.py 1.77 andy_robinson  Fixed how object comments are formatted - could not always __class___.__name__
##### 2003/02/02 #####
	platypus/doctemplate.py 1.61 andy_robinson  Passing invariant argument through to canvas
	rl_config.py 1.35 andy_robinson  Changes to allow invariant documents when needed
	platypus/frames.py 1.19 andy_robinson  Changes to allow invariant documents when needed
	platypus/doctemplate.py 1.60 andy_robinson  Changes to allow invariant documents when needed
	pdfgen/canvas.py 1.109 andy_robinson  Changes to allow invariant documents when needed
	pdfbase/pdfdoc.py 1.76 andy_robinson  Changes to allow invariant documents when needed
##### 2003/01/20 #####
	lib/utils.py 1.41 andy_robinson  Back in synch, diagnostic function for distro type added
##### 2003/01/15 #####
	graphics/shapes.py 1.85 rgbecker  Attempted fix for problems with expandUserNodes
	lib/utils.py 1.40 rgbecker  Fix major idiocy
	lib/utils.py 1.39 rgbecker  Fix typo
	lib/utils.py 1.38 rgbecker  Fix recursivImport for case when baseDir is a sequence
##### 2003/01/14 #####
	graphics/shapes.py 1.84 rgbecker  Small change to fix _copyNamedContents
	graphics/charts/piecharts.py 1.25 rgbecker  Allow for special case empty data
##### 2003/01/12 #####
	lib/_rl_accel.c 1.32 rgbecker  Another leak fix thanks to Alessandro Praduroux
##### 2003/01/06 #####
	platypus/doctemplate.py 1.59 rgbecker  Fix up multiBuild to be cleverer about initial saves
	setup.py 1.8 rgbecker  Remove spurious print
##### 2003/01/05 #####
	lib/_rl_accel.c 1.31 rgbecker  Fixed gaping hole in _fp_str reported by Alessandro Praduroux
#################################################################################
#################### RELEASE 1.17 at 16:00 GMT  3/Jan/2003      #################
#################################################################################
##### 2003/01/03 #####
	test/test_lib_utils.py 1.2 rgbecker  Fix test2 for the pyz case
##### 2003/01/02 #####
	platypus/doctemplate.py 1.58 rgbecker  Attempted fix for non string filenamevs multibuild
##### 2002/12/28 #####
	pdfbase/pdfmetrics.py 1.61 andy_robinson  Permits use of CID fonts within paragraphs
	pdfbase/pdfmetrics.py 1.60 andy_robinson  Allows Asian fonts to have correct TT mapping and thus work in paragraphs
##### 2002/12/23 #####
	tools/pythonpoint/demos/htu.xml 1.2 andy_robinson  Fixed recursive import, setting and gettign attributes
	test/test_lib_utils.py 1.1 andy_robinson  Fixed recursive import, setting and gettign attributes
	lib/utils.py 1.37 andy_robinson  Fixed recursive import, setting and gettign attributes
	graphics/charts/barcharts.py 1.70 andy_robinson  Fixed recursive import, setting and gettign attributes
##### 2002/12/22 #####
	setup.py 1.7 andy_robinson  Now includes all data files, and installs with sdist/install on Windows
	setup.py 1.6 andy_robinson  Tidied up whitespace and header
	setup.py 1.5 andy_robinson  Dirk's latest changes
	MANIFEST.in 1.3 andy_robinson  Dirk's latest changes
	setup.py 1.4 andy_robinson  Changed how it refers to extenions so it works on Windows
	MANIFEST.in 1.2 andy_robinson  Dirk's latest
	MANIFEST.in 1.1 rgbecker  Forgot to add this
	setup_reportlab.py 1.3 rgbecker  No longer needed
	setup.py 1.3 rgbecker  After Dirk's patch
##### 2002/12/21 #####
	license.txt 1.4 rgbecker  Fixed dates
##### 2002/12/20 #####
	docs/userguide/ch2_graphics.py 1.9 rgbecker  Fix example 2.1
##### 2002/12/13 #####
	graphics/renderPS.py 1.21 rgbecker  Added Dirk Datzert's drawToString func
##### 2002/12/04 #####
	graphics/charts/spider.py 1.5 rgbecker  Fix calcs for values correct direction
##### 2002/12/03 #####
	graphics/charts/spider.py 1.4 rgbecker  remove spurious print
	graphics/charts/textlabels.py 1.29 rgbecker  remove spurious print
	lib/validators.py 1.25 rgbecker  Minor enhancements to SpiderChart/Label
	graphics/charts/textlabels.py 1.28 rgbecker  Minor enhancements to SpiderChart/Label
	graphics/charts/spider.py 1.3 rgbecker  Minor enhancements to SpiderChart/Label
	graphics/charts/spider.py 1.2 rgbecker  Fix up for labels etc
##### 2002/12/02 #####
	graphics/charts/spider.py 1.1 andy_robinson  Initial checkin, several more features needed
	graphics/widgets/grids.py 1.30 rgbecker  Fix backgrounds
	graphics/charts/lineplots.py 1.38 rgbecker  Fix up bugs in joinAxisMode handling
	graphics/charts/axes.py 1.61 rgbecker  Fix up bugs in joinAxisMode handling
	graphics/charts/lineplots.py 1.37 rgbecker  Use _tickValues instead of valueSteps
	graphics/charts/axes.py 1.60 rgbecker  Attempts at controlling number of ticks & fix for empty labels
	graphics/charts/lineplots.py 1.36 rgbecker  added makeSwatchSample
##### 2002/11/28 #####
	pdfbase/pdfdoc.py 1.75 rgbecker  Fix off by 1 in loadA85Image
##### 2002/11/27 #####
	graphics/widgets/flags.py 1.24 rgbecker  Minor efficiency saving
	graphics/charts/textlabels.py 1.27 rgbecker  Minor efficiency saving
	graphics/charts/lineplots.py 1.35 rgbecker  Started adding Shader
	graphics/charts/areas.py 1.2 rgbecker  Minor saving
	graphics/shapes.py 1.83 rgbecker  Added class _SetKeyWordArgs
	pdfbase/pdfutils.py 1.36 rgbecker  A85 files are binary :(
	test/test_graphics_images.py 1.6 rgbecker  Allow for easy change of images
	graphics/charts/axes.py 1.59 rgbecker  Allow LL0 to be a list
	graphics/shapes.py 1.82 rgbecker  Added String.getEast method
##### 2002/11/22 #####
	graphics/charts/barcharts.py 1.69 rgbecker  Fixed attributes
##### 2002/11/21 #####
	pdfbase/pdfutils.py 1.35 rgbecker  Bad checks commented
##### 2002/11/20 #####
	pdfbase/pdfutils.py 1.34 rgbecker  Added _rl_accel._Ascii85Decode
	lib/_rl_accel.c 1.30 rgbecker  Added _Ascii85Decode
	graphics/charts/piecharts.py 1.24 rgbecker  Slight fix for all zero case
##### 2002/11/18 #####
	platypus/para.py 1.5 aaron_watters  eliminated divide by zero but just introduced
	platypus/para.py 1.4 rgbecker  Slight improvement on Doug's fix
	platypus/para.py 1.3 andy_robinson  Path for word spacing in justified text
##### 2002/11/16 #####
	tools/pythonpoint/styles/htu.py 1.1 andy_robinson  Pythonpoint patches from Turgut Uyar
	tools/pythonpoint/stdparser.py 1.15 andy_robinson  Pythonpoint patches from Turgut Uyar
	tools/pythonpoint/pythonpoint.py 1.20 andy_robinson  Pythonpoint patches from Turgut Uyar
	tools/pythonpoint/demos/htu.xml 1.1 andy_robinson  Pythonpoint patches from Turgut Uyar
	lib/fonts.py 1.15 andy_robinson  Pythonpoint patches from Turgut Uyar
##### 2002/11/09 #####
	tools/pythonpoint/stdparser.py 1.14 andy_robinson  Fix for dead bullets pointed out by Tim Roberts...
#################################################################################
#################### RELEASE 1.16 at 16:00 GMT  7/Nov/2002      #################
#################################################################################
##### 2002/11/07 #####
	pdfbase/pdfdoc.py 1.74 rgbecker  Remove string method usage
	test/test_docs_build.py 1.6 rgbecker  Fix for non-standard python testing
##### 2002/11/06 #####
	pdfbase/pdfmetrics.py 1.59 rgbecker  Jerome's New improved hasher
	pdfgen/pycanvas.py 1.8 rgbecker  Jerome's New improved hasher
	pdfgen/canvas.py 1.108 rgbecker  Jerome's fix for strange filenames
	pdfbase/pdfdoc.py 1.73 rgbecker  Jerome's fix for strange filenames
	pdfbase/pdfmetrics.py 1.58 rgbecker  Fix for Jerome's magic breakages in 1.5.2
##### 2002/11/04 #####
	tools/pythonpoint/stdparser.py 1.13 andy_robinson  Fixed extra space due to incorrect bullet text
	test/test_source_chars.py 1.4 rgbecker  Fix missing Baseclass method invocation
	pdfbase/pdfutils.py 1.33 rgbecker  Added A85 caching possibility to Image XObjects
	pdfbase/pdfdoc.py 1.72 rgbecker  Added A85 caching possibility to Image XObjects
	tools/pythonpoint/stdparser.py 1.12 andy_robinson  Whitespace and tab character cleanup
	tools/pythonpoint/pythonpoint.py 1.19 andy_robinson  Whitespace and tab character cleanup
	test/test_source_chars.py 1.3 andy_robinson  Whitespace and tab character cleanup
	test/test_renderSVG.py 1.7 andy_robinson  Whitespace and tab character cleanup
	test/test_platypus_paragraphs.py 1.11 andy_robinson  Whitespace and tab character cleanup
	setup_reportlab.py 1.2 andy_robinson  Whitespace and tab character cleanup
	setup.py 1.2 andy_robinson  Whitespace and tab character cleanup
	platypus/para.py 1.2 andy_robinson  Whitespace and tab character cleanup
	pdfgen/pycanvas.py 1.7 andy_robinson  Whitespace and tab character cleanup
	pdfgen/canvas.py 1.107 andy_robinson  Whitespace and tab character cleanup
	pdfbase/pdfdoc.py 1.71 andy_robinson  Whitespace and tab character cleanup
	lib/rparsexml.py 1.2 andy_robinson  Whitespace and tab character cleanup
	graphics/charts/slidebox.py 1.6 andy_robinson  Whitespace and tab character cleanup
	graphics/charts/dotbox.py 1.2 andy_robinson  Whitespace and tab character cleanup
	docs/userguide/ch1_intro.py 1.13 andy_robinson  Whitespace and tab character cleanup
##### 2002/11/03 #####
	tools/pythonpoint/stdparser.py 1.11 andy_robinson  Added pageDuration feature for automatic slide transitions
	tools/pythonpoint/pythonpoint.py 1.18 andy_robinson  Added pageDuration feature for automatic slide transitions
	tools/pythonpoint/demos/pythonpoint.xml 1.6 andy_robinson  Added pageDuration feature for automatic slide transitions
	pdfgen/canvas.py 1.106 andy_robinson  Added pageDuration feature for automatic slide transitions
	tools/pythonpoint/pythonpoint.dtd 1.2 andy_robinson  Updated copyright year while testing write access
	platypus/flowables.py 1.32 rgbecker  Added ParagraphAndImage
	test/test_platypus_paragraphs.py 1.10 rgbecker  Added test of ParagraphAndImage
##### 2002/10/30 #####
	tools/pythonpoint/stdparser.py 1.10 dinu_gherman  Added ./ to styles search folder list.
##### 2002/10/28 #####
	rl_addons/renderPM/setup.py 1.14 rgbecker  Fix up byteorder for 1.5.2
	rl_addons/renderPM/filelist.txt 1.1 rgbecker  Release of 0.9
	rl_addons/renderPM/do_tags.bat 1.2 rgbecker  Release of 0.9
	rl_addons/renderPM/bingo.py 1.2 rgbecker  Release of 0.9
	rl_addons/renderPM/_renderPM.c 1.17 rgbecker  Release of 0.9
	rl_addons/renderPM/PROJECT_CVS_TAG 1.1 rgbecker  Release of 0.9
##### 2002/10/25 #####
	rl_addons/pyRXP/test/t.py 1.4 rgbecker  Copy back errbuf for various detected errors
	rl_addons/pyRXP/pyRXP.c 1.10 rgbecker  Copy back errbuf for various detected errors
##### 2002/10/22 #####
	pdfbase/pdfdoc.py 1.70 rgbecker  Added JPEG special case for PDFImageXOBject
##### 2002/10/20 #####
	rl_addons/pyRXP/pyRXP.c 1.9 rgbecker  Fix pyRXP.version number
##### 2002/10/19 #####
	lib/_rl_accel.c 1.29 rgbecker  Forgot the VERSION
	lib/_rl_accel.c 1.28 rgbecker  Added Ury Marshak's checksum speedup
	pdfbase/ttfonts.py 1.13 rgbecker  Added Ury Marshak's checksum speedup
	graphics/shapes.py 1.81 rgbecker  Fix for tuple case in definePath
##### 2002/10/18 #####
	pdfgen/pycanvas.py 1.6 johnprecedo  Applied Jerome Alet's patch (submitted on Mon 07/10/2002).
	rl_addons/pyRXP/test/t.py 1.3 rgbecker  Inspired by Alex Martelli add MakeMutableTree & ExpandEmpty flags fourth item callback!
	rl_addons/pyRXP/pyRXP.c 1.8 rgbecker  Inspired by Alex Martelli add MakeMutableTree & ExpandEmpty flags fourth item callback!
##### 2002/10/16 #####
	setup.py 1.1 andy_robinson  Added a highly dodgy, experimental setup.py
##### 2002/10/15 #####
	setup_reportlab.py 1.1 johnprecedo  First stab at a distutils setup script.
	platypus/paragraph.py 1.64 rgbecker  Attempt at fixing getActualLineWidths0
##### 2002/10/14 #####
	graphics/charts/d_verticalbarchart.py 1.2 johnprecedo  Moved to rlextra/examples/graphics.
	graphics/charts/d_horizontalbarchart.py 1.2 johnprecedo  Moved to rlextra/examples/graphics.
##### 2002/10/10 #####
	test/test_pdfbase_ttfonts.py 1.7 mgedmin  Turn off checksum validation by default
	pdfbase/ttfonts.py 1.12 mgedmin  Turn off checksum validation by default
	pdfbase/ttfonts.py 1.11 mgedmin  Added a workaround for some broken TTFs (like Thyromanes)
	pdfbase/ttfonts.py 1.10 mgedmin  Let TTFont users disable checksum validation.  Also, don't parse the same TTF info twice (in TTFontFace and TTFontFile constructors).
	pdfbase/pdfmetrics.py 1.57 mgedmin  Let TTFont users disable checksum validation.  Also, don't parse the same TTF info twice (in TTFontFace and TTFontFile constructors).
##### 2002/10/07 #####
	tools/pythonpoint/styles/standard.py 1.3 rgbecker  jerome Alet spotted this typo
	pdfgen/pycanvas.py 1.5 rgbecker  Fixed 1.5 compat (+=)
	test/test_pdfbase_ttfonts.py 1.6 mgedmin  Align glyphs at dword boundaries as recommended by the TTF spec. (also fixes a bug)
	pdfbase/ttfonts.py 1.9 mgedmin  Align glyphs at dword boundaries as recommended by the TTF spec. (also fixes a bug)
##### 2002/10/06 #####
	graphics/renderSVG.py 1.13 andy_robinson  Whoops, wrong stringIO
##### 2002/10/04 #####
	graphics/renderSVG.py 1.12 andy_robinson  Dirk Datzert's drawToString function
##### 2002/10/03 #####
	pdfgen/pycanvas.py 1.4 rgbecker  Jerome's Patch added by Robin
	graphics/charts/slidebox.py 1.5 johnprecedo  Examples for Diagra documentation.
	graphics/charts/dotbox.py 1.1 johnprecedo  Examples for Diagra documentation.
	graphics/charts/d_verticalbarchart.py 1.1 johnprecedo  Examples for Diagra documentation.
	graphics/charts/d_horizontalbarchart.py 1.1 johnprecedo  Examples for Diagra documentation.
##### 2002/10/02 #####
	test/test_pdfgen_pycanvas.py 1.2 andy_robinson  Latest, well commented source
	pdfgen/pycanvas.py 1.3 andy_robinson  Latest, well commented source
	pdfgen/pycanvas.py 1.2 andy_robinson  Jerome's latest version, refactored he says
##### 2002/10/01 #####
	test/test_pdfgen_pycanvas.py 1.1 andy_robinson  Jerome Alet's Macro-recording canvas
	pdfgen/pycanvas.py 1.1 andy_robinson  Jerome Alet's Macro-recording canvas
##### 2002/09/30 #####
	platypus/paragraph.py 1.63 rgbecker  Fixed splitting bug
	platypus/paraparser.py 1.48 rgbecker  Attempt to use sup as well as super
##### 2002/09/29 #####
	demos/rlzope/readme.txt 1.2 rgbecker  Update to refelect Jerome's .pth recommendation
##### 2002/09/27 #####
	graphics/charts/slidebox.py 1.4 rgbecker  Fix parentheses again
	graphics/charts/slidebox.py 1.3 rgbecker  Fix parentheses
##### 2002/09/26 #####
	test/test_platypus_general.py 1.11 andy_robinson  Fixed makeSuite non-function-call in script handler and added a token ampersand to check xml parsing.
	graphics/charts/slidebox.py 1.2 rgbecker  Fix ascent scaling problem
	graphics/charts/slidebox.py 1.1 rgbecker  Added slidebox in charts now
	docs/userguide/ch6_tables.py 1.6 andy_robinson  Fixed bad docco thanks to Derek Basch
##### 2002/09/17 #####
	graphics/renderPDF.py 1.21 andy_robinson  Added drawToString method as suggested by Dirk Datzert
##### 2002/09/13 #####
	lib/colors.py 1.37 rgbecker  Add cornflowerblue = cornflower
##### 2002/09/12 #####
	docs/userguide/ch6_tables.py 1.5 andy_robinson  Expanded the docs a little
##### 2002/09/09 #####
	platypus/para.py 1.1 aaron_watters  new experimental paragraph implementation which supports hyperlinking, underlining, embedded lists etc
	lib/rparsexml.py 1.1 aaron_watters  added to support new paragraph
	lib/colors.py 1.36 rgbecker  Fixed toColors to be even more accepting
##### 2002/09/07 #####
	docs/userguide/ch1_intro.py 1.12 dragan1  minor grammar corrections
##### 2002/09/06 #####
	pdfbase/ttfonts.py 1.8 mgedmin  Support POST table version 4 as found in some Apple TTFs. Fixed a typo in struct.pack format that could prevent huge fonts from working.
	docs/userguide/ch1_intro.py 1.11 rgbecker  Dragan: added jython installation instructions
##### 2002/09/02 #####
	pdfbase/ttfonts.py 1.7 mgedmin  Typos in error reporting (s/ver.min/ver_min/)
	pdfbase/ttfonts.py 1.6 mgedmin  Support Apple TTFs: different signature and optional OS/2 table
##### 2002/08/25 #####
	graphics/widgets/grids.py 1.29 rgbecker  Allow stroke to appear
	rl_addons/renderPM/setup.py 1.13 rgbecker  Added byteorder test
##### 2002/08/23 #####
	demos/rlzope/rlzope.py 1.5 johnprecedo  Patch from Juergen Plasser/Jeriome Alet. Corrects a problem which happens when images are >64Kb.
##### 2002/08/19 #####
	test/utils.py 1.8 rgbecker  Fix for spaces in commands
	rl_addons/renderPM/libart_lgpl/testart.c 1.3 rgbecker  Added intersect2 test
	rl_addons/renderPM/libart_lgpl/art_svp_wind.c 1.4 rgbecker  Allow for NOSTDERR
	rl_addons/renderPM/libart_lgpl/art_misc.c 1.4 rgbecker  Allow for NOSTDERR
##### 2002/08/13 #####
	graphics/widgets/flags.py 1.23 johnprecedo  Fixed Star() so that it behaves in the same way as StarFive in markers. Added the Brazilian flag while I was here (contributed by Publio da Costa Melo [publio@planetarium.com.br]).
	graphics/widgets/markers.py 1.13 rgbecker  Added StarFive, FilledStarFive and fixed rotations
##### 2002/08/12 #####
	graphics/widgets/grids.py 1.28 rgbecker  Fix up 2.2'ism lambda
##### 2002/08/11 #####
	graphics/widgets/grids.py 1.27 rgbecker  Experimental ShadedPolygon added
	graphics/shapes.py 1.80 rgbecker  Experimental ShadedPolygon added
##### 2002/08/10 #####
	docs/graphguide/ch1_intro.py 1.7 dragan1  Changed email address to reportlab-users@reportlab.com
	docs/userguide/ch1_intro.py 1.10 dragan1  Changed email address to reportlab-users@reportlab.com
	docs/userguide/ch1_intro.py 1.9 dragan1  changed info about mailing list and corrected a couple of dead links to PIL
#################################################################################
#################### RELEASE 1.15 at 14:00 GMT  9/Aug/2002      #################
#################################################################################
##### 2002/08/09 #####
	platypus/tables.py 1.62 rgbecker  Improved line styles, allow for cap etc
##### 2002/08/08 #####
	rl_addons/renderPM/test_renderPM.py 1.5 rgbecker  Experimental stuff
	rl_addons/renderPM/setup.py 1.12 rgbecker  Experimental stuff
	rl_addons/renderPM/_renderPM.c 1.15 rgbecker  Experimental stuff
	graphics/shapes.py 1.79 rgbecker  Added EmptyClipPath and handling
	graphics/renderPM.py 1.22 rgbecker  Added EmptyClipPath and handling
##### 2002/08/01 #####
	rl_addons/renderPM/_renderPM.c 1.14 rgbecker  Minor cosmetic changes for gcc
	test/test_renderSVG.py 1.6 dinu_gherman  Hopefully replaced errors with warnings in case of non-existant XML parser.
##### 2002/07/31 #####
	lib/validators.py 1.24 rgbecker  Added isShape & isNoneOrShape
	lib/attrmap.py 1.7 rgbecker  Allow for multiple BASEs
	graphics/charts/lineplots.py 1.34 rgbecker  Added areas.PlotArea for chart plot areas
	graphics/charts/linecharts.py 1.25 rgbecker  Added areas.PlotArea for chart plot areas
	graphics/charts/barcharts.py 1.68 rgbecker  Added areas.PlotArea for chart plot areas
	graphics/charts/areas.py 1.1 rgbecker  Added areas.PlotArea for chart plot areas
##### 2002/07/30 #####
	graphics/charts/barcharts.py 1.67 rgbecker  added in Dirk Datzert's bg contrib
	test/test_pdfbase_ttfonts.py 1.5 mgedmin  Allow use of a TTFont on different documents at the same time
	pdfgen/textobject.py 1.26 mgedmin  Allow use of a TTFont on different documents at the same time
	pdfbase/ttfonts.py 1.5 mgedmin  Allow use of a TTFont on different documents at the same time
##### 2002/07/29 #####
	pdfgen/canvas.py 1.105 mgedmin  _dynamicFont should be saved/restored together with _fontname
	rl_addons/renderPM/setup.py 1.11 rgbecker  Attempt to fix string macro problem
##### 2002/07/27 #####
	graphics/widgetbase.py 1.33 rgbecker  Allow for multicolour single data barcharts
	graphics/charts/barcharts.py 1.66 rgbecker  Allow for multicolour single data barcharts
##### 2002/07/26 #####
	graphics/charts/barcharts.py 1.65 rgbecker  Make format allow callable not just function
##### 2002/07/25 #####
	docs/userguide/ch2a_fonts.py 1.7 dinu_gherman  Fixed '<', '>' buglets...
	docs/userguide/ch1_intro.py 1.8 dinu_gherman  Fixed '&' buglet.
##### 2002/07/24 #####
	__init__.py 1.22 andy_robinson  Removed all trailing whitespace
	pdfbase/ttfonts.py 1.3 andy_robinson  Marius' path for non-standard TrueType files
	rl_addons/renderPM/_renderPM.c 1.13 rgbecker  Rendering fixes & changes for Dinu's image shape
	graphics/shapes.py 1.77 rgbecker  Changes for Dinu's image shape
	graphics/renderPM.py 1.20 rgbecker  Changes for Dinu's image shape
##### 2002/07/21 #####
	pdfbase/pdfdoc.py 1.68 andy_robinson  Fixed page stream filter order (Thanks Bernhard) Fixed encoding of renderPS export
	lib/codecharts.py 1.6 andy_robinson  Fixed page stream filter order (Thanks Bernhard) Fixed encoding of renderPS export
	graphics/renderPS.py 1.19 andy_robinson  Fixed page stream filter order (Thanks Bernhard) Fixed encoding of renderPS export
##### 2002/07/17 #####
	tools/docco/graphdocpy.py 1.18 andy_robinson  Graphdocpy now works on unix and Windows (for me anyway...)
	demos/odyssey/dodyssey.py 1.12 andy_robinson  Exterminated all tab characters and added a test to make sure they never come back.
	rl_addons/renderPM/_renderPM.c 1.12 rgbecker  Preliminary work on _aapixbuf
	lib/codecharts.py 1.5 andy_robinson  Fixed standard fonts demo, added a basic code page graphic
	demos/stdfonts/stdfonts.py 1.11 andy_robinson  Fixed standard fonts demo, added a basic code page graphic
##### 2002/07/16 #####
	rl_addons/renderPM/setup.py 1.10 rgbecker  Sync with Gnome libart_lgpl 2.3.10
	rl_addons/renderPM/_renderPM.c 1.11 rgbecker  Sync with Gnome libart_lgpl 2.3.10
##### 2002/07/15 #####
	graphics/charts/barcharts.py 1.62 rgbecker  Attempt to eliminate silly libart bug appearing
##### 2002/07/12 #####
	platypus/doctemplate.py 1.55 andy_robinson  Fixed missing fact in progressCallBack
##### 2002/07/10 #####
	rl_addons/renderPM/setup.py 1.9 dinu_gherman  Added 'darwin' to list of known platforms.
	graphics/renderSVG.py 1.10 dinu_gherman  Added comment on svglib.
##### 2002/07/09 #####
	platypus/doctemplate.py 1.54 rgbecker  Andy's progress stuff
##### 2002/07/07 #####
	platypus/doctemplate.py 1.53 andy_robinson  Provision for callback progress monitoring in basic doctemplate class
##### 2002/07/04 #####
	test/utils.py 1.6 dinu_gherman  Slightly refactored test suite to do the same thing with less code.
##### 2002/07/03 #####
	graphics/charts/legends.py 1.21 rgbecker  Minor efficiency saving
	graphics/shapes.py 1.75 rgbecker  Changes to allow flaky _drawTimeResize
	graphics/renderbase.py 1.12 rgbecker  Changes to allow flaky _drawTimeResize
	graphics/renderSVG.py 1.9 rgbecker  Changes to allow flaky _drawTimeResize
	graphics/renderPS.py 1.17 rgbecker  Changes to allow flaky _drawTimeResize
	graphics/renderPM.py 1.18 rgbecker  Changes to allow flaky _drawTimeResize
	graphics/renderPDF.py 1.19 rgbecker  Changes to allow flaky _drawTimeResize
##### 2002/07/02 #####
	pdfbase/ttfonts.py 1.2 dinu_gherman  Applied Marius' patch for TrueType fonts converted from OS X .dfont files.
##### 2002/07/01 #####
	lib/colors.py 1.33 rgbecker  Added Color.hexval
	graphics/charts/piecharts.py 1.21 rgbecker  Keep proper sequece for zero wedges
##### 2002/06/21 #####
	graphics/renderSVG.py 1.8 dinu_gherman  Added outer rectangular clipping path.
##### 2002/06/20 #####
	pdfbase/pdfpattern.py 1.1 aaron_watters  simple support for acrobat forms in reportlab documents.  Minor optimizations to metrics
	pdfbase/pdfmetrics.py 1.54 aaron_watters  simple support for acrobat forms in reportlab documents.  Minor optimizations to metrics
	pdfbase/pdfform.py 1.1 aaron_watters  simple support for acrobat forms in reportlab documents.  Minor optimizations to metrics
	lib/colors.py 1.32 rgbecker  Added Whiter, Blacker and improved toColor
	platypus/tables.py 1.59 rgbecker  Use of _SeqTypes here was wrong use callability instead
	test/test_platypus_general.py 1.8 rgbecker  Added -debug option
##### 2002/06/18 #####
	graphics/widgets/grids.py 1.24 rgbecker  Avoid changing definition in _flipRectCorners
	platypus/tables.py 1.58 rgbecker  added vcallable backgrounds
##### 2002/06/16 #####
	lib/colors.py 1.31 rgbecker  Added setColors fixed toColor
##### 2002/06/14 #####
	test/test_renderSVG.py 1.3 andy_robinson  Fixed 1.5-breakage (we imported sys.version_info which did not exist then) and also a nad directory in test_renderSVG
	pdfbase/pdfdoc.py 1.66 andy_robinson  Fixed 1.5-breakage (we imported sys.version_info which did not exist then) and also a nad directory in test_renderSVG
	platypus/frames.py 1.16 rgbecker  Allow showBoundary to be a color/tuple etc
##### 2002/06/12 #####
	graphics/charts/legends.py 1.20 rgbecker  Added callout and _calcHeight
	lib/utils.py 1.34 rgbecker  Fix erroneous __path__ attribute reference
	graphics/charts/axes.py 1.56 rgbecker  Allow per/label visibility
##### 2002/06/04 #####
	graphics/renderSVG.py 1.7 rgbecker  Apparent fix for transform problem
##### 2002/06/03 #####
	test/test_widgets_grids.py 1.1 dinu_gherman  Initial checkin. Transferred test code from widgets/grids.py.
	graphics/widgets/grids.py 1.23 dinu_gherman  Removed test and sample code (soon in test suite).
	test/test_renderSVG.py 1.2 dinu_gherman  Removed stray reference to renderSVG3.
	graphics/renderSVG.py 1.6 dinu_gherman  Added newline before svg document element.
	test/test_renderSVG.py 1.1 dinu_gherman  Initial checkin.
##### 2002/05/31 #####
	graphics/renderSVG.py 1.5 dinu_gherman  Load minidom specifically (pleasing Jython).
##### 2002/05/29 #####
	test/test_tools_pythonpoint.py 1.7 rgbecker  Improved for Demo
#################################################################################
#################### RELEASE 1.14 at 18:00 GMT 28/May/2002      #################
#################################################################################
##### 2002/05/28 #####
	fonts/rina.ttf 1.2 rgbecker  Readded with -kb
	fonts/luxiserif.ttf 1.2 rgbecker  Readded with -kb
	pdfbase/ttfonts.py 1.1 rgbecker  Added Marius Gedminas' TTF support
	graphics/renderPS.py 1.16 rgbecker  Stray StringIO change to getvalue()
	tools/docco/stylesheet.py 1.2 rgbecker  Added Marius Gedminas' TTF support
	tools/docco/examples.py 1.2 rgbecker  Added Marius Gedminas' TTF support
	test/test_pdfbase_ttfonts.py 1.1 rgbecker  Added Marius Gedminas' TTF support
	rl_config.py 1.32 rgbecker  Added Marius Gedminas' TTF support
	pdfgen/textobject.py 1.23 rgbecker  Added Marius Gedminas' TTF support
	pdfgen/canvas.py 1.103 rgbecker  Added Marius Gedminas' TTF support
	pdfbase/pdfdoc.py 1.65 rgbecker  Added Marius Gedminas' TTF support
	fonts/rina_license.txt 1.1 rgbecker  Added Marius Gedminas' TTF support
	fonts/rina.ttf 1.1 rgbecker  Added Marius Gedminas' TTF support
	fonts/luxiserif_license.txt 1.1 rgbecker  Added Marius Gedminas' TTF support
	fonts/luxiserif.ttf 1.1 rgbecker  Added Marius Gedminas' TTF support
	docs/userguide/ch2a_fonts.py 1.4 rgbecker  Added Marius Gedminas' TTF support
	docs/userguide/ch1_intro.py 1.6 rgbecker  Added Marius Gedminas' TTF support
##### 2002/05/27 #####
	pdfbase/pdfdoc.py 1.64 dinu_gherman  Added skipped comment to Jython workaround.
	docs/graphguide/ch2_concepts.py 1.4 dinu_gherman  Added SVG blurb.
##### 2002/05/26 #####
	lib/setup.py 1.12 dinu_gherman  Added 'darwin' to list of known platforms.
##### 2002/05/24 #####
	test/test_platypus_general.py 1.7 dinu_gherman  Filtered Image flowable if no PIL available.
	pdfbase/pdfmetrics.py 1.53 dinu_gherman  Fixed font filename extension case buglets on OS X.
	graphics/widgets/markers.py 1.10 rgbecker  Added kw args to Flag and MArker classes
	graphics/widgets/flags.py 1.20 rgbecker  Added kw args to Flag and MArker classes
	graphics/charts/lineplots.py 1.31 rgbecker  Added ScatterPlot
	test/test_pyfiles.py 1.8 dinu_gherman  Disabled some tests using os.chdir when running on Jython.
	test/test_extra.py 1.4 dinu_gherman  Disabled some tests using os.chdir when running on Jython.
	test/test_docstrings.py 1.8 dinu_gherman  Disabled some tests using os.chdir when running on Jython.
	test/test_docs_build.py 1.3 dinu_gherman  Disabled some tests using os.chdir when running on Jython.
	test/test_tools_pythonpoint.py 1.6 dinu_gherman  Simplified and removed os.system() calls.
	test/test_graphics_images.py 1.3 dinu_gherman  Simplified code.
	test/test_pdfgen_general.py 1.13 dinu_gherman  Test case now handles absence of PIL more gracefully.
	test/test_lib_validators.py 1.6 dinu_gherman  'Typed' arguments to % operator, removes Jython complaints.
	pdfbase/pdfdoc.py 1.63 rgbecker  Added Dinu's Jython 2.1 workaround
##### 2002/05/23 #####
	pdfbase/pdfutils.py 1.31 rgbecker  Remove stringio reset
	graphics/charts/piecharts.py 1.20 rgbecker  Added LegendedPie
##### 2002/05/22 #####
	demos/odyssey/odyssey.txt 1.9 rgbecker  Fixed bad tag
	demos/odyssey/dodyssey.py 1.11 rgbecker  Test framework
	graphics/renderSVG.py 1.4 dinu_gherman  Removed dependency on PyXML. Now should use only std. lib. XML modules.
##### 2002/05/21 #####
	graphics/charts/lineplots.py 1.30 rgbecker  Added GridLinePlot
	graphics/charts/axes.py 1.55 rgbecker  Added AdjYValueAxis
	graphics/renderSVG.py 1.3 dinu_gherman  Removed tests depending on additional local files.
##### 2002/05/17 #####
	graphics/renderPDF.py 1.18 dinu_gherman  Made 'msg' in drawToFile() a keyword parameter with default "".
##### 2002/05/16 #####
	test/test_graphics_images.py 1.2 dinu_gherman  Added more tests, changed output file name.
##### 2002/05/15 #####
	graphics/renderSVG.py 1.2 andy_robinson  2.1 compatible
	test/test_graphics_images.py 1.1 dinu_gherman  Initial check-in.
	graphics/shapes.py 1.74 dinu_gherman  Added Images shape class, currently only rendered in PDF.
	graphics/renderbase.py 1.11 dinu_gherman  Added Images shape class, currently only rendered in PDF.
	graphics/renderPDF.py 1.17 dinu_gherman  Added Images shape class, currently only rendered in PDF.
##### 2002/05/13 #####
	rl_addons/pyRXP/examples/doc_examples.py 1.3 rgbecker  Fixed stupid extra '
##### 2002/05/12 #####
	graphics/renderSVG.py 1.1 dinu_gherman  Initial checkin.
##### 2002/05/11 #####
	rl_addons/pyRXP/examples/doc_examples.py 1.2 rgbecker  Fix bad quote chars
##### 2002/05/10 #####
	pdfbase/pdfdoc.py 1.62 aaron_watters  backwards compatible name
##### 2002/05/08 #####
	tools/pythonpoint/pythonpoint.py 1.15 dinu_gherman  Reintroduced lost changes up to revision 1.13.
	tools/pythonpoint/stdparser.py 1.8 dinu_gherman  Bugfix, now also fills polygons.
	tools/pythonpoint/pythonpoint.py 1.14 dinu_gherman  Bugfix, now also fills polygons.
	lib/PyFontify.py 1.3 dinu_gherman  Added new Python keyword "as".
##### 2002/05/03 #####
	rl_addons/pyRXP/setup.py 1.6 rgbecker  Added linux2 to LIBS=[] case
##### 2002/04/30 #####
	graphics/charts/axes.py 1.54 rgbecker  Keep calculated max/min separate
##### 2002/04/29 #####
	docs/genAll.py 1.8 rgbecker  Allow for varying locations
	docs/genAll.py 1.7 rgbecker  Added pyRXP Documentation
	rl_addons/pyRXP/filelist.txt 1.1 rgbecker  Initial version after moving from users/john
	rl_addons/pyRXP/examples/xmlutils.py 1.1 rgbecker  Initial version after moving from users/john
	rl_addons/pyRXP/examples/tinydtd.dtd 1.1 rgbecker  Initial version after moving from users/john
	rl_addons/pyRXP/examples/sample4.xml 1.1 rgbecker  Initial version after moving from users/john
	rl_addons/pyRXP/examples/sample3.xml 1.1 rgbecker  Initial version after moving from users/john
	rl_addons/pyRXP/examples/sample2.xml 1.1 rgbecker  Initial version after moving from users/john
	rl_addons/pyRXP/examples/sample1.xml 1.1 rgbecker  Initial version after moving from users/john
	rl_addons/pyRXP/examples/rml_a.xml 1.1 rgbecker  Initial version after moving from users/john
	rl_addons/pyRXP/examples/rml_a.dtd 1.1 rgbecker  Initial version after moving from users/john
	rl_addons/pyRXP/examples/play.dtd 1.1 rgbecker  Initial version after moving from users/john
	rl_addons/pyRXP/examples/hamlet.xml 1.1 rgbecker  Initial version after moving from users/john
	rl_addons/pyRXP/examples/expattree.py 1.1 rgbecker  Initial version after moving from users/john
	rl_addons/pyRXP/examples/doc_examples.py 1.1 rgbecker  Initial version after moving from users/john
	rl_addons/pyRXP/examples/benchmarks.py 1.1 rgbecker  Initial version after moving from users/john
	rl_addons/pyRXP/examples/00readme.txt 1.1 rgbecker  Initial version after moving from users/john
	rl_addons/pyRXP/docs/replogo.gif 1.1 rgbecker  Initial version after moving from users/john
	rl_addons/pyRXP/docs/PyRXP_Documentation.rml 1.1 rgbecker  Initial version after moving from users/john
	rl_addons/pyRXP/PROJECT_CVS_TAG 1.1 rgbecker  Initial version after moving from users/john
##### 2002/04/25 #####
	platypus/tables.py 1.57 andy_robinson  Jim Kraai's patch to preserve auto col width on subsequent pages when table split
##### 2002/04/18 #####
	rl_addons/pyRXP/pyRXP.c 1.7 rgbecker  Move to version 0.7
	rl_addons/pyRXP/rxp/input.c 1.3 rgbecker  Was wrong to delete entity with source
	rl_addons/pyRXP/pyRXP.c 1.6 rgbecker  Was wrong to delete entity with source
	rl_addons/pyRXP/test/leaktest.py 1.1 rgbecker  Initial version
	rl_addons/pyRXP/pyRXP.c 1.5 rgbecker  Changes made in pursuit of leaks
	rl_addons/pyRXP/rxp/system.h 1.3 rgbecker  Changes made in pursuit of leaks
	rl_addons/pyRXP/rxp/system.c 1.2 rgbecker  Changes made in pursuit of leaks
	rl_addons/pyRXP/rxp/input.c 1.2 rgbecker  Changes made in pursuit of leaks
	rl_addons/pyRXP/rxp/dtd.c 1.2 rgbecker  Changes made in pursuit of leaks
##### 2002/04/17 #####
	rl_addons/pyRXP/pyRXP.c 1.4 rgbecker  Made srcName a PyObject*, fixed parse attributes
	rl_addons/pyRXP/setup.py 1.5 rgbecker  I think DLLs is the proper place for pyds etc
	rl_addons/pyRXP/test/t.py 1.2 rgbecker  Added some more tests
	rl_addons/pyRXP/pyRXP.c 1.3 rgbecker  Added ReturnList attribute, parse keyword args and __call__==parse! pyRXP.c
##### 2002/04/16 #####
	graphics/renderPDF.py 1.16 rgbecker  Fix Dinu's empty ellipse buglet in renderPDF
##### 2002/04/13 #####
	lib/utils.py 1.33 rgbecker  This seems adequate if we avoid Dinuisms like writing to initialised StringIOs
	tools/docco/graphdocpy.py 1.16 rgbecker  Silly StringIO initialisation removed
	lib/utils.py 1.32 rgbecker  Ensure initialised cStringIO instances are rewound
	tools/docco/rl_doc_utils.py 1.3 rgbecker  Remove excess import
	pdfgen/canvas.py 1.102 rgbecker  Remove excess import
	tools/pythonpoint/pythonpoint.py 1.13 rgbecker  Use general StringIO instance interface
	tools/docco/graphdocpy.py 1.15 rgbecker  Use general StringIO instance interface
	pdfgen/pdfimages.py 1.15 rgbecker  Use general StringIO instance interface
	pdfbase/pdfutils.py 1.30 rgbecker  Use general StringIO instance interface
	graphics/renderPS.py 1.15 rgbecker  Use general StringIO instance interface
	graphics/renderPM.py 1.17 rgbecker  Use generalised StringIO instance interface
	lib/utils.py 1.31 rgbecker  use generalised StringIO instance interface
	graphics/shapes.py 1.73 rgbecker  Minor optimisations
	pdfbase/pdfdoc.py 1.61 rgbecker  Another go at Jerome's patch
##### 2002/04/12 #####
	pdfbase/pdfdoc.py 1.60 rgbecker  Jerome Alet's auto transparency patch
	pdfbase/pdfdoc.py 1.59 rgbecker  Use open_for_read with images
	lib/utils.py 1.30 rgbecker  Added open_for_read
	rl_addons/pyRXP/setup.py 1.4 rgbecker  Be friendly about LIBS
##### 2002/04/11 #####
	graphics/charts/lineplots.py 1.29 rgbecker  Ragged length fix from Joe Pallas
	graphics/charts/linecharts.py 1.22 rgbecker  Ragged length fix from Joe Pallas
##### 2002/04/09 #####
	test/test_pdfbase_fontembed.py 1.7 johnprecedo  Expanded so it does a 'makeWidthTestForAllGlyphs' for at least one embedded font - this makes sure that we're getting ascent/descent info for embedded fonts as well as the standard ones.
	test/test_pdfbase_pdfmetrics.py 1.8 johnprecedo  Now tests for presence of ascent/descent.
	pdfbase/pdfmetrics.py 1.52 johnprecedo  Hacked to use ascent and descent properly. (Patch from Jon Dyte [jon@totient.demon.co.uk])
##### 2002/04/06 #####
	tools/pythonpoint/stdparser.py 1.7 rgbecker  Attempt import from here and styles
	tools/pythonpoint/stdparser.py 1.6 rgbecker  Was correct before, error in imputils vs 2.2
	tools/pythonpoint/stdparser.py 1.5 rgbecker  No customshapes in styles
##### 2002/04/01 #####
	rl_addons/pyRXP/setup.py 1.3 rgbecker  Added darwini for Andy
##### 2002/03/29 #####
	pdfgen/canvas.py 1.101 rgbecker  Jerome's final correction
	pdfgen/canvas.py 1.100 rgbecker  Really fix digestion
##### 2002/03/28 #####
	pdfgen/canvas.py 1.99 rgbecker  Hexdigest fix for 1.5.2
#################################################################################
#################### RELEASE 1.13 at 15:00 GMT 27/March/2002    #################
#################################################################################
##### 2002/03/27 #####
	lib/utils.py 1.29 rgbecker  Add DebugMemo __g/setitem__
	pdfbase/pdfdoc.py 1.58 rgbecker  revert to older internal name for backward compatibility
	platypus/tableofcontents.py 1.6 rgbecker  Added __version__
	platypus/figures.py 1.2 rgbecker  Added __version__
	lib/yaml.py 1.3 rgbecker  Added __version__
	rl_config.py 1.31 rgbecker  Added __version__
	lib/validators.py 1.21 rgbecker  Added __version__
	lib/normalDate.py 1.5 rgbecker  Added __version__
	lib/attrmap.py 1.4 rgbecker  Added __version__
	lib/abag.py 1.6 rgbecker  Added __version__
##### 2002/03/26 #####
	graphics/widgets/signsandsymbols.py 1.20 rgbecker  Added __version__
	graphics/widgets/flags.py 1.19 rgbecker  Added __version__
	graphics/widgets/__init__.py 1.3 rgbecker  Added __version__
	graphics/widgetbase.py 1.30 rgbecker  Added __version__
	graphics/shapes.py 1.72 rgbecker  Added __version__
	graphics/charts/textlabels.py 1.24 rgbecker  Added __version__
	graphics/charts/piecharts.py 1.19 rgbecker  Added __version__
	graphics/charts/lineplots.py 1.28 rgbecker  Added __version__
	graphics/charts/linecharts.py 1.21 rgbecker  Added __version__
	graphics/charts/legends.py 1.19 rgbecker  Added __version__
	graphics/charts/barcharts.py 1.61 rgbecker  Added __version__
	graphics/charts/axes.py 1.53 rgbecker  Added __version__
	graphics/charts/__init__.py 1.3 rgbecker  Added __version__
	graphics/renderPDF.py 1.15 rgbecker  Added __version__
	graphics/__init__.py 1.3 rgbecker  Added __version__
	graphics/widgets/markers.py 1.9 rgbecker  Fix versioning again :(
	graphics/widgets/grids.py 1.22 rgbecker  Fix versioning again :(
	graphics/charts/utils.py 1.7 rgbecker  Fix versioning again :(
	graphics/charts/markers.py 1.7 rgbecker  Fix versioning again :(
	graphics/widgets/markers.py 1.8 rgbecker  Fix versioning
	graphics/widgets/grids.py 1.21 rgbecker  Fix versioning
	graphics/charts/utils.py 1.6 rgbecker  Fix versioning
	graphics/charts/markers.py 1.6 rgbecker  Fix versioning
	graphics/widgets/markers.py 1.7 rgbecker  Headers+versioning
	graphics/widgets/grids.py 1.20 rgbecker  Headers+versioning
	graphics/charts/utils.py 1.5 rgbecker  Headers+versioning
	graphics/charts/markers.py 1.5 rgbecker  Headers+versioning
##### 2002/03/25 #####
	tools/pythonpoint/pythonpoint.py 1.12 andy_robinson  modified to use drawImage throughout
	tools/py2pdf/demo.py 1.2 andy_robinson  modified to use drawImage throughout
	tools/docco/rltemplate.py 1.2 andy_robinson  modified to use drawImage throughout
	platypus/flowables.py 1.29 andy_robinson  modified to use drawImage throughout
	pdfbase/pdfdoc.py 1.57 andy_robinson  modified to use drawImage throughout
	demos/rlzope/rlzope.py 1.3 andy_robinson  modified to use drawImage throughout
	test/test_pdfgen_general.py 1.12 andy_robinson  Slimmed down to a single drawImage function
	pdfgen/canvas.py 1.98 andy_robinson  Slimmed down to a single drawImage function
	docs/userguide/ch2_graphics.py 1.7 andy_robinson  Slimmed down to a single drawImage function
##### 2002/03/23 #####
	pdfgen/canvas.py 1.97 andy_robinson  expanded docco and fixed 'natural size'
	pdfbase/pdfdoc.py 1.56 andy_robinson  expanded docco and fixed 'natural size'
	docs/userguide/ch2_graphics.py 1.6 andy_robinson  expanded docco and fixed 'natural size'
	test/test_pdfgen_general.py 1.11 andy_robinson  Image XObjects added at last!
	rl_addons/pyRXP/setup.py 1.2 rgbecker  Fix for Python 2.2 install location
	rl_addons/renderPM/setup.py 1.8 rgbecker  Fix for Python 2.2 install location
	lib/setup.py 1.11 rgbecker  Fixed to work with 2.2
	lib/attrmap.py 1.3 rgbecker  Fixed to work with 2.2
##### 2002/03/22 #####
	lib/formatters.py 1.5 rgbecker  Fixed up zero places case
	rl_addons/pyRXP/pyRXP.c 1.2 rgbecker  Fixed stupid buglet
	lib/formatters.py 1.4 rgbecker  Fixe broken carry for 5% of cases
	lib/utils.py 1.28 rgbecker  Changes to DebugMemo.__doc__
	rl_addons/pyRXP/test/tpyRXP.py 1.1 rgbecker  Working versions
	rl_addons/pyRXP/test/t.py 1.1 rgbecker  Working versions
	lib/utils.py 1.27 rgbecker  Slight formatting improvements & added payload method
	rl_addons/pyRXP/setup.py 1.1 rgbecker  Transferred to SF
	rl_addons/pyRXP/pyRXP.c 1.1 rgbecker  Transferred to SF
	rl_addons/pyRXP/patches/rl-1.2.5.patch 1.1 rgbecker  Transferred to SF
	rl_addons/pyRXP/patches/differ.bat 1.1 rgbecker  Transferred to SF
	rl_addons/pyRXP/README 1.1 rgbecker  Transferred to SF
	rl_addons/pyRXP/rxp/xmlparser.h 1.2 rgbecker  Changes needed to support pyRXP
	rl_addons/pyRXP/rxp/xmlparser.c 1.2 rgbecker  Changes needed to support pyRXP
	rl_addons/pyRXP/rxp/system.h 1.2 rgbecker  Changes needed to support pyRXP
	rl_addons/pyRXP/rxp/stdio16.c 1.2 rgbecker  Changes needed to support pyRXP
	rl_addons/pyRXP/rxp/rxp.1 1.1.1.1 rgbecker  Import of rxp-1.2.5
	rl_addons/pyRXP/rxp/rxp.1 1.1 rgbecker  Initial revision
	rl_addons/pyRXP/rxp/Threads 1.1 rgbecker  Initial revision
	rl_addons/pyRXP/rxp/Threads 1.1.1.1 rgbecker  Import of rxp-1.2.5
	rl_addons/pyRXP/rxp/Manual 1.1 rgbecker  Initial revision
	rl_addons/pyRXP/rxp/Manual 1.1.1.1 rgbecker  Import of rxp-1.2.5
	rl_addons/pyRXP/rxp/RELNOTES 1.1 rgbecker  Initial revision
	rl_addons/pyRXP/rxp/RELNOTES 1.1.1.1 rgbecker  Import of rxp-1.2.5
	rl_addons/pyRXP/rxp/COPYRIGHT 1.1.1.1 rgbecker  Import of rxp-1.2.5
	rl_addons/pyRXP/rxp/COPYRIGHT 1.1 rgbecker  Initial revision
	rl_addons/pyRXP/rxp/COPYING 1.1.1.1 rgbecker  Import of rxp-1.2.5
	rl_addons/pyRXP/rxp/COPYING 1.1 rgbecker  Initial revision
	rl_addons/pyRXP/rxp/version.h 1.1 rgbecker  Initial revision
	rl_addons/pyRXP/rxp/version.h 1.1.1.1 rgbecker  Import of rxp-1.2.5
	rl_addons/pyRXP/rxp/system.h 1.1 rgbecker  Initial revision
	rl_addons/pyRXP/rxp/system.h 1.1.1.1 rgbecker  Import of rxp-1.2.5
	rl_addons/pyRXP/rxp/stdio16.h 1.1 rgbecker  Initial revision
	rl_addons/pyRXP/rxp/stdio16.h 1.1.1.1 rgbecker  Import of rxp-1.2.5
	rl_addons/pyRXP/rxp/rxputil.h 1.1.1.1 rgbecker  Import of rxp-1.2.5
	rl_addons/pyRXP/rxp/rxputil.h 1.1 rgbecker  Initial revision
	rl_addons/pyRXP/rxp/namespaces.h 1.1.1.1 rgbecker  Import of rxp-1.2.5
	rl_addons/pyRXP/rxp/namespaces.h 1.1 rgbecker  Initial revision
	rl_addons/pyRXP/rxp/input.h 1.1.1.1 rgbecker  Import of rxp-1.2.5
	rl_addons/pyRXP/rxp/input.h 1.1 rgbecker  Initial revision
	rl_addons/pyRXP/rxp/infoset-print.h 1.1 rgbecker  Initial revision
	rl_addons/pyRXP/rxp/infoset-print.h 1.1.1.1 rgbecker  Import of rxp-1.2.5
	rl_addons/pyRXP/rxp/http.h 1.1.1.1 rgbecker  Import of rxp-1.2.5
	rl_addons/pyRXP/rxp/http.h 1.1 rgbecker  Initial revision
	rl_addons/pyRXP/rxp/hash.h 1.1 rgbecker  Initial revision
	rl_addons/pyRXP/rxp/hash.h 1.1.1.1 rgbecker  Import of rxp-1.2.5
	rl_addons/pyRXP/rxp/Makefile 1.1.1.1 rgbecker  Import of rxp-1.2.5
	rl_addons/pyRXP/rxp/Makefile 1.1 rgbecker  Initial revision
	rl_addons/pyRXP/rxp/xmlparser.h 1.1.1.1 rgbecker  Import of rxp-1.2.5
	rl_addons/pyRXP/rxp/xmlparser.h 1.1 rgbecker  Initial revision
	rl_addons/pyRXP/rxp/url.h 1.1.1.1 rgbecker  Import of rxp-1.2.5
	rl_addons/pyRXP/rxp/url.h 1.1 rgbecker  Initial revision
	rl_addons/pyRXP/rxp/string16.h 1.1 rgbecker  Initial revision
	rl_addons/pyRXP/rxp/string16.h 1.1.1.1 rgbecker  Import of rxp-1.2.5
	rl_addons/pyRXP/rxp/infoset-print.c 1.1 rgbecker  Initial revision
	rl_addons/pyRXP/rxp/infoset-print.c 1.1.1.1 rgbecker  Import of rxp-1.2.5
	rl_addons/pyRXP/rxp/dtd.h 1.1 rgbecker  Initial revision
	rl_addons/pyRXP/rxp/dtd.h 1.1.1.1 rgbecker  Import of rxp-1.2.5
	rl_addons/pyRXP/rxp/ctype16.h 1.1.1.1 rgbecker  Import of rxp-1.2.5
	rl_addons/pyRXP/rxp/ctype16.h 1.1 rgbecker  Initial revision
	rl_addons/pyRXP/rxp/charset.h 1.1.1.1 rgbecker  Import of rxp-1.2.5
	rl_addons/pyRXP/rxp/charset.h 1.1 rgbecker  Initial revision
	rl_addons/pyRXP/rxp/version.c 1.1.1.1 rgbecker  Import of rxp-1.2.5
	rl_addons/pyRXP/rxp/version.c 1.1 rgbecker  Initial revision
	rl_addons/pyRXP/rxp/namespaces.c 1.1 rgbecker  Initial revision
	rl_addons/pyRXP/rxp/namespaces.c 1.1.1.1 rgbecker  Import of rxp-1.2.5
	rl_addons/pyRXP/rxp/http.c 1.1 rgbecker  Initial revision
	rl_addons/pyRXP/rxp/http.c 1.1.1.1 rgbecker  Import of rxp-1.2.5
	rl_addons/pyRXP/rxp/hash.c 1.1.1.1 rgbecker  Import of rxp-1.2.5
	rl_addons/pyRXP/rxp/hash.c 1.1 rgbecker  Initial revision
	rl_addons/pyRXP/rxp/system.c 1.1 rgbecker  Initial revision
	rl_addons/pyRXP/rxp/system.c 1.1.1.1 rgbecker  Import of rxp-1.2.5
	rl_addons/pyRXP/rxp/stdio16.c 1.1 rgbecker  Initial revision
	rl_addons/pyRXP/rxp/stdio16.c 1.1.1.1 rgbecker  Import of rxp-1.2.5
	rl_addons/pyRXP/rxp/input.c 1.1 rgbecker  Initial revision
	rl_addons/pyRXP/rxp/input.c 1.1.1.1 rgbecker  Import of rxp-1.2.5
	rl_addons/pyRXP/rxp/dtd.c 1.1.1.1 rgbecker  Import of rxp-1.2.5
	rl_addons/pyRXP/rxp/dtd.c 1.1 rgbecker  Initial revision
	rl_addons/pyRXP/rxp/ctype16.c 1.1.1.1 rgbecker  Import of rxp-1.2.5
	rl_addons/pyRXP/rxp/ctype16.c 1.1 rgbecker  Initial revision
	rl_addons/pyRXP/rxp/url.c 1.1 rgbecker  Initial revision
	rl_addons/pyRXP/rxp/url.c 1.1.1.1 rgbecker  Import of rxp-1.2.5
	rl_addons/pyRXP/rxp/string16.c 1.1 rgbecker  Initial revision
	rl_addons/pyRXP/rxp/string16.c 1.1.1.1 rgbecker  Import of rxp-1.2.5
	rl_addons/pyRXP/rxp/charset.c 1.1.1.1 rgbecker  Import of rxp-1.2.5
	rl_addons/pyRXP/rxp/charset.c 1.1 rgbecker  Initial revision
	rl_addons/pyRXP/rxp/xmlparser.c 1.1 rgbecker  Initial revision
	rl_addons/pyRXP/rxp/xmlparser.c 1.1.1.1 rgbecker  Import of rxp-1.2.5
	rl_addons/pyRXP/rxp/rxp.c 1.1 rgbecker  Initial revision
	rl_addons/pyRXP/rxp/rxp.c 1.1.1.1 rgbecker  Import of rxp-1.2.5
##### 2002/03/21 #####
	utils/headerlines.py 1.1 rgbecker  Initial version
	lib/utils.py 1.26 rgbecker  Added DebugMemo stuff
##### 2002/03/18 #####
	lib/utils.py 1.25 rgbecker  Small fp_str fixes
	lib/_rl_accel.c 1.27 rgbecker  Small fp_str fixes
	platypus/tables.py 1.56 rgbecker  Fix up styles vs data dimensions mismatching
##### 2002/03/15 #####
	platypus/tables.py 1.55 rgbecker  Fix AttributeError; thanks David Horkoff <dhorkoff@genusrmt.ca>
	lib/_rl_accel.c 1.26 rgbecker  Maybe fix for Jerome Alet's fp_str bug
	platypus/tables.py 1.54 rgbecker  Added emptyTableAction
	rl_config.py 1.30 rgbecker  Added emptyTableAction
	platypus/__init__.py 1.13 rgbecker  Add PageBegin to pkg exports
##### 2002/03/14 #####
	graphics/charts/axes.py 1.52 rgbecker  Attempt to fix overspecification problems
##### 2002/03/12 #####
	utils/daily.py 1.53 rgbecker  rl_config._verbose ==> verbose
	tools/pythonpoint/pythonpoint.py 1.11 rgbecker  rl_config._verbose ==> verbose
	tools/docco/graphdocpy.py 1.14 rgbecker  rl_config._verbose ==> verbose
	platypus/doctemplate.py 1.52 rgbecker  rl_config._verbose ==> verbose
	pdfbase/pdfutils.py 1.29 rgbecker  rl_config._verbose ==> verbose
	rl_config.py 1.29 rgbecker  rl_config._verbose ==> verbose
	graphics/shapes.py 1.71 rgbecker  rl_config._verbose ==> verbose
	rl_addons/renderPM/test_renderPM.py 1.4 rgbecker  Add new test
	rl_addons/renderPM/setup.py 1.7 rgbecker  Add aix4
	pdfgen/pdfimages.py 1.14 rgbecker  Remove excess whitespace
	lib/normalDate.py 1.4 rgbecker  Bauer's patch for 2.2 compat
##### 2002/03/10 #####
	tools/docco/inspect.py 1.3 rgbecker  Removed e acute as Dinu test doesn't like it
	tools/pythonpoint/stdparser.py 1.4 rgbecker  Removed 2.0 ism
##### 2002/03/05 #####
	README 1.9 rgbecker  Testing change only
##### 2002/03/02 #####
	tools/docco/graphdocpy.py 1.13 rgbecker  Slight clean up of option setting
	tools/docco/inspect.py 1.2 rgbecker  2.1 version
##### 2002/03/01 #####
	tools/docco/README 1.1 johnprecedo  Checked in a readme warning the users that some of these are obsolete.
	test/test_tools_pythonpoint.py 1.5 rgbecker  Fix up quoting for spaces in paths case on win32
#################################################################################
#################### RELEASE 1.12 at 17:00 GMT 28/February/2002 #################
#################################################################################
##### 2002/02/28 #####
	lib/units.py 1.4 rgbecker  Added picas/mm
##### 2002/02/27 #####
	tools/pythonpoint/pythonpoint.py 1.10 andy_robinson  Jerome Alet's patch checked in
	graphics/charts/lineplots.py 1.27 rgbecker  Fixed linelabels
	graphics/charts/linecharts.py 1.20 rgbecker  Fixed linelabels
##### 2002/02/21 #####
	lib/_rl_accel.c 1.25 rgbecker  SCAV's hp compiler fix
	pdfbase/pdfmetrics.py 1.51 rgbecker  MAC AFM files fix from Niki Spahiev
##### 2002/02/19 #####
	demos/rlzope/rlzope.py 1.2 andy_robinson  changed to comply with test suite - removed an  from a comment. Sorry, Jerome :-)
##### 2002/02/14 #####
	pdfbase/pdfdoc.py 1.55 rgbecker  Fix error messages for unsatisfied bookmarks
##### 2002/02/13 #####
	docs/userguide/ch1_intro.py 1.5 andy_robinson  Expanded acknowledgements
	README 1.8 andy_robinson  Expanded acknowledgements
	lib/normalDate.py 1.3 aaron_watters  added acknowledgement of authorship and Jeff's request.
	tools/pythonpoint/styles/__init__.py 1.2 rgbecker  Ensure non-zero length
	tools/pythonpoint/__init__.py 1.2 rgbecker  Ensure non-zero length
	tools/py2pdf/__init__.py 1.2 rgbecker  Ensure non-zero length
	tools/docco/__init__.py 1.2 rgbecker  Ensure non-zero length
	tools/__init__.py 1.2 rgbecker  Ensure non-zero length
	demos/rlzope/rlzope.py 1.1 rgbecker  Thanks Jerome Alet for this demo
	demos/rlzope/readme.txt 1.1 rgbecker  Thanks Jerome Alet for this demo
	platypus/doctemplate.py 1.51 rgbecker  Allow non-save builds
##### 2002/02/05 #####
	tools/docco/graphdocpy.py 1.12 rgbecker  Remove explicit dependence on renderPM
##### 2002/02/04 #####
	graphics/charts/linecharts.py 1.19 rgbecker  Fixed grid bugs found by <picodello@yahoo.it>
	graphics/charts/barcharts.py 1.60 rgbecker  Fixed grid bugs found by <picodello@yahoo.it>
	graphics/charts/axes.py 1.51 rgbecker  Fixed grid bugs found by <picodello@yahoo.it>
##### 2002/02/03 #####
	test/test_platypus_general.py 1.6 andy_robinson  Added callbacks throughout
	test/test_pdfgen_general.py 1.10 andy_robinson  Added callbacks throughout
	test/test_pdfgen_callback.py 1.1 andy_robinson  Added callbacks throughout
	platypus/doctemplate.py 1.50 andy_robinson  Added callbacks throughout
	pdfgen/canvas.py 1.96 andy_robinson  Added callbacks throughout
	tools/pythonpoint/pythonpoint.py 1.9 andy_robinson  The test suite is now totally silent
	test/test_tools_pythonpoint.py 1.4 andy_robinson  The test suite is now totally silent
	docs/genAll.py 1.6 andy_robinson  The test suite is now totally silent
##### 2002/01/28 #####
	graphics/widgetbase.py 1.29 rgbecker  Allow for group indeces
	platypus/tables.py 1.53 rgbecker  Seems userguide likes to play with split directly
##### 2002/01/24 #####
	platypus/tables.py 1.52 rgbecker  Copy alignments accross split (thanks Rdiger Mhl <ruediger.maehl@web.de>
##### 2002/01/21 #####
	utils/cvslh.py 1.6 rgbecker  Minor formatting change
##### 2002/01/19 #####
	utils/cvslh.py 1.5 rgbecker  New enhanced cvslh
	utils/cvs_status.py 1.3 rgbecker  New enhanced cvslh
	utils/README 1.13 rgbecker  New enhanced cvslh
##### 2002/01/18 #####
	platypus/tables.py 1.51 rgbecker  Propagate font properties to Flowable cells
	platypus/flowables.py 1.28 rgbecker  Added _drawOn method
	platypus/tableofcontents.py 1.5 rgbecker  Propogate the canvas
	platypus/tables.py 1.50 rgbecker  Ensure canv is set on sub flowables
	platypus/flowables.py 1.27 rgbecker  Introduce wrapOn & splitOn
	platypus/flowables.py 1.26 rgbecker  Added api instructions
##### 2002/01/17 #####
	lib/utils.py 1.24 rgbecker  Added path functionality to Andy's recursive import thing
	platypus/tables.py 1.49 rgbecker  Don't need the canvas state save
	platypus/tables.py 1.48 rgbecker  Destructive rendering bug fixed
	platypus/flowables.py 1.25 rgbecker  Attempted fix of split before wrap
	graphics/charts/legends.py 1.18 rgbecker  Andy Amply saw this ascent scale bug
	graphics/charts/barcharts.py 1.59 rgbecker  Fixed chart strokeWidth buglet, allow for no background
	graphics/shapes.py 1.70 rgbecker  Skip None when adding/inserting nodes. Eases optimisation
	pdfbase/pdfmetrics.py 1.50 rgbecker  Improved AFM error handling
##### 2001/12/27 #####
	lib/colors.py 1.30 rgbecker  Added knockout CMYK support
##### 2001/12/24 #####
	README 1.7 andy_robinson  Made the text version-independent :-)
##### 2001/12/20 #####
	docs/userguide/genuserguide.py 1.10 rgbecker  Added --outdir=option
	tools/pythonpoint/pythonpoint.py 1.8 rgbecker  Added --outdir=option
##### 2001/12/19 #####
	platypus/flowables.py 1.24 rgbecker  Allow for various Image kinds
	pdfgen/canvas.py 1.95 aaron_watters  stack state optimization
##### 2001/12/18 #####
	graphics/charts/barcharts.py 1.58 rgbecker  Set rangeRound to standard default behaviour
	graphics/charts/axes.py 1.50 rgbecker  Set rangeRound to standard default behaviour
##### 2001/12/17 #####
	graphics/charts/axes.py 1.49 rgbecker  allow for range rounding
	lib/formatters.py 1.3 rgbecker  Allow for trailing junk removal
#################################################################################
#################### RELEASE 1.11 at 14:00 GMT 12/December/2001 #################
#################################################################################
##### 2001/12/12 #####
	utils/daily.py 1.52 rgbecker
		 Rely on existing files in the HTML area
##### 2001/12/11 #####
	docs/userguide/genuserguide.py 1.9 rgbecker
		 Fix misspelling
	docs/userguide/genuserguide.py 1.8 rgbecker
		 Added default page size to run
##### 2001/12/10 #####
	lib/PyFontify.py 1.2 dinu_gherman
		 Moved 2.0 string method to using 1.5.2-style string module.
	graphics/widgets/flags.py 1.18 dinu_gherman
		 Added new flag.
##### 2001/12/08 #####
	lib/pagesizes.py 1.8 andy_robinson
		 portrait/landscape functions fixed
##### 2001/12/07 #####
	utils/daily.py 1.51 rgbecker
		 After debugging on zelaza
	docs/genAll.py 1.5 rgbecker
		 better error reporting
	docs/genAll.py 1.4 rgbecker
		 Added missing sys import
	utils/daily.py 1.50 rgbecker
		 Move to fewer spawnings
	docs/genAll.py 1.3 rgbecker
		 Allow for use in daily.py
##### 2001/12/06 #####
	graphics/widgets/grids.py 1.19 rgbecker
		 Fix frange numerical problems
	graphics/charts/barcharts.py 1.57 rgbecker
		 Added in primitive gridding on Axes and bar charts
	graphics/charts/axes.py 1.48 rgbecker
		 Added in primitive gridding on Axes and bar charts
	graphics/charts/legends.py 1.17 rgbecker
		 Fixed legend to use ascent for vertical centring
	graphics/renderPS.py 1.14 rgbecker
		 made PS polyline fail same as PDF one
##### 2001/12/05 #####
	graphics/charts/textlabels.py 1.23 rgbecker
		 Changes needed for labeldecorator
	graphics/charts/barcharts.py 1.56 rgbecker
		 Changes needed for labeldecorator
##### 2001/12/04 #####
	graphics/charts/legends.py 1.16 rgbecker
		 Fixed up multiline legend text
##### 2001/11/30 #####
	tools/py2pdf/py2pdf.py 1.2 dinu_gherman
		 Fixed top-level function process() to work as expected. And added 'verbose' to list of allowed options.
##### 2001/11/29 #####
	test/test_tools_pythonpoint.py 1.3 rgbecker
		 allow for pythonpoint.exe
	docs/userguide/genuserguide.py 1.7 rgbecker
		 Generate directly to ../docs
	graphics/shapes.py 1.69 rgbecker
		 Added .ps Drawing.save support
##### 2001/11/28 #####
	platypus/tables.py 1.47 rgbecker
		 Fixed case when commands enetered as tuple
	pdfbase/pdfmetrics.py 1.49 rgbecker
		 Added Paul Winkler's extension case patch
	graphics/testshapes.py 1.15 rgbecker
		 Added Paul Winkler's font test
##### 2001/11/27 #####
	platypus/tableofcontents.py 1.4 andy_robinson
		 Missed a checkin
	test/test_platypus_xref.py 1.1 andy_robinson
		 whoops, stray print statement
##### 2001/11/26 #####
	pdfgen/canvas.py 1.94 andy_robinson
		 Better doc string for linkURL
	test/test_pdfgen_general.py 1.9 andy_robinson
		 Link borders now finished
	pdfgen/canvas.py 1.93 andy_robinson
		 Link borders now finished
	tools/docco/graphdocpy.py 1.11 andy_robinson
		 Removed 0 from multiBuild stuff prior to further changes; ensured test suite really does run silently when making manuals.
	tools/docco/docpy.py 1.3 andy_robinson
		 Removed 0 from multiBuild stuff prior to further changes; ensured test suite really does run silently when making manuals.
	test/test_platypus_toc.py 1.7 andy_robinson
		 Removed 0 from multiBuild stuff prior to further changes; ensured test suite really does run silently when making manuals.
	test/test_platypus_paragraphs.py 1.7 andy_robinson
		 Removed 0 from multiBuild stuff prior to further changes; ensured test suite really does run silently when making manuals.
	test/test_platypus_breaking.py 1.3 andy_robinson
		 Removed 0 from multiBuild stuff prior to further changes; ensured test suite really does run silently when making manuals.
	test/test_hello.py 1.1 andy_robinson
		 Removed 0 from multiBuild stuff prior to further changes; ensured test suite really does run silently when making manuals.
	test/test_docs_build.py 1.2 andy_robinson
		 Removed 0 from multiBuild stuff prior to further changes; ensured test suite really does run silently when making manuals.
	test/test_charts_textlabels.py 1.2 andy_robinson
		 Removed 0 from multiBuild stuff prior to further changes; ensured test suite really does run silently when making manuals.
	platypus/tableofcontents.py 1.3 andy_robinson
		 Removed 0 from multiBuild stuff prior to further changes; ensured test suite really does run silently when making manuals.
	platypus/doctemplate.py 1.49 andy_robinson
		 Removed 0 from multiBuild stuff prior to further changes; ensured test suite really does run silently when making manuals.
	lib/tocindex.py 1.8 andy_robinson
		 Removed 0 from multiBuild stuff prior to further changes; ensured test suite really does run silently when making manuals.
	lib/abag.py 1.5 andy_robinson
		 Removed 0 from multiBuild stuff prior to further changes; ensured test suite really does run silently when making manuals.
	test/test_pdfgen_general.py 1.8 andy_robinson
		 Hyperlink borders can be on or off
	pdfgen/canvas.py 1.92 andy_robinson
		 Hyperlink borders can be on or off
	tools/pythonpoint/stdparser.py 1.3 rgbecker
		 More changes to eliminate FS dependencies
	tools/pythonpoint/stdparser.py 1.2 rgbecker
		 Changes to support exe version
	tools/pythonpoint/pythonpoint.py 1.7 rgbecker
		 Changes to support exe version
##### 2001/11/24 #####
	graphics/charts/barcharts.py 1.55 andy_robinson
		 Got rid of += for 1.5.2 compatibility
##### 2001/11/23 #####
	platypus/tables.py 1.46 rgbecker
		 Added _opts to TableStyle for possible keepWithNext
##### 2001/11/22 #####
	tools/pythonpoint/demos/lj8100.jpg 1.1 dinu_gherman
		 Added mysteriously missing image file.
	tools/pythonpoint/demos/pythonpoint.xml 1.5 dinu_gherman
		 Changed presentation to new ReportLab vector logo and color.
	tools/pythonpoint/customshapes.py 1.3 dinu_gherman
		 Changed presentation to new ReportLab vector logo and color.
##### 2001/11/21 #####
	pdfbase/pdfmetrics.py 1.48 rgbecker
		 Changed to lower case glob for afm
	test/test_pdfgen_general.py 1.7 andy_robinson
		 Added linkURL method and test
	pdfgen/canvas.py 1.91 andy_robinson
		 Added linkURL method and test
##### 2001/11/19 #####
	pdfbase/pdfdoc.py 1.54 aaron_watters
		 support for getting form bounding boxes
	lib/colors.py 1.29 dinu_gherman
		 Added ReportLabLightBlue.
	platypus/doctemplate.py 1.48 rgbecker
		 Fixed up keepWithNext so it works
	test/test_platypus_breaking.py 1.2 rgbecker
		 Allowed for dubgging runs
	platypus/flowables.py 1.23 rgbecker
		 Add getKeepWithNext to Flowable
##### 2001/11/18 #####
	platypus/doctemplate.py 1.47 andy_robinson
		 Experiments with platypus
##### 2001/11/17 #####
	test/test_platypus_breaking.py 1.1 andy_robinson
		 KeepWithNext experiments
##### 2001/11/16 #####
	graphics/widgets/flags.py 1.17 rgbecker
		 Fix stray stroke line
##### 2001/11/13 #####
	tools/docco/rl_doc_utils.py 1.2 dinu_gherman
		 Removed platdemos.py (now platypus/figures.py), changed refs in rl_doc_utils.py.
	tools/docco/platdemos.py 1.3 dinu_gherman
		 Removed platdemos.py (now platypus/figures.py), changed refs in rl_doc_utils.py.
	pdfbase/pdfutils.py 1.28 aaron_watters
		 took python implementation of base85 encoding out of conditional
	platypus/figures.py 1.1 dinu_gherman
		 Initial checkin, copy of tools/docco/platdemos.py.
	rl_addons/renderPM/setup.py 1.6 rgbecker
		 Added linux2 following email from Niki Spahiev
	graphics/renderPM.py 1.16 rgbecker
		 Added useful method from Niki Spahiev
##### 2001/11/08 #####
	docs/userguide/ch1_intro.py 1.4 johnprecedo
		 Added a section ('Learning More About Python')
	docs/graphguide/ch1_intro.py 1.5 johnprecedo
		 Fixed a typo.
	docs/graphguide/ch1_intro.py 1.4 johnprecedo
		 Stripped out redundant stuff that was identical to the User Guide. Added some general description and introduction.
	docs/graphguide/ch2_concepts.py 1.3 johnprecedo
		 Small wording change.
	graphics/shapes.py 1.68 rgbecker
		 Moved PS_SEP to rlextra/graphics
##### 2001/11/07 #####
	graphics/shapes.py 1.67 rgbecker
		 Improved save(verbose=0) and .transform output in _repr
	graphics/shapes.py 1.66 rgbecker
		 Added .py save format for Drawings, seems to work
	docs/graphguide/ch1_intro.py 1.3 johnprecedo
		 Brought into line with USer Guide chapter 1 (various updates). Page 1 now calls it the 'Graphics Guide' rather than the 'User Guide'.
	docs/userguide/ch1_intro.py 1.3 johnprecedo
		 Modified installation iistructions - now refers to correct tests and Python 2.1 rather than 1.5.2. Mac install instructions updated with bits from EPSCharts Mac install docs.
	docs/images/fileExchange.gif 1.1 johnprecedo
		 New Mac images for the documentation.
	docs/images/Python_21_HINT.gif 1.1 johnprecedo
		 New Mac images for the documentation.
	docs/images/Python_21.gif 1.1 johnprecedo
		 New Mac images for the documentation.
	docs/images/Python_1.6a2_HINT.gif 1.2 johnprecedo
		 Outdated - removed ready for replacement by Python 2.1 versions.
	docs/images/Python_1.6a2.gif 1.2 johnprecedo
		 Outdated - removed ready for replacement by Python 2.1 versions.
	license.txt 1.3 rgbecker
		 BSD license: OWNER=ReportLab Inc. ORG=Company REGENTS=OFFICERS
#################################################################################
#################### RELEASE 1.10 at 14:00 GMT 06/November/2001 #################
#################################################################################
##### 2001/11/06 #####
	docs/userguide/ch2a_fonts.py 1.3 johnprecedo
		 Added more on creating custom encodings.
	docs/userguide/ch2a_fonts.py 1.2 johnprecedo
		 Andy's latest changes.
	docs/userguide/genuserguide.py 1.6 johnprecedo
		 Split section on fonts out into its own chapter. Added in some more stuff about Asian fonts. Some other small changes.
	docs/userguide/ch2a_fonts.py 1.1 johnprecedo
		 Split section on fonts out into its own chapter. Added in some more stuff about Asian fonts. Some other small changes.
	docs/userguide/ch2_graphics.py 1.5 johnprecedo
		 Split section on fonts out into its own chapter. Added in some more stuff about Asian fonts. Some other small changes.
	docs/images/jpn.gif 1.1 johnprecedo
		 Split section on fonts out into its own chapter. Added in some more stuff about Asian fonts. Some other small changes.
	test/test_multibyte_kor.py 1.3 andy_robinson
		 Full (?) set of widths added for Asian fonts by using Asian distiller on some huge Unicode test files
	test/test_multibyte_jpn.py 1.2 andy_robinson
		 Full (?) set of widths added for Asian fonts by using Asian distiller on some huge Unicode test files
	test/test_multibyte_cht.py 1.4 andy_robinson
		 Full (?) set of widths added for Asian fonts by using Asian distiller on some huge Unicode test files
	pdfbase/_cidfontdata.py 1.8 andy_robinson
		 Full (?) set of widths added for Asian fonts by using Asian distiller on some huge Unicode test files
##### 2001/11/05 #####
	platypus/paragraph.py 1.60 andy_robinson
		 Tidied up bullets further
##### 2001/11/04 #####
	tools/docco/platdemos.py 1.2 andy_robinson
		 Bullet text spacing and figure caption size made more flexible
	platypus/paragraph.py 1.59 andy_robinson
		 Bullet text spacing and figure caption size made more flexible
##### 2001/11/03 #####
	lib/utils.py 1.22 andy_robinson
		 Enhanced the error message from recursiveImport
	pdfgen/canvas.py 1.90 andy_robinson
		 canvas.hasForm now gives honest answers.
	pdfbase/pdfdoc.py 1.53 andy_robinson
		 canvas.hasForm now gives honest answers.
	test/utils.py 1.5 andy_robinson
		 Now lets you show or hide standard output from ScriptThatMakesFileTest
##### 2001/11/02 #####
	pdfbase/pdfmetrics.py 1.47 rgbecker
		 Fixed up font embedding
##### 2001/11/01 #####
	rl_config.py 1.28 johnprecedo
		 Now looks for acrobat 5 _before_ acrobat 4.
	lib/validators.py 1.20 rgbecker
		 Added a _isCallable + a couple of new vaildators
##### 2001/10/31 #####
	pdfgen/canvas.py 1.89 andy_robinson
		 Added hasForm method
	lib/utils.py 1.21 andy_robinson
		 added function recursiveImport('package1.package2.module') in r/lib/utils
##### 2001/10/30 #####
	graphics/shapes.py 1.65 rgbecker
		 Last gasp attempt to import renderPS_SEP
	lib/utils.py 1.20 rgbecker
		 Improved argv stuff
##### 2001/10/29 #####
	lib/PropertyList.dtd 1.2 rgbecker
		 Dinu says this was rubbish
	lib/validators.py 1.19 rgbecker
		 Fixed EitherOr
	lib/normalDate.py 1.2 rgbecker
		 Added getStdday/MonthNames methods and iso string date setting
	utils/daily.py 1.49 rgbecker
		 Fixed comments
	lib/corp2.py 1.5 dinu_gherman
		 Removed file.
##### 2001/10/28 #####
	test/test_docs_build.py 1.1 andy_robinson
		 New test generates all 4 manuals silently
	docs/userguide/genuserguide.py 1.5 andy_robinson
		 New test generates all 4 manuals silently
	docs/reference/genreference.py 1.3 andy_robinson
		 New test generates all 4 manuals silently
	docs/graphguide/gengraphguide.py 1.3 andy_robinson
		 New test generates all 4 manuals silently
	docs/genAll.py 1.2 andy_robinson
		 New test generates all 4 manuals silently
	docs/genAll.py 1.1 andy_robinson
		 Whoops, forgot it yesterday.
	utils/daily.py 1.48 rgbecker
		 Guard against genAll.py failure
	test/test_multibyte_kor.py 1.2 andy_robinson
		 Fixed font registry entries, tidied up stringWidth tests
	test/test_multibyte_cht.py 1.3 andy_robinson
		 Fixed font registry entries, tidied up stringWidth tests
	test/test_multibyte_chs.py 1.2 andy_robinson
		 Fixed font registry entries, tidied up stringWidth tests
	pdfbase/_cidfontdata.py 1.7 andy_robinson
		 Fixed font registry entries, tidied up stringWidth tests
	lib/codecharts.py 1.4 andy_robinson
		 Fixed font registry entries, tidied up stringWidth tests
##### 2001/10/27 #####
	README 1.6 andy_robinson
		 It was VERY out of date...
	tools/docco/yaml2pdf.py 1.1 andy_robinson
		 Moved manual building tools to tools/docco in order to (a) remove a clearly surplus directory, and (b) allow me to refer to the nice illustration widget from a packagized location.
	tools/docco/yaml.py 1.1 andy_robinson
		 Moved manual building tools to tools/docco in order to (a) remove a clearly surplus directory, and (b) allow me to refer to the nice illustration widget from a packagized location.
	tools/docco/t_parse.py 1.1 andy_robinson
		 Moved manual building tools to tools/docco in order to (a) remove a clearly surplus directory, and (b) allow me to refer to the nice illustration widget from a packagized location.
	tools/docco/stylesheet.py 1.1 andy_robinson
		 Moved manual building tools to tools/docco in order to (a) remove a clearly surplus directory, and (b) allow me to refer to the nice illustration widget from a packagized location.
	tools/docco/rltemplate.py 1.1 andy_robinson
		 Moved manual building tools to tools/docco in order to (a) remove a clearly surplus directory, and (b) allow me to refer to the nice illustration widget from a packagized location.
	tools/docco/rl_doc_utils.py 1.1 andy_robinson
		 Moved manual building tools to tools/docco in order to (a) remove a clearly surplus directory, and (b) allow me to refer to the nice illustration widget from a packagized location.
	tools/docco/platdemos.py 1.1 andy_robinson
		 Moved manual building tools to tools/docco in order to (a) remove a clearly surplus directory, and (b) allow me to refer to the nice illustration widget from a packagized location.
	tools/docco/examples.py 1.1 andy_robinson
		 Moved manual building tools to tools/docco in order to (a) remove a clearly surplus directory, and (b) allow me to refer to the nice illustration widget from a packagized location.
	tools/docco/codegrab.py 1.1 andy_robinson
		 Moved manual building tools to tools/docco in order to (a) remove a clearly surplus directory, and (b) allow me to refer to the nice illustration widget from a packagized location.
	test/test_multibyte_cht.py 1.2 andy_robinson
		 Moved manual building tools to tools/docco in order to (a) remove a clearly surplus directory, and (b) allow me to refer to the nice illustration widget from a packagized location.
	pdfbase/_cidfontdata.py 1.6 andy_robinson
		 Moved manual building tools to tools/docco in order to (a) remove a clearly surplus directory, and (b) allow me to refer to the nice illustration widget from a packagized location.
	docs/userguide/genuserguide.py 1.4 andy_robinson
		 Moved manual building tools to tools/docco in order to (a) remove a clearly surplus directory, and (b) allow me to refer to the nice illustration widget from a packagized location.
	docs/userguide/ch9_future.py 1.2 andy_robinson
		 Moved manual building tools to tools/docco in order to (a) remove a clearly surplus directory, and (b) allow me to refer to the nice illustration widget from a packagized location.
	docs/userguide/ch7_custom.py 1.2 andy_robinson
		 Moved manual building tools to tools/docco in order to (a) remove a clearly surplus directory, and (b) allow me to refer to the nice illustration widget from a packagized location.
	docs/userguide/ch6_tables.py 1.2 andy_robinson
		 Moved manual building tools to tools/docco in order to (a) remove a clearly surplus directory, and (b) allow me to refer to the nice illustration widget from a packagized location.
	docs/userguide/ch5_paragraphs.py 1.2 andy_robinson
		 Moved manual building tools to tools/docco in order to (a) remove a clearly surplus directory, and (b) allow me to refer to the nice illustration widget from a packagized location.
	docs/userguide/ch4_platypus_concepts.py 1.2 andy_robinson
		 Moved manual building tools to tools/docco in order to (a) remove a clearly surplus directory, and (b) allow me to refer to the nice illustration widget from a packagized location.
	docs/userguide/ch3_pdffeatures.py 1.2 andy_robinson
		 Moved manual building tools to tools/docco in order to (a) remove a clearly surplus directory, and (b) allow me to refer to the nice illustration widget from a packagized location.
	docs/userguide/ch2_graphics.py 1.4 andy_robinson
		 Moved manual building tools to tools/docco in order to (a) remove a clearly surplus directory, and (b) allow me to refer to the nice illustration widget from a packagized location.
	docs/userguide/ch1_intro.py 1.2 andy_robinson
		 Moved manual building tools to tools/docco in order to (a) remove a clearly surplus directory, and (b) allow me to refer to the nice illustration widget from a packagized location.
	docs/userguide/app_demos.py 1.2 andy_robinson
		 Moved manual building tools to tools/docco in order to (a) remove a clearly surplus directory, and (b) allow me to refer to the nice illustration widget from a packagized location.
	docs/reference/genreference.py 1.2 andy_robinson
		 Moved manual building tools to tools/docco in order to (a) remove a clearly surplus directory, and (b) allow me to refer to the nice illustration widget from a packagized location.
	docs/graphguide/gengraphguide.py 1.2 andy_robinson
		 Moved manual building tools to tools/docco in order to (a) remove a clearly surplus directory, and (b) allow me to refer to the nice illustration widget from a packagized location.
	docs/graphguide/ch5_charts.py 1.2 andy_robinson
		 Moved manual building tools to tools/docco in order to (a) remove a clearly surplus directory, and (b) allow me to refer to the nice illustration widget from a packagized location.
	docs/graphguide/ch4_widgets.py 1.2 andy_robinson
		 Moved manual building tools to tools/docco in order to (a) remove a clearly surplus directory, and (b) allow me to refer to the nice illustration widget from a packagized location.
	docs/graphguide/ch3_shapes.py 1.2 andy_robinson
		 Moved manual building tools to tools/docco in order to (a) remove a clearly surplus directory, and (b) allow me to refer to the nice illustration widget from a packagized location.
	docs/graphguide/ch2_concepts.py 1.2 andy_robinson
		 Moved manual building tools to tools/docco in order to (a) remove a clearly surplus directory, and (b) allow me to refer to the nice illustration widget from a packagized location.
	docs/graphguide/ch1_intro.py 1.2 andy_robinson
		 Moved manual building tools to tools/docco in order to (a) remove a clearly surplus directory, and (b) allow me to refer to the nice illustration widget from a packagized location.
##### 2001/10/26 #####
	lib/utils.py 1.19 rgbecker
		 Added ArgvDictValue and getArgvDict
	lib/_rl_accel.c 1.24 rgbecker
		 Clean up _sameFrag
	platypus/paragraph.py 1.58 rgbecker
		 Added accelerated _sameFrag
	lib/_rl_accel.c 1.23 rgbecker
		 Added accelerated _sameFrag
	docs/userguide/genuserguide.py 1.3 rgbecker
		 Added -timing option
	docs/userguide/genuserguide.py 1.2 rgbecker
		 Added simple profiling option
##### 2001/10/25 #####
	graphics/shapes.py 1.64 rgbecker
		 Fix unquoted attr name
	graphics/shapes.py 1.63 rgbecker
		 Added optional saveLogger callout
##### 2001/10/24 #####
	pdfbase/pdfutils.py 1.27 rgbecker
		 Fixed silly case of caching .a85 when it exists
##### 2001/10/23 #####
	graphics/charts/utils.py 1.4 rgbecker
		 Move to gridded labels in ticks
	graphics/charts/axes.py 1.47 rgbecker
		 Added better null range choice and fake avoidBoundFrac
	lib/validators.py 1.18 rgbecker
		 Added isNoneOrInt
##### 2001/10/22 #####
	lib/formatters.py 1.2 johnprecedo
		 Fixed formatting of negative numbers.
	test/test_multibyte_kor.py 1.1 andy_robinson
		 Asian fonts now all working in major encodings, and partly documented
	test/test_multibyte_jpn.py 1.1 andy_robinson
		 Asian fonts now all working in major encodings, and partly documented
	test/test_multibyte_cht.py 1.1 andy_robinson
		 Asian fonts now all working in major encodings, and partly documented
	test/test_multibyte_chs.py 1.1 andy_robinson
		 Asian fonts now all working in major encodings, and partly documented
	test/test_korean.py 1.5 andy_robinson
		 Asian fonts now all working in major encodings, and partly documented
	test/test_japanese.py 1.12 andy_robinson
		 Asian fonts now all working in major encodings, and partly documented
	test/test_chinese_t.py 1.2 andy_robinson
		 Asian fonts now all working in major encodings, and partly documented
	test/test_chinese_s.py 1.4 andy_robinson
		 Asian fonts now all working in major encodings, and partly documented
	pdfbase/pdfdoc.py 1.52 andy_robinson
		 Asian fonts now all working in major encodings, and partly documented
	pdfbase/_cidfontdata.py 1.5 andy_robinson
		 Asian fonts now all working in major encodings, and partly documented
	lib/codecharts.py 1.3 andy_robinson
		 Asian fonts now all working in major encodings, and partly documented
	docs/userguide/ch2_graphics.py 1.3 andy_robinson
		 Asian fonts now all working in major encodings, and partly documented
##### 2001/10/21 #####
	test/test_japanese.py 1.11 andy_robinson
		 Japanese test now does full EUC kuten table
	pdfbase/cidfonts.py 1.9 andy_robinson
		 Japanese test now does full EUC kuten table
	lib/codecharts.py 1.2 andy_robinson
		 Japanese test now does full EUC kuten table
	test/test_chinese_s.py 1.3 andy_robinson
		 Enhancements/fixes to Asian fonts; codecharts utility to facilitate displaying characters in fonts; enhancements to user guide to describe fonts; work-in-progress on pdfimages towards an XObject.
	pdfgen/pdfimages.py 1.13 andy_robinson
		 Enhancements/fixes to Asian fonts; codecharts utility to facilitate displaying characters in fonts; enhancements to user guide to describe fonts; work-in-progress on pdfimages towards an XObject.
	pdfbase/cidfonts.py 1.8 andy_robinson
		 Enhancements/fixes to Asian fonts; codecharts utility to facilitate displaying characters in fonts; enhancements to user guide to describe fonts; work-in-progress on pdfimages towards an XObject.
	lib/codecharts.py 1.1 andy_robinson
		 Enhancements/fixes to Asian fonts; codecharts utility to facilitate displaying characters in fonts; enhancements to user guide to describe fonts; work-in-progress on pdfimages towards an XObject.
	docs/userguide/ch2_graphics.py 1.2 andy_robinson
		 Enhancements/fixes to Asian fonts; codecharts utility to facilitate displaying characters in fonts; enhancements to user guide to describe fonts; work-in-progress on pdfimages towards an XObject.
	docs/images/jpnchars.jpg 1.1 andy_robinson
		 Enhancements/fixes to Asian fonts; codecharts utility to facilitate displaying characters in fonts; enhancements to user guide to describe fonts; work-in-progress on pdfimages towards an XObject.
##### 2001/10/20 #####
	platypus/flowables.py 1.22 andy_robinson
		 stripped out tab characters
	test/test_chinese_t.py 1.1 andy_robinson
		 Added traditional chinese, expanded simplified chinese tests
	test/test_chinese_s.py 1.2 andy_robinson
		 Added traditional chinese, expanded simplified chinese tests
##### 2001/10/18 #####
	graphics/widgets/flags.py 1.16 dinu_gherman
		 Added flags.
	graphics/shapes.py 1.62 rgbecker
		 Changed Drawing.save to allow fileNamePattern to be a callable
	lib/corp2.py 1.4 dinu_gherman
		 Added shadows and a noRescale attribute/feature.
	tools/pythonpoint/pythonpoint.py 1.6 andy_robinson
		 Added optional tracing of whch slide is being processed
##### 2001/10/17 #####
	lib/rllogodata.py 1.2 dinu_gherman
		 Fixed path issues and merged rllogodata.py into corp2.py.
	lib/corp2.py 1.3 dinu_gherman
		 Fixed path issues and merged rllogodata.py into corp2.py.
	lib/validators.py 1.17 rgbecker
		 Added isListOfNoneOrString
	lib/corp.py 1.8 rgbecker
		 Added some features requested by Dinu
##### 2001/10/16 #####
	lib/corp.py 1.7 rgbecker
		 Fixed bg scaling bug
##### 2001/10/15 #####
	lib/corp.py 1.6 rgbecker
		 Fixed stroke, added skewX, skewY, showPage etc
	graphics/shapes.py 1.61 rgbecker
		 Added dx, dy to definePath
	lib/corp.py 1.5 rgbecker
		 New logo stuff
##### 2001/10/12 #####
	tools/docco/graphdocpy.py 1.10 rgbecker
		 Use dirname(reportlab.__file__) not relative path
	graphics/charts/lineplots.py 1.26 rgbecker
		 Improvements in symbol handling (fixed slowdown)
	graphics/charts/linecharts.py 1.18 rgbecker
		 Improvements in symbol handling (fixed slowdown)
	graphics/widgets/markers.py 1.6 rgbecker
		 Slight optimisations
	graphics/charts/barcharts.py 1.54 johnprecedo
		 Bars now appear underneath axes.
	lib/rllogodata.py 1.1 dinu_gherman
		 Replaced Create files with canned data in rllogodata.py & added readmes.
	lib/corp2.py 1.2 dinu_gherman
		 Replaced Create files with canned data in rllogodata.py & added readmes.
	graphics/charts/textlabels.py 1.22 rgbecker
		 Improved _text2Path, added _text2PathDescription
	demos/pythonpoint/vertpython.gif 1.2 rgbecker
		 Removed to tools
	demos/pythonpoint/styles_modern.py 1.9 rgbecker
		 Removed to tools
	demos/pythonpoint/styles_horrible.py 1.8 rgbecker
		 Removed to tools
	demos/pythonpoint/stdparser.py 1.15 rgbecker
		 Removed to tools
	demos/pythonpoint/spectrum.png 1.2 rgbecker
		 Removed to tools
	demos/pythonpoint/pythonpoint.xml 1.13 rgbecker
		 Removed to tools
	demos/pythonpoint/pythonpoint.py 1.36 rgbecker
		 Removed to tools
	demos/pythonpoint/python.gif 1.2 rgbecker
		 Removed to tools
	demos/pythonpoint/outline.gif 1.2 rgbecker
		 Removed to tools
	demos/pythonpoint/monterey.xml 1.3 rgbecker
		 Removed to tools
	demos/pythonpoint/lj8100.jpg 1.2 rgbecker
		 Removed to tools
	demos/pythonpoint/leftlogo.gif 1.2 rgbecker
		 Removed to tools
	demos/pythonpoint/leftlogo.a85 1.4 rgbecker
		 Removed to tools
	demos/pythonpoint/customshapes.py 1.4 rgbecker
		 Removed to tools
	demos/pythonpoint/00readme.txt 1.3 rgbecker
		 Removed to tools
##### 2001/10/11 #####
	test/test_tools_pythonpoint.py 1.2 andy_robinson
		 Now points at correct instance of pythonpoint
	tools/pythonpoint/pythonpoint.py 1.5 aaron_watters
		 fixed bug in using private method canvas._doc.hasForm(...)
	graphics/widgets/flags.py 1.15 rgbecker
		 Cache _exploded widget
	graphics/charts/lineplots.py 1.25 rgbecker
		 Use UK flag in example
	graphics/charts/axes.py 1.46 rgbecker
		 Tested for callable textLabelFormat
	graphics/shapes.py 1.60 rgbecker
		 Finished shapes._explode
	graphics/charts/axes.py 1.45 rgbecker
		 Allow for the special case of only one date
	lib/corp2.py 1.1 dinu_gherman
		 Added new vector logo module corp2.py plus rllogo.cre8 folder it needs.
	lib/PropertyList.dtd 1.1 dinu_gherman
		 Added new vector logo module corp2.py plus rllogo.cre8 folder it needs.
	graphics/charts/utils.py 1.3 rgbecker
		 Allow for forceable grid override
##### 2001/10/10 #####
	lib/formatters.py 1.1 andy_robinson
		 Formatter objects added, and used for chart label formatting
	graphics/charts/lineplots.py 1.24 andy_robinson
		 Formatter objects added, and used for chart label formatting
	graphics/charts/linecharts.py 1.17 andy_robinson
		 Formatter objects added, and used for chart label formatting
	graphics/charts/barcharts.py 1.53 andy_robinson
		 Formatter objects added, and used for chart label formatting
	test/test_pdfgen_general.py 1.6 andy_robinson
		 Now allows external programs to hook in before saves
	graphics/charts/textlabels.py 1.21 rgbecker
		 added _text2Path & stroked Labels
	graphics/renderPM.py 1.15 rgbecker
		 split functionality into _setFont
	test/runAll.py 1.8 rgbecker
		 Fix empty string folder buglet
	platypus/doctemplate.py 1.46 rgbecker
		 Possible improvements to FrameBreak et al
##### 2001/10/09 #####
	graphics/renderPS.py 1.13 rgbecker
		 Removed spurious attribute setting
	graphics/shapes.py 1.59 rgbecker
		 Allow closePath singleton in definePath
	graphics/shapes.py 1.58 rgbecker
		 renamed to definePath
	graphics/shapes.py 1.57 rgbecker
		 Added symbolic definePath function
##### 2001/10/08 #####
	pdfbase/pdfdoc.py 1.51 aaron_watters
		 allow forms to be forward references (to allow table of contents, eg).
##### 2001/10/06 #####
	test/test_japanese.py 1.10 andy_robinson
		 Now run cleanly in absence of CMAP files; chinese simpified added
	test/test_chinese_s.py 1.1 andy_robinson
		 Now run cleanly in absence of CMAP files; chinese simpified added
	graphics/renderPM.py 1.14 rgbecker
		 Ensure fontName in traceback for bad fonts etc
##### 2001/10/05 #####
	pdfgen/canvas.py 1.88 rgbecker
		 Take account of density for CMYKColors
	lib/colors.py 1.28 rgbecker
		 Remove rgb spotName+density silliness and fix special case denist interpolation
	pdfbase/pdfdoc.py 1.50 aaron_watters
		 /Size in Trailer off by one.
	lib/colors.py 1.27 rgbecker
		 Forgot _CMYK_white again
	lib/colors.py 1.26 rgbecker
		 Forgot _CMYK_white
	lib/colors.py 1.25 rgbecker
		 Improved interpolation added cmykDistance
	graphics/widgets/flags.py 1.14 rgbecker
		 Converted to standard form preparatory to doing more
	utils/daily.py 1.47 rgbecker
		 rm *.pdf
	utils/daily.py 1.46 rgbecker
		 python_stuff lib path no longer required
	utils/daily.py 1.45 rgbecker
		 Moved to new style after creation of reportlab/docs
	docs/00readme.txt 1.2 rgbecker
		 Added stuff on how to generate all manuals
	docs/userguide/testfile.txt 1.1 rgbecker
		 Moved from original project docs, history lost
	docs/userguide/genuserguide.py 1.1 rgbecker
		 Moved from original project docs, history lost
	docs/userguide/ch9_future.py 1.1 rgbecker
		 Moved from original project docs, history lost
	docs/userguide/ch7_custom.py 1.1 rgbecker
		 Moved from original project docs, history lost
	docs/userguide/ch6_tables.py 1.1 rgbecker
		 Moved from original project docs, history lost
	docs/userguide/ch5_paragraphs.py 1.1 rgbecker
		 Moved from original project docs, history lost
	docs/userguide/ch4_platypus_concepts.py 1.1 rgbecker
		 Moved from original project docs, history lost
	docs/userguide/ch3_pdffeatures.py 1.1 rgbecker
		 Moved from original project docs, history lost
	docs/userguide/ch2_graphics.py 1.1 rgbecker
		 Moved from original project docs, history lost
	docs/userguide/ch1_intro.py 1.1 rgbecker
		 Moved from original project docs, history lost
	docs/userguide/app_demos.py 1.1 rgbecker
		 Moved from original project docs, history lost
	docs/reference/reference.yml 1.1 rgbecker
		 Moved from original project docs, history lost
	docs/reference/genreference.py 1.1 rgbecker
		 Moved from original project docs, history lost
	docs/reference/build.bat 1.1 rgbecker
		 Moved from original project docs, history lost
	docs/images/replogo.gif 1.1 rgbecker
		 Moved from original project docs, history lost
	docs/images/replogo.a85 1.1 rgbecker
		 Moved from original project docs, history lost
	docs/images/lj8100.jpg 1.1 rgbecker
		 Moved from original project docs, history lost
	docs/images/Python_1.6a2_HINT.gif 1.1 rgbecker
		 Moved from original project docs, history lost
	docs/images/Python_1.6a2.gif 1.1 rgbecker
		 Moved from original project docs, history lost
	docs/images/Edit_Prefs.gif 1.1 rgbecker
		 Moved from original project docs, history lost
	docs/graphguide/gengraphguide.py 1.1 rgbecker
		 Moved from original project docs, history lost
	docs/graphguide/ch5_charts.py 1.1 rgbecker
		 Moved from original project docs, history lost
	docs/graphguide/ch4_widgets.py 1.1 rgbecker
		 Moved from original project docs, history lost
	docs/graphguide/ch3_shapes.py 1.1 rgbecker
		 Moved from original project docs, history lost
	docs/graphguide/ch2_concepts.py 1.1 rgbecker
		 Moved from original project docs, history lost
	docs/graphguide/ch1_intro.py 1.1 rgbecker
		 Moved from original project docs, history lost
	graphics/charts/barcharts.py 1.52 rgbecker
		 Fixed problem with stacked tuple data
	utils/daily.py 1.44 rgbecker
		 Added isdir check on reportlab.docs makedir
	test/LeERC___.AFM 1.2 andy_robinson
		 removed old file
	test/test_platypus_general.py 1.5 andy_robinson
		 Automatic loading fonts; font rearrangement
	test/test_pdfbase_fontembed.py 1.6 andy_robinson
		 Automatic loading fonts; font rearrangement
	test/LeERC___.PFB 1.2 andy_robinson
		 Automatic loading fonts; font rearrangement
	rl_config.py 1.27 andy_robinson
		 Automatic loading fonts; font rearrangement
	fonts/LeERC___.PFB 1.1 andy_robinson
		 Automatic loading fonts; font rearrangement
	fonts/LeERC___.AFM 1.1 andy_robinson
		 Automatic loading fonts; font rearrangement
	fonts/00readme.txt 1.1 andy_robinson
		 Automatic loading fonts; font rearrangement
	tools/docco/graphdocpy.py 1.9 andy_robinson
		 Auto-load fonts from AFM files where possible
	rl_config.py 1.26 andy_robinson
		 Auto-load fonts from AFM files where possible
	pdfbase/pdfmetrics.py 1.46 andy_robinson
		 Auto-load fonts from AFM files where possible
##### 2001/10/04 #####
	tools/docco/graphdocpy.py 1.8 andy_robinson
		 Test suite extensions
	test/utils.py 1.4 andy_robinson
		 Test suite extensions
	test/test_extra.py 1.3 andy_robinson
		 Test suite extensions
	docs/00readme.txt 1.1 andy_robinson
		 Test suite extensions
	tools/docco/graphdocpy.py 1.7 rgbecker
		 Added unittest simple AppTest
	graphics/charts/barcharts.py 1.51 rgbecker
		 Forgot to copy NA_Label instance
	test/test_japanese.py 1.9 andy_robinson
		 Enhanced the asin font support
	pdfbase/cidfonts.py 1.7 andy_robinson
		 Enhanced the asin font support
	graphics/charts/barcharts.py 1.50 rgbecker
		 Shouldn't have this in the base class I think
	graphics/charts/textlabels.py 1.20 rgbecker
		 Syncing with on-site changes and adding NA_Label
	graphics/charts/barcharts.py 1.49 rgbecker
		 Syncing with on-site changes and adding NA_Label
	graphics/charts/axes.py 1.44 rgbecker
		 Syncing with on-site changes and adding NA_Label
##### 2001/10/03 #####
	graphics/widgets/flags.py 1.13 rgbecker
		 Fixed china again
	graphics/charts/barcharts.py 1.48 johnprecedo
		 Andy's latest changes while on site at Fidelity.
	rl_config.py 1.25 johnprecedo
		 Added T1 search path for Acrobat 5.0
	graphics/widgets/flags.py 1.12 rgbecker
		 Added Japan, China, Russia
	graphics/charts/axes.py 1.43 rgbecker
		 Fix forceZero failure
	graphics/widgets/markers.py 1.5 rgbecker
		 Fix _Flag psotfix for makeMarker
	graphics/charts/lineplots.py 1.23 rgbecker
		 Move to new markers
	tools/docco/graphdocpy.py 1.6 rgbecker
		 Allow for Abstract Class errors
	graphics/charts/barcharts.py 1.47 rgbecker
		 Added _getMinMAx, fixed sign of small values
	graphics/charts/axes.py 1.42 rgbecker
		 Added forceZero option to ValueAxis
	graphics/charts/linecharts.py 1.16 rgbecker
		 Fix refs to old symbols
##### 2001/10/02 #####
	graphics/widgets/markers.py 1.4 rgbecker
		 Made linecharts use the new markers/flags some of which were improved
	graphics/widgets/flags.py 1.11 rgbecker
		 Made linecharts use the new markers/flags some of which were improved
	graphics/charts/linecharts.py 1.15 rgbecker
		 Made linecharts use the new markers/flags some of which were improved
	graphics/charts/barcharts.py 1.46 rgbecker
		 Added a stacked sample
	graphics/charts/barcharts.py 1.45 rgbecker
		 Added support for 'stacked' bars
	graphics/charts/axes.py 1.41 rgbecker
		 Added None handling & ValueAxis._adjustAxisTicks
##### 2001/10/01 #####
	platypus/doctemplate.py 1.45 rgbecker
		 Fixed slight buglet in checkpagesize
	platypus/doctemplate.py 1.44 rgbecker
		 Added template pagesize args in SimpleDoc.__init__ as suggested by D Horkoff
##### 2001/09/29 #####
	test/test_japanese.py 1.8 andy_robinson
		 Oops, left in a print statement last time
	pdfbase/cidfonts.py 1.6 andy_robinson
		 Initial (inaccurate metrics?) support for chinese simplified and traditional
	pdfbase/_cidfontdata.py 1.4 andy_robinson
		 Initial (inaccurate metrics?) support for chinese simplified and traditional
##### 2001/09/28 #####
	test/test_japanese.py 1.7 andy_robinson
		 Mostly correct string widths implemented for Asian fonts.
	pdfbase/cidfonts.py 1.5 andy_robinson
		 Mostly correct string widths implemented for Asian fonts.
	graphics/charts/textlabels.py 1.19 rgbecker
		 Added maxWidth and auto splitting
	graphics/shapes.py 1.56 rgbecker
		 Fixed non-string err test
	graphics/shapes.py 1.55 rgbecker
		 Remove unwanted known extensions
	rl_config.py 1.24 rgbecker
		 Added showBoundary
	graphics/renderPS.py 1.12 rgbecker
		 Used showBoundary every wherei, moved to Drawings as Groups
	graphics/renderPM.py 1.13 rgbecker
		 Used showBoundary every wherei, moved to Drawings as Groups
	graphics/renderPDF.py 1.14 rgbecker
		 Used showBoundary every wherei, moved to Drawings as Groups
	graphics/shapes.py 1.54 rgbecker
		 Used showBoundary every where
##### 2001/09/27 #####
	test/test_extra.py 1.2 andy_robinson
		 Robustified path and line handling
	graphics/charts/axes.py 1.40 rgbecker
		 Fixed nasty bug relating to configure errors
	graphics/charts/barcharts.py 1.44 rgbecker
		 Added various minor tweaks to make useAbsolute easier
##### 2001/09/26 #####
	tools/docco/graphdocpy.py 1.5 andy_robinson
		 Graphdocpy runs again; _nodoc class attribute allows skipping of abstract classes. Shapes have hAlign and vAlign to work within Platypus
	graphics/widgets/signsandsymbols.py 1.19 andy_robinson
		 Graphdocpy runs again; _nodoc class attribute allows skipping of abstract classes. Shapes have hAlign and vAlign to work within Platypus
	graphics/shapes.py 1.53 andy_robinson
		 Graphdocpy runs again; _nodoc class attribute allows skipping of abstract classes. Shapes have hAlign and vAlign to work within Platypus
	graphics/charts/axes.py 1.39 andy_robinson
		 Graphdocpy runs again; _nodoc class attribute allows skipping of abstract classes. Shapes have hAlign and vAlign to work within Platypus
	platypus/tables.py 1.45 andy_robinson
		 Tables can now inherit styles
	graphics/widgets/markers.py 1.3 rgbecker
		 Added all sorts of new markers
	graphics/charts/textlabels.py 1.18 rgbecker
		 Flip mode bar labels
	graphics/charts/barcharts.py 1.43 rgbecker
		 Flip mode bar labels
##### 2001/09/25 #####
	test/test_korean.py 1.4 andy_robinson
		 Further enhanced Japanese and Korean tests
	test/test_japanese.py 1.6 andy_robinson
		 Further enhanced Japanese and Korean tests
	test/test_korean.py 1.3 andy_robinson
		 Expanded allowed encodings, added more comprehensive tests for kuten tables in Korean and Japanese.
	test/test_japanese.py 1.5 andy_robinson
		 Expanded allowed encodings, added more comprehensive tests for kuten tables in Korean and Japanese.
	pdfbase/_cidfontdata.py 1.3 andy_robinson
		 Expanded allowed encodings, added more comprehensive tests for kuten tables in Korean and Japanese.
	lib/validators.py 1.16 rgbecker
		 Added isInstanceOf
	graphics/charts/textlabels.py 1.17 rgbecker
		 Working LabelOffset usage, still need variable styles
	graphics/charts/barcharts.py 1.42 rgbecker
		 Working LabelOffset usage, still need variable styles
	graphics/charts/axes.py 1.38 rgbecker
		 Working LabelOffset usage, still need variable styles
	lib/validators.py 1.15 rgbecker
		 isNoneOrNumberPair was stupid
	graphics/charts/textlabels.py 1.16 rgbecker
		 Changed to isNoneOrNumberPair
	lib/validators.py 1.14 rgbecker
		 Changed to isNoneOrNumberPair
	lib/validators.py 1.13 rgbecker
		 Added isNumberPair
	graphics/charts/textlabels.py 1.15 rgbecker
		 Changed BarChartLabel fixedEnd, Start
	graphics/charts/axes.py 1.37 rgbecker
		 Allow categoryAxis to be positioned even if not visible
	graphics/charts/markers.py 1.4 rgbecker
		 Fixed fillColor
	graphics/testshapes.py 1.14 rgbecker
		 Changes to the signsandsymbols stuff
	graphics/shapes.py 1.52 rgbecker
		 Fix typo
	graphics/widgets/signsandsymbols.py 1.18 rgbecker
		 Added dx, dy to flags, _Symbol
	graphics/widgets/flags.py 1.10 rgbecker
		 Added dx, dy to flags, _Symbol
	graphics/widgets/signsandsymbols.py 1.17 rgbecker
		 Changes related to symbols coming of age
	graphics/widgets/markers.py 1.2 rgbecker
		 Changes related to symbols coming of age
	graphics/widgets/flags.py 1.9 rgbecker
		 Changes related to symbols coming of age
	graphics/charts/linecharts.py 1.14 rgbecker
		 Changes related to symbols coming of age
	graphics/shapes.py 1.51 rgbecker
		 Allow for negative insert indeces
##### 2001/09/24 #####
	graphics/charts/lineplots.py 1.22 rgbecker
		 Added reverseDirection, reversePlotOrder and style attributes
	graphics/charts/barcharts.py 1.41 rgbecker
		 Added reverseDirection, reversePlotOrder and style attributes
	graphics/charts/axes.py 1.36 rgbecker
		 Added reverseDirection, reversePlotOrder and style attributes
	graphics/shapes.py 1.50 rgbecker
		 Fixed typos and normalisation
	graphics/shapes.py 1.49 rgbecker
		 Modified save filename calcs
	platypus/frames.py 1.15 aaron_watters
		 disable LayoutError error for production use (option to enable for debug)
##### 2001/09/23 #####
	graphics/shapes.py 1.48 kern
		 *** empty log message ***
	graphics/renderPS.py 1.11 kern
		 *** empty log message ***
	graphics/renderPM.py 1.12 kern
		 *** empty log message ***
	graphics/renderPDF.py 1.13 kern
		 *** empty log message ***
##### 2001/09/21 #####
	graphics/widgets/flags.py 1.8 rgbecker
		 Fixed demo
	graphics/widgets/flags.py 1.7 rgbecker
		 Changed the way flags worked
##### 2001/09/20 #####
	graphics/widgets/signsandsymbols.py 1.16 andy_robinson
		 SmileyFace did not run due to code referencing nonexitent properties
	graphics/widgets/signsandsymbols.py 1.15 rgbecker
		 Changes for new Marker Class
	graphics/widgets/markers.py 1.1 rgbecker
		 Changes for new Marker Class
	graphics/testshapes.py 1.13 rgbecker
		 Changes for new Marker Class
	graphics/charts/markers.py 1.3 rgbecker
		 Changes for new Marker Class
	graphics/charts/lineplots.py 1.21 rgbecker
		 Changes for new Marker Class
	platypus/doctemplate.py 1.43 aaron_watters
		 platypus bug where platypus would mess up the pagesize of the canvas fixed.
	lib/colors.py 1.24 rgbecker
		 Improved hash, cmp funcs
##### 2001/09/19 #####
	lib/colors.py 1.23 andy_robinson
		 Lists spotName before desnity in __repr__ as requested by customer
	test/test_korean.py 1.2 andy_robinson
		 Test suite fixups
	test/test_japanese.py 1.4 andy_robinson
		 Test suite fixups
	pdfbase/pdfutils.py 1.26 andy_robinson
		 Test suite fixups
	pdfbase/cidfonts.py 1.4 andy_robinson
		 Test suite fixups
	test/test_platypus_general.py 1.4 andy_robinson
		 Fixed alignment of tables
	platypus/tables.py 1.44 andy_robinson
		 Fixed alignment of tables
##### 2001/09/18 #####
	graphics/shapes.py 1.47 rgbecker
		 Fixed up defaults
	graphics/charts/axes.py 1.35 dinu_gherman
		 Added missing checks for 'visibleTicks' in category axes.
##### 2001/09/17 #####
	graphics/widgets/grids.py 1.18 rgbecker
		 Added cylinderMode to shaded rectangle
	graphics/charts/barcharts.py 1.40 rgbecker
		 Added cylinderMode to shaded rectangle
	graphics/charts/axes.py 1.34 rgbecker
		 Working dailyFreq NormalDateXVAlueAxis
##### 2001/09/14 #####
	graphics/charts/lineplots.py 1.20 rgbecker
		 Added firstOnTop option for reversing Plot Order
	graphics/charts/barcharts.py 1.39 rgbecker
		 Fixed that bug
	test/test_extra.py 1.1 dinu_gherman
		 Initial checkin.
	graphics/charts/barcharts.py 1.38 rgbecker
		 Forgot the map
	graphics/charts/barcharts.py 1.37 rgbecker
		 More efficient again
##### 2001/09/13 #####
	rl_config.py 1.23 aaron_watters
		 make tables one point off not bomb mysteriously in paid production installations.
	platypus/tables.py 1.43 aaron_watters
		 make tables one point off not bomb mysteriously in paid production installations.
	graphics/charts/barcharts.py 1.36 andy_robinson
		 Removed a stray debugging print statement
##### 2001/09/12 #####
	graphics/charts/barcharts.py 1.35 rgbecker
		 removed a print I forgot
	graphics/charts/barcharts.py 1.34 rgbecker
		 Fixed stupid axis bug again, my fault
	graphics/charts/textlabels.py 1.14 rgbecker
		 Improved barchart labelling, added BarChartLabel
	graphics/charts/barcharts.py 1.33 rgbecker
		 Improved barchart labelling, added BarChartLabel
##### 2001/09/11 #####
	graphics/charts/textlabels.py 1.13 rgbecker
		 Slight change to John's fix to preserve original value
	graphics/charts/textlabels.py 1.12 rgbecker
		 Improved labels and barchart somewhat
	graphics/charts/barcharts.py 1.32 rgbecker
		 Improved labels and barchart somewhat
	graphics/charts/textlabels.py 1.11 johnprecedo
		 Draw method no longer barfs on 'None'
	lib/validators.py 1.12 rgbecker
		 Allowd SequenceOf to have NoneOK arg
	graphics/charts/legends.py 1.15 rgbecker
		 Allowed for None as legend text
	lib/validators.py 1.11 rgbecker
		 Added NoneOr and various specialized validators
##### 2001/09/10 #####
	graphics/shapes.py 1.46 rgbecker
		 added outDir kw arg to Drawing.save
	graphics/charts/axes.py 1.33 rgbecker
		 Moved from fidlineplot
	graphics/shapes.py 1.45 rgbecker
		 Fixed up save to use poutDir wrt sys.argv[0]
	rl_config.py 1.22 andy_robinson
		 CMap Search Path now in config
	pdfbase/cidfonts.py 1.3 andy_robinson
		 CMap Search Path now in config
	test/test_korean.py 1.1 andy_robinson
		 Added a trivial korean test, prior to testing on another machine
	pdfbase/cidfonts.py 1.2 andy_robinson
		 Added a trivial korean test, prior to testing on another machine
	pdfbase/_cidfontdata.py 1.2 andy_robinson
		 Added a trivial korean test, prior to testing on another machine
	test/test_japanese.py 1.3 andy_robinson
		 Added some rudimentary width tests to test_japanese.py
##### 2001/09/07 #####
	tools/pythonpoint/pythonpoint.py 1.4 rgbecker
		 Force use of rl_config.pageCompression & remove spurious blanks
##### 2001/09/06 #####
	graphics/charts/lineplots.py 1.19 rgbecker
		 removed some unused stuff (bar related?)
	tools/docco/inspect.py 1.1 dinu_gherman
		 Completely moved documentation tools from lib/ into tools/docco/.
	tools/docco/graphdocpy.py 1.4 dinu_gherman
		 Completely moved documentation tools from lib/ into tools/docco/.
	tools/docco/docpy.py 1.2 dinu_gherman
		 Completely moved documentation tools from lib/ into tools/docco/.
	lib/inspect.py 1.2 dinu_gherman
		 Completely moved documentation tools from lib/ into tools/docco/.
	lib/graphdocpy.py 1.18 dinu_gherman
		 Completely moved documentation tools from lib/ into tools/docco/.
	lib/docpy.py 1.7 dinu_gherman
		 Completely moved documentation tools from lib/ into tools/docco/.
##### 2001/09/05 #####
	test/test_pdfbase_pdfutils.py 1.4 rgbecker
		 Added some extra length type tests
	lib/_rl_accel.c 1.22 rgbecker
		 Loop unrolling, as suggested by Paul Winkler <slinkp@bestweb.net>
	lib/_rl_accel.c 1.21 rgbecker
		 Fixed last block bug
##### 2001/09/04 #####
	graphics/shapes.py 1.44 johnprecedo
		 Changed default machanism for plotmode in Drawing.save.
	graphics/shapes.py 1.43 johnprecedo
		 Fixed getattr bug (name formatting) in save method of Drawing
	graphics/charts/barcharts.py 1.31 rgbecker
		 Bad programming by Robin Fixed :(
	test/test_japanese.py 1.2 andy_robinson
		 test_japanese now works if you don't have Japanese Font Pack
	test/test_japanese.py 1.1 andy_robinson
		 Japanese Fonts checked in
	pdfbase/cidfonts.py 1.1 andy_robinson
		 Japanese Fonts checked in
	pdfbase/_cidfontdata.py 1.1 andy_robinson
		 Japanese Fonts checked in
##### 2001/09/03 #####
	pdfbase/pdfmetrics.py 1.45 andy_robinson
		 Changes to facilitate CID (Asian) fonts.
	pdfbase/pdfdoc.py 1.49 andy_robinson
		 Changes to facilitate CID (Asian) fonts.
##### 2001/09/01 #####
	graphics/charts/axes.py 1.32 rgbecker
		 Fixed truncating divide bug
	graphics/charts/barcharts.py 1.30 rgbecker
		 Fixed _findMinMaxValues and usage
	graphics/shapes.py 1.42 rgbecker
		 Moved saved method from Andy's datacharts.py
##### 2001/08/31 #####
	graphics/shapes.py 1.41 rgbecker
		 Changes related to guiedit's add widget stuff
##### 2001/08/30 #####
	graphics/charts/legends.py 1.14 johnprecedo
		 Fixed typo in line 122 - changed from dx->dy. Changing dx for a legend now no longer causes a y movement in the legend.
	rl_config.py 1.21 rgbecker
		 Allowed for resets
	rl_config.py 1.20 rgbecker
		 Fixed T1SearchPath Again
	rl_config.py 1.19 rgbecker
		 Fixed up a better T1SearchPath
##### 2001/08/29 #####
	platypus/tables.py 1.42 rgbecker
		 Added default maxLen value for identify
	tools/pythonpoint/customshapes.py 1.2 dinu_gherman
		 Fixed typo and position of string below custom shape.
	tools/pythonpoint/styles/modern.py 1.2 dinu_gherman
		 Fixed Bullet in modern style, fixed off page frame, tidied-up a bit.
	tools/pythonpoint/demos/pythonpoint.xml 1.4 dinu_gherman
		 Fixed Bullet in modern style, fixed off page frame, tidied-up a bit.
	tools/pythonpoint/demos/examples.py 1.2 dinu_gherman
		 Fixed Bullet in modern style, fixed off page frame, tidied-up a bit.
##### 2001/08/28 #####
	rl_config.py 1.18 rgbecker
		 naive users rl_config.
##### 2001/08/26 #####
	tools/docco/graphdocpy.py 1.3 andy_robinson
		 Fixed test suite so it works with barcode extensions present; fixed outdated import in graphdocpy.
	test/test_pyfiles.py 1.7 andy_robinson
		 Fixed test suite so it works with barcode extensions present; fixed outdated import in graphdocpy.
##### 2001/08/24 #####
	graphics/widgets/signsandsymbols.py 1.14 rgbecker
		 Fixed some truncating division problems, removed excess demo methods
##### 2001/08/23 #####
	graphics/charts/barcharts.py 1.29 johnprecedo
		 Added strokeWidth attribute for bars.
	platypus/paragraph.py 1.57 rgbecker
		 Removed Aaron's rather thoughtless hacks
	platypus/paraparser.py 1.45 rgbecker
		 Removed Aaron's rather thoughtless hacks
	lib/fonts.py 1.12 rgbecker
		 Allow PS names in tt2ps call
	pdfbase/pdfmetrics.py 1.44 rgbecker
		 Fix whitespace bug
##### 2001/08/22 #####
	graphics/charts/legends.py 1.13 johnprecedo
		 Swatches now have optional strokeWidth attribute.
	platypus/paraparser.py 1.44 aaron_watters
		 fix to helvetica oblique anomaly
	platypus/paragraph.py 1.56 aaron_watters
		 fix to helvetica oblique anomaly
	lib/fonts.py 1.11 aaron_watters
		 fix to helvetica oblique anomaly
	test/test_paragraphs.py 1.11 johnprecedo
		 Added a couple of font changes (after Dinu's problem with Helvetica/Helvetica-Oblique)
	lib/colors.py 1.22 johnprecedo
		 Added method to color for interpolating colors - changed shadedRect in grids to use this. Now can handle CMYK and PCMYK interpolation as well as just RGB.
	graphics/widgets/grids.py 1.17 johnprecedo
		 Added method to color for interpolating colors - changed shadedRect in grids to use this. Now can handle CMYK and PCMYK interpolation as well as just RGB.
	platypus/paraparser.py 1.43 aaron_watters
		 eliminated requirement for _rl_accel
	pdfbase/pdfmetrics.py 1.43 aaron_watters
		 eliminated requirement for _rl_accel
	lib/utils.py 1.18 aaron_watters
		 eliminated requirement for _rl_accel
	lib/graphdocpy.py 1.17 rgbecker
		 fixed import
	pdfbase/pdfdoc.py 1.48 aaron_watters
		 "the 14 std fonts" should always be "available"
	rl_config.py 1.17 rgbecker
		 Allow RL private T1 fontDir
##### 2001/08/20 #####
	graphics/widgets/grids.py 1.16 dinu_gherman
		 Added test code.
##### 2001/08/19 #####
	tools/pythonpoint/demos/pythonpoint.xml 1.3 dinu_gherman
		 Removed most tabs.
	tools/pythonpoint/demos/monterey.xml 1.3 dinu_gherman
		 Removed most tabs.
	tools/pythonpoint/pythonpoint.py 1.3 dinu_gherman
		 Used rl_config._verbose.
	tools/pythonpoint/pythonpoint.py 1.2 dinu_gherman
		 Removed referneces to PyPoint. Reintroduced module doc string contents.
	tools/pythonpoint/demos/pythonpoint.xml 1.2 dinu_gherman
		 Normalized XML files.
	tools/pythonpoint/demos/monterey.xml 1.2 dinu_gherman
		 Normalized XML files.
	graphics/charts/barcharts.py 1.28 dinu_gherman
		 Removed None from init data for BarChart.
##### 2001/08/18 #####
	tools/docco/graphdocpy.py 1.2 rgbecker
		 Better import error checking
	platypus/paraparser.py 1.42 rgbecker
		 Better import error checking
	pdfbase/pdfutils.py 1.25 rgbecker
		 Better import error checking
	pdfbase/pdfmetrics.py 1.42 rgbecker
		 Better import error checking
	lib/xmllib.py 1.7 rgbecker
		 Better import error checking
	lib/utils.py 1.17 rgbecker
		 Better import error checking
	lib/graphdocpy.py 1.16 rgbecker
		 Better import error checking
##### 2001/08/17 #####
	tools/py2pdf/vertpython.jpg 1.1 dinu_gherman
		 Added py2pdf tool.
	tools/py2pdf/py2pdf.py 1.1 dinu_gherman
		 Added py2pdf tool.
	tools/py2pdf/idle_print.py 1.1 dinu_gherman
		 Added py2pdf tool.
	tools/py2pdf/demo.py 1.1 dinu_gherman
		 Added py2pdf tool.
	tools/py2pdf/demo-config.txt 1.1 dinu_gherman
		 Added py2pdf tool.
	tools/py2pdf/__init__.py 1.1 dinu_gherman
		 Added py2pdf tool.
	tools/py2pdf/README 1.1 dinu_gherman
		 Added py2pdf tool.
	tools/pythonpoint/styles/standard.py 1.1 dinu_gherman
		 Added improved PythonPoint tool.
	tools/pythonpoint/styles/projection.py 1.1 dinu_gherman
		 Added improved PythonPoint tool.
	tools/pythonpoint/styles/modern.py 1.1 dinu_gherman
		 Added improved PythonPoint tool.
	tools/pythonpoint/styles/horrible.py 1.1 dinu_gherman
		 Added improved PythonPoint tool.
	tools/pythonpoint/styles/__init__.py 1.1 dinu_gherman
		 Added improved PythonPoint tool.
	tools/pythonpoint/stdparser.py 1.1 dinu_gherman
		 Added improved PythonPoint tool.
	tools/pythonpoint/pythonpoint.py 1.1 dinu_gherman
		 Added improved PythonPoint tool.
	tools/pythonpoint/pythonpoint.dtd 1.1 dinu_gherman
		 Added improved PythonPoint tool.
	tools/pythonpoint/demos/vertpython.gif 1.1 dinu_gherman
		 Added improved PythonPoint tool.
	tools/pythonpoint/demos/spectrum.png 1.1 dinu_gherman
		 Added improved PythonPoint tool.
	tools/pythonpoint/demos/pythonpoint.xml 1.1 dinu_gherman
		 Added improved PythonPoint tool.
	tools/pythonpoint/demos/python.gif 1.1 dinu_gherman
		 Added improved PythonPoint tool.
	tools/pythonpoint/demos/pplogo.gif 1.1 dinu_gherman
		 Added improved PythonPoint tool.
	tools/pythonpoint/demos/outline.gif 1.1 dinu_gherman
		 Added improved PythonPoint tool.
	tools/pythonpoint/demos/monterey.xml 1.1 dinu_gherman
		 Added improved PythonPoint tool.
	tools/pythonpoint/demos/leftlogo.gif 1.1 dinu_gherman
		 Added improved PythonPoint tool.
	tools/pythonpoint/demos/leftlogo.a85 1.1 dinu_gherman
		 Added improved PythonPoint tool.
	tools/pythonpoint/demos/examples.py 1.1 dinu_gherman
		 Added improved PythonPoint tool.
	tools/pythonpoint/demos/LeERC___.PFB 1.1 dinu_gherman
		 Added improved PythonPoint tool.
	tools/pythonpoint/demos/LeERC___.AFM 1.1 dinu_gherman
		 Added improved PythonPoint tool.
	tools/pythonpoint/customshapes.py 1.1 dinu_gherman
		 Added improved PythonPoint tool.
	tools/pythonpoint/__init__.py 1.1 dinu_gherman
		 Added improved PythonPoint tool.
	tools/pythonpoint/README 1.1 dinu_gherman
		 Added improved PythonPoint tool.
	tools/docco/graphdocpy.py 1.1 dinu_gherman
		 Added docco tools.
	tools/docco/docpy.py 1.1 dinu_gherman
		 Added docco tools.
	tools/docco/__init__.py 1.1 dinu_gherman
		 Added docco tools.
	graphics/widgets/grids.py 1.15 dinu_gherman
		 Added another output PDF test document.
	platypus/xpreformatted.py 1.14 dinu_gherman
		 Added PythonPreformatted class.
##### 2001/08/16 #####
	test/test_tools_pythonpoint.py 1.1 dinu_gherman
		 Initial checkin
	tools/__init__.py 1.1 dinu_gherman
		 Initial checkin
	tools/README 1.1 dinu_gherman
		 Initial checkin
##### 2001/08/15 #####
	demos/pythonpoint/stdparser.py 1.14 dinu_gherman
		 Made use of rl_config._verbose.
	demos/pythonpoint/pythonpoint.py 1.35 dinu_gherman
		 Made use of rl_config._verbose.
##### 2001/08/14 #####
	lib/corp.py 1.4 johnprecedo
		 Added business card prototype. (Crop-marks still need to be added).
##### 2001/08/13 #####
	changes 1.11 rgbecker
		 Release 1.09 changes
	__init__.py 1.16 rgbecker
		 Release 1.09 changes
#################################################################################
#################### RELEASE 1.09 at 14:00 BST 13/August/2001 ###################
#################################################################################
##### 2001/08/13 #####
	docs/graphguide/ch3_shapes.py 1.5 rgbecker
		 Fixed bad character
	platypus/doctemplate.py 1.42 rgbecker
		 Added _verbose control
##### 2001/08/11 #####
	docs/graphguide, userguide & tools restructured
##### 2001/08/10 #####
	docs/graphguide dinu_gherman
		 Applied a dozen changes...
##### 2001/08/09 #####
	docs/graphguide/t_parse.py 1.3 rgbecker
		 Change to use re
	docs/userguide/t_parse.py 1.3 rgbecker
		 Change to use re
##### 2001/08/08 #####
	lib/corp.py 1.3 rgbecker
		 Changed to new Logo
	lib/colors.py 1.21 rgbecker
		 Changed ReportLabBlue to new Official Color
	test/test_pdfgen_general.py 1.5 rgbecker
		 Changed to using ReportLabBlue
	docs/userguide/genuserguide.py 1.47 rgbecker
		 removed spurous references to ReportLabLogo
	docs/graphguide/gengraphguide.py 1.5 rgbecker
		 removed spurous references to ReportLabLogo
	graphics/shapes.py 1.40 rgbecker
		 Added Group.shift method
	graphics/shapes.py 1.39 rgbecker
		 Fixed skewX skewY
##### 2001/08/07 #####
	rl_config.py 1.16 rgbecker
		 Fix garbaged else clause
	docs/graphguide/ch5_charts.py 1.3 dinu_gherman
		 Added sample drawing for x axis using valueSteps.
	docs/graphguide/ch5_charts.py 1.2 dinu_gherman
		 Added Label drawing and properties table.
	docs/graphguide/gengraphguide.py 1.4 dinu_gherman
		 Now removes *.pyc files when done.
	docs/graphguide/gengraphguide.py 1.3 dinu_gherman
		 Broken ch2_graphics.py into one file per chapter.
	docs/graphguide/ch5_charts.py 1.1 dinu_gherman
		 Broken ch2_graphics.py into one file per chapter.
	docs/graphguide/ch4_widgets.py 1.1 dinu_gherman
		 Broken ch2_graphics.py into one file per chapter.
	docs/graphguide/ch3_shapes.py 1.1 dinu_gherman
		 Broken ch2_graphics.py into one file per chapter.
	docs/graphguide/ch2_graphics.py 1.24 dinu_gherman
		 Broken ch2_graphics.py into one file per chapter.
	docs/graphguide/ch2_concepts.py 1.1 dinu_gherman
		 Broken ch2_graphics.py into one file per chapter.
	test/unittest.py 1.5 dinu_gherman
		 Updated after announcement of version 1.4.0.
	demos/py2pdf/py2pdf.py 1.11 dinu_gherman
		 Removed PyFontify (now in reportlab.lib).
	demos/py2pdf/PyFontify.py 1.4 dinu_gherman
		 Removed PyFontify (now in reportlab.lib).
	lib/PyFontify.py 1.1 dinu_gherman
		 Added Just's PyFontify 0.4 (now using re).
##### 2001/08/03 #####
	docs/userguide/ch2_graphics.py 1.15 dinu_gherman
		 Further amendments to the description of font embedding.
	rl_config.py 1.15 rgbecker
		 Put all options into function _startUp to allow easy reset
##### 2001/08/02 #####
	docs/userguide/examples.py 1.19 dinu_gherman
		 Added some initial description for font embedding.
	docs/userguide/ch2_graphics.py 1.14 dinu_gherman
		 Added some initial description for font embedding.
##### 2001/08/01 #####
	platypus/tables.py 1.41 rgbecker
		 Fix crashing test
	platypus/tables.py 1.40 rgbecker
		 Added identity method to Flowables
	platypus/flowables.py 1.21 rgbecker
		 Added identity method to Flowables
	platypus/doctemplate.py 1.41 rgbecker
		 Added identity method to Flowables
	graphics/widgets/grids.py 1.14 dinu_gherman
		 Added DoubleGrid class.
##### 2001/07/31 #####
	docs/userguide/ch2_graphics.py 1.13 dinu_gherman
		 Fixed interface description of Canvas.ellipse(). Might need a real sample...
	pdfgen/canvas.py 1.87 dinu_gherman
		 Fixed doc string for Canvas.ellipse().
##### 2001/07/25 #####
	demos/pythonpoint/pythonpoint.py 1.34 dinu_gherman
		 Undone previous fix to PPFixedImage in favour of a more general one to PPSection.
	demos/pythonpoint/pythonpoint.py 1.33 dinu_gherman
		 Optimised PPFixedImage by putting the image inside a form.
##### 2001/07/23 #####
	lib/_rl_accel.c 1.20 rgbecker
		 Nonbug fixes passed from othala build
	lib/setup.py 1.10 rgbecker
		 Fix indent error
	lib/setup.py 1.9 rgbecker
		 Change platform test
	lib/graphdocpy.py 1.15 dinu_gherman
		 Added source code for __init__ method of Drawing (sub-)classes.
##### 2001/07/21 #####
	rl_config.py 1.14 rgbecker
		 Added environment mechanism for most/many config options
	rl_addons/renderPM/setup.py 1.5 rgbecker
		 Changed system specific hook after freebsd build
	lib/graphdocpy.py 1.14 dinu_gherman
		 Enabled displaying sample demos for subclasses of Drawing.
	graphics/charts/barcharts.py 1.27 dinu_gherman
		 Removed reference to ShadedRect0.
##### 2001/07/19 #####
	pdfgen/canvas.py 1.86 rgbecker
		 What jerome saw :)
	graphics/widgets/grids.py 1.13 andy_robinson
		 Removed trailing 0 from Grid and ShadedRect; robustified axis against having not enough explicit labels.
	graphics/charts/barcharts.py 1.26 andy_robinson
		 Removed trailing 0 from Grid and ShadedRect; robustified axis against having not enough explicit labels.
	graphics/charts/axes.py 1.31 andy_robinson
		 Removed trailing 0 from Grid and ShadedRect; robustified axis against having not enough explicit labels.
##### 2001/07/18 #####
	test/utils.py 1.3 dinu_gherman
		 Added subclass of ConfigParser to return lists of strings more conveniently.
##### 2001/07/17 #####
	graphics/widgets/grids.py 1.12 dinu_gherman
		 Fixed frange for negative increments.
	pdfgen/canvas.py 1.85 rgbecker
		 Jerome Alet found these bugs
##### 2001/07/16 #####
	graphics/shapes.py 1.38 rgbecker
		 Fixed up copying. Drawings should really be Groups with dimensions
	lib/validators.py 1.10 rgbecker
		 Added isValidChildOrNone
	graphics/shapes.py 1.37 rgbecker
		 Added getContents methods
	graphics/renderbase.py 1.10 rgbecker
		 Added getContents methods
	graphics/renderPS.py 1.10 rgbecker
		 Added getContents methods
	graphics/renderPM.py 1.11 rgbecker
		 Added getContents methods
	graphics/renderPDF.py 1.12 rgbecker
		 Added getContents methods
	graphics/charts/barcharts.py 1.25 dinu_gherman
		 Corrected doc strings.
	graphics/charts/lineplots.py 1.18 dinu_gherman
		 Updated doc strings.
	graphics/charts/linecharts.py 1.13 dinu_gherman
		 Updated doc strings.
	graphics/charts/barcharts.py 1.24 dinu_gherman
		 Updated doc strings.
	graphics/charts/axes.py 1.30 dinu_gherman
		 Updated doc strings.
	lib/graphdocpy.py 1.13 andy_robinson
		 Fixed doc tools to allow explicit filename; fixed bug in grids for charts.
	lib/docpy.py 1.6 andy_robinson
		 Fixed doc tools to allow explicit filename; fixed bug in grids for charts.
	graphics/widgets/grids.py 1.11 andy_robinson
		 Fixed doc tools to allow explicit filename; fixed bug in grids for charts.
	graphics/charts/barcharts.py 1.23 andy_robinson
		 Fixed doc tools to allow explicit filename; fixed bug in grids for charts.
##### 2001/07/15 #####
	graphics/renderPS.py 1.9 jvr
		 - if a color has cmyk values, use "setcmykcolor" instead of "setrgbcolor" - make "showBorder" keyword arg visible in drawToFile()
##### 2001/07/14 #####
	pdfbase/pdfmetrics.py 1.41 andy_robinson
		 Fixed bug introduced yesterday where bold and italic fonts fail
##### 2001/07/13 #####
	test/utils.py 1.2 dinu_gherman
		 Slightly rewritten and added a new restricted directory walker.
	test/runAll.py 1.7 dinu_gherman
		 Slightly rewritten and added a new restricted directory walker.
	lib/fonts.py 1.10 rgbecker
		 revert to Andy's version
	lib/fonts.py 1.9 rgbecker
		 Preliminary changes to support embedded fonts
	test/test_platypus_general.py 1.3 andy_robinson
		 Hack to let custom fonts show in paragraphs
	pdfbase/pdfmetrics.py 1.40 andy_robinson
		 Hack to let custom fonts show in paragraphs
	lib/fonts.py 1.8 andy_robinson
		 Hack to let custom fonts show in paragraphs
##### 2001/07/12 #####
	graphics/renderPDF.py 1.11 jvr
		 drawToFile(): also pass showBoundary when doing autosize
	graphics/shapes.py 1.36 rgbecker
		 Just van Rossum's path patch
	graphics/renderPS.py 1.8 rgbecker
		 Just van Rossum's path patch
	graphics/renderPM.py 1.10 rgbecker
		 Just van Rossum's path patch
	graphics/renderPDF.py 1.10 rgbecker
		 Just van Rossum's path patch
##### 2001/07/11 #####
	test/test_pdfbase_fontembed.py 1.5 andy_robinson
		 Official sample font checked in
	test/LeERC___.PFB 1.1 andy_robinson
		 Official sample font checked in
	test/LeERC___.AFM 1.1 andy_robinson
		 Official sample font checked in
	rl_config.py 1.13 andy_robinson
		 Official sample font checked in
	pdfbase/pdfmetrics.py 1.39 andy_robinson
		 Official sample font checked in
	pdfbase/pdfmetrics.py 1.38 aaron_watters
		 improved error message
	test/test_pdfbase_fontembed.py 1.4 aaron_watters
		 commented out Letterror font not available in users/andy
	pdfgen/canvas.py 1.84 rgbecker
		 Typo fix from Jerome Alet
	docs/reference/reference.yml 1.12 rgbecker
		 Typo fix from Jerome Alet
	pdfgen/canvas.py 1.83 rgbecker
		 Fixed up _rl_accel imports to new standard
	pdfbase/pdfutils.py 1.24 rgbecker
		 Fixed up _rl_accel imports to new standard
	lib/_rl_accel.c 1.19 rgbecker
		 Fixed length bug in _escapePDF
##### 2001/07/10 #####
	pdfgen/canvas.py 1.82 aaron_watters
		 moved escape functionality from canvas object to pdfutils function (with canvas stub)
	pdfbase/pdfutils.py 1.23 aaron_watters
		 moved escape functionality from canvas object to pdfutils function (with canvas stub)
	pdfbase/pdfdoc.py 1.47 aaron_watters
		 cosmetics
	pdfbase/pdfdoc.py 1.46 aaron_watters
		 extensions to support encryption plugins
##### 2001/07/05 #####
	lib/colors.py 1.20 rgbecker
		 Made import from utils absolute to avoid bombing Andy's yaml stuff
##### 2001/07/04 #####
	graphics/charts/textlabels.py 1.10 uid22986
		 Added import of isBoxAnchor
	lib/validators.py 1.9 uid22986
		 Added isXYCoord and isBoxAnchor validators
	graphics/charts/textlabels.py 1.9 uid22986
		 Added isXYCoord and isBoxAnchor validators
##### 2001/07/03 #####
	lib/graphdocpy.py 1.12 andy_robinson
		 Now shows sample functions properly
	lib/docpy.py 1.5 andy_robinson
		 Now shows sample functions properly
##### 2001/07/02 #####
	graphics/widgetbase.py 1.28 rgbecker
		 Using improved OneOf validator implementation
	graphics/charts/textlabels.py 1.8 rgbecker
		 Using improved OneOf validator implementation
	graphics/charts/piecharts.py 1.18 rgbecker
		 Using improved OneOf validator implementation
	graphics/charts/legends.py 1.12 rgbecker
		 Using improved OneOf validator implementation
	graphics/charts/axes.py 1.29 rgbecker
		 Using improved OneOf validator implementation
	graphics/shapes.py 1.35 rgbecker
		 removed old comments
	test/test_lib_validators.py 1.5 rgbecker
		 Added isInt and changed SequenceOf and OneOf to be more friendly
	lib/validators.py 1.8 rgbecker
		 Added isInt and changed SequenceOf and OneOf to be more friendly
	lib/graphdocpy.py 1.11 andy_robinson
		 Fixed getFunctionBody() which now gets the entire demo method for each widget...
##### 2001/06/29 #####
	graphics/widgets/grids.py 1.10 dinu_gherman
		 Massive code simplifications plus arbitrary delta steps implemented. Does more with less code! ;-)
	graphics/widgets/grids.py 1.9 dinu_gherman
		 Applied some code simplifications.
##### 2001/06/28 #####
	graphics/widgets/grids.py 1.8 dinu_gherman
		 Fixed color reverting bugs.
	graphics/widgets/grids.py 1.7 dinu_gherman
		 Fixed bug with negative width/height.
	graphics/widgets/grids.py 1.6 dinu_gherman
		 Fixd buglets regarding delta/delta0 attributes.
	graphics/charts/barcharts.py 1.22 andy_robinson
		 Initialised symbol
	graphics/widgets/grids.py 1.5 dinu_gherman
		 Improved range expressions.
##### 2001/06/27 #####
	lib/graphdocpy.py 1.10 dinu_gherman
		 Added a global VERIFY option.
	graphics/widgetbase.py 1.27 dinu_gherman
		 Fixed cut-and-paste buglet.
	graphics/charts/axes.py 1.28 dinu_gherman
		 Fixed valueSteps buglet.
	graphics/widgets/signsandsymbols.py 1.13 andy_robinson
		 Minor changes to aallow graphdocpy to run
	graphics/widgets/flags.py 1.6 andy_robinson
		 Minor changes to aallow graphdocpy to run
	graphics/charts/barcharts.py 1.21 andy_robinson
		 Minor changes to aallow graphdocpy to run
	graphics/widgets/grids.py 1.4 dinu_gherman
		 Added alternative widgets to be used in legends. Fixed indexing buglet in grids.
	graphics/charts/legends.py 1.11 dinu_gherman
		 Added alternative widgets to be used in legends. Fixed indexing buglet in grids.
	lib/colors.py 1.19 rgbecker
		 Generalised CMYKColor added PCMYKColor
	graphics/charts/legends.py 1.10 dinu_gherman
		 Added attribute comments.
##### 2001/06/26 #####
	graphics/charts/barcharts.py 1.20 rgbecker
		 Add a sample drawing class
	test/test_pdfbase_fontembed.py 1.3 andy_robinson
		 Changes to support Mac build.
	rl_config.py 1.12 andy_robinson
		 Changes to support Mac build.
	graphics/renderPM.py 1.9 andy_robinson
		 Changes to support Mac build.
##### 2001/06/22 #####
	graphics/widgetbase.py 1.26 rgbecker
		 Fixed problematic getProperties bug
	platypus/flowables.py 1.20 rgbecker
		 Forced non string filenames to put image data into filename
	platypus/frames.py 1.14 aaron_watters
		 disabled width test, user will have to notice problem by viewing it in PDF
	lib/graphdocpy.py 1.9 andy_robinson
		 Added trace statements for failed drawings...
##### 2001/06/21 #####
	graphics/shapes.py 1.34 rgbecker
		 Bug fix self. was wrong added _copy and asGroup to Drawing
	graphics/shapes.py 1.33 rgbecker
		 Made Drawing width and height args into keywords
	rl_config.py 1.11 rgbecker
		 Added _verbose
	pdfgen/canvas.py 1.81 rgbecker
		 Removed excessive prints
	pdfbase/pdfutils.py 1.22 rgbecker
		 Use rl_config.verbose
	graphics/charts/barcharts.py 1.19 dinu_gherman
		 Added sampleSymbol1() using shaded bars (experimental).
	graphics/widgets/grids.py 1.3 dinu_gherman
		 Added some tiny fixes plus more samples.
	rl_config.py 1.10 rgbecker
		 Changed default for defaultImageCaching to zero
	utils/README 1.10 rgbecker
		 Added section on forcing tags
##### 2001/06/20 #####
	graphics/widgets/grids.py 1.2 dinu_gherman
		 Added some more samples.
	graphics/widgets/grids.py 1.1 dinu_gherman
		 Initial checkin.
	lib/validators.py 1.7 dinu_gherman
		 Added isListofColors.
##### 2001/06/19 #####
	docs/graphguide/ch2_graphics.py 1.23 rgbecker
		 defaultStyles-->slices etc
#################################################################################
#################### RELEASE 1.08 at 12:00 BST 19/June/2001 #####################
#################################################################################
##### 2001/06/19 #####
	test/test_graphics_speed.py 1.10 dinu_gherman
		 Renamed chart attribute names to bars/lines/slices.
	test/test_graphics_charts.py 1.12 dinu_gherman
		 Renamed chart attribute names to bars/lines/slices.
	graphics/charts/piecharts.py 1.17 dinu_gherman
		 Renamed chart attribute names to bars/lines/slices.
	graphics/charts/lineplots.py 1.17 dinu_gherman
		 Renamed chart attribute names to bars/lines/slices.
	graphics/charts/linecharts.py 1.12 dinu_gherman
		 Renamed chart attribute names to bars/lines/slices.
	graphics/charts/barcharts.py 1.18 dinu_gherman
		 Renamed chart attribute names to bars/lines/slices.
##### 2001/06/18 #####
	docs/graphguide/ch2_graphics.py 1.21 rgbecker
		 Changed from defaultStyles to pieStyles
	graphics/widgetbase.py 1.25 rgbecker
		 Added recur arg to allow non-recurring
	graphics/shapes.py 1.32 rgbecker
		 Added recur arg to allow non-recurring
	test/test_graphics_speed.py 1.9 dinu_gherman
		 Renamed defaultStyles attribute with barStyles, lineStyles, pieStyles.
	test/test_graphics_charts.py 1.11 dinu_gherman
		 Renamed defaultStyles attribute with barStyles, lineStyles, pieStyles.
	graphics/charts/piecharts.py 1.16 dinu_gherman
		 Renamed defaultStyles attribute with barStyles, lineStyles, pieStyles.
	graphics/charts/lineplots.py 1.16 dinu_gherman
		 Renamed defaultStyles attribute with barStyles, lineStyles, pieStyles.
	graphics/charts/linecharts.py 1.11 dinu_gherman
		 Renamed defaultStyles attribute with barStyles, lineStyles, pieStyles.
	graphics/charts/barcharts.py 1.17 dinu_gherman
		 Renamed defaultStyles attribute with barStyles, lineStyles, pieStyles.
##### 2001/06/16 #####
	graphics/shapes.py 1.31 rgbecker
		 Added Null _DrawingEditorMixin class
##### 2001/06/15 #####
	pdfbase/pdfdoc.py 1.45 aaron_watters
		 added missing PDFText() function for consistency (needed by pagecatcher)
##### 2001/06/13 #####
	rl_addons/renderPM/setup.py 1.4 jvr
		 some changes to make it potentially work under MacOS with the CodeWarrior compiler. Unfortunately it still doesn't :-(
	lib/setup.py 1.8 jvr
		 minor patch: building the sgmlop, _rl_accel and pyHnj now simply *works* with distutils under MacOS with codeWarrior. Good Stuff. (haven't added any install smartness yet)
	graphics/renderPM.py 1.8 jvr
		 Test program: use os.path.join() for path manipulation instead of things like 'pmout%s%s'%(os.sep,filename) as this gets it wrong under MacOS.
	rl_addons/renderPM/libart_lgpl/art_misc.c 1.2 jvr
		 extended #ifndef _WIN32 to also check for undefined-ness of 'macintosh'
	rl_addons/renderPM/gt1/gt1-parset1.c 1.2 jvr
		 change to make it compile under MacOS: added strdup() hack for Mac
	rl_addons/renderPM/_renderPM.c 1.3 jvr
		 changes to make it compile under MacOS: - added strdup() hack for Mac - changed size_t fields in gstateObject to int -- otherwise I'd have to add   casts to each and every bpath_add_point() call (can't implicitly go from size_t   to int) - repaired "illegal constant expression" in gstate like Robin suggested
	lib/_rl_accel.c 1.18 rgbecker
		 Just's Mac patch
	graphics/widgetbase.py 1.24 andy_robinson
		 Changes to support customer project: allow nulls in bar charts, and added some missing but obvious properties e.g. strokeColor for bar and legend borders.
	graphics/charts/piecharts.py 1.15 andy_robinson
		 Changes to support customer project: allow nulls in bar charts, and added some missing but obvious properties e.g. strokeColor for bar and legend borders.
	graphics/charts/legends.py 1.9 andy_robinson
		 Changes to support customer project: allow nulls in bar charts, and added some missing but obvious properties e.g. strokeColor for bar and legend borders.
	graphics/charts/barcharts.py 1.16 andy_robinson
		 Changes to support customer project: allow nulls in bar charts, and added some missing but obvious properties e.g. strokeColor for bar and legend borders.
	graphics/charts/axes.py 1.27 andy_robinson
		 Changes to support customer project: allow nulls in bar charts, and added some missing but obvious properties e.g. strokeColor for bar and legend borders.
##### 2001/06/11 #####
	pdfgen/canvas.py 1.80 rgbecker
		 Made canvas default to rl_config.pageCompression
	rl_config.py 1.9 rgbecker
		 Added pageCompression
	graphics/renderPDF.py 1.9 andy_robinson
		 Added autoSize option to rendderPDF, and allowed "no border" around bars in bar charts.  To support QIR project.
	graphics/charts/barcharts.py 1.15 andy_robinson
		 Added autoSize option to rendderPDF, and allowed "no border" around bars in bar charts.  To support QIR project.
##### 2001/06/09 #####
	platypus/frames.py 1.13 rgbecker
		 added _FUZZ and changed frame add test
##### 2001/06/07 #####
	platypus/paragraph.py 1.55 rgbecker
		 Remove explicit  character to stop Dinu moaning
	test/test_pdfgen_pagemodes.py 1.5 rgbecker
		 Try to shorten filenames
	test/test_widgetbase_tpc.py 1.1 rgbecker
		 Shortened names
	test/test_graphics_widgetbase_tpc.py 1.2 rgbecker
		 Shortened names
	test/test_graphics_charts_textlabels.py 1.4 rgbecker
		 Shortened names
	test/test_charts_textlabels.py 1.1 rgbecker
		 Shortened names
	lib/utils.py 1.16 rgbecker
		 Imported PIL_WARNINGS
	graphics/widgetbase.py 1.23 rgbecker
		 Allow TypedPropertyCollection exemplar class to have getattr etc
##### 2001/06/06 #####
	graphics/widgetbase.py 1.22 rgbecker
		 Fbot's suggested fix
	lib/setup.py 1.7 rgbecker
		 Fixed up MovePYDs
	rl_addons/renderPM/setup.py 1.3 rgbecker
		 Fixed up MovePYDs
	rl_addons/renderPM/_renderPM.c 1.2 rgbecker
		 Niki Spahiev's PyMem_New patch for 1.5.2
##### 2001/05/30 #####
	test/test_pdfbase_pdfmetrics.py 1.7 rgbecker
		 Fixes for 2.1 whining
	test/runAll.py 1.6 rgbecker
		 Fixes for 2.1 whining
	rl_addons/renderPM/setup.py 1.2 rgbecker
		 Moved pyds to DLLs
	lib/setup.py 1.6 rgbecker
		 Moved pyds to DLLs
##### 2001/05/29 #####
	docs/graphguide/ch2_graphics.py 1.20 johnprecedo
		 A number of small changes made - mainly changing import statements in the examples so that they actually work as given without producing an errors. Done up to page 15.
	pdfgen/canvas.py 1.79 rgbecker
		 Fix the 2.1 _escape fix
	rl_config.py 1.8 rgbecker
		 Changes for 2.1 escape fix
	pdfgen/canvas.py 1.78 rgbecker
		 Changes for 2.1 escape fix
	lib/_rl_accel.c 1.17 rgbecker
		 Changes for 2.1 escape fix
	test/test_pyfiles.py 1.6 dinu_gherman
		 Added a test for first lines containing #!...python...
##### 2001/05/28 #####
	platypus/paragraph.py 1.54 rgbecker
		 Add some pound signs to test 5
##### 2001/05/26 #####
	utils/daily.py 1.43 rgbecker
		 Fixed precedence
	utils/daily.py 1.42 rgbecker
		 Fixed error print' daily.py
##### 2001/05/25 #####
	graphics/charts/legends.py 1.8 dinu_gherman
		 Added font attributes for text in legends.
	lib/_rl_accel.c 1.16 rgbecker
		 Fix special case ','
	lib/_rl_accel.c 1.15 rgbecker
		 Added fix for comma decimal point
	lib/utils.py 1.15 rgbecker
		 Attempt to fix the locale mismatch problem
	lib/graphdocpy.py 1.8 rgbecker
		 removed use of renderGD
	pdfgen/pathobject.py 1.9 rgbecker
		 Changed a few %f formats to use %s and fp_str
	pdfgen/canvas.py 1.77 rgbecker
		 Changed a few %f formats to use %s and fp_str
##### 2001/05/23 #####
	graphics/charts/textlabels.py 1.7 rgbecker
		 Standardize nattribute names
	graphics/renderPS.py 1.7 rgbecker
		 Synchronize backend to PDF standard
	graphics/renderPM.py 1.7 rgbecker
		 Synchronize backend to PDF standard
	graphics/renderPDF.py 1.8 rgbecker
		 Synchronize backend to PDF standard
	graphics/widgetbase.py 1.21 rgbecker
		 Correct names and factorise some behaviour
	graphics/shapes.py 1.30 rgbecker
		 Correct names and factorise some behaviour
##### 2001/05/22 #####
	graphics/charts/barcharts.py 1.14 dinu_gherman
		 Made strokeColor attribute for the bars be really used.
	graphics/charts/textlabels.py 1.6 dinu_gherman
		 Added missing fillColor attribute for the string itself.
	graphics/charts/piecharts.py 1.14 rgbecker
		 Fixes to piechart label handling
	lib/__BUILD.dsw 1.4 rgbecker
		 Indicated usage of setup.py
	lib/README.extensions 1.3 rgbecker
		 Indicated usage of setup.py
##### 2001/05/21 #####
	graphics/widgetbase.py 1.20 rgbecker
		 Fixed _ItemWrapper name and made it really cache
	graphics/widgetbase.py 1.19 rgbecker
		 Improved element wrapping seems to work
	test/test_graphics_widgetbase_tpc.py 1.1 dinu_gherman
		 Initial checkin.
	graphics/widgetbase.py 1.18 rgbecker
		 Added element wrapper and fixed getitem so collections work better
	test/test_docstrings.py 1.7 dinu_gherman
		 Substantial rewrite.
##### 2001/05/20 #####
	pdfbase/_fontdata.py 1.10 rgbecker
		 Fix typo
	rl_config.py 1.7 rgbecker
		 Better Font handling for linux2
	pdfbase/_fontdata.py 1.9 rgbecker
		 Better Font handling for linux2
	rl_config.py 1.6 rgbecker
		 Font handling patches for linux2 from L Catucci
	pdfbase/_fontdata.py 1.8 rgbecker
		 Font handling patches for linux2 from L Catucci
	test/unittest.py 1.4 rgbecker
		 Fix linesep for non-JPython
	rl_config.py 1.5 rgbecker
		 Added PIL_WARNINGS/ZLIB_WARNINGS
	lib/utils.py 1.14 rgbecker
		 Added PIL_WARNINGS/ZLIB_WARNINGS
##### 2001/05/18 #####
	test/test_docstrings.py 1.6 dinu_gherman
		 Applied Robin's patch.
	graphics/testshapes.py 1.12 rgbecker
		 Added locals & globals to the eval
	graphics/charts/piecharts.py 1.13 rgbecker
		 Need some real strokeWidths
	rl_addons/renderPM/pfm.py 1.2 rgbecker
		 Remove above 127 characters
	test/runAll.py 1.5 dinu_gherman
		 Sorted order in which test module are executed (using sort()).
	test/test_docstrings.py 1.5 dinu_gherman
		 Fixed bug where files got written everywhere by using new SecureTestCase.
	test/utils.py 1.1 dinu_gherman
		 Initial checkin.
	platypus/paragraph.py 1.53 rgbecker
		 added minWidth method to Flowable, Paragraph
	platypus/flowables.py 1.19 rgbecker
		 added minWidth method to Flowable, Paragraph
	graphics/widgetbase.py 1.17 rgbecker
		 Make setVector more friendly
	graphics/shapes.py 1.29 rgbecker
		 Fixed expandUserNode method
	graphics/widgetbase.py 1.16 rgbecker
		 Added TypedPropertyCollection.setVector
##### 2001/05/17 #####
	docs/graphguide/ch2_graphics.py 1.19 rgbecker
		 Pies don't seem to have  a wedges collection any longer
	graphics/shapes.py 1.28 rgbecker
		 Use canned routine validateSetattr
	lib/validators.py 1.6 rgbecker
		 New AttrMap emplacement
	lib/attrmap.py 1.2 rgbecker
		 New AttrMap emplacement
	graphics/widgets/signsandsymbols.py 1.12 rgbecker
		 New AttrMap emplacement
	graphics/widgets/flags.py 1.5 rgbecker
		 New AttrMap emplacement
	graphics/charts/textlabels.py 1.5 rgbecker
		 New AttrMap emplacement
	graphics/charts/piecharts.py 1.12 rgbecker
		 New AttrMap emplacement
	graphics/charts/lineplots.py 1.15 rgbecker
		 New AttrMap emplacement
	graphics/charts/linecharts.py 1.10 rgbecker
		 New AttrMap emplacement
	graphics/charts/legends.py 1.7 rgbecker
		 New AttrMap emplacement
	graphics/charts/barcharts.py 1.13 rgbecker
		 New AttrMap emplacement
	graphics/charts/axes.py 1.26 rgbecker
		 New AttrMap emplacement
	graphics/widgetbase.py 1.15 rgbecker
		 New AttrMap emplacement
	graphics/shapes.py 1.27 rgbecker
		 New AttrMap emplacement
	graphics/shapes.py 1.26 rgbecker
		 Removal of the Auto Thing
	graphics/charts/linecharts.py 1.9 rgbecker
		 Removal of the Auto Thing
	graphics/charts/barcharts.py 1.12 rgbecker
		 Removal of the Auto Thing
	graphics/charts/axes.py 1.25 rgbecker
		 Removal of the Auto Thing
	docs/graphguide/ch2_graphics.py 1.18 rgbecker
		 Removal of the Auto Thing
	lib/attrmap.py 1.1 rgbecker
		 Initial version
	lib/validators.py 1.5 rgbecker
		 New Scheme Validators
	test/test_lib_validators.py 1.4 rgbecker
		 New Scheme Validators
##### 2001/05/16 #####
	graphics/renderPM.py 1.6 rgbecker
		 Added drawToString
	test/test_graphics_charts.py 1.10 rgbecker
		 Renamed Legend0 to Legend, fixed _attrmap typo
	graphics/charts/legends.py 1.6 rgbecker
		 Renamed Legend0 to Legend, fixed _attrmap typo
##### 2001/05/15 #####
	graphics/charts/lineplots.py 1.14 dinu_gherman
		 Added strokeDashArray attribute to LinePlotProperties class.
	test/test_lib_validators.py 1.3 dinu_gherman
		 Removed isNumberOrAuto validator.
	lib/validators.py 1.4 dinu_gherman
		 Removed isNumberOrAuto validator.
	graphics/charts/axes.py 1.24 dinu_gherman
		 Removed isNumberOrAuto validator.
	graphics/widgetbase.py 1.14 dinu_gherman
		 Adapted to use Validator instances in validators.py.
	graphics/shapes.py 1.25 dinu_gherman
		 Adapted to use Validator instances in validators.py.
	graphics/testshapes.py 1.11 rgbecker
		 Improvements to testshapse.py
	graphics/renderPM.py 1.5 rgbecker
		 Improvements to testshapse.py
	platypus/paragraph.py 1.52 rgbecker
		 Added find to imports
	test/test_paragraphs.py 1.10 rgbecker
		 Added in line font changes
##### 2001/05/11 #####
	platypus/doctemplate.py 1.40 rgbecker
		 Dynamic page sizes
	lib/graphdocpy.py 1.7 dinu_gherman
		 Fixed buglet.
	graphics/widgets/signsandsymbols.py 1.11 dinu_gherman
		 Adapted to using vlaidator classes.
	graphics/widgets/flags.py 1.4 dinu_gherman
		 Adapted to using vlaidator classes.
	lib/graphdocpy.py 1.6 dinu_gherman
		 Added display of documented public widget attributes.
	graphics/charts/textlabels.py 1.4 dinu_gherman
		 Adapted to using validator classes in attribute maps.
	graphics/charts/piecharts.py 1.11 dinu_gherman
		 Adapted to using validator classes in attribute maps.
	graphics/charts/lineplots.py 1.13 dinu_gherman
		 Adapted to using validator classes in attribute maps.
	graphics/charts/linecharts.py 1.8 dinu_gherman
		 Adapted to using validator classes in attribute maps.
	graphics/charts/legends.py 1.5 dinu_gherman
		 Adapted to using validator classes in attribute maps.
	graphics/charts/barcharts.py 1.11 dinu_gherman
		 Adapted to using validator classes in attribute maps.
	graphics/charts/axes.py 1.23 dinu_gherman
		 Adapted to using validator classes in attribute maps.
	test/test_lib_validators.py 1.2 dinu_gherman
		 Changed validator functions into classes. Adapted test cases. Added a tiny change to widgetbase.py.
	lib/validators.py 1.3 dinu_gherman
		 Changed validator functions into classes. Adapted test cases. Added a tiny change to widgetbase.py.
	graphics/widgetbase.py 1.13 dinu_gherman
		 Changed validator functions into classes. Adapted test cases. Added a tiny change to widgetbase.py.
	test/test_coordtracking.py 1.2 rgbecker
		 Removed for for later correction
##### 2001/05/10 #####
	test/test_coordtracking.py 1.1 aaron_watters
		 test file for coordinate tracking and links
	pdfgen/canvas.py 1.76 aaron_watters
		 canvas coordinate matrix tracking and related linkage support
	graphics/widgetbase.py 1.12 dinu_gherman
		 Switched to using lib.validators module.
	graphics/widgets/signsandsymbols.py 1.10 dinu_gherman
		 Switched to using lib.validators module.
	graphics/widgets/flags.py 1.3 dinu_gherman
		 Switched to using lib.validators module.
##### 2001/05/09 #####
	lib/setup.py 1.5 rgbecker
		 Compatibility fixes
	lib/_rl_accel.c 1.14 rgbecker
		 Compatibility fixes
	graphics/widgetbase.py 1.11 dinu_gherman
		 Code and docstring enhancements.
	test/test_graphics_speed.py 1.8 dinu_gherman
		 Switched to using defaultStyles attribute.
	test/test_graphics_charts.py 1.9 dinu_gherman
		 Switched to using defaultStyles attribute.
	graphics/charts/axes.py 1.22 dinu_gherman
		 Added visibleAxis/visibleTicks attributes.
	graphics/charts/piecharts.py 1.10 dinu_gherman
		 Broken draw method apart (well...).
	graphics/charts/piecharts.py 1.9 dinu_gherman
		 Done some slight code enhancements.
	graphics/charts/lineplots.py 1.12 dinu_gherman
		 Switched to using PropHolder superclass for LinePlotProperties. Added strokeWidth attribute to LinePlotProperties.
	test/test_lib_validators.py 1.1 dinu_gherman
		 Initial checkin.
##### 2001/05/08 #####
	graphics/charts/barcharts.py 1.10 dinu_gherman
		 Switched to using defaultStyles attribute.
	graphics/charts/linecharts.py 1.7 dinu_gherman
		 Switched to using typed collection styles.
	graphics/charts/piecharts.py 1.8 dinu_gherman
		 Made more consistent use of typed collections.
	graphics/charts/lineplots.py 1.11 dinu_gherman
		 Removed dead code. Removed references to usedSymbol attribute. Made defaultStyles attribute a typed collection.
	graphics/widgetbase.py 1.10 dinu_gherman
		 Added a __len__ method to TypedPropertyCOllection.
	graphics/charts/lineplots.py 1.10 dinu_gherman
		 Removed references to defaultColors.
	lib/graphdocpy.py 1.5 dinu_gherman
		 Opening now showing PDF outline (with closed function sections). Minor fixes.
##### 2001/05/07 #####
	graphics/renderPDF.py 1.7 aaron_watters
		 get rid of automatic boundary box option
	graphics/charts/axes.py 1.21 dinu_gherman
		 Reduced number of arguments for joinToAxis() methods.
	lib/validators.py 1.2 dinu_gherman
		 Extracted validator functions into lib.validators. Modified import statements.
	graphics/shapes.py 1.24 dinu_gherman
		 Extracted validator functions into lib.validators. Modified import statements.
	graphics/charts/textlabels.py 1.3 dinu_gherman
		 Extracted validator functions into lib.validators. Modified import statements.
	graphics/charts/piecharts.py 1.7 dinu_gherman
		 Extracted validator functions into lib.validators. Modified import statements.
	graphics/charts/lineplots.py 1.9 dinu_gherman
		 Extracted validator functions into lib.validators. Modified import statements.
	graphics/charts/linecharts.py 1.6 dinu_gherman
		 Extracted validator functions into lib.validators. Modified import statements.
	graphics/charts/legends.py 1.4 dinu_gherman
		 Extracted validator functions into lib.validators. Modified import statements.
	graphics/charts/barcharts.py 1.9 dinu_gherman
		 Extracted validator functions into lib.validators. Modified import statements.
	graphics/charts/axes.py 1.20 dinu_gherman
		 Extracted validator functions into lib.validators. Modified import statements.
	lib/validators.py 1.1 dinu_gherman
		 Added future validators module (stripped off from shapes.py).
	graphics/charts/piecharts.py 1.6 dinu_gherman
		 Various minor changes.
	graphics/charts/lineplots.py 1.8 dinu_gherman
		 Various minor changes.
	graphics/charts/linecharts.py 1.5 dinu_gherman
		 Various minor changes.
	graphics/charts/legends.py 1.3 dinu_gherman
		 Various minor changes.
	graphics/charts/barcharts.py 1.8 dinu_gherman
		 Various minor changes.
	graphics/charts/axes.py 1.19 dinu_gherman
		 Various minor changes.
##### 2001/05/05 #####
	platypus/tables.py 1.39 aaron_watters
		 hacky fix to nudge bug
	pdfgen/canvas.py 1.75 aaron_watters
		 fix for major font metrics state tracking bug
##### 2001/05/04 #####
	platypus/tables.py 1.38 aaron_watters
		 use round caps for miter limit
	graphics/renderPM.py 1.4 rgbecker
		 Readded import checks and improved messages
	graphics/renderPM.py 1.3 rgbecker
		 Added fix for png files
##### 2001/05/03 #####
	graphics/renderPM.py 1.2 rgbecker
		 ImportError checks for _renderPM
	graphics/renderPM.py 1.1 rgbecker
		 Moved from rlextra/graphics/Csrc/renderPM
#################################################################################
#################### RELEASE 1.07 at 11:54 BST ##################################
#################################################################################
##### 2001/05/02 #####
	lib/units.py 1.3 rgbecker
		 Added toLength function
##### 2001/05/01 #####
	lib/colors.py 1.18 johnprecedo
		 Added special color - ReportLabBlue.
	graphics/charts/axes.py 1.18 rgbecker
		 makeLabels/Ticks changed
	graphics/testshapes.py 1.10 rgbecker
		 strokeDashArray fixes
	graphics/shapes.py 1.23 rgbecker
		 strokeDashArray fixes
	graphics/charts/axes.py 1.17 rgbecker
		 strokeDashArray fixes
##### 2001/04/30 #####
	pdfbase/pdfmetrics.py 1.37 rgbecker
		 Added some imports for compatibility/efficiency
##### 2001/04/28 #####
	graphics/widgets/signsandsymbols.py 1.9 rgbecker
		 try and ensure float division
##### 2001/04/26 #####
	graphics/charts/lineplots.py 1.7 dinu_gherman
		 Changed defaultColors to defaultStyles.
	pdfgen/pdfimages.py 1.12 rgbecker
		 Fixed typo zlib (not lib)
	lib/randomtext.py 1.7 johnprecedo
		 Minor changes. Now allows you to specify the maximum number of sentences for the randomtext as an argument. Also added an example usage to the docstring.
##### 2001/04/25 #####
	license.txt 1.2 andy_robinson
		 Trivial change to test CVS write access
	graphics/charts/piecharts.py 1.5 dinu_gherman
		 Added more samples.
	graphics/charts/piecharts.py 1.4 johnprecedo
		 Added a new example.
	graphics/charts/piecharts.py 1.3 dinu_gherman
		 Removed sector line for single sliced pie charts.
##### 2001/04/24 #####
	graphics/charts/axes.py 1.16 dinu_gherman
		 Made joining of axes possible via axes attributes.
##### 2001/04/23 #####
	pdfbase/pdfmetrics.py 1.36 rgbecker
		 Added findT1File to base Face, and _fontdata
	pdfbase/_fontdata.py 1.7 rgbecker
		 Added findT1File to base Face, and _fontdata
	lib/fonts.py 1.7 rgbecker
		 Moved T1 search stuff into pdfbase.fontdata
	pdfbase/pdfmetrics.py 1.35 rgbecker
		 Remove debug prints
##### 2001/04/20 #####
	test/test_pdfbase_fontembed.py 1.2 rgbecker
		 Merged pdfgen.fonts into pdfmetrics again
	test/test_pdfbase_encodings.py 1.2 rgbecker
		 Merged pdfgen.fonts into pdfmetrics again
	pdfgen/fonts.py 1.2 rgbecker
		 Merged pdfgen.fonts into pdfmetrics again
	pdfbase/pdfmetrics.py 1.34 rgbecker
		 Merged pdfgen.fonts into pdfmetrics again
	pdfbase/_fontdata.py 1.6 rgbecker
		 Merged pdfgen.fonts into pdfmetrics again
	lib/_rl_accel.c 1.13 rgbecker
		 Merged pdfgen.fonts into pdfmetrics again
	utils/daily.py 1.41 rgbecker
		 Fix graphguide generation
	utils/daily.py 1.40 rgbecker
		 Add graphguide generation
	pdfgen/canvas.py 1.74 rgbecker
		 pageCompression fix from Mark Charlebois (was undefined if zlib not present); removed stray print statements on font registration.
	pdfbase/pdfmetrics.py 1.33 rgbecker
		 pageCompression fix from Mark Charlebois (was undefined if zlib not present); removed stray print statements on font registration.
##### 2001/04/18 #####
	test/test_pdfbase_fontembed.py 1.1 rgbecker
		 New font embedding mechanism
	test/test_pdfbase_encodings.py 1.1 rgbecker
		 New font embedding mechanism
	pdfgen/fonts.py 1.1 rgbecker
		 New font embedding mechanism
	test/test_pdfgen_general.py 1.4 rgbecker
		 New font embedding stuff.
	test/test_pdfbase_pdfmetrics.py 1.6 rgbecker
		 New font embedding stuff.
	pdfgen/canvas.py 1.73 rgbecker
		 New font embedding stuff.
	pdfbase/pdfmetrics.py 1.32 rgbecker
		 New font embedding stuff.
	pdfbase/pdfdoc.py 1.44 rgbecker
		 New font embedding stuff.
	README 1.5 rgbecker
		 Testing write access to CVS, only whitespace changed
	testfile.txt 1.2 johnprecedo
		 removed test file
	testfile.txt 1.1 johnprecedo
		 nitial checkin to test CVS write access
##### 2001/04/17 #####
	rl_config.py 1.4 rgbecker
		 Fix typo in T1SearchPath name
	pdfbase/afm2w.py 1.2 rgbecker
		 Removed file added for test
	pdfbase/afm2w.py 1.1 rgbecker
		 Adding afm2w as a test
	docs/userguide/testfile.txt 1.1 andy_robinson
		 Testing checkin rights
	docs/userguide/ch9_future.py 1.3 andy_robinson
		 Testing SF commit ability
##### 2001/04/16 #####
	__init__.py 1.13 rgbecker
		 Changed copyright dates
	README 1.4 andy_robinson
		 Whitespace change to test CVS write access
##### 2001/04/13 #####
	test/test_pdfgen_general.py 1.3 rgbecker
		 Added sausages
	test/test_pdfgen_general.py 1.2 andy_robinson
		 filename case change for an embedded GIF
	test/test_platypus_general.py 1.2 andy_robinson
		 General pdfgen test moved to here
	test/test_pdfgen_general.py 1.1 andy_robinson
		 General pdfgen test moved to here
	test/test_platypus_tables.py 1.1 andy_robinson
		 Added tests formerly under platypus/test
	test/test_platypus_general.py 1.1 andy_robinson
		 Added tests formerly under platypus/test
	test/pythonpowered.gif 1.1 andy_robinson
		 Added tests formerly under platypus/test
##### 2001/04/12 #####
	graphics/charts/barcharts.py 1.7 rgbecker
		 Moved functionality into the base Barchart class
	graphics/renderPDF.py 1.6 rgbecker
		 Added showBoundary arg
##### 2001/04/11 #####
	graphics/charts/axes.py 1.15 rgbecker
		 Move common value axis bits into base class
	graphics/charts/axes.py 1.14 rgbecker
		 Try and make min/max finding as complicated as possible
	graphics/charts/axes.py 1.13 rgbecker
		 Moved some common stuff into ValueAxis, added maximumTicks
	graphics/shapes.py 1.22 rgbecker
		 Improved comment somewhat
	graphics/charts/axes.py 1.12 rgbecker
		 Added _findMax/Min funcs
	graphics/charts/axes.py 1.11 rgbecker
		 Added _calcValueStep and _rangeAdjust methods
	graphics/widgetbase.py 1.9 rgbecker
		 Added StyleProeprties class
##### 2001/04/10 #####
	graphics/widgetbase.py 1.8 andy_robinson
		 Robin's refactoring to separate propholder and Widget
	demos/pythonpoint/pythonpoint.py 1.32 andy_robinson
		 Removing pingo dependency
	graphics/charts/markers.py 1.2 dinu_gherman
		 Added two funcions and tidied-up.
	lib/normalDate.py 1.1 dinu_gherman
		 Initial checkin.
	lib/pagesizes.py 1.7 andy_robinson
		 Fixed size of legal
##### 2001/04/09 #####
	graphics/charts/lineplots.py 1.6 dinu_gherman
		 Fixed import buglet.
	test/test_graphics_charts.py 1.8 dinu_gherman
		 Adapted to new LineChart class names.
	graphics/charts/markers.py 1.1 dinu_gherman
		 Initial checkin.
	graphics/charts/lineplots.py 1.5 dinu_gherman
		 Splitted draw() method. Removed marker functions. Removed usage of XTimeSeriesAxis. Lots of tiny changes.
	graphics/charts/linecharts.py 1.4 dinu_gherman
		 Aplitted draw method. Moved marker functions into markers.py. Many tiny modifications.
	graphics/charts/barcharts.py 1.6 dinu_gherman
		 Minimal doc string changes.
	graphics/charts/axes.py 1.10 dinu_gherman
		 Added attribute valueSteps to X- and YValueAxis. Commented XTimeSeriesAxes.
	graphics/charts/barcharts.py 1.5 dinu_gherman
		 Added abstract BarChart base class. Applied various code simplifications. Removed 'import *'.
	graphics/charts/barcharts.py 1.4 dinu_gherman
		 Tiny changes (to verify CVS works).
	graphics/charts/barcharts.py 1.3 dinu_gherman
		 Split draw() methods into makeBars() and makeBackground(). Fixed one possible bug (reverted order of configure and setPosition()).
	graphics/charts/utils.py 1.2 dinu_gherman
		 Added Robin's stuff from rgb_ticks.py.
	graphics/charts/axes.py 1.9 dinu_gherman
		 Factorized two more methods into ValueAxis.
	graphics/charts/axes.py 1.8 dinu_gherman
		 Factorized some more methods into abstract base classes.
	graphics/charts/axes.py 1.7 dinu_gherman
		 Added new abstract base classes CategoryAxis and ValueAxis. Factorized some methods in X/Y axes and moved to these base classes. Split draw methods into three new methods.
	graphics/charts/lineplots.py 1.4 dinu_gherman
		 Removed commented code.
	graphics/charts/utils.py 1.1 dinu_gherman
		 Moved utility functions into new module utils.py.
	graphics/charts/lineplots.py 1.3 dinu_gherman
		 Moved utility functions into new module utils.py.
	graphics/charts/axes.py 1.6 dinu_gherman
		 Moved utility functions into new module utils.py.
	graphics/charts/axes.py 1.5 dinu_gherman
		 Removed 'import *'.
##### 2001/04/06 #####
	lib/graphdocpy.py 1.4 andy_robinson
		 Now adds the current directory to the path; makes it easier to run it over other modules.
	graphics/charts/axes.py 1.4 andy_robinson
		 Changes received from Dinu - required for demo, not sure what's in it (Andy)
	graphics/shapes.py 1.21 rgbecker
		 Fix indent
	graphics/shapes.py 1.20 rgbecker
		 _updater was silly
	lib/utils.py 1.13 rgbecker
		 _updater was silly
	lib/utils.py 1.12 rgbecker
		 Added dict _updater func
	graphics/shapes.py 1.19 rgbecker
		 Group/Drawing slightly cleaner python
##### 2001/04/05 #####
	graphics/shapes.py 1.18 rgbecker
		 Added Group insert method
	graphics/shapes.py 1.17 rgbecker
		 Added stringWidth import
	utils/cvs_status.py 1.2 rgbecker
		 License text changes
	test/test_pyfiles.py 1.5 rgbecker
		 License text changes
	test/test_platypus_toc.py 1.6 rgbecker
		 License text changes
	test/test_platypus_paragraphs.py 1.6 rgbecker
		 License text changes
	test/test_pdfgen_pagemodes.py 1.4 rgbecker
		 License text changes
	test/test_pdfbase_pdfutils.py 1.3 rgbecker
		 License text changes
	test/test_pdfbase_pdfmetrics.py 1.5 rgbecker
		 License text changes
	test/test_paragraphs.py 1.9 rgbecker
		 License text changes
	test/test_lib_sequencer.py 1.4 rgbecker
		 License text changes
	test/test_lib_colors.py 1.6 rgbecker
		 License text changes
	test/test_graphics_speed.py 1.7 rgbecker
		 License text changes
	test/test_graphics_charts_textlabels.py 1.3 rgbecker
		 License text changes
	test/test_graphics_charts.py 1.7 rgbecker
		 License text changes
	test/test_docstrings.py 1.4 rgbecker
		 License text changes
	test/runAll.py 1.4 rgbecker
		 License text changes
	test/__init__.py 1.2 rgbecker
		 License text changes
	platypus/tableofcontents.py 1.2 rgbecker
		 License text changes
	pdfbase/pdfmetrics.py 1.31 rgbecker
		 License text changes
	pdfbase/_fontdata.py 1.5 rgbecker
		 License text changes
	lib/yaml.py 1.2 rgbecker
		 License text changes
	lib/setup.py 1.4 rgbecker
		 License text changes
	lib/graphdocpy.py 1.3 rgbecker
		 License text changes
	rl_config.py 1.3 rgbecker
		 License text changes
	lib/docpy.py 1.4 rgbecker
		 License text changes
	graphics/widgets/signsandsymbols.py 1.8 rgbecker
		 License text changes
	graphics/widgets/flags.py 1.2 rgbecker
		 License text changes
	graphics/widgets/__init__.py 1.2 rgbecker
		 License text changes
	graphics/widgetbase.py 1.7 rgbecker
		 License text changes
	graphics/testshapes.py 1.9 rgbecker
		 License text changes
	graphics/testdrawings.py 1.2 rgbecker
		 License text changes
	graphics/renderbase.py 1.9 rgbecker
		 License text changes
	graphics/renderPS.py 1.6 rgbecker
		 License text changes
	graphics/renderPDF.py 1.5 rgbecker
		 License text changes
	graphics/charts/textlabels.py 1.2 rgbecker
		 License text changes
	graphics/charts/piecharts.py 1.2 rgbecker
		 License text changes
	graphics/charts/lineplots.py 1.2 rgbecker
		 License text changes
	graphics/charts/linecharts.py 1.3 rgbecker
		 License text changes
	graphics/charts/legends.py 1.2 rgbecker
		 License text changes
	graphics/charts/barcharts.py 1.2 rgbecker
		 License text changes
	graphics/charts/axes.py 1.3 rgbecker
		 License text changes
	graphics/charts/__init__.py 1.2 rgbecker
		 License text changes
	graphics/__init__.py 1.2 rgbecker
		 License text changes
	docs/userguide/ch9_future.py 1.2 rgbecker
		 License text changes
	docs/graphguide/t_parse.py 1.2 rgbecker
		 License text changes
	docs/graphguide/platdemos.py 1.2 rgbecker
		 License text changes
	docs/graphguide/gengraphguide.py 1.2 rgbecker
		 License text changes
	docs/graphguide/examples.py 1.2 rgbecker
		 License text changes
	docs/graphguide/ch2_graphics.py 1.17 rgbecker
		 License text changes
	docs/graphguide/ch1_intro.py 1.7 rgbecker
		 License text changes
	graphics/shapes.py 1.16 rgbecker
		 Fixed indentation
	graphics/shapes.py 1.15 rgbecker
		 Added missing comment
	graphics/shapes.py 1.14 rgbecker
		 Made Drawings inherit from Group
	utils/copyr.txt 1.2 rgbecker
		 Changed copyright period
	utils/copyrite.py 1.2 rgbecker
		 Removed spurious assignnments
##### 2001/04/04 #####
	lib/logger.py 1.3 rgbecker
		 Added enable attribute to the WarnOnce class
	graphics/shapes.py 1.13 rgbecker
		 Added _textBoxLimits
##### 2001/04/03 #####
	docs/graphguide/ch2_graphics.py 1.16 johnprecedo
		 Spellchecked - fixed 15 typos.
	docs/graphguide/ch2_graphics.py 1.15 johnprecedo
		 Minor changes - resolved a conflict.
	docs/graphguide/ch2_graphics.py 1.14 johnprecedo
		 Added another sample Pie.
##### 2001/04/02 #####
	docs/graphguide/ch1_intro.py 1.6 johnprecedo
		 Corrected a couple of typoes.
	docs/graphguide/ch2_graphics.py 1.13 johnprecedo
		 Corrected a couple of typoes.
#################################################################################
#################### RELEASE 1.06 at 14:00 BST ##################################
#################################################################################
##### 2001/03/30 #####
	docs/graphguide/ch2_graphics.py 1.11 dinu_gherman
		 Minor changes.
	docs/graphguide/ch2_graphics.py 1.10 dinu_gherman
		 Updated text.
	docs/graphguide/ch2_graphics.py 1.9 dinu_gherman
		 Added two bar charts.
	docs/graphguide/ch2_graphics.py 1.8 dinu_gherman
		 Added samples for signsandsymbols.
	docs/graphguide/ch2_graphics.py 1.7 dinu_gherman
		 Added minor changes.
	docs/graphguide/ch1_intro.py 1.5 dinu_gherman
		 Added minor changes.
	docs/graphguide/ch1_intro.py 1.4 dinu_gherman
		 Retrofitted a few changes to the content.
	docs/userguide/genuserguide.py 1.46 dinu_gherman
		 Removed two commented imports (to see if CVS works).
	utils/daily.py 1.39 rgbecker
		 Changed to account for graphdocpy and dos/graphguide
	docs/userguide/genuserguide.py 1.45 rgbecker
		 Cross-refrenced to graphics guide, removed spurious ch8
	docs/userguide/ch8_graphics.py 1.15 rgbecker
		 Cross-refrenced to graphics guide, removed spurious ch8
	docs/userguide/ch2_graphics.py 1.12 rgbecker
		 Cross-refrenced to graphics guide, removed spurious ch8
	docs/userguide/ch1_intro.py 1.13 rgbecker
		 Cross-refrenced to graphics guide, removed spurious ch8
	README 1.3 rgbecker
		 Touch Test
##### 2001/03/29 #####
	docs/userguide/ch8_graphics.py 1.14 dinu_gherman
		 Added further minor corrections.
	docs/graphguide/ch2_graphics.py 1.6 dinu_gherman
		 Further changes.
	docs/graphguide/ch2_graphics.py 1.5 dinu_gherman
		 Added a table.
	docs/graphguide/ch2_graphics.py 1.4 dinu_gherman
		 Further changes.
	docs/userguide/ch8_graphics.py 1.13 dinu_gherman
		 Shortened even further.
	docs/graphguide/ch2_graphics.py 1.3 dinu_gherman
		 Minor changes.
	docs/graphguide/ch1_intro.py 1.3 dinu_gherman
		 Minor changes.
	docs/graphguide/ch2_graphics.py 1.2 dinu_gherman
		 Changed granularity of chapters.
	docs/graphguide/ch1_intro.py 1.2 dinu_gherman
		 Changed granularity of chapters.
	docs/userguide/genuserguide.py 1.44 dinu_gherman
		 Removed reference to original graphics chapter.
	docs/userguide/ch8_graphics_long.py 1.2 dinu_gherman
		 Removed graphics chapter into graphics guide.
	docs/graphguide/t_parse.py 1.1 dinu_gherman
		 Initial checkin, mostly copied from user guide.
	docs/graphguide/platdemos.py 1.1 dinu_gherman
		 Initial checkin, mostly copied from user guide.
	docs/graphguide/gengraphguide.py 1.1 dinu_gherman
		 Initial checkin, mostly copied from user guide.
	docs/graphguide/examples.py 1.1 dinu_gherman
		 Initial checkin, mostly copied from user guide.
	docs/graphguide/ch2_graphics.py 1.1 dinu_gherman
		 Initial checkin, mostly copied from user guide.
	docs/graphguide/ch1_intro.py 1.1 dinu_gherman
		 Initial checkin, mostly copied from user guide.
##### 2001/03/28 #####
	docs/userguide/ch8_graphics.py 1.12 dinu_gherman
		 Further changes.
	docs/userguide/ch8_graphics.py 1.11 dinu_gherman
		 Shortened from previous version.
	docs/userguide/genuserguide.py 1.43 dinu_gherman
		 Added import of short graphics chapter.
	docs/userguide/ch8_graphics_long.py 1.1 dinu_gherman
		 Copyied graphics chapter file (to be extracted into a seperate document).
	docs/userguide/ch8_graphics.py 1.10 johnprecedo
		 More images.
	docs/userguide/ch8_graphics.py 1.9 johnprecedo
		 Added more illustrations.
	graphics/charts/linecharts.py 1.2 dinu_gherman
		 Added to docstrings and tidied-up a bit.
##### 2001/03/27 #####
	docs/userguide/ch8_graphics.py 1.8 andy_robinson
		 Drawings and tables bug fixed.
	docs/tools/rltemplate.py 1.11 andy_robinson
		 Drawings and tables bug fixed.
	docs/userguide/ch8_graphics.py 1.7 johnprecedo
		 More markup. Added todo comments for missing images
	docs/userguide/genuserguide.py 1.42 johnprecedo
		 Added Andy's changes to include illustrations (from code snippets).
	docs/userguide/ch8_graphics.py 1.6 johnprecedo
		 Added Andy's changes to include illustrations (from code snippets).
	docs/userguide/ch8_graphics.py 1.5 johnprecedo
		 More markup changes. Code snippets changed so that they match with current code.
	docs/userguide/ch8_graphics.py 1.4 johnprecedo
		 Lots of small markup changes. Removed reference to paths - they aren't implemented yet in reportlab\graphics. changed references to 'widgets.py' to 'widgetbase.py'.
	docs/userguide/genuserguide.py 1.41 johnprecedo
		 Moved chapter 8 to chapter 9 - new chapter 8 inserted for reportlab\graphics.
##### 2001/03/26 #####
	docs/userguide/ch8_graphics.py 1.3 johnprecedo
		 Finished markup of reportlab\graphics tutorial. Only one table inserted so far. Any markup other that split into headings/paragraphs/code examples is also missing.
	docs/userguide/ch8_graphics.py 1.2 johnprecedo
		 First partial checkin on new chapter on "Platform Independent Graphics". Little markup done. Later part is still commented out (awaiting markup).
	utils/runtests.py 1.16 rgbecker
		 Improved pattern searches and added better inhibiting
	test/unittest.py 1.3 rgbecker
		 Added utils\runtests.py inhibitor comment
	test/test_pyfiles.py 1.4 rgbecker
		 Added utils\runtests.py inhibitor comment
	test/test_platypus_toc.py 1.5 rgbecker
		 Added utils\runtests.py inhibitor comment
	test/test_platypus_paragraphs.py 1.5 rgbecker
		 Added utils\runtests.py inhibitor comment
	test/test_pdfgen_pagemodes.py 1.3 rgbecker
		 Added utils\runtests.py inhibitor comment
	test/test_pdfbase_pdfutils.py 1.2 rgbecker
		 Added utils\runtests.py inhibitor comment
	test/test_pdfbase_pdfmetrics.py 1.4 rgbecker
		 Added utils\runtests.py inhibitor comment
	test/test_paragraphs.py 1.8 rgbecker
		 Added utils\runtests.py inhibitor comment
	test/test_lib_sequencer.py 1.3 rgbecker
		 Added utils\runtests.py inhibitor comment
	test/test_lib_colors.py 1.5 rgbecker
		 Added utils\runtests.py inhibitor comment
	test/test_graphics_speed.py 1.6 rgbecker
		 Added utils\runtests.py inhibitor comment
	test/test_graphics_charts_textlabels.py 1.2 rgbecker
		 Added utils\runtests.py inhibitor comment
	test/test_graphics_charts.py 1.6 rgbecker
		 Added utils\runtests.py inhibitor comment
	test/test_docstrings.py 1.3 rgbecker
		 Added utils\runtests.py inhibitor comment
	test/runAll.py 1.3 rgbecker
		 Added utils\runtests.py inhibitor comment
	docs/userguide/ch9_future.py 1.1 johnprecedo
		 Existing chapter 8 renamed to chapter 9. Stub for new chapter 8 on graphics added.
	docs/userguide/ch8_graphics.py 1.1 johnprecedo
		 Existing chapter 8 renamed to chapter 9. Stub for new chapter 8 on graphics added.
	docs/userguide/ch8_future.py 1.4 johnprecedo
		 Existing chapter 8 renamed to chapter 9. Stub for new chapter 8 on graphics added.
	lib/utils.py 1.11 rgbecker
		 Changed to prefer PIL as package
	platypus/flowables.py 1.18 rgbecker
		 Changed to PIL_Image
	pdfgen/test/testpdfgen.py 1.17 rgbecker
		 Changed to PIL_Image
	pdfgen/pdfimages.py 1.11 rgbecker
		 Changed to PIL_Image
	pdfgen/canvas.py 1.72 rgbecker
		 Changed to PIL_Image
	pdfbase/pdfutils.py 1.21 rgbecker
		 Changed to PIL_Image
	lib/utils.py 1.10 rgbecker
		 Changed to PIL_Image
	graphics/renderPS.py 1.5 rgbecker
		 Changed to PIL_Image
##### 2001/03/25 #####
	graphics/shapes.py 1.12 dinu_gherman
		 Improved Auto class. Changed formatting slightly.
	test/test_graphics_charts.py 1.5 dinu_gherman
		 Fixed a buglet with graphdocpy.py running over this file.
	lib/docpy.py 1.3 dinu_gherman
		 Fixed argument bug for UmlPdfDocumentBuilder.begin(). Added bullets to 'imported modules' section. Added cosmetic changes to MyTemplate.afterFlowable().
##### 2001/03/23 #####
	test/test_pyfiles.py 1.3 dinu_gherman
		 Changed trailing digit test to really fail.
	graphics/widgets/flags0.py 1.5 dinu_gherman
		 Replaced trailing digit filename.
	graphics/widgets/flags.py 1.1 dinu_gherman
		 Replaced trailing digit filename.
	platypus/tableofcontents0.py 1.3 dinu_gherman
		 Replaced trailing digit file.
	platypus/tableofcontents.py 1.1 dinu_gherman
		 Replaced trailing digit file.
	test/test_platypus_toc.py 1.4 dinu_gherman
		 Fixed imports for non-trailing digit modules.
	test/test_platypus_paragraphs.py 1.4 dinu_gherman
		 Fixed imports for non-trailing digit modules.
	test/test_pyfiles.py 1.2 dinu_gherman
		 Added test for trailing digits in filenames.
	lib/graphdocpy.py 1.2 dinu_gherman
		 Fixed doc strings and imports.
	lib/docpy.py 1.2 dinu_gherman
		 Fixed doc strings and imports.
	lib/graphdocpy.py 1.1 dinu_gherman
		 Initial checkin of non-trailing digit files replacing previous ones.
	lib/docpy.py 1.1 dinu_gherman
		 Initial checkin of non-trailing digit files replacing previous ones.
	lib/graphicsdoc0.py 1.12 dinu_gherman
		 Removed trailing digit file to be replaced with others.
	lib/docpy1.py 1.2 dinu_gherman
		 Removed trailing digit files to be replaced with others.
	lib/docpy0.py 1.8 dinu_gherman
		 Removed trailing digit files to be replaced with others.
	graphics/shapes.py 1.11 dinu_gherman
		 Added isNumberOrAuto() function.
	graphics/charts/axes.py 1.2 dinu_gherman
		 Added missing attribute maps.
##### 2001/03/22 #####
	lib/_rl_accel.c 1.12 rgbecker
		 Fixed up a better lookup for _AttrDict
	platypus/paraparser.py 1.41 andy_robinson
		 Accepts seqdefault/seqDefault and seqreset/seqReset
	lib/_rl_accel.c 1.11 rgbecker
		 Renamed AttrDict to _AttrDict
##### 2001/03/21 #####
	pdfbase/pdfdoc.py 1.43 aaron_watters
		 fixed minor bug in forms handling
	lib/_rl_accel.c 1.10 rgbecker
		 AttrDict improvements not yet primetime
	lib/setup.py 1.3 rgbecker
		 avoid import errors for Dinu, no runtests for Robin
	lib/_rl_accel.c 1.9 rgbecker
		 avoid import errors for Dinu, no runtests for Robin
	test/test_graphics_charts_textlabel0.py 1.4 dinu_gherman
		 Removed trailing digit filename to be replaced.
	test/test_graphics_speed.py 1.5 dinu_gherman
		 Replaced one file with a non-trailing digit filename. Modified files using previous trailing digit modules.
	test/test_graphics_charts_textlabels.py 1.1 dinu_gherman
		 Replaced one file with a non-trailing digit filename. Modified files using previous trailing digit modules.
	test/test_graphics_charts.py 1.4 dinu_gherman
		 Replaced one file with a non-trailing digit filename. Modified files using previous trailing digit modules.
	graphics/charts/textlabels.py 1.1 dinu_gherman
		 Initial checkin, replacing previous trailing digit filenames.
	graphics/charts/piecharts.py 1.1 dinu_gherman
		 Initial checkin, replacing previous trailing digit filenames.
	graphics/charts/lineplots.py 1.1 dinu_gherman
		 Initial checkin, replacing previous trailing digit filenames.
	graphics/charts/linecharts.py 1.1 dinu_gherman
		 Initial checkin, replacing previous trailing digit filenames.
	graphics/charts/legends.py 1.1 dinu_gherman
		 Initial checkin, replacing previous trailing digit filenames.
	graphics/charts/barcharts.py 1.1 dinu_gherman
		 Initial checkin, replacing previous trailing digit filenames.
	graphics/charts/axes.py 1.1 dinu_gherman
		 Initial checkin, replacing previous trailing digit filenames.
	graphics/charts/textlabel0.py 1.7 dinu_gherman
		 Removed file names to be replaced with non-trailing digit ones.
	graphics/charts/piechart0.py 1.6 dinu_gherman
		 Removed file names to be replaced with non-trailing digit ones.
	graphics/charts/lineplot.py 1.2 dinu_gherman
		 Removed file names to be replaced with non-trailing digit ones.
	graphics/charts/linechart0.py 1.3 dinu_gherman
		 Removed file names to be replaced with non-trailing digit ones.
	graphics/charts/legends0.py 1.9 dinu_gherman
		 Removed file names to be replaced with non-trailing digit ones.
	graphics/charts/barchart1.py 1.19 dinu_gherman
		 Removed file names to be replaced with non-trailing digit ones.
	graphics/charts/axes0.py 1.18 dinu_gherman
		 Removed file names to be replaced with non-trailing digit ones.
	rl_config.py 1.2 rgbecker
		 Made imageCaching a positive quantity and proeprty of the canvas
	platypus/tables.py 1.37 rgbecker
		 Made imageCaching a positive quantity and proeprty of the canvas
	pdfgen/pdfimages.py 1.10 rgbecker
		 Made imageCaching a positive quantity and proeprty of the canvas
	pdfgen/canvas.py 1.71 rgbecker
		 Made imageCaching a positive quantity and proeprty of the canvas
	docs/userguide/ch7_custom.py 1.7 rgbecker
		 Made imageCaching a positive quantity and proeprty of the canvas
	docs/userguide/ch6_tables.py 1.17 rgbecker
		 Made imageCaching a positive quantity and proeprty of the canvas
##### 2001/03/20 #####
	graphics/charts/lineplot.py 1.1 dinu_gherman
		 Initial checkin. Added new experimental time series x value axis.
	graphics/charts/axes0.py 1.17 dinu_gherman
		 Initial checkin. Added new experimental time series x value axis.
	graphics/charts/legends0.py 1.8 dinu_gherman
		 Fixed import buglet.
	graphics/charts/axes0.py 1.16 dinu_gherman
		 Fixed buglet when used with bar charts.
	graphics/charts/barchart1.py 1.18 dinu_gherman
		 Added horizontal bar charts plus samples.
##### 2001/03/19 #####
	platypus/tables.py 1.36 aaron_watters
		 changed handling of table element styles for better space/time.  old code left commented
	test/test_paragraphs.py 1.7 andy_robinson
		 Proving you get leading whitespace in print if you have leading whitespace inside the para tag.
##### 2001/03/17 #####
	lib/styles.py 1.14 rgbecker
		 Removed spurious CellStyle
	pdfbase/pdfmetrics.py 1.29 rgbecker
		 Fixed up self test
##### 2001/03/16 #####
	graphics/charts/barchart1.py 1.17 dinu_gherman
		 Fixed bug for bar charts using attribute 'useAbsolute'.
	pdfbase/pdfmetrics.py 1.28 rgbecker
		 Fix bad name error(s)
	pdfbase/_fontdata.py 1.4 rgbecker
		 Fix bad name error(s)
	test/test_paragraphs.py 1.6 rgbecker
		 Renamed config.py to rl_config.py
	test/test_graphics_speed.py 1.4 rgbecker
		 Renamed config.py to rl_config.py
	platypus/test/testplatypus.py 1.23 rgbecker
		 Renamed config.py to rl_config.py
	platypus/flowables.py 1.17 rgbecker
		 Renamed config.py to rl_config.py
	platypus/doctemplate.py 1.39 rgbecker
		 Renamed config.py to rl_config.py
	pdfgen/canvas.py 1.70 rgbecker
		 Renamed config.py to rl_config.py
	pdfbase/pdfdoc.py 1.42 rgbecker
		 Renamed config.py to rl_config.py
	lib/tocindex.py 1.7 rgbecker
		 Renamed config.py to rl_config.py
	lib/fonts.py 1.6 rgbecker
		 Renamed config.py to rl_config.py
	graphics/widgetbase.py 1.6 rgbecker
		 Renamed config.py to rl_config.py
	graphics/shapes.py 1.10 rgbecker
		 Renamed config.py to rl_config.py
	docs/userguide/genuserguide.py 1.40 rgbecker
		 Renamed config.py to rl_config.py
	docs/userguide/examples.py 1.18 rgbecker
		 Renamed config.py to rl_config.py
	docs/userguide/ch2_graphics.py 1.11 rgbecker
		 Renamed config.py to rl_config.py
	docs/tools/rltemplate.py 1.10 rgbecker
		 Renamed config.py to rl_config.py
	demos/pythonpoint/pythonpoint.py 1.31 rgbecker
		 Renamed config.py to rl_config.py
	demos/gadflypaper/gfe.py 1.14 rgbecker
		 Renamed config.py to rl_config.py
	utils/simpledoc.py 1.6 rgbecker
		 Fixed typo added point 8 (upload to SF)
	utils/README 1.7 rgbecker
		 Fixed typo added point 8 (upload to SF)
	pdfgen/pdfimages.py 1.9 rgbecker
		 fixed noImageCaching
	pdfbase/_fontdata.py 1.3 rgbecker
		 Changed in line with _rl_accel 0.3
	rl_config.py 1.1 rgbecker
		 Renamed config.py to rl_config.py
	config.py 1.4 rgbecker
		 Renamed config.py to rl_config.py
	pdfbase/pdfmetrics.py 1.27 rgbecker
		 Added support for _rl_accel 0.3
	lib/_rl_accel.c 1.8 rgbecker
		 Added _instanceStringWidth, imroved fontSize arg handling
##### 2001/03/15 #####
	graphics/charts/barchart1.py 1.16 dinu_gherman
		 Fixed baseline bug and added test sample.
	pdfbase/pdfmetrics.py 1.26 rgbecker
		 addStandardFonts was spurious
	pdfgen/canvas.py 1.69 rgbecker
		 pdfmetrics.addStandardFonts was spurious
	pdfbase/pdfmetrics.py 1.25 rgbecker
		 Stuff for adding standardFonts
	pdfgen/canvas.py 1.68 rgbecker
		 Use pdfmetrics addFonts
##### 2001/03/14 #####
	graphics/charts/barchart1.py 1.15 dinu_gherman
		 Added more samples.
##### 2001/03/13 #####
	changes 1.7 dinu_gherman
		 New release 1.05.
	__init__.py 1.11 dinu_gherman
		 New release 1.05.
	test/test_graphics_charts.py 1.3 dinu_gherman
		 Changed to use Legend0 instead of Swatches0.
	graphics/charts/legends0.py 1.7 dinu_gherman
		 Renamed Swatches0 to Legend0. Stripped away horizontal bar charts temporyrily.
	graphics/charts/barchart1.py 1.14 dinu_gherman
		 Renamed Swatches0 to Legend0. Stripped away horizontal bar charts temporyrily.
	graphics/charts/axes0.py 1.15 dinu_gherman
		 Renamed Swatches0 to Legend0. Stripped away horizontal bar charts temporyrily.
	lib/setup.py 1.2 rgbecker
		 Added sgmlop pyHnj extensions
	lib/_rl_accel.c 1.7 rgbecker
		 Fixed up the  defaultEncoding thing and added a version number
	lib/setup.py 1.1 rgbecker
		 Initial version of distutils script
	lib/_rl_accel.c 1.6 rgbecker
		 Initial version of distutils script
	graphics/charts/barchart1.py 1.13 dinu_gherman
		 Enabled mono-bar charts and no-bar charts(!) plus more samples.
	graphics/charts/axes0.py 1.14 dinu_gherman
		 Enabled mono-bar charts and no-bar charts(!) plus more samples.
	graphics/charts/barchart1.py 1.12 dinu_gherman
		 Added new samples.
	graphics/charts/axes0.py 1.13 dinu_gherman
		 Set minimum number of items for X/Y axes to 1 instead of 2.
	graphics/charts/axes0.py 1.12 dinu_gherman
		 Fixed bug refusing exactly two data items.
	graphics/charts/axes0.py 1.11 dinu_gherman
		 Improved axes.
	graphics/charts/axes0.py 1.10 dinu_gherman
		 Improved X/Y axes.
	graphics/charts/axes0.py 1.9 dinu_gherman
		 Improved YCategoryAxis slightly.
	test/test_graphics_charts.py 1.2 dinu_gherman
		 Changed attribute postponed to _postponed in doctemplate.py. Added minor changes in shapes.py. Changed test_graphics_charts.py to no longer use page breaks.
	platypus/doctemplate.py 1.38 dinu_gherman
		 Changed attribute postponed to _postponed in doctemplate.py. Added minor changes in shapes.py. Changed test_graphics_charts.py to no longer use page breaks.
	graphics/shapes.py 1.9 dinu_gherman
		 Changed attribute postponed to _postponed in doctemplate.py. Added minor changes in shapes.py. Changed test_graphics_charts.py to no longer use page breaks.
	graphics/charts/legends0.py 1.6 andy_robinson
		 Fixed broken cross reference to another example
	test/test_lib_colors.py 1.4 andy_robinson
		 Added CMYK support to core
	pdfgen/canvas.py 1.67 andy_robinson
		 Added CMYK support to core
	lib/colors.py 1.17 andy_robinson
		 Added CMYK support to core
##### 2001/03/12 #####
	test/test_lib_colors.py 1.3 andy_robinson
		 Initial checkin of CMYKColor class
	lib/colors.py 1.16 andy_robinson
		 Initial checkin of CMYKColor class
	graphics/charts/barchart1.py 1.11 dinu_gherman
		 Added initial crude version of HorizontalBarChart class.
	graphics/charts/axes0.py 1.8 dinu_gherman
		 Added dual versions for category and value axes. (not all tested)
	graphics/charts/piechart0.py 1.5 andy_robinson
		 Fixed bug with defaultColors changes being erroneouslty banned
	graphics/charts/legends0.py 1.5 andy_robinson
		 Fixed bug with defaultColors changes being erroneouslty banned
	test/test_graphics_charts.py 1.1 dinu_gherman
		 Initial checkin.
	graphics/charts/legends0.py 1.4 dinu_gherman
		 Fixed import error.
	test/test_pdfbase_pdfmetrics.py 1.3 rgbecker
		 Changes to basic Font stuff, moved it to pdfmetrics
	test/test_paragraphs.py 1.5 rgbecker
		 Changes to basic Font stuff, moved it to pdfmetrics
	pdfgen/canvas.py 1.66 rgbecker
		 Changes to basic Font stuff, moved it to pdfmetrics
	pdfbase/pdfmetrics.py 1.24 rgbecker
		 Changes to basic Font stuff, moved it to pdfmetrics
	pdfbase/pdfdoc.py 1.41 rgbecker
		 Changes to basic Font stuff, moved it to pdfmetrics
	pdfbase/_fontdata.py 1.2 rgbecker
		 Changes to basic Font stuff, moved it to pdfmetrics
	pdfgen/fonts0.py 1.4 rgbecker
		 Removed fonts0 stuff to pdfbase.pdfmetrics
##### 2001/03/08 #####
	test/test_pdfbase_pdfmetrics.py 1.2 rgbecker
		 Initial split of pdfmetrics into code + database; some minor name adjustments
	pdfgen/fonts0.py 1.3 rgbecker
		 Initial split of pdfmetrics into code + database; some minor name adjustments
	pdfgen/canvas.py 1.65 rgbecker
		 Initial split of pdfmetrics into code + database; some minor name adjustments
	pdfbase/pdfmetrics.py 1.23 rgbecker
		 Initial split of pdfmetrics into code + database; some minor name adjustments
	pdfbase/_fontdata.py 1.1 rgbecker
		 Initial split of pdfmetrics into code + database; some minor name adjustments
	demos/stdfonts/stdfonts.py 1.10 rgbecker
		 Initial split of pdfmetrics into code + database; some minor name adjustments
	test/test_platypus_paragraphs.py 1.3 dinu_gherman
		 Added a multi-page paragraph test.
	docs/userguide/ch1_intro.py 1.12 rgbecker
		 Changed bad character
##### 2001/03/07 #####
	utils/simpledoc.py 1.5 rgbecker
		 Changed things to use config.py for defaults
	test/test_paragraphs.py 1.4 rgbecker
		 Changed things to use config.py for defaults
	platypus/test/testplatypus.py 1.22 rgbecker
		 Changed things to use config.py for defaults
	platypus/tables.py 1.35 rgbecker
		 Changed things to use config.py for defaults
	platypus/flowables.py 1.16 rgbecker
		 Changed things to use config.py for defaults
	platypus/doctemplate.py 1.37 rgbecker
		 Changed things to use config.py for defaults
	pdfgen/fonts0.py 1.2 rgbecker
		 Changed things to use config.py for defaults
	pdfgen/canvas.py 1.64 rgbecker
		 Changed things to use config.py for defaults
	pdfbase/pdfdoc.py 1.40 rgbecker
		 Changed things to use config.py for defaults
	lib/tocindex.py 1.6 rgbecker
		 Changed things to use config.py for defaults
	lib/pagesizes.py 1.6 rgbecker
		 Changed things to use config.py for defaults
	lib/fonts.py 1.5 rgbecker
		 Changed things to use config.py for defaults
	docs/userguide/genuserguide.py 1.39 rgbecker
		 Changed things to use config.py for defaults
	docs/userguide/examples.py 1.17 rgbecker
		 Changed things to use config.py for defaults
	docs/userguide/ch4_platypus_concepts.py 1.10 rgbecker
		 Changed things to use config.py for defaults
	docs/userguide/ch2_graphics.py 1.10 rgbecker
		 Changed things to use config.py for defaults
	docs/tools/rltemplate.py 1.9 rgbecker
		 Changed things to use config.py for defaults
	demos/pythonpoint/pythonpoint.py 1.30 rgbecker
		 Changed things to use config.py for defaults
	demos/odyssey/fodyssey.py 1.15 rgbecker
		 Changed things to use config.py for defaults
	demos/gadflypaper/gfe.py 1.13 rgbecker
		 Changed things to use config.py for defaults
	config.py 1.3 rgbecker
		 Changed things to use config.py for defaults
	platypus/paragraph.py 1.51 rgbecker
		 Added test 5
##### 2001/03/06 #####
	lib/yaml.py 1.1 andy_robinson
		 Added
	test/test_pdfbase_pdfmetrics.py 1.1 andy_robinson
		 Added explicit font and encoding support
	platypus/paragraph.py 1.50 andy_robinson
		 Added explicit font and encoding support
	platypus/doctemplate.py 1.36 andy_robinson
		 Added explicit font and encoding support
	pdfgen/fonts0.py 1.1 andy_robinson
		 Added explicit font and encoding support
	pdfgen/canvas.py 1.63 andy_robinson
		 Added explicit font and encoding support
	pdfbase/pdfmetrics.py 1.22 andy_robinson
		 Added explicit font and encoding support
	pdfbase/pdfdoc.py 1.39 andy_robinson
		 Added explicit font and encoding support
	lib/graphicsdoc0.py 1.11 andy_robinson
		 Added explicit font and encoding support
	demos/stdfonts/stdfonts.py 1.9 andy_robinson
		 Added explicit font and encoding support
	config.py 1.2 andy_robinson
		 Added explicit font and encoding support
	__init__.py 1.10 andy_robinson
		 Added explicit font and encoding support
##### 2001/03/02 #####
	lib/fonts.py 1.4 rgbecker
		 Removed spurious import
	lib/fonts.py 1.3 rgbecker
		 Added standard filename roots and findPFB
##### 2001/03/01 #####
	pdfbase/pdfmetrics.py 1.21 rgbecker
		 Fixed _rl_accel import
##### 2001/02/28 #####
	platypus/paraparser.py 1.40 rgbecker
		 Exception tests need str()
	pdfbase/pdfutils.py 1.20 rgbecker
		 Exception tests need str()
	pdfbase/pdfmetrics.py 1.20 rgbecker
		 Exception tests need str()
	lib/xmllib.py 1.6 rgbecker
		 Exception tests need str()
	lib/utils.py 1.9 rgbecker
		 Exception tests need str()
	lib/graphicsdoc0.py 1.10 rgbecker
		 Exception tests need str()
	demos/odyssey/dodyssey.py 1.10 rgbecker
		 slight twitch to onDraw test
	pdfbase/pdfutils.py 1.19 rgbecker
		 Fixed typos
	graphics/renderPS.py 1.4 rgbecker
		 Improved ImportError handling
	lib/xmllib.py 1.5 rgbecker
		 Improved ImportError handling
	lib/utils.py 1.8 rgbecker
		 Improved ImportError handling
	lib/graphicsdoc0.py 1.9 rgbecker
		 Improved ImportError handling
	lib/_rl_accel.dsp 1.3 rgbecker
		 Improved ImportError handling
	pdfbase/pdfutils.py 1.18 rgbecker
		 Improved ImportError handling
	pdfbase/pdfmetrics.py 1.19 rgbecker
		 Improved ImportError handling
	pdfbase/pdfdoc.py 1.38 rgbecker
		 Improved ImportError handling
	pdfgen/pdfimages.py 1.8 rgbecker
		 Imporved ImportError handling
	pdfgen/canvas.py 1.62 rgbecker
		 Imporved ImportError handling
	platypus/paraparser.py 1.39 rgbecker
		 Imporved ImportError handling
	graphics/charts/barchart1.py 1.10 dinu_gherman
		 Changed bar chart labels to have always a boxAttribute of 'c'.
	test/test_graphics_charts_textlabel0.py 1.3 dinu_gherman
		 Added meaningful tests for textAnchor attribute.
##### 2001/02/27 #####
	graphics/charts/textlabel0.py 1.6 rgbecker
		 Added auto height, width and leading
	test/test_graphics_charts_textlabel0.py 1.2 dinu_gherman
		 Thoroughly changed test file.
	graphics/charts/barchart1.py 1.9 dinu_gherman
		 Splitted function sample2 in sample2a and sample2b.
	test/test_graphics_charts_textlabel0.py 1.1 dinu_gherman
		 Initial checkin.
	graphics/charts/textlabel0.py 1.5 dinu_gherman
		 Removed commented test function.
##### 2001/02/26 #####
	lib/docpy1.py 1.1 andy_robinson
		 Initial checkin of new experiments
##### 2001/02/24 #####
	graphics/widgets/signsandsymbols.py 1.7 dinu_gherman
		 Added color attribute to SmileyFace0.
	graphics/charts/linechart0.py 1.2 dinu_gherman
		 General improvements.
	graphics/charts/linechart0.py 1.1 dinu_gherman
		 Initial checkin.
##### 2001/02/23 #####
	test/test_pyfiles.py 1.1 dinu_gherman
		 Initial checkin.
##### 2001/02/22 #####
	pdfbase/pdfutils.py 1.17 dinu_gherman
		 Removed commented encoding test functions.
	test/test_pdfbase_pdfutils.py 1.1 dinu_gherman
		 Initial checkin.
	pdfbase/pdfutils.py 1.16 dinu_gherman
		 Commented another test function.
	pdfbase/pdfutils.py 1.15 dinu_gherman
		 Commented one test function.
	graphics/charts/textlabel0.py 1.4 dinu_gherman
		 Minor corrections.
	graphics/charts/axes0.py 1.7 dinu_gherman
		 Minor corrections.
##### 2001/02/21 #####
	pdfgen/canvas.py 1.61 aaron_watters
		 bugfix: code before of begin/end form should not appear in the form but in page
##### 2001/02/19 #####
	graphics/charts/axes0.py 1.6 dinu_gherman
		 Added different modes for joined x- and y-axes.
	graphics/charts/barchart1.py 1.8 dinu_gherman
		 Added attribute mappings.
	graphics/charts/axes0.py 1.5 dinu_gherman
		 Added attribute mappings.
	graphics/charts/axes0.py 1.4 dinu_gherman
		 Changed test function to sample function.
	graphics/charts/legends0.py 1.3 dinu_gherman
		 Added combined barchart sample.
	graphics/charts/legends0.py 1.2 dinu_gherman
		 Minor changes.
	graphics/charts/legends0.py 1.1 dinu_gherman
		 Initial checkin.
	test/test_pdfgen_pagemodes.py 1.2 dinu_gherman
		 Added doc string.
	test/test_platypus_paragraphs.py 1.2 dinu_gherman
		 Added doc strings.
	test/test_lib_sequencer.py 1.2 dinu_gherman
		 Added doc strings.
	test/test_lib_colors.py 1.2 dinu_gherman
		 Added doc strings.
	test/test_docstrings.py 1.2 dinu_gherman
		 Fixed filename bug.
	test/test_docstrings.py 1.1 dinu_gherman
		 Initial checkin.
##### 2001/02/18 #####
	test/unittest.py 1.2 andy_robinson
		 Resynched graphics test with Pie class; runAll now deletes previous PDF files incorporated latest unittest.py
	test/test_graphics_speed.py 1.3 andy_robinson
		 Resynched graphics test with Pie class; runAll now deletes previous PDF files incorporated latest unittest.py
	test/runAll.py 1.2 andy_robinson
		 Resynched graphics test with Pie class; runAll now deletes previous PDF files incorporated latest unittest.py
	test/00readme.txt 1.4 andy_robinson
		 Resynched graphics test with Pie class; runAll now deletes previous PDF files incorporated latest unittest.py
##### 2001/02/16 #####
	test/test_lib_colors.py 1.1 dinu_gherman
		 Initil checkin.
	lib/colors.py 1.15 dinu_gherman
		 Added color2bw function.
##### 2001/02/15 #####
	graphics/charts/piechart0.py 1.4 andy_robinson
		 Slimmed down and added demo methods
	graphics/charts/barchart1.py 1.7 andy_robinson
		 Slimmed down and added demo methods
	graphics/charts/axes0.py 1.3 andy_robinson
		 Slimmed down and added demo methods
	test/test_platypus_paragraphs.py 1.1 dinu_gherman
		 Initial checkin.
##### 2001/02/14 #####
	graphics/charts/barchart.py 1.4 dinu_gherman
		 File has become obsolete. See barchart1.py.
	lib/graphicsdoc0.py 1.8 dinu_gherman
		 Improved displaying widget properties (using pprint).
	pdfgen/test/testPageMode.py 1.3 dinu_gherman
		 Moved to reportlab.test.
	test/test_pdfgen_pagemodes.py 1.1 dinu_gherman
		 Initial checkin, moved from reportlab.pdfgen.test.
	test/test_lib_sequencer.py 1.1 dinu_gherman
		 Initial checkin.
	test/runAll.py 1.1 dinu_gherman
		 Initial checkin.
	test/test_platypus_toc.py 1.3 dinu_gherman
		 Restructured entire test suite to make clean use of the unittest module.
	test/test_paragraphs.py 1.3 dinu_gherman
		 Restructured entire test suite to make clean use of the unittest module.
	test/test_graphics_speed.py 1.2 dinu_gherman
		 Restructured entire test suite to make clean use of the unittest module.
	test/00readme.txt 1.3 dinu_gherman
		 Restructured entire test suite to make clean use of the unittest module.
##### 2001/02/13 #####
	graphics/widgets/flags0.py 1.4 johnprecedo
		 - Removed white borders from inside edges of flags. - added the word "sample" to the demo flag produced by Flag0 - dummy __init__ and demo methods added for Portugal0 - no example flag   or properties are produced.
##### 2001/03/13 #####
	test/test_graphics_charts.py 1.3 dinu_gherman
		 Changed to use Legend0 instead of Swatches0.
	graphics/charts/legends0.py 1.7 dinu_gherman
		 Renamed Swatches0 to Legend0. Stripped away horizontal bar charts temporyrily.
	graphics/charts/barchart1.py 1.14 dinu_gherman
		 Renamed Swatches0 to Legend0. Stripped away horizontal bar charts temporyrily.
	graphics/charts/axes0.py 1.15 dinu_gherman
		 Renamed Swatches0 to Legend0. Stripped away horizontal bar charts temporyrily.
	lib/setup.py 1.2 rgbecker
		 Added sgmlop pyHnj extensions
	lib/_rl_accel.c 1.7 rgbecker
		 Fixed up the  defaultEncoding thing and added a version number
	lib/setup.py 1.1 rgbecker
		 Initial version of distutils script
	lib/_rl_accel.c 1.6 rgbecker
		 Initial version of distutils script
	graphics/charts/barchart1.py 1.13 dinu_gherman
		 Enabled mono-bar charts and no-bar charts(!) plus more samples.
	graphics/charts/axes0.py 1.14 dinu_gherman
		 Enabled mono-bar charts and no-bar charts(!) plus more samples.
	graphics/charts/barchart1.py 1.12 dinu_gherman
		 Added new samples.
	graphics/charts/axes0.py 1.13 dinu_gherman
		 Set minimum number of items for X/Y axes to 1 instead of 2.
	graphics/charts/axes0.py 1.12 dinu_gherman
		 Fixed bug refusing exactly two data items.
	graphics/charts/axes0.py 1.11 dinu_gherman
		 Improved axes.
	graphics/charts/axes0.py 1.10 dinu_gherman
		 Improved X/Y axes.
	graphics/charts/axes0.py 1.9 dinu_gherman
		 Improved YCategoryAxis slightly.
	test/test_graphics_charts.py 1.2 dinu_gherman
		 Changed attribute postponed to _postponed in doctemplate.py. Added minor changes in shapes.py. Changed test_graphics_charts.py to no longer use page breaks.
	platypus/doctemplate.py 1.38 dinu_gherman
		 Changed attribute postponed to _postponed in doctemplate.py. Added minor changes in shapes.py. Changed test_graphics_charts.py to no longer use page breaks.
	graphics/shapes.py 1.9 dinu_gherman
		 Changed attribute postponed to _postponed in doctemplate.py. Added minor changes in shapes.py. Changed test_graphics_charts.py to no longer use page breaks.
	graphics/charts/legends0.py 1.6 andy_robinson
		 Fixed broken cross reference to another example
	test/test_lib_colors.py 1.4 andy_robinson
		 Added CMYK support to core
	pdfgen/canvas.py 1.67 andy_robinson
		 Added CMYK support to core
	lib/colors.py 1.17 andy_robinson
		 Added CMYK support to core
##### 2001/03/12 #####
	test/test_lib_colors.py 1.3 andy_robinson
		 Initial checkin of CMYKColor class
	lib/colors.py 1.16 andy_robinson
		 Initial checkin of CMYKColor class
	graphics/charts/barchart1.py 1.11 dinu_gherman
		 Added initial crude version of HorizontalBarChart class.
	graphics/charts/axes0.py 1.8 dinu_gherman
		 Added dual versions for category and value axes. (not all tested)
	graphics/charts/piechart0.py 1.5 andy_robinson
		 Fixed bug with defaultColors changes being erroneouslty banned
	graphics/charts/legends0.py 1.5 andy_robinson
		 Fixed bug with defaultColors changes being erroneouslty banned
	test/test_graphics_charts.py 1.1 dinu_gherman
		 Initial checkin.
	graphics/charts/legends0.py 1.4 dinu_gherman
		 Fixed import error.
	test/test_pdfbase_pdfmetrics.py 1.3 rgbecker
		 Changes to basic Font stuff, moved it to pdfmetrics
	test/test_paragraphs.py 1.5 rgbecker
		 Changes to basic Font stuff, moved it to pdfmetrics
	pdfgen/canvas.py 1.66 rgbecker
		 Changes to basic Font stuff, moved it to pdfmetrics
	pdfbase/pdfmetrics.py 1.24 rgbecker
		 Changes to basic Font stuff, moved it to pdfmetrics
	pdfbase/pdfdoc.py 1.41 rgbecker
		 Changes to basic Font stuff, moved it to pdfmetrics
	pdfbase/_fontdata.py 1.2 rgbecker
		 Changes to basic Font stuff, moved it to pdfmetrics
	pdfgen/fonts0.py 1.4 rgbecker
		 Removed fonts0 stuff to pdfbase.pdfmetrics
##### 2001/03/08 #####
	test/test_pdfbase_pdfmetrics.py 1.2 rgbecker
		 Initial split of pdfmetrics into code + database; some minor name adjustments
	pdfgen/fonts0.py 1.3 rgbecker
		 Initial split of pdfmetrics into code + database; some minor name adjustments
	pdfgen/canvas.py 1.65 rgbecker
		 Initial split of pdfmetrics into code + database; some minor name adjustments
	pdfbase/pdfmetrics.py 1.23 rgbecker
		 Initial split of pdfmetrics into code + database; some minor name adjustments
	pdfbase/_fontdata.py 1.1 rgbecker
		 Initial split of pdfmetrics into code + database; some minor name adjustments
	demos/stdfonts/stdfonts.py 1.10 rgbecker
		 Initial split of pdfmetrics into code + database; some minor name adjustments
	test/test_platypus_paragraphs.py 1.3 dinu_gherman
		 Added a multi-page paragraph test.
##### 2001/03/07 #####
	test/test_paragraphs.py 1.4 rgbecker
		 Changed things to use config.py for defaults
	platypus/test/testplatypus.py 1.22 rgbecker
		 Changed things to use config.py for defaults
	platypus/tables.py 1.35 rgbecker
		 Changed things to use config.py for defaults
	platypus/flowables.py 1.16 rgbecker
		 Changed things to use config.py for defaults
	platypus/doctemplate.py 1.37 rgbecker
		 Changed things to use config.py for defaults
	pdfgen/fonts0.py 1.2 rgbecker
		 Changed things to use config.py for defaults
	pdfgen/canvas.py 1.64 rgbecker
		 Changed things to use config.py for defaults
	pdfbase/pdfdoc.py 1.40 rgbecker
		 Changed things to use config.py for defaults
	lib/tocindex.py 1.6 rgbecker
		 Changed things to use config.py for defaults
	lib/pagesizes.py 1.6 rgbecker
		 Changed things to use config.py for defaults
	lib/fonts.py 1.5 rgbecker
		 Changed things to use config.py for defaults
	demos/pythonpoint/pythonpoint.py 1.30 rgbecker
		 Changed things to use config.py for defaults
	demos/odyssey/fodyssey.py 1.15 rgbecker
		 Changed things to use config.py for defaults
	demos/gadflypaper/gfe.py 1.13 rgbecker
		 Changed things to use config.py for defaults
	config.py 1.3 rgbecker
		 Changed things to use config.py for defaults
	platypus/paragraph.py 1.51 rgbecker
		 Added test 5
##### 2001/03/06 #####
	lib/yaml.py 1.1 andy_robinson
		 Added
	test/test_pdfbase_pdfmetrics.py 1.1 andy_robinson
		 Added explicit font and encoding support
	platypus/paragraph.py 1.50 andy_robinson
		 Added explicit font and encoding support
	platypus/doctemplate.py 1.36 andy_robinson
		 Added explicit font and encoding support
	pdfgen/fonts0.py 1.1 andy_robinson
		 Added explicit font and encoding support
	pdfgen/canvas.py 1.63 andy_robinson
		 Added explicit font and encoding support
	pdfbase/pdfmetrics.py 1.22 andy_robinson
		 Added explicit font and encoding support
	pdfbase/pdfdoc.py 1.39 andy_robinson
		 Added explicit font and encoding support
	lib/graphicsdoc0.py 1.11 andy_robinson
		 Added explicit font and encoding support
	demos/stdfonts/stdfonts.py 1.9 andy_robinson
		 Added explicit font and encoding support
	config.py 1.2 andy_robinson
		 Added explicit font and encoding support
	__init__.py 1.10 andy_robinson
		 Added explicit font and encoding support
##### 2001/feb/09 release 1.03
##### 2001/02/09 #####
	platypus/tableofcontents0.py 1.2 dinu_gherman
		 Fixed wrapped line indentation.
	lib/graphicsdoc0.py 1.7 dinu_gherman
		 Entirely reworked PDF and HTML doc builders.
	lib/docpy0.py 1.7 dinu_gherman
		 Entirely reworked PDF and HTML doc builders.
	graphics/widgetbase.py 1.5 dinu_gherman
		 Shortened two lines that might appear in doc tools.
	platypus/tableofcontents0.py 1.1 dinu_gherman
		 Initial checkin.
##### 2001/02/08 #####
	platypus/doctemplate.py 1.35 dinu_gherman
		 Commented some disturbing print statements.
	lib/graphicsdoc0.py 1.6 dinu_gherman
		 UmlPdfDocBuilder moved to docpy0.py. Changed some defaults and variable names. Fixed handling of packages with dotted names. Changed output of GraphPdfDocBuilder0.
	lib/docpy0.py 1.6 dinu_gherman
		 UmlPdfDocBuilder moved here from graphicsdoc0.py. Changed some defaults and variable names. Fixed handling of packages with dotted names.
	graphics/charts/barchart1.py 1.6 dinu_gherman
		 One long line reduced in length.
##### 2001/02/07 #####
	lib/randomtext.py 1.6 johnprecedo
		 fixed a typo
	lib/randomtext.py 1.5 johnprecedo
		 Added a PYTHON theme (it had to be done...).
	lib/graphicsdoc0.py 1.5 dinu_gherman
		 Added displaying drawings returned by functions.
	graphics/widgets/signsandsymbols.py 1.5 johnprecedo
		 Corrected mistake in the doctsring for flags0.py and signsandsymbols.py.
	graphics/widgets/flags0.py 1.3 johnprecedo
		 Corrected mistake in the doctsring for flags0.py and signsandsymbols.py.
	lib/graphicsdoc0.py 1.4 dinu_gherman
		 Fixed import error.
	lib/graphicsdoc0.py 1.3 dinu_gherman
		 Added an experimental PlatypusDocBuilder0. Uncommented UmlPdfDocBuilder0.
	lib/graphicsdoc0.py 1.2 dinu_gherman
		 Moved utility functions from docpy0.py to graphicsdoc0.py.
	lib/docpy0.py 1.5 dinu_gherman
		 Moved utility functions from docpy0.py to graphicsdoc0.py.
##### 2001/02/06 #####
	lib/graphicsdoc0.py 1.1 dinu_gherman
		 Initial checkin.
	lib/docpy0.py 1.4 dinu_gherman
		 Stripped-off everything widget/graphics-specific.
	graphics/charts/barchart1.py 1.5 andy_robinson
		 Added barLabelBudge property to support a customer
	graphics/renderbase.py 1.8 andy_robinson
		 Fixes for QIR barchart presentation
	graphics/renderPS.py 1.3 andy_robinson
		 Fixes for QIR barchart presentation
	graphics/charts/barchart1.py 1.4 andy_robinson
		 Fixes for QIR barchart presentation
##### 2001/02/05 #####
	pdfbase/pdfdoc.py 1.36 aaron_watters
		 forms in forms now work
	graphics/widgets/signsandsymbols.py 1.4 johnprecedo
		 bugfixes for the various demo() methods for widgets.
	lib/docpy0.py 1.3 dinu_gherman
		 Fixed string joining for base class names.
	graphics/widgets/signsandsymbols.py 1.3 johnprecedo
		 changes all demo() methods to centre graphics in boxes 200x100 boxes..
	lib/docpy0.py 1.2 dinu_gherman
		 Modified inspect import.
	lib/docpy0.py 1.1 dinu_gherman
		 Initial checkin.
	graphics/widgets/flags0.py 1.2 johnprecedo
		 tightened up code for stripes in US and Greek flags.
	graphics/widgets/flags0.py 1.1 johnprecedo
		 First checkin of file that used to be users/john/fwidgets.py. 20 flags as widgets - inlcuding UK, US, most EU members and a few non-EU European countries.
	pdfbase/pdfdoc.py 1.35 aaron_watters
		 pdfdictionary has no has_key method bugfix.  sorry.
##### 2001/02/04 #####
	graphics/renderbase.py 1.7 andy_robinson
		 Continued work on bar charts and support
	graphics/charts/textlabel0.py 1.3 andy_robinson
		 Continued work on bar charts and support
	graphics/charts/barchart1.py 1.3 andy_robinson
		 Continued work on bar charts and support
	graphics/charts/axes0.py 1.2 andy_robinson
		 Continued work on bar charts and support
	graphics/charts/axes0.py 1.1 andy_robinson
		 Broke out axes to separate module
	graphics/widgetbase.py 1.4 andy_robinson
		 Fixed user node rendering bug, added barchart1
	graphics/shapes.py 1.8 andy_robinson
		 Fixed user node rendering bug, added barchart1
	graphics/renderbase.py 1.6 andy_robinson
		 Fixed user node rendering bug, added barchart1
	graphics/charts/textlabel0.py 1.2 andy_robinson
		 Fixed user node rendering bug, added barchart1
	graphics/charts/barchart1.py 1.2 andy_robinson
		 Fixed user node rendering bug, added barchart1
##### 2001/02/02 #####
	pdfbase/pdfdoc.py 1.34 aaron_watters
		 minor changes to support pdfparse
##### 2001/02/01 #####
	graphics/testshapes.py 1.8 andy_robinson
		 Working on chart framework
	graphics/shapes.py 1.7 andy_robinson
		 Working on chart framework
	graphics/renderbase.py 1.5 andy_robinson
		 Working on chart framework
	graphics/charts/textlabel0.py 1.1 andy_robinson
		 Working on chart framework
	graphics/charts/barchart1.py 1.1 andy_robinson
		 Working on chart framework
##### 2001/01/30 #####
	lib/inspect.py 1.1 dinu_gherman
		 Initial checkin.
	graphics/charts/barchart.py 1.3 aaron_watters
		 more stuff, bug fixes etcetera....
	graphics/testshapes.py 1.7 andy_robinson
		 Fixed group transform bug and added tests
	graphics/renderbase.py 1.4 andy_robinson
		 Fixed group transform bug and added tests
	graphics/renderPS.py 1.2 andy_robinson
		 Fixed group transform bug and added tests
	graphics/renderPDF.py 1.4 andy_robinson
		 Fixed group transform bug and added tests
##### 2001/01/29 #####
	graphics/widgets/signsandsymbols.py 1.2 johnprecedo
		 Changed classnames to use the '0' convention for experimental. Changed way test print out is carried out. (all calls to classes wrapped up in a new function 'test()') some tidying up.
##### 2001/01/28 #####
	graphics/testshapes.py 1.6 andy_robinson
		 Fixes to CTM to support bitmap renderer; extra string rotation and group tests.
	graphics/renderbase.py 1.3 andy_robinson
		 Fixes to CTM to support bitmap renderer; extra string rotation and group tests.
##### 2001/01/26 #####
	graphics/widgetbase.py 1.3 andy_robinson
		 Added barchart compatibility
	graphics/shapes.py 1.6 andy_robinson
		 Added barchart compatibility
	graphics/charts/piechart0.py 1.3 andy_robinson
		 Added barchart compatibility
	graphics/charts/barchart.py 1.2 aaron_watters
		 added scales
##### 2001/01/25 #####
	graphics/widgets/signsandsymbols.py 1.1 johnprecedo
		 First checkin of file that used to be users/john/jwidgets.py. 12 new widgets.
	graphics/charts/barchart.py 1.1 aaron_watters
		 A initial go at Aarons last rewrite of chart widgets :)
	graphics/testshapes.py 1.5 andy_robinson
		 Added postscript renderer and tests, fixed renderer bugs
	graphics/shapes.py 1.5 andy_robinson
		 Added postscript renderer and tests, fixed renderer bugs
	graphics/renderbase.py 1.2 andy_robinson
		 Added postscript renderer and tests, fixed renderer bugs
	graphics/renderPS.py 1.1 andy_robinson
		 Added postscript renderer and tests, fixed renderer bugs
	test/test_graphics_speed.py 1.1 andy_robinson
		 added a crude benchmarking script
##### 2001/01/24 #####
	graphics/testshapes.py 1.4 andy_robinson
		 Added group tests, fixed font bug, resynched with Dinu
	graphics/shapes.py 1.4 andy_robinson
		 Added group tests, fixed font bug, resynched with Dinu
	graphics/renderPDF.py 1.3 andy_robinson
		 Added group tests, fixed font bug, resynched with Dinu
	graphics/testshapes.py 1.3 dinu_gherman
		 Added unit testing plus error drawing.
	graphics/testshapes.py 1.2 dinu_gherman
		 Added some String shapes.
	graphics/testshapes.py 1.1 dinu_gherman
		 Initial checkin.
	graphics/widgetbase.py 1.2 andy_robinson
		 Collection based piechart amd support for it.
	graphics/shapes.py 1.3 andy_robinson
		 Collection based piechart amd support for it.
	graphics/renderPDF.py 1.2 andy_robinson
		 Collection based piechart amd support for it.
	graphics/charts/piechart0.py 1.2 andy_robinson
		 Collection based piechart amd support for it.
##### 2001/01/23 #####
	config.py 1.1 johnprecedo
		 Whoops, forgot
	graphics/shapes.py 1.2 johnprecedo
		 typos fixed
##### 2001/01/22 #####
	graphics/charts/piechart0.py 1.1 andy_robinson
		 Experimental pie module
	graphics/widgets/__init__.py 1.1 andy_robinson
		 Added widgets subpackage
	graphics/charts/__init__.py 1.1 andy_robinson
		 Added charts package
	graphics/widgetbase.py 1.1 andy_robinson
		 Added graphics module
	graphics/testdrawings.py 1.1 andy_robinson
		 Added graphics module
	graphics/shapes.py 1.1 andy_robinson
		 Added graphics module
	graphics/renderbase.py 1.1 andy_robinson
		 Added graphics module
	graphics/renderPDF.py 1.1 andy_robinson
		 Added graphics module
	graphics/__init__.py 1.1 andy_robinson
		 Added graphics module
	pdfbase/pdfutils.py 1.14 dinu_gherman
		 Modified docstrings.
##### 2001/01/19 #####
	lib/abag.py 1.4 rgbecker
		 Changed comment to be slightly more meaningful
	platypus/frames.py 1.12 dinu_gherman
		 Minor changes.
	platypus/doctemplate.py 1.34 dinu_gherman
		 Minor changes.
	lib/randomtext.py 1.4 dinu_gherman
		 Minor changes.
##### 2001/01/18 #####
	lib/colors.py 1.14 rgbecker
		 Syncing with pingo
##### 2001/01/12 #####
	pdfgen/textobject.py 1.22 dinu_gherman
		 Minor neglectable changes.
	pdfgen/pdfimages.py 1.7 dinu_gherman
		 Minor neglectable changes.
	pdfgen/pdfgeom.py 1.7 dinu_gherman
		 Minor neglectable changes.
	pdfgen/pathobject.py 1.8 dinu_gherman
		 Minor neglectable changes.
	pdfgen/canvas.py 1.60 dinu_gherman
		 Minor neglectable changes.
	lib/utils.py 1.7 dinu_gherman
		 Minor neglectable changes.
	lib/sequencer.py 1.10 dinu_gherman
		 Minor neglectable changes.
##### 2001/01/10 #####
	lib/abag.py 1.3 dinu_gherman
		 Docstring modified.
##### 2001/01/02 #####
	lib/randomtext.py 1.3 johnprecedo
		 Minor tweaks (removing unneccesary capital letters etc).
	lib/randomtext.py 1.2 johnprecedo
		 Added 5 new themes.
##### 2000/12/29 #####
	test/test_paragraphs.py 1.2 andy_robinson
		 Added a random text module
	platypus/flowables.py 1.15 andy_robinson
		 Added a random text module
	lib/randomtext.py 1.1 andy_robinson
		 Added a random text module
##### 2000/12/25 #####
	platypus/flowables.py 1.14 rgbecker
		 Allow for non string file names in Image.__init__
##### 2000/12/20 #####
	pdfgen/pdfimages.py 1.6 andy_robinson
		 death to two tabs!
##### 2000/12/19 #####
	pdfgen/pdfimages.py 1.5 rgbecker
		 Fix typo
	pdfgen/pdfimages.py 1.4 rgbecker
		 Fix to PIL_image, changed to warnOnce
##### 2000/12/18 #####
	platypus/paragraph.py 1.49 rgbecker
		 More Dinu related fixes/edits
	pdfgen/canvas.py 1.59 andy_robinson
		 Stripped a couple of tabs in an otherwise-space-delimited module
##### 2000/12/17 #####
	platypus/paragraph.py 1.48 rgbecker
		 Hack to fix Dinu's problem
	platypus/doctemplate.py 1.33 rgbecker
		 Hack to fix Dinu's problem
##### 2000/12/15 #####
	platypus/doctemplate.py 1.32 rgbecker
		 Better error message
	platypus/paragraph.py 1.47 rgbecker
		 Start on new simpler line splitter
	lib/abag.py 1.2 aaron_watters
		 added a __repr__ for debug purposes
	platypus/paragraph.py 1.46 rgbecker
		 Further Dinuistic fixes for rare cbDefn bugs
##### 2000/12/14 #####
	platypus/test/testplatypus.py 1.21 rgbecker
		 relativisation of firstLineIndent related code
	lib/tocindex.py 1.5 rgbecker
		 relativisation of firstLineIndent related code
	lib/styles.py 1.13 rgbecker
		 relativisation of firstLineIndent related code
	demos/pythonpoint/styles_modern.py 1.8 rgbecker
		 relativisation of firstLineIndent related code
	demos/pythonpoint/styles_horrible.py 1.7 rgbecker
		 relativisation of firstLineIndent related code
	demos/pythonpoint/pythonpoint.py 1.29 rgbecker
		 relativisation of firstLineIndent related code
	lib/__init__.py 1.3 rgbecker
		 Added RL_DEBUG environ flag
	lib/__BUILD.dsw 1.3 rgbecker
		 Added RL_DEBUG environ flag
	pdfbase/pdfmetrics.py 1.18 rgbecker
		 Added extension debug code
	platypus/paragraph.py 1.45 rgbecker
		 Delete fix
	platypus/paragraph.py 1.44 rgbecker
		 Fixed Dinu's tagmadness4 problem
##### 2000/12/13 #####
	platypus/tables.py 1.34 aaron_watters
		 added __repr__s and enhanced exception messages for debugging
	platypus/paragraph.py 1.43 aaron_watters
		 added __repr__s and enhanced exception messages for debugging
	platypus/frames.py 1.11 aaron_watters
		 added __repr__s and enhanced exception messages for debugging
	platypus/flowables.py 1.13 aaron_watters
		 added __repr__s and enhanced exception messages for debugging
	platypus/test/testplatypus.py 1.20 rgbecker
		 Try harder than ever for line cleaning and add bg alias
	platypus/paraparser.py 1.38 rgbecker
		 Try harder than ever for line cleaning and add bg alias
	platypus/paragraph.py 1.42 rgbecker
		 Try harder than ever for line cleaning and add bg alias
	platypus/paragraph.py 1.41 rgbecker
		 Layout fixes; the text objects needed moves before & after and the bullet width was calculated after maxWidth was set.  Try harder for space/tab removal.
	pdfgen/textobject.py 1.21 rgbecker
		 Layout fixes; Td was absolute not relative to the beginning of the line
	platypus/tables.py 1.33 rgbecker
		 Fixed confusing error message
########### 1.02 Released 2000/12/11
##### 2000/12/11 #####
	utils/README 1.5 rgbecker
		 z7-->z9
	platypus/paraparser.py 1.37 rgbecker
		 Comments and cosmetic changes
	platypus/paragraph.py 1.40 rgbecker
		 Comments and cosmetic changes
##### 2000/12/10 #####
	pdfgen/textobject.py 1.20 andy_robinson
		 Fixed obscure stringwidth bugs in textobject and bullets
	pdfgen/canvas.py 1.58 andy_robinson
		 Fixed obscure stringwidth bugs in textobject and bullets
	pdfbase/pdfmetrics.py 1.17 andy_robinson
		 Fixed obscure stringwidth bugs in textobject and bullets
	lib/styles.py 1.12 andy_robinson
		 Fixed obscure stringwidth bugs in textobject and bullets
	platypus/paraparser.py 1.36 andy_robinson
		 Added a text background color attribute
	platypus/paragraph.py 1.39 andy_robinson
		 Added a text background color attribute
	lib/styles.py 1.11 andy_robinson
		 Added a text background color attribute
	test/test_paragraphs.py 1.1 andy_robinson
		 Added some paragraph style tests
	lib/styles.py 1.10 andy_robinson
		 Added a title style to support rml2pdf
##### 2000/12/08 #####
	platypus/paragraph.py 1.38 rgbecker
		 Clean up one word justified paragraph fix.
##### 2000/12/07 #####
	platypus/paragraph.py 1.37 aaron_watters
		 divide by zero problem for one word paragraphs
##### 2000/12/06 #####
	docs/userguide/ch4_platypus_concepts.py 1.9 aaron_watters
		 less than should be less than or equal in example
	platypus/paragraph.py 1.36 rgbecker
		 Fixed line wrap problem
##### 2000/12/05 #####
	demos/pythonpoint/pythonpoint.xml 1.12 andy_robinson
		 Changed link to Michael Wiedmann's DTD
	platypus/paraparser.py 1.35 rgbecker
		 Fixed typo
##### 2000/12/04 #####
	extensions/README 1.2 rgbecker
		 Spelling corrections
	platypus/paraparser.py 1.34 rgbecker
		 More cosmetic changes
	platypus/paragraph.py 1.35 rgbecker
		 Cosmetic changes
	lib/tocindex.py 1.4 rgbecker
		 Minor fixes to appends
##### 2000/12/01 #####
	platypus/paragraph.py 1.34 aaron_watters
		 mods permitting late string conversions
	pdfgen/canvas.py 1.57 aaron_watters
		 mods permitting late string conversions
	lib/utils.py 1.6 aaron_watters
		 mods permitting late string conversions
##### 2000/11/29 #####
	platypus/xpreformatted.py 1.12 rgbecker
		 Semantic Name changes
	platypus/paraparser.py 1.33 rgbecker
		 Semantic Name changes
	platypus/paragraph.py 1.33 rgbecker
		 Semantic Name changes
	platypus/__init__.py 1.12 rgbecker
		 Semantic Name changes
	lib/abag.py 1.1 rgbecker
		 Initial version split from paraparser.py
##### 2000/11/24 #####
	platypus/paragraph.py 1.32 rgbecker
		 Fixed missing linefeed bug for cbDefn frag at end of line
	lib/_rl_accel.c 1.5 rgbecker
		 Fixed non-working cast, added getInfo
##### 2000/11/23 #####
	platypus/paraparser.py 1.32 rgbecker
		 Slight optimisation in handle_data for cbdefn frags
	platypus/paragraph.py 1.31 rgbecker
		 Force cbDefn frags to be not Same
	platypus/flowables.py 1.12 andy_robinson
		 Added working table of contents framework
	platypus/doctemplate.py 1.31 andy_robinson
		 Added working table of contents framework
	lib/tocindex.py 1.3 andy_robinson
		 Added working table of contents framework
	lib/styles.py 1.9 andy_robinson
		 Added working table of contents framework
##### 2000/11/21 #####
	platypus/paragraph.py 1.30 rgbecker
		 Fixed call back handling in _getFragWords
	lib/tocindex.py 1.2 andy_robinson
		 Now formats correctly, no dynamic build stuff yet.
	lib/tocindex.py 1.1 andy_robinson
		 Initial checkin
##### 2000/11/13 #####
	platypus/paraparser.py 1.31 rgbecker
		 More <onDraw> hacks
	platypus/paragraph.py 1.29 rgbecker
		 More <onDraw> hacks
	platypus/paraparser.py 1.30 rgbecker
		 Fixes to stupid parser
	platypus/paraparser.py 1.29 rgbecker
		 Added onDraw tag to paragraphs
	platypus/paragraph.py 1.28 rgbecker
		 Added onDraw tag to paragraphs
	pdfbase/pdfmetrics.py 1.16 rgbecker
		 Added onDraw tag to paragraphs
	demos/odyssey/dodyssey.py 1.9 rgbecker
		 Added onDraw tag to paragraphs
##### 2000/11/08 #####
	test/unittest.py 1.1 andy_robinson
		 Added unittest.py and packagized
	test/__init__.py 1.1 andy_robinson
		 Added unittest.py and packagized
	pdfbase/pdfdoc.py 1.33 andy_robinson
		 Changes to fix font encodings
	demos/stdfonts/stdfonts.py 1.8 andy_robinson
		 Changes to fix font encodings
	utils/runtests.py 1.15 andy_robinson
		 Added an exclusion for 'test/unittest.py' in the test suite.
	test/00readme.txt 1.2 andy_robinson
		 Fixed font encoding lookup, metrics for JPython, created test directory
	pdfbase/pdfmetrics.py 1.15 andy_robinson
		 Fixed font encoding lookup, metrics for JPython, created test directory
	pdfbase/pdfdoc.py 1.32 andy_robinson
		 Fixed font encoding lookup, metrics for JPython, created test directory
##### 2000/11/06 #####
	demos/pythonpoint/pythonpoint.xml 1.11 andy_robinson
		 compression on by default.
	demos/pythonpoint/pythonpoint.py 1.28 andy_robinson
		 compression on by default.
##### 2000/11/05 #####
	platypus/doctemplate.py 1.30 andy_robinson
		 Fixed page transitions; extended Pythonpoint
	pdfgen/canvas.py 1.56 andy_robinson
		 Fixed page transitions; extended Pythonpoint
	pdfbase/pdfdoc.py 1.31 andy_robinson
		 Fixed page transitions; extended Pythonpoint
	demos/pythonpoint/stdparser.py 1.13 andy_robinson
		 Fixed page transitions; extended Pythonpoint
	demos/pythonpoint/pythonpoint.xml 1.10 andy_robinson
		 Fixed page transitions; extended Pythonpoint
	demos/pythonpoint/pythonpoint.py 1.27 andy_robinson
		 Fixed page transitions; extended Pythonpoint
	test/00readme.txt 1.1 andy_robinson
		 initial checkin
	docs/userguide/genuserguide.py 1.38 andy_robinson
		 UserGuide now resizes template header to fit page size
	docs/tools/rltemplate.py 1.8 andy_robinson
		 UserGuide now resizes template header to fit page size
##### 2000/11/01 #####
	platypus/paragraph.py 1.27 andy_robinson
		 Added experimental method getActualLineWidths0
##### 2000/10/26 #####
	platypus/tables.py 1.32 rgbecker
		 Layout error fixes
	platypus/paragraph.py 1.26 rgbecker
		 Layout error fixes
	platypus/flowables.py 1.11 rgbecker
		 Layout error fixes
	docs/userguide/genuserguide.py 1.37 rgbecker
		 Make page size an optional argument
##### 2000/10/25 #####
	utils/simpledoc.py 1.4 rgbecker
		 Changed to indirect copyright
	utils/runtests.py 1.14 rgbecker
		 Changed to indirect copyright
	utils/license.py 1.4 rgbecker
		 Changed to indirect copyright
	utils/license.c 1.4 rgbecker
		 Changed to indirect copyright
	utils/daily.py 1.38 rgbecker
		 Changed to indirect copyright
	utils/cvslh.py 1.4 rgbecker
		 Changed to indirect copyright
	utils/cvs_check.py 1.7 rgbecker
		 Changed to indirect copyright
	utils/compress_images.py 1.2 rgbecker
		 Changed to indirect copyright
	platypus/test/testtables.py 1.12 rgbecker
		 Changed to indirect copyright
	platypus/xpreformatted.py 1.11 rgbecker
		 Changed to indirect copyright
	platypus/test/testplatypus.py 1.19 rgbecker
		 Changed to indirect copyright
	platypus/tables.py 1.31 rgbecker
		 Changed to indirect copyright
	platypus/paraparser.py 1.28 rgbecker
		 Changed to indirect copyright
	platypus/paragraph.py 1.25 rgbecker
		 Changed to indirect copyright
	platypus/frames.py 1.10 rgbecker
		 Changed to indirect copyright
	platypus/flowables.py 1.10 rgbecker
		 Changed to indirect copyright
	platypus/doctemplate.py 1.29 rgbecker
		 Changed to indirect copyright
	platypus/__init__.py 1.11 rgbecker
		 Changed to indirect copyright
	pdfgen/textobject.py 1.19 rgbecker
		 Changed to indirect copyright
	pdfgen/test/testpdfgen.py 1.16 rgbecker
		 Changed to indirect copyright
	pdfgen/test/testPageMode.py 1.2 rgbecker
		 Changed to indirect copyright
	pdfgen/pdfimages.py 1.3 rgbecker
		 Changed to indirect copyright
	pdfgen/pdfgeom.py 1.6 rgbecker
		 Changed to indirect copyright
	pdfgen/pathobject.py 1.7 rgbecker
		 Changed to indirect copyright
	pdfgen/canvas.py 1.55 rgbecker
		 Changed to indirect copyright
	pdfgen/__init__.py 1.5 rgbecker
		 Changed to indirect copyright
	pdfbase/pdfutils.py 1.13 rgbecker
		 Changed to indirect copyright
	pdfbase/pdfmetrics.py 1.14 rgbecker
		 Changed to indirect copyright
	pdfbase/pdfdoc.py 1.30 rgbecker
		 Changed to indirect copyright
	pdfbase/__init__.py 1.5 rgbecker
		 Changed to indirect copyright
	lib/utils.py 1.5 rgbecker
		 Changed to indirect copyright
	lib/units.py 1.2 rgbecker
		 Changed to indirect copyright
	lib/styles.py 1.8 rgbecker
		 Changed to indirect copyright
	lib/sequencer.py 1.9 rgbecker
		 Changed to indirect copyright
	lib/pagesizes.py 1.5 rgbecker
		 Changed to indirect copyright
	lib/logger.py 1.2 rgbecker
		 Changed to indirect copyright
	lib/fonts.py 1.2 rgbecker
		 Changed to indirect copyright
	lib/enums.py 1.2 rgbecker
		 Changed to indirect copyright
	lib/corp.py 1.2 rgbecker
		 Changed to indirect copyright
	lib/colors.py 1.13 rgbecker
		 Changed to indirect copyright
	lib/_rl_accel.c 1.4 rgbecker
		 Changed to indirect copyright
	lib/__init__.py 1.2 rgbecker
		 Changed to indirect copyright
	extensions/__init__.py 1.2 rgbecker
		 Changed to indirect copyright
	docs/userguide/t_parse.py 1.2 rgbecker
		 Changed to indirect copyright
	docs/userguide/platdemos.py 1.4 rgbecker
		 Changed to indirect copyright
	docs/userguide/genuserguide.py 1.36 rgbecker
		 Changed to indirect copyright
	docs/userguide/examples.py 1.16 rgbecker
		 Changed to indirect copyright
	docs/userguide/ch8_future.py 1.3 rgbecker
		 Changed to indirect copyright
	docs/userguide/ch7_custom.py 1.6 rgbecker
		 Changed to indirect copyright
	docs/userguide/ch6_tables.py 1.16 rgbecker
		 Changed to indirect copyright
	docs/userguide/ch5_paragraphs.py 1.6 rgbecker
		 Changed to indirect copyright
	docs/userguide/ch4_platypus_concepts.py 1.8 rgbecker
		 Changed to indirect copyright
	docs/userguide/ch3_pdffeatures.py 1.7 rgbecker
		 Changed to indirect copyright
	docs/userguide/ch2_graphics.py 1.9 rgbecker
		 Changed to indirect copyright
	docs/userguide/ch1_intro.py 1.11 rgbecker
		 Changed to indirect copyright
	docs/userguide/app_demos.py 1.7 rgbecker
		 Changed to indirect copyright
	docs/tools/yaml2pdf.py 1.8 rgbecker
		 Changed to indirect copyright
	docs/tools/yaml.py 1.9 rgbecker
		 Changed to indirect copyright
	docs/tools/stylesheet.py 1.7 rgbecker
		 Changed to indirect copyright
	docs/tools/rltemplate.py 1.7 rgbecker
		 Changed to indirect copyright
	docs/tools/codegrab.py 1.5 rgbecker
		 Changed to indirect copyright
	demos/tests/testdemos.py 1.5 rgbecker
		 Changed to indirect copyright
	demos/stdfonts/stdfonts.py 1.7 rgbecker
		 Changed to indirect copyright
	demos/pythonpoint/styles_modern.py 1.7 rgbecker
		 Changed to indirect copyright
	demos/pythonpoint/styles_horrible.py 1.6 rgbecker
		 Changed to indirect copyright
	demos/pythonpoint/stdparser.py 1.12 rgbecker
		 Changed to indirect copyright
	demos/pythonpoint/pythonpoint.py 1.26 rgbecker
		 Changed to indirect copyright
	demos/pythonpoint/customshapes.py 1.3 rgbecker
		 Changed to indirect copyright
	demos/py2pdf/idle_print.py 1.7 rgbecker
		 Changed to indirect copyright
	demos/odyssey/odyssey.py 1.9 rgbecker
		 Changed to indirect copyright
	demos/odyssey/fodyssey.py 1.14 rgbecker
		 Changed to indirect copyright
	demos/odyssey/dodyssey.py 1.8 rgbecker
		 Changed to indirect copyright
	demos/gadflypaper/gfe.py 1.12 rgbecker
		 Changed to indirect copyright
	demos/colors/colortest.py 1.2 rgbecker
		 Changed to indirect copyright
	__init__.py 1.7 rgbecker
		 Changed to indirect copyright
	README 1.2 rgbecker
		 Changed to indirect copyright
##### 2000/10/24 #####
	license.txt 1.1 rgbecker
		 Initial separate license file
	utils/copyrite.py 1.1 rgbecker
		 Copyright changes
	utils/copyr.txt 1.1 rgbecker
		 Copyright changes
	pdfgen/pdfimages.py 1.2 rgbecker
		 Fix zlib import bug
	pdfgen/pdfimages.py 1.1 aaron_watters
		 image functionality factored out of canvas.py initial checkin. tests pass
	pdfgen/canvas.py 1.54 aaron_watters
		 sliced out image functionality (oops adding in pdfimages.py next) tests pass
##### 2000/10/23 #####
	platypus/paragraph.py 1.24 rgbecker
		 Added J Alet's bug case
	demos/pythonpoint/pythonpoint.xml 1.9 andy_robinson
		 Corrected bad end tags and added links to Michael Wiedmann's DTD
##### 2000/10/22 #####
	demos/pythonpoint/pythonpoint.xml 1.8 andy_robinson
		 Modified the documentation to correct Michael Wiedmann's error reports.
##### 2000/10/21 #####
	lib/sgmlop.dsp 1.2 rgbecker
		 hyphen.c includes substrings.pl in comment
	lib/pyHnj.dsp 1.2 rgbecker
		 hyphen.c includes substrings.pl in comment
	lib/hyphen.c 1.2 rgbecker
		 hyphen.c includes substrings.pl in comment
	lib/_rl_accel.dsp 1.2 rgbecker
		 hyphen.c includes substrings.pl in comment
	lib/README.extensions 1.2 rgbecker
		 hyphen.c includes substrings.pl in comment
##### 2000/10/19 #####
	pdfbase/pdfdoc.py 1.29 rgbecker
		 Aaron's latest update from the newslist
##### 2000/10/18 #####
	pdfbase/pdfdoc.py 1.28 aaron_watters
		 undid last checkin and added an option for a default outline (different fix)
	pdfbase/pdfdoc.py 1.27 aaron_watters
		 moved the outline preprocessing step into the format method (fixes testing error)
	pdfgen/canvas.py 1.53 aaron_watters
		 complete revision of pdfdoc.  Not finished (compression missing, testing needed) I got Robin's last change in at the last moment :)
	pdfbase/pdfdoc.py 1.26 aaron_watters
		 complete revision of pdfdoc.  Not finished (compression missing, testing needed) I got Robin's last change in at the last moment :)
##### 2000/10/15 #####
	pdfgen/test/testPageMode.py 1.1 andy_robinson
		 Test of pageMode functions.
	pdfgen/canvas.py 1.52 andy_robinson
		 Added showFullScreen0
	pdfbase/pdfdoc.py 1.25 andy_robinson
		 Added showFullScreen0
########### 1.01 Released 2000/10/10
##### 2000/10/05 #####
	pdfbase/pdfutils.py 1.12 rgbecker
		 Fix indentation
	pdfbase/pdfutils.py 1.11 rgbecker
		 Changes to make freezing easier
	pdfbase/pdfmetrics.py 1.13 rgbecker
		 Changes to make freezing easier
	lib/xmllib.py 1.4 rgbecker
		 Changes to make freezing easier
	lib/utils.py 1.4 rgbecker
		 Changes to make freezing easier
##### 2000/10/04 #####
	platypus/xpreformatted.py 1.10 rgbecker
		 Fixed copying bug
##### 2000/10/03 #####
	lib/styles.py 1.7 rgbecker
		 Code needs a firstLineIndent same as normal lineIndent
	platypus/paragraph.py 1.23 rgbecker
		 Justified XPreformatteds are OK
##### 2000/10/02 #####
	platypus/frames.py 1.9 rgbecker
		 Fixed the atTop test again
	platypus/frames.py 1.8 rgbecker
		 Fixed the atTop test
	platypus/xpreformatted.py 1.9 rgbecker
		 Added license
	platypus/xpreformatted.py 1.8 rgbecker
		 Splitting fixes. Mostly caused by XPreformatted not doing it right.
	platypus/paragraph.py 1.22 rgbecker
		 Splitting fixes. Mostly caused by XPreformatted not doing it right.
##### 2000/10/01 #####
	platypus/frames.py 1.7 rgbecker
		 Fixed atTop bugs thanks to the effbot
	platypus/xpreformatted.py 1.7 rgbecker
		 Cleaning up XPreformatted
	platypus/xpreformatted.py 1.6 rgbecker
		 Removed space split and readding
##### 2000/09/27 #####
	pdfbase/pdfmetrics.py 1.12 andy_robinson
		 more work on metrics and encodings for custom fonts
	pdfbase/pdfmetrics.py 1.11 andy_robinson
		 Begun work on loading new AFM files
	lib/colors.py 1.12 rgbecker
		 Fix for sun compiler
	lib/_rl_accel.c 1.3 rgbecker
		 Fix for sun compiler
##### 2000/09/25 #####
	lib/styles.py 1.6 andy_robinson
		 added has_key method to stylesheet1
	demos/stdfonts/stdfonts.py 1.6 andy_robinson
		 Allows you to generate hex, decimal or octal labels
##### 2000/09/08 #####
	pdfbase/pdfdoc.py 1.24 rgbecker
		 Paul Eddington's unix tell() returns a LongIntType bugfix
##### 2000/09/04 #####
	pdfgen/canvas.py 1.51 rgbecker
		 Fix spurious comment reference to layout
##### 2000/09/01 #####
	docs/userguide/ch2_graphics.py 1.8 rgbecker
		 Correct size setting thanks to Werner Louche
	pdfgen/textobject.py 1.18 rgbecker
		 Improved optimisation checks
	pdfgen/canvas.py 1.50 rgbecker
		 Improved optimisation checks
	pdfgen/textobject.py 1.17 rgbecker
		 Fixed potential 'Td' bug
##### 2000/08/31 #####
	pdfgen/canvas.py 1.49 rgbecker
		 Fix transform optimisation
##### 2000/08/29 #####
	lib/pyHnj.dsp 1.1 rgbecker
		 Initial version of D Yoo's pyHnj
	lib/utils.py 1.3 rgbecker
		 Initial version of D Yoo's pyHnj
	lib/pyHnjmodule.c 1.1 rgbecker
		 Initial version of D Yoo's pyHnj
	lib/hyphen.mashed 1.1 rgbecker
		 Initial version of D Yoo's pyHnj
	lib/hyphen.h 1.1 rgbecker
		 Initial version of D Yoo's pyHnj
	lib/hyphen.c 1.1 rgbecker
		 Initial version of D Yoo's pyHnj
	lib/hnjalloc.h 1.1 rgbecker
		 Initial version of D Yoo's pyHnj
	lib/hnjalloc.c 1.1 rgbecker
		 Initial version of D Yoo's pyHnj
	lib/__BUILD.dsw 1.2 rgbecker
		 Initial version of D Yoo's pyHnj
	lib/Setup.in 1.2 rgbecker
		 Initial version of D Yoo's pyHnj
	lib/Makefile.pre.in 1.3 rgbecker
		 Initial version of D Yoo's pyHnj
	extensions/__init__.py 1.1 rgbecker
		 Initial version
	extensions/README 1.1 rgbecker
		 Initial version
##### 2000/08/25 #####
	platypus/xpreformatted.py 1.5 rgbecker
		 Further tweaks of XPreformatted
	platypus/paragraph.py 1.21 rgbecker
		 Further tweaks of XPreformatted
	docs/userguide/ch6_tables.py 1.15 rgbecker
		 Further tweaks of XPreformatted
##### 2000/08/24 #####
	platypus/xpreformatted.py 1.4 rgbecker
		 XPreformatted fixed empty lines and leading space
	platypus/paragraph.py 1.20 rgbecker
		 XPreformatted fixed empty lines and leading space
	lib/utils.py 1.2 rgbecker
		 Added _className func
	docs/userguide/ch6_tables.py 1.14 rgbecker
		 harder test of XPreformatted
	docs/userguide/ch6_tables.py 1.13 rgbecker
		 Added blank lines to XPreformatted sample
	platypus/xpreformatted.py 1.3 rgbecker
		 Fixes to _dedenter
	platypus/flowables.py 1.9 rgbecker
		 Fixes to _dedenter
	docs/userguide/genuserguide.py 1.35 rgbecker
		 Added  Mac Intro
	docs/userguide/ch1_intro.py 1.10 rgbecker
		 Added  Mac Intro
	docs/images/Python_1.6a2_HINT.gif 1.1 rgbecker
		 Initial versions for Mac intro
	docs/images/Python_1.6a2.gif 1.1 rgbecker
		 Initial versions for Mac intro
	docs/images/Edit_Prefs.gif 1.1 rgbecker
		 Initial versions for Mac intro
	platypus/xpreformatted.py 1.2 rgbecker
		 XPreformatted first fixes; now runs
	platypus/flowables.py 1.8 rgbecker
		 XPreformatted first fixes; now runs
	platypus/__init__.py 1.10 rgbecker
		 XPreformatted first fixes; now runs
	docs/userguide/genuserguide.py 1.34 rgbecker
		 Preformatted docco added
	docs/userguide/ch6_tables.py 1.12 rgbecker
		 Preformatted docco added
	pdfbase/pdfdoc.py 1.23 aaron_watters
		 change to PDFLiteral to support "lazy string conversions" (to support lazy crosslinks)
##### 2000/08/23 #####
	platypus/xpreformatted.py 1.1 rgbecker
		 Initial semi working version
	platypus/paragraph.py 1.19 rgbecker
		 Preparing for cleanup
##### 2000/08/20 #####
	pdfgen/canvas.py 1.48 andy_robinson
		 Changed an argument syntax for clarity
	demos/pythonpoint/leftlogo.a85 1.3 andy_robinson
		 Added as binary file
	demos/pythonpoint/leftlogo.a85 1.2 andy_robinson
		 Removed ASCII file as Mac was corrupting it
##### 2000/08/17 #####
	platypus/paragraph.py 1.18 rgbecker
		 Various brutal changes to paragraph, canvas and textobject for speed/size
	pdfgen/textobject.py 1.16 rgbecker
		 Various brutal changes to paragraph, canvas and textobject for speed/size
	pdfgen/canvas.py 1.47 rgbecker
		 Various brutal changes to paragraph, canvas and textobject for speed/size
	demos/odyssey/odyssey.txt 1.8 rgbecker
		 Various brutal changes to paragraph, canvas and textobject for speed/size
	platypus/paraparser.py 1.27 rgbecker
		 Changed test formatting
##### 2000/08/16 #####
	pdfbase/pdfmetrics.py 1.10 rgbecker
		 Start using _rl_accel
##### 2000/08/12 #####
	lib/colors.py 1.11 rgbecker
		 Fix missing parens
##### 2000/08/11 #####
	lib/colors.py 1.10 rgbecker
		 added rgb2cmyk
	docs/userguide/ch7_custom.py 1.5 rgbecker
		 Added rotated image derived class example
##### 2000/08/09 #####
	pdfbase/pdfdoc.py 1.22 rgbecker
		 Andy's Symbol/Zapf font fix
##### 2000/08/03 #####
	pdfbase/pdfutils.py 1.10 rgbecker
		 Robin's take on Bernhard Herzog's fix to A85 decode
	platypus/frames.py 1.6 rgbecker
		 Changing to packer led positioning
	platypus/flowables.py 1.7 rgbecker
		 Changing to packer led positioning
	lib/_rl_accel.c 1.2 rgbecker
		 Linux/GnuC fixes
	lib/Makefile.pre.in 1.2 rgbecker
		 Linux/GnuC fixes
##### 2000/08/02 #####
	docs/userguide/genuserguide.py 1.33 rgbecker
		 Table cell updates
	docs/userguide/ch6_tables.py 1.11 rgbecker
		 Table cell updates
	docs/images/replogo.gif 1.3 rgbecker
		 Readded with -kb flag
	docs/images/replogo.gif 1.2 rgbecker
		 Removed bad replogo.gif
	platypus/tables.py 1.30 rgbecker
		 Flowable cell fixes/changes
##### 2000/08/01 #####
	platypus/tables.py 1.29 rgbecker
		 Fixed flowable valign bottom/top middle maybe
	platypus/tables.py 1.28 rgbecker
		 Additions/Improvements to LINE CMD Splitting
	pdfgen/textobject.py 1.15 rgbecker
		 Converted to using fp_str
	pdfgen/canvas.py 1.46 rgbecker
		 Converted to using fp_str
	utils/runtests.py 1.13 rgbecker
		 Added -time flag
	lib/README.extensions 1.1 rgbecker
		 Initial version
	lib/Makefile.pre.in 1.1 rgbecker
		 Initial version
	pdfbase/pdfutils.py 1.9 rgbecker
		 moved accelerators to lib
	pdfbase/pdfmetrics.py 1.9 rgbecker
		 moved accelerators to lib
	pdfbase/_streams.c 1.2 rgbecker
		 moved accelerators to lib
	pdfbase/_pdfmetrics.c 1.3 rgbecker
		 moved accelerators to lib
	pdfbase/Setup.in 1.2 rgbecker
		 moved accelerators to lib
	lib/Setup.in 1.1 rgbecker
		 Initial version
	lib/utils.py 1.1 rgbecker
		 Initial version
	lib/sgmlop.dsp 1.1 rgbecker
		 Initial version
	lib/sgmlop.c 1.1 rgbecker
		 Initial version
	lib/_rl_accel.dsp 1.1 rgbecker
		 Initial version
	lib/_rl_accel.c 1.1 rgbecker
		 Initial version
	lib/__BUILD.dsw 1.1 rgbecker
		 Initial version
	pdfgen/textobject.py 1.14 andy_robinson
		 Updated old doc string
##### 2000/07/31 #####
	pdfgen/canvas.py 1.45 rgbecker
		 B Herzog fix to dimension formats
##### 2000/07/30 #####
	platypus/frames.py 1.5 rgbecker
		 geometry changing attributes now work
##### 2000/07/28 #####
	pdfgen/textobject.py 1.13 rgbecker
		 Bernhard herzog inspired fixes
	pdfgen/canvas.py 1.44 rgbecker
		 Bernhard herzog inspired fixes
##### 2000/07/26 #####
	pdfbase/pdfmetrics.py 1.8 rgbecker
		 Accelerator rearrangements
	pdfbase/_pdfmetrics.c 1.2 rgbecker
		 Accelerator rearrangements
	lib/logger.py 1.1 rgbecker
		 Initial version
##### 2000/07/25 #####
	docs/userguide/ch3_pdffeatures.py 1.6 rgbecker
		 Bruce Eckel spotted these typos.
	docs/userguide/ch2_graphics.py 1.7 rgbecker
		 Bruce Eckel spotted these typos.
	docs/userguide/ch1_intro.py 1.9 rgbecker
		 Bruce Eckel spotted these typos.
##### 2000/07/20 #####
	platypus/doctemplate.py 1.28 rgbecker
		 Added pagesize to canvasmaker call
	README.pdfgen.txt 1.8 rgbecker
		 Release 1.00 Administration
	README 1.1 rgbecker
		 Release 1.00 Administration
########### 1.00 Released 2000/07/20
demos/pythonpoint/pythonpoint.py
      1.25 2000/07/15 21:13:29  Minor additions to styles etc. andy_robinson
docs/userguide/app_demos.py
       1.6 2000/07/18 13:27:47  fixed typos. dinu_gherman
       1.5 2000/07/18 10:03:45  fixed typos, minimal changes to py2pdf. dinu_gherman
docs/userguide/ch1_intro.py
       1.8 2000/07/18 09:58:11  fixed typos. dinu_gherman
docs/userguide/ch2_graphics.py
       1.6 2000/07/18 09:59:25  fixed typos. dinu_gherman
docs/userguide/ch3_pdffeatures.py
       1.5 2000/07/18 10:00:43  fixed typos. dinu_gherman
docs/userguide/ch4_platypus_concepts.py
       1.7 2000/07/18 10:02:06  fixed typos. dinu_gherman
docs/userguide/ch5_paragraphs.py
       1.5 2000/07/18 13:24:38  fixed typos. dinu_gherman
docs/userguide/ch5_tables.py
       1.2 2000/07/16 14:01:44  ch5_tables.py was a hangover and should have been deleted before. Note to AR if and when we do this again never give the chapters numbers as that is extremely confusing. rgbecker
docs/userguide/ch6_tables.py
      1.10 2000/07/18 13:25:38  fixed typos. dinu_gherman
       1.9 2000/07/14 14:07:48  Image probs again rgbecker
docs/userguide/ch7_custom.py
       1.4 2000/07/18 13:26:17  fixed typos. dinu_gherman
       1.3 2000/07/16 14:07:56  most_chapters.py was also irrelevant rgbecker
docs/userguide/genuserguide.py
      1.32 2000/07/18 13:29:19  removed header dashes. dinu_gherman
docs/userguide/lj8100.jpg
       1.2 2000/07/14 14:07:48  Image probs again rgbecker
docs/userguide/most_chapters.py
       1.6 2000/07/16 14:07:56  most_chapters.py was also irrelevant rgbecker
       1.5 2000/07/16 14:01:44  ch5_tables.py was a hangover and should have been deleted before. Note to AR if and when we do this again never give the chapters numbers as that is extremely confusing. rgbecker
lib/xmllib.py
       1.3 2000/07/18 09:31:53  Uncommented methods in fast parser rgbecker
pdfbase/Setup.in
       1.1 2000/07/19 19:06:39  Added _pdfmetrics.c rgbecker
pdfbase/_pdfmetrics.c
       1.1 2000/07/19 19:06:39  Added _pdfmetrics.c rgbecker
pdfbase/pdfmetrics.py
       1.7 2000/07/19 19:06:39  Added _pdfmetrics.c rgbecker
platypus/tables.py
      1.27 2000/07/20 13:32:33  Started debugging Table split rgbecker
utils/daily.py
      1.37 2000/07/14 14:27:26  Wasn't doing docs for releases rgbecker
utils/runtests.py
      1.12 2000/07/19 13:44:54  Added -prof option rgbecker
########### 0.95 Released 2000/07/14
demos/py2pdf/demo.py
       1.5 2000/06/27 08:58:19  Try to ensure test file removal rgbecker
demos/py2pdf/py2pdf.py
      1.10 2000/06/28 11:12:40  Stop auto testing rgbecker
demos/pythonpoint/pythonpoint.py
      1.24 2000/07/12 14:23:12  Table argument order changed rgbecker
      1.23 2000/07/12 06:33:43  Added Speaker Notes facility andy_robinson
      1.22 2000/07/10 15:25:47  Added tables to PythonPoint andy_robinson
demos/pythonpoint/pythonpoint.xml
       1.7 2000/07/12 06:33:43  Added Speaker Notes facility andy_robinson
       1.6 2000/07/10 15:25:47  Added tables to PythonPoint andy_robinson
demos/pythonpoint/stdparser.py
      1.10 2000/07/11 15:00:39  Added end_spacer rgbecker
       1.9 2000/07/10 15:25:47  Added tables to PythonPoint andy_robinson
lib/sequencer.py
       1.8 2000/07/10 11:58:35  Pre-incrementing bug fixed andy_robinson
       1.7 2000/07/08 07:11:21  Changed to pre-increment andy_robinson
       1.6 2000/06/21 19:46:43  Added Roman formatters rgbecker
pdfbase/_streams.c
       1.1 2000/07/05 12:20:27  Ascii85 fixes/additions rgbecker
pdfbase/pdfdoc.py
      1.21 2000/06/26 15:58:22  Simple fix to widths problem rgbecker
      1.20 2000/06/23 17:51:22  /Producer (ReportLab http://www.reportlab.com) in document aaron_watters
pdfbase/pdfmetrics.py
       1.6 2000/06/26 15:58:22  Simple fix to widths problem rgbecker
pdfbase/pdfutils.py
       1.8 2000/07/05 12:20:27  Ascii85 fixes/additions rgbecker
       1.7 2000/06/30 15:29:59  Allow for non-caching of images rgbecker
pdfgen/canvas.py
      1.43 2000/06/30 15:27:55  Allow for non-caching of images rgbecker
      1.42 2000/06/26 15:58:22  Simple fix to widths problem rgbecker
pdfgen/pathobject.py
       1.6 2000/07/12 16:07:09  fixed nameerror and path.circle bug aaron_watters
platypus/__init__.py
       1.9 2000/07/13 11:41:00  Added KeepTogether rgbecker
       1.8 2000/06/27 10:07:55  Added CondPageBreak rgbecker
       1.7 2000/06/21 12:27:42  remove UserDocTemplate, but add Andy's hook methods rgbecker
platypus/doctemplate.py
      1.27 2000/07/10 11:58:35  Pre-incrementing bug fixed andy_robinson
      1.26 2000/07/07 16:21:12  Cosmetics rgbecker
      1.25 2000/07/06 12:40:37  Push canvas into flowables during wrap/split rgbecker
      1.24 2000/07/05 12:22:21  Force _calc in SimpleDocTemplae.build rgbecker
      1.23 2000/07/03 15:39:51  Documentation fixes rgbecker
      1.22 2000/06/28 14:52:43  Documentation changes rgbecker
      1.21 2000/06/26 15:58:22  Simple fix to widths problem rgbecker
      1.20 2000/06/21 12:27:42  remove UserDocTemplate, but add Andy's hook methods rgbecker
      1.19 2000/06/20 21:56:17  re-synching after sourceforge went weird andy_robinson
platypus/flowables.py
       1.6 2000/07/13 11:42:10  removed debug prints rgbecker
       1.5 2000/07/13 11:41:00  Added KeepTogether rgbecker
       1.4 2000/06/27 10:07:55  Added CondPageBreak rgbecker
platypus/frames.py
       1.4 2000/07/07 16:21:12  Cosmetics rgbecker
       1.3 2000/07/06 12:40:38  Push canvas into flowables during wrap/split rgbecker
platypus/paragraph.py
      1.17 2000/07/14 10:29:50  The Paragraph.split method was wrongly assuming that the firstLineIndent should reset to zero. It should always reset to leftIndent! rgbecker
      1.16 2000/07/03 15:39:51  Documentation fixes rgbecker
      1.15 2000/06/23 13:13:54  Fixes to splitting code rgbecker
platypus/paraparser.py
      1.26 2000/07/10 23:53:46  Changed base of seqdefault tag to 0 andy_robinson
      1.25 2000/07/04 10:50:33  Sequencer fixes rgbecker
platypus/tables.py
      1.26 2000/07/12 15:36:56  Allow automatic leading in FONT command rgbecker
      1.25 2000/07/12 15:26:46  INNERGRID was dumb rgbecker
      1.24 2000/07/12 15:25:42  INNERGRID was dumb rgbecker
      1.23 2000/07/12 15:18:16  Leading changes fixed rgbecker
      1.22 2000/07/12 14:23:12  Table argument order changed rgbecker
      1.21 2000/07/12 09:05:17  Fixed tuple size bug rgbecker
      1.20 2000/07/11 14:29:45  Table splitting start rgbecker
      1.19 2000/07/10 15:25:47  Added tables to PythonPoint andy_robinson
      1.18 2000/07/08 15:30:04  Cosmetics and error testing rgbecker
      1.17 2000/07/07 16:22:10  Fix auto hieght stuff rgbecker
      1.16 2000/07/07 10:23:36  First attempt at VALIGN rgbecker
      1.15 2000/07/06 14:05:55  Adjusted doc string rgbecker
      1.14 2000/07/06 12:41:47  First try at auto sizing rgbecker
      1.13 2000/06/29 17:55:19  support explicit \n line splitting in cells aaron_watters
platypus/test/testplatypus.py
      1.18 2000/07/12 14:23:12  Table argument order changed rgbecker
platypus/test/testtables.py
      1.11 2000/07/12 14:23:12  Table argument order changed rgbecker
utils/README
       1.2 2000/07/13 14:55:30  Added detailed release rgbecker
########### 0.94 Released 2000/06/20
demos/gadflypaper/gfe.py
      1.11 2000/06/01 16:27:56  pageSize is wrong at present rgbecker
      1.10 2000/06/01 15:23:06  Platypus re-organisation rgbecker
demos/odyssey/dodyssey.py
       1.7 2000/06/01 15:23:06  Platypus re-organisation rgbecker
       1.6 2000/06/01 09:41:11  test filename case fix rgbecker
demos/odyssey/fodyssey.py
      1.13 2000/06/01 16:27:56  pageSize is wrong at present rgbecker
      1.12 2000/06/01 15:23:06  Platypus re-organisation rgbecker
      1.11 2000/06/01 09:41:12  test filename case fix rgbecker
demos/odyssey/odyssey.py
       1.8 2000/06/01 09:41:12  test filename case fix rgbecker
demos/odyssey/odyssey.txt
       1.7 2000/05/31 10:12:45  <bullet> xml tag added rgbecker
demos/py2pdf/demo.py
       1.4 2000/06/19 11:14:03  Global sequencer put in the 'story builder'. andy_robinson
demos/py2pdf/py2pdf.py
       1.9 2000/06/19 11:14:03  Global sequencer put in the 'story builder'. andy_robinson
demos/pythonpoint/pythonpoint.py
      1.21 2000/06/01 15:23:06  Platypus re-organisation rgbecker
      1.20 2000/05/23 14:06:45  Preformatted objects now know how to split themselves. andy_robinson
demos/pythonpoint/stdparser.py
       1.8 2000/06/01 15:23:06  Platypus re-organisation rgbecker
demos/pythonpoint/styles_horrible.py
       1.5 2000/06/01 15:23:06  Platypus re-organisation rgbecker
demos/pythonpoint/styles_modern.py
       1.6 2000/06/01 15:23:06  Platypus re-organisation rgbecker
docs/00readme.txt
       1.1 2000/06/05 16:38:54  Initial revision andy_robinson
   1.1.1.1 2000/06/05 16:38:54  initial import andy_robinson
docs/images/replogo.a85
       1.1 2000/06/05 16:39:04  Initial revision andy_robinson
   1.1.1.1 2000/06/05 16:39:04  initial import andy_robinson
docs/images/replogo.gif
       1.1 2000/06/05 16:39:04  Initial revision andy_robinson
   1.1.1.1 2000/06/05 16:39:04  initial import andy_robinson
docs/reference/build.bat
       1.4 2000/06/19 23:52:31  rltemplate now simple, based on UserDocTemplate andy_robinson
       1.3 2000/06/17 07:46:45  Small text changes andy_robinson
       1.2 2000/06/12 11:13:09  Added sequencer tags to paragraph parser andy_robinson
       1.1 2000/06/07 13:39:22  Added some text to the first page of reference, and a build batch file andy_robinson
docs/reference/reference.yml
       1.8 2000/06/19 23:52:31  rltemplate now simple, based on UserDocTemplate andy_robinson
       1.7 2000/06/17 07:46:45  Small text changes andy_robinson
       1.6 2000/06/14 21:22:52  Added docs for library andy_robinson
       1.5 2000/06/12 11:26:34  Numbered list added andy_robinson
       1.4 2000/06/12 11:13:09  Added sequencer tags to paragraph parser andy_robinson
       1.3 2000/06/09 01:44:24  added automatic generation for pathobject and textobject modules. aaron_watters
       1.2 2000/06/07 13:39:22  Added some text to the first page of reference, and a build batch file andy_robinson
       1.1 2000/06/05 16:39:04  Initial revision andy_robinson
   1.1.1.1 2000/06/05 16:39:04  initial import andy_robinson
docs/tools/codegrab.py
       1.3 2000/06/20 11:35:08  Python 1.5.1 compatibility fixes rgbecker
       1.2 2000/06/14 21:22:52  Added docs for library andy_robinson
       1.1 2000/06/05 16:38:57  Initial revision andy_robinson
   1.1.1.1 2000/06/05 16:38:57  initial import andy_robinson
docs/tools/rltemplate.py
       1.2 2000/06/19 23:52:31  rltemplate now simple, based on UserDocTemplate andy_robinson
       1.1 2000/06/17 07:48:41  Added a separate rltemplate.py file to contain our standard document template. andy_robinson
docs/tools/stylesheet.py
       1.2 2000/06/14 21:22:52  Added docs for library andy_robinson
       1.1 2000/06/13 20:03:30  Docs is now a package; stylesheet separated out andy_robinson
docs/tools/yaml.py
       1.5 2000/06/20 11:34:47  Python 1.5.1 compatibility fixes rgbecker
       1.4 2000/06/19 15:54:21  Changes to imports again sigh mumble rgbecker
       1.3 2000/06/14 21:22:52  Added docs for library andy_robinson
       1.2 2000/06/13 20:03:30  Docs is now a package; stylesheet separated out andy_robinson
       1.1 2000/06/05 16:38:56  Initial revision andy_robinson
   1.1.1.1 2000/06/05 16:38:56  initial import andy_robinson
docs/tools/yaml2pdf.py
       1.6 2000/06/19 15:54:21  Changes to imports again sigh mumble rgbecker
       1.5 2000/06/17 07:47:20  Factored out rltemplate andy_robinson
       1.4 2000/06/13 20:03:30  Docs is now a package; stylesheet separated out andy_robinson
       1.3 2000/06/12 11:26:34  Numbered list added andy_robinson
       1.2 2000/06/07 21:08:12  Change to style for definition lists andy_robinson
       1.1 2000/06/05 16:38:55  Initial revision andy_robinson
   1.1.1.1 2000/06/05 16:38:55  initial import andy_robinson
docs/userguide/examples.py
       1.3 2000/06/19 21:13:02  2nd try. more text aaron_watters
       1.2 2000/06/17 06:54:54  Example had a reference to layout.py, removed andy_robinson
       1.1 2000/06/17 02:59:05  initial checkin.  examples file for userguide generation aaron_watters
docs/userguide/genuserguide.py
       1.2 2000/06/19 21:13:02  2nd try. more text aaron_watters
       1.1 2000/06/17 02:57:56  initial checkin. user guide generation framework. aaron_watters
docs/userguide/platdemos.py
       1.1 2000/06/05 16:39:04  Initial revision andy_robinson
   1.1.1.1 2000/06/05 16:39:04  initial import andy_robinson
lib/colors.py
       1.9 2000/06/14 21:17:30  Some relative imports fixed andy_robinson
       1.8 2000/05/26 09:43:44  stringToColor-->toColor rgbecker
lib/pagesizes.py
       1.4 2000/06/14 21:17:30  Some relative imports fixed andy_robinson
lib/sequencer.py
       1.5 2000/06/19 11:14:03  Global sequencer put in the 'story builder'. andy_robinson
       1.4 2000/06/12 11:27:17  Added Sequencer and associated XML tags andy_robinson
       1.3 2000/06/11 21:34:01  Largely complete class for numbering lists, figures and chapters andy_robinson
       1.2 2000/06/09 16:18:19  Doc strings, sequencer andy_robinson
       1.1 2000/06/01 15:23:06  Platypus re-organisation rgbecker
pdfbase/pdfdoc.py
      1.19 2000/06/01 09:44:26  SaveToFile: only close the file if we opened it. Aggregated from types imports to module level. rgbecker
pdfgen/canvas.py
      1.41 2000/06/09 16:18:19  Doc strings, sequencer andy_robinson
      1.40 2000/06/09 01:45:22  Lots of documentation additions and changes. aaron_watters
      1.39 2000/06/01 15:23:06  Platypus re-organisation rgbecker
      1.38 2000/05/26 09:44:40  generalised colors slightly rgbecker
      1.37 2000/05/23 14:06:45  Preformatted objects now know how to split themselves. andy_robinson
pdfgen/pathobject.py
       1.5 2000/06/09 08:17:43  Full qualified a local import in pdfgen package andy_robinson
platypus/__init__.py
       1.6 2000/06/19 23:51:23  Added UserDocTemplate class, and paragraph.getPlainText() andy_robinson
       1.5 2000/06/01 15:23:06  Platypus re-organisation rgbecker
platypus/doctemplate.py
      1.18 2000/06/19 23:51:23  Added UserDocTemplate class, and paragraph.getPlainText() andy_robinson
      1.17 2000/06/19 11:14:03  Global sequencer put in the 'story builder'. andy_robinson
      1.16 2000/06/16 13:49:20  new build parameters to allow alternate filename and canvas implementation (in order to support slideshow summary mode, for example, or embedding one document in another). aaron_watters
      1.15 2000/06/13 13:03:31  more documentation changes aaron_watters
      1.14 2000/06/01 16:27:56  pageSize is wrong at present rgbecker
      1.13 2000/06/01 15:23:06  Platypus re-organisation rgbecker
      1.12 2000/05/26 10:27:37  Fixed infinite recursion bug rgbecker
platypus/flowables.py
       1.3 2000/06/13 13:03:31  more documentation changes aaron_watters
       1.2 2000/06/01 16:27:56  pageSize is wrong at present rgbecker
       1.1 2000/06/01 15:23:06  Platypus re-organisation rgbecker
platypus/frames.py
       1.2 2000/06/13 13:03:31  more documentation changes aaron_watters
       1.1 2000/06/01 15:23:06  Platypus re-organisation rgbecker
platypus/layout.py
      1.31 2000/06/01 15:23:06  Platypus re-organisation rgbecker
      1.30 2000/05/23 14:08:02  Preformatted objects now splitting andy_robinson
platypus/paragraph.py
      1.14 2000/06/19 23:51:23  Added UserDocTemplate class, and paragraph.getPlainText() andy_robinson
      1.13 2000/06/19 11:14:03  Global sequencer put in the 'story builder'. andy_robinson
      1.12 2000/06/13 13:03:31  more documentation changes aaron_watters
      1.11 2000/06/01 15:23:06  Platypus re-organisation rgbecker
      1.10 2000/05/31 10:12:20  <bullet> xml tag added rgbecker
platypus/paraparser.py
      1.24 2000/06/19 11:14:03  Global sequencer put in the 'story builder'. andy_robinson
      1.23 2000/06/13 04:11:49  noted replication of XML markup comment between paraparser.py and paragraph.py aaron_watters
      1.22 2000/06/12 11:27:17  Added Sequencer and associated XML tags andy_robinson
      1.21 2000/06/01 15:23:06  Platypus re-organisation rgbecker
      1.20 2000/05/31 10:12:20  <bullet> xml tag added rgbecker
      1.19 2000/05/26 09:49:23  Color fixes; thanks to J Alet rgbecker
      1.18 2000/05/20 15:36:42  Removed 1.5.2-style getattr call andy_robinson
platypus/tables.py
      1.12 2000/06/13 13:03:31  more documentation changes aaron_watters
      1.11 2000/06/01 15:23:06  Platypus re-organisation rgbecker
      1.10 2000/05/26 09:49:23  Color fixes; thanks to J Alet rgbecker
platypus/test/testplatypus.py
      1.17 2000/06/01 15:23:06  Platypus re-organisation rgbecker
platypus/test/testtables.py
      1.10 2000/06/01 16:27:56  pageSize is wrong at present rgbecker
       1.9 2000/06/01 15:23:06  Platypus re-organisation rgbecker