/usr/share/pyshared/z3c/rml/flowable.py is in python-z3c.rml 2.0.0-0ubuntu3.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
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 | ##############################################################################
#
# Copyright (c) 2007 Zope Foundation and Contributors.
# All Rights Reserved.
#
# This software is subject to the provisions of the Zope Public License,
# Version 2.1 (ZPL). A copy of the ZPL should accompany this distribution.
# THIS SOFTWARE IS PROVIDED "AS IS" AND ANY AND ALL EXPRESS OR IMPLIED
# WARRANTIES ARE DISCLAIMED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
# WARRANTIES OF TITLE, MERCHANTABILITY, AGAINST INFRINGEMENT, AND FITNESS
# FOR A PARTICULAR PURPOSE.
#
##############################################################################
"""Flowable Element Processing
$Id: flowable.py 128843 2012-12-21 06:58:39Z srichter $
"""
__docformat__ = "reStructuredText"
import copy
import logging
import re
import reportlab.lib.styles
import reportlab.platypus
import reportlab.platypus.doctemplate
import reportlab.platypus.flowables
import reportlab.platypus.tables
import zope.schema
from reportlab.lib import styles, pygments2xpre
from xml.sax.saxutils import unescape
from z3c.rml import attr, directive, interfaces, occurence
from z3c.rml import form, platypus, special, stylesheet
try:
import reportlab.graphics.barcode
except ImportError:
# barcode package has not been installed
import types
import reportlab.graphics
reportlab.graphics.barcode = types.ModuleType('barcode')
reportlab.graphics.barcode.createBarcodeDrawing = None
class Flowable(directive.RMLDirective):
klass=None
attrMapping = None
def process(self):
args = dict(self.getAttributeValues(attrMapping=self.attrMapping))
self.parent.flow.append(self.klass(**args))
class ISpacer(interfaces.IRMLDirectiveSignature):
"""Creates a vertical space in the flow."""
width = attr.Measurement(
title=u'Width',
description=u'The width of the spacer. Currently not implemented.',
default=100,
required=False)
length = attr.Measurement(
title=u'Length',
description=u'The height of the spacer.',
required=True)
class Spacer(Flowable):
signature = ISpacer
klass = reportlab.platypus.Spacer
attrMapping = {'length': 'height'}
class IIllustration(interfaces.IRMLDirectiveSignature):
"""Inserts an illustration with graphics elements."""
width = attr.Measurement(
title=u'Width',
description=u'The width of the illustration.',
required=True)
height = attr.Measurement(
title=u'Height',
description=u'The height of the illustration.',
default=100,
required=True)
class Illustration(Flowable):
signature = IIllustration
klass = platypus.Illustration
def process(self):
args = dict(self.getAttributeValues())
self.parent.flow.append(self.klass(self, **args))
class IBarCodeFlowable(form.IBarCodeBase):
"""Creates a bar code as a flowable."""
value = attr.String(
title=u'Value',
description=u'The value represented by the code.',
required=True)
class BarCodeFlowable(Flowable):
signature = IBarCodeFlowable
klass = staticmethod(reportlab.graphics.barcode.createBarcodeDrawing)
attrMapping = {'code': 'codeName'}
class IPluginFlowable(interfaces.IRMLDirectiveSignature):
"""Inserts a custom flowable developed in Python."""
module = attr.String(
title=u'Module',
description=u'The Python module in which the flowable is located.',
required=True)
function = attr.String(
title=u'Function',
description=(u'The name of the factory function within the module '
u'that returns the custom flowable.'),
required=True)
params = attr.TextNode(
title=u'Parameters',
description=(u'A list of parameters encoded as a long string.'),
required=False)
class PluginFlowable(Flowable):
signature = IPluginFlowable
def process(self):
modulePath, functionName, text = self.getAttributeValues(
valuesOnly=True)
module = __import__(modulePath, {}, {}, [modulePath])
function = getattr(module, functionName)
flowables = function(text)
if not isinstance(flowables, (tuple, list)):
flowables = [flowables]
self.parent.flow += list(flowables)
class IMinimalParagraphBase(interfaces.IRMLDirectiveSignature):
style = attr.Style(
title=u'Style',
description=(u'The paragraph style that is applied to the paragraph. '
u'See the ``paraStyle`` tag for creating a paragraph '
u'style.'),
required=False)
bulletText = attr.String(
title=u'Bullet Character',
description=(u'The bullet character is the ASCII representation of '
u'the symbol making up the bullet in a listing.'),
required=False)
dedent = attr.Integer(
title=u'Dedent',
description=(u'Number of characters to be removed in front of every '
u'line of the text.'),
required=False)
class IBold(interfaces.IRMLDirectiveSignature):
"""Renders the text inside as bold."""
class IItalic(interfaces.IRMLDirectiveSignature):
"""Renders the text inside as italic."""
class IUnderLine(interfaces.IRMLDirectiveSignature):
"""Underlines the contained text."""
class IBreak(interfaces.IRMLDirectiveSignature):
"""Inserts a line break in the paragraph."""
class IPageNumber(interfaces.IRMLDirectiveSignature):
"""Inserts the current page number into the text."""
class IParagraphBase(IMinimalParagraphBase):
occurence.containing(
occurence.ZeroOrMore('b', IBold),
occurence.ZeroOrMore('i', IItalic),
occurence.ZeroOrMore('u', IUnderLine),
occurence.ZeroOrMore('br', IBreak,
condition=occurence.laterThanReportlab21),
occurence.ZeroOrMore('pageNumber', IPageNumber)
)
class IPreformatted(IMinimalParagraphBase):
"""A preformatted text, similar to the <pre> tag in HTML."""
style = attr.Style(
title=u'Style',
description=(u'The paragraph style that is applied to the paragraph. '
u'See the ``paraStyle`` tag for creating a paragraph '
u'style.'),
default=reportlab.lib.styles.getSampleStyleSheet()['Code'],
required=False)
text = attr.RawXMLContent(
title=u'Text',
description=(u'The text that will be layed out.'),
required=True)
maxLineLength = attr.Integer(
title=u'Max Line Length',
description=(u'The maximum number of characters on one line.'),
required=False)
newLineChars = attr.Text(
title=u'New Line Characters',
description=u'The characters placed at the beginning of a wrapped line',
required=False)
class Preformatted(Flowable):
signature = IPreformatted
klass = reportlab.platypus.Preformatted
class IXPreformatted(IParagraphBase):
"""A preformatted text that allows paragraph markup."""
style = attr.Style(
title=u'Style',
description=(u'The paragraph style that is applied to the paragraph. '
u'See the ``paraStyle`` tag for creating a paragraph '
u'style.'),
default=reportlab.lib.styles.getSampleStyleSheet()['Normal'],
required=False)
text = attr.RawXMLContent(
title=u'Text',
description=(u'The text that will be layed out.'),
required=True)
class XPreformatted(Flowable):
signature = IXPreformatted
klass = reportlab.platypus.XPreformatted
class ICodeSnippet(IXPreformatted):
"""A code snippet with text highlighting."""
style = attr.Style(
title=u'Style',
description=(u'The paragraph style that is applied to the paragraph. '
u'See the ``paraStyle`` tag for creating a paragraph '
u'style.'),
required=False)
language = attr.String(
title=u'Language',
description=u'The language the code snippet is written in.',
required=False)
class CodeSnippet(XPreformatted):
signature = ICodeSnippet
def process(self):
args = dict(self.getAttributeValues())
lang = args.pop('language', None)
args['text'] = unescape(args['text'])
if lang is not None:
args['text'] = pygments2xpre.pygments2xpre(
args['text'], lang.lower())
if 'style' not in args:
args['style'] = attr._getStyle(self, 'Code')
self.parent.flow.append(self.klass(**args))
class IParagraph(IParagraphBase, stylesheet.IBaseParagraphStyle):
"""Lays out an entire paragraph."""
text = attr.XMLContent(
title=u'Text',
description=(u'The text that will be layed out.'),
required=True)
class Paragraph(Flowable):
signature = IParagraph
klass = reportlab.platypus.Paragraph
defaultStyle = 'Normal'
styleAttributes = zope.schema.getFieldNames(stylesheet.IBaseParagraphStyle)
def processStyle(self, style):
attrs = self.getAttributeValues(select=self.styleAttributes)
if attrs:
style = copy.deepcopy(style)
for name, value in attrs:
setattr(style, name, value)
return style
def process(self):
args = dict(self.getAttributeValues(ignore=self.styleAttributes))
if 'style' not in args:
args['style'] = attr._getStyle(self, self.defaultStyle)
args['style'] = self.processStyle(args['style'])
self.parent.flow.append(self.klass(**args))
class ITitle(IParagraph):
"""The title is a simple paragraph with a special title style."""
class Title(Paragraph):
signature = ITitle
defaultStyle = 'Title'
class IHeading1(IParagraph):
"""Heading 1 is a simple paragraph with a special heading 1 style."""
class Heading1(Paragraph):
signature = IHeading1
defaultStyle = 'Heading1'
class IHeading2(IParagraph):
"""Heading 2 is a simple paragraph with a special heading 2 style."""
class Heading2(Paragraph):
signature = IHeading2
defaultStyle = 'Heading2'
class IHeading3(IParagraph):
"""Heading 3 is a simple paragraph with a special heading 3 style."""
class Heading3(Paragraph):
signature = IHeading3
defaultStyle = 'Heading3'
class IHeading4(IParagraph):
"""Heading 4 is a simple paragraph with a special heading 4 style."""
class Heading4(Paragraph):
signature = IHeading4
defaultStyle = 'Heading4'
class IHeading5(IParagraph):
"""Heading 5 is a simple paragraph with a special heading 5 style."""
class Heading5(Paragraph):
signature = IHeading5
defaultStyle = 'Heading5'
class IHeading6(IParagraph):
"""Heading 6 is a simple paragraph with a special heading 6 style."""
class Heading6(Paragraph):
signature = IHeading6
defaultStyle = 'Heading6'
class ITableCell(interfaces.IRMLDirectiveSignature):
"""A table cell within a table."""
content = attr.RawXMLContent(
title=u'Content',
description=(u'The content of the cell; can be text or any flowable.'),
required=True)
fontName = attr.String(
title=u'Font Name',
description=u'The name of the font for the cell.',
required=False)
fontSize = attr.Measurement(
title=u'Font Size',
description=u'The font size for the text of the cell.',
required=False)
leading = attr.Measurement(
title=u'Leading',
description=(u'The height of a single text line. It includes '
u'character height.'),
required=False)
fontColor = attr.Color(
title=u'Font Color',
description=u'The color in which the text will appear.',
required=False)
leftPadding = attr.Measurement(
title=u'Left Padding',
description=u'The size of the padding on the left side.',
required=False)
rightPadding = attr.Measurement(
title=u'Right Padding',
description=u'The size of the padding on the right side.',
required=False)
topPadding = attr.Measurement(
title=u'Top Padding',
description=u'The size of the padding on the top.',
required=False)
bottomPadding = attr.Measurement(
title=u'Bottom Padding',
description=u'The size of the padding on the bottom.',
required=False)
background = attr.Color(
title=u'Background Color',
description=u'The color to use as the background for the cell.',
required=False)
align = attr.Choice(
title=u'Text Alignment',
description=u'The text alignment within the cell.',
choices=interfaces.ALIGN_TEXT_CHOICES,
required=False)
vAlign = attr.Choice(
title=u'Vertical Alignment',
description=u'The vertical alignment of the text within the cell.',
choices=interfaces.VALIGN_TEXT_CHOICES,
required=False)
lineBelowThickness = attr.Measurement(
title=u'Line Below Thickness',
description=u'The thickness of the line below the cell.',
required=False)
lineBelowColor = attr.Color(
title=u'Line Below Color',
description=u'The color of the line below the cell.',
required=False)
lineBelowCap = attr.Choice(
title=u'Line Below Cap',
description=u'The cap at the end of the line below the cell.',
choices=interfaces.CAP_CHOICES,
required=False)
lineBelowCount = attr.Integer(
title=u'Line Below Count',
description=(u'Describes whether the line below is a single (1) or '
u'double (2) line.'),
required=False)
lineBelowSpace = attr.Measurement(
title=u'Line Below Space',
description=u'The space of the line below the cell.',
required=False)
lineAboveThickness = attr.Measurement(
title=u'Line Above Thickness',
description=u'The thickness of the line above the cell.',
required=False)
lineAboveColor = attr.Color(
title=u'Line Above Color',
description=u'The color of the line above the cell.',
required=False)
lineAboveCap = attr.Choice(
title=u'Line Above Cap',
description=u'The cap at the end of the line above the cell.',
choices=interfaces.CAP_CHOICES,
required=False)
lineAboveCount = attr.Integer(
title=u'Line Above Count',
description=(u'Describes whether the line above is a single (1) or '
u'double (2) line.'),
required=False)
lineAboveSpace = attr.Measurement(
title=u'Line Above Space',
description=u'The space of the line above the cell.',
required=False)
lineLeftThickness = attr.Measurement(
title=u'Left Line Thickness',
description=u'The thickness of the line left of the cell.',
required=False)
lineLeftColor = attr.Color(
title=u'Left Line Color',
description=u'The color of the line left of the cell.',
required=False)
lineLeftCap = attr.Choice(
title=u'Line Left Cap',
description=u'The cap at the end of the line left of the cell.',
choices=interfaces.CAP_CHOICES,
required=False)
lineLeftCount = attr.Integer(
title=u'Line Left Count',
description=(u'Describes whether the left line is a single (1) or '
u'double (2) line.'),
required=False)
lineLeftSpace = attr.Measurement(
title=u'Line Left Space',
description=u'The space of the line left of the cell.',
required=False)
lineRightThickness = attr.Measurement(
title=u'Right Line Thickness',
description=u'The thickness of the line right of the cell.',
required=False)
lineRightColor = attr.Color(
title=u'Right Line Color',
description=u'The color of the line right of the cell.',
required=False)
lineRightCap = attr.Choice(
title=u'Line Right Cap',
description=u'The cap at the end of the line right of the cell.',
choices=interfaces.CAP_CHOICES,
required=False)
lineRightCount = attr.Integer(
title=u'Line Right Count',
description=(u'Describes whether the right line is a single (1) or '
u'double (2) line.'),
required=False)
lineRightSpace = attr.Measurement(
title=u'Line Right Space',
description=u'The space of the line right of the cell.',
required=False)
href = attr.Text(
title=u'Link URL',
description=u'When specified, the cell becomes a link to that URL.',
required=False)
destination = attr.Text(
title=u'Link Destination',
description=(u'When specified, the cell becomes a link to that '
u'destination.'),
required=False)
class TableCell(directive.RMLDirective):
signature = ITableCell
styleAttributesMapping = (
('FONTNAME', ('fontName',)),
('FONTSIZE', ('fontSize',)),
('TEXTCOLOR', ('fontColor',)),
('LEADING', ('leading',)),
('LEFTPADDING', ('leftPadding',)),
('RIGHTPADDING', ('rightPadding',)),
('TOPPADDING', ('topPadding',)),
('BOTTOMPADDING', ('bottomPadding',)),
('BACKGROUND', ('background',)),
('ALIGNMENT', ('align',)),
('VALIGN', ('vAlign',)),
('LINEBELOW', ('lineBelowThickness', 'lineBelowColor',
'lineBelowCap', 'lineBelowCount', 'lineBelowSpace')),
('LINEABOVE', ('lineAboveThickness', 'lineAboveColor',
'lineAboveCap', 'lineAboveCount', 'lineAboveSpace')),
('LINEBEFORE', ('lineLeftThickness', 'lineLeftColor',
'lineLeftCap', 'lineLeftCount', 'lineLeftSpace')),
('LINEAFTER', ('lineRightThickness', 'lineRightColor',
'lineRightCap', 'lineRightCount', 'lineRightSpace')),
('HREF', ('href',)),
('DESTINATION', ('destination',)),
)
def processStyle(self):
row = len(self.parent.parent.rows)
col = len(self.parent.cols)
for styleAction, attrNames in self.styleAttributesMapping:
args = self.getAttributeValues(select=attrNames, valuesOnly=True)
if args or len(attrNames) == 0:
self.parent.parent.style.add(
styleAction, [col, row], [col, row], *args)
def process(self):
# Produce style
self.processStyle()
# Produce cell data
flow = Flow(self.element, self.parent)
flow.process()
content = flow.flow
if len(content) == 0:
content = self.getAttributeValues(
select=('content',), valuesOnly=True)[0]
self.parent.cols.append(content)
class ITableRow(interfaces.IRMLDirectiveSignature):
"""A table row in the block table."""
occurence.containing(
occurence.OneOrMore('td', ITableCell),
)
class TableRow(directive.RMLDirective):
signature = ITableRow
factories = {'td': TableCell}
def process(self):
self.cols = []
self.processSubDirectives()
self.parent.rows.append(self.cols)
class ITableBulkData(interfaces.IRMLDirectiveSignature):
"""Bulk Data allows one to quickly create a table."""
content = attr.TextNodeSequence(
title=u'Content',
description=u'The bulk data.',
splitre=re.compile('\n'),
value_type=attr.Sequence(splitre=re.compile(','),
value_type=attr.Text())
)
class TableBulkData(directive.RMLDirective):
signature = ITableBulkData
def process(self):
self.parent.rows = self.getAttributeValues(valuesOnly=True)[0]
class BlockTableStyle(stylesheet.BlockTableStyle):
def process(self):
self.style = copy.deepcopy(self.parent.style)
attrs = self.getAttributeValues()
for name, value in attrs:
setattr(self.style, name, value)
self.processSubDirectives()
self.parent.style = self.style
class IBlockTable(interfaces.IRMLDirectiveSignature):
"""A typical block table."""
occurence.containing(
occurence.ZeroOrMore('tr', ITableRow),
occurence.ZeroOrOne('bulkData', ITableBulkData),
occurence.ZeroOrMore('blockTableStyle', stylesheet.IBlockTableStyle),
)
style = attr.Style(
title=u'Style',
description=(u'The table style that is applied to the table. '),
required=False)
rowHeights = attr.Sequence(
title=u'Row Heights',
description=u'A list of row heights in the table.',
value_type=attr.Measurement(),
required=False)
colWidths = attr.Sequence(
title=u'Column Widths',
description=u'A list of column widths in the table.',
value_type=attr.Measurement(allowPercentage=True, allowStar=True),
required=False)
repeatRows = attr.Integer(
title=u'Repeat Rows',
description=u'A flag to repeat rows upon table splits.',
required=False)
alignment = attr.Choice(
title=u'Alignment',
description=u'The alignment of whole table.',
choices=interfaces.ALIGN_TEXT_CHOICES,
required=False)
class BlockTable(Flowable):
signature = IBlockTable
klass = reportlab.platypus.Table
factories = {
'tr': TableRow,
'bulkData': TableBulkData,
'blockTableStyle': BlockTableStyle}
def process(self):
attrs = dict(self.getAttributeValues())
# Get the table style; create a new one, if none is found
self.style = attrs.pop('style', None)
if self.style is None:
self.style = reportlab.platypus.tables.TableStyle()
hAlign = attrs.pop('alignment', None)
# Extract all table rows and cells
self.rows = []
self.processSubDirectives(None)
# Create the table
repeatRows = attrs.pop('repeatRows', None)
table = self.klass(self.rows, style=self.style, **attrs)
if repeatRows:
table.repeatRows = repeatRows
if hAlign:
table.hAlign = hAlign
# Must set keepWithNext on table, since the style is not stored corr.
if hasattr(self.style, 'keepWithNext'):
table.keepWithNext = self.style.keepWithNext
self.parent.flow.append(table)
class INextFrame(interfaces.IRMLDirectiveSignature):
"""Switch to the next frame."""
name = attr.StringOrInt(
title=u'Name',
description=(u'The name or index of the next frame.'),
required=False)
class NextFrame(Flowable):
signature = INextFrame
klass = reportlab.platypus.doctemplate.FrameBreak
attrMapping = {'name': 'ix'}
class ISetNextFrame(interfaces.IRMLDirectiveSignature):
"""Define the next frame to switch to."""
name = attr.StringOrInt(
title=u'Name',
description=(u'The name or index of the next frame.'),
required=True)
class SetNextFrame(Flowable):
signature = INextFrame
klass = reportlab.platypus.doctemplate.NextFrameFlowable
attrMapping = {'name': 'ix'}
class INextPage(interfaces.IRMLDirectiveSignature):
"""Switch to the next page."""
class NextPage(Flowable):
signature = INextPage
klass = reportlab.platypus.PageBreak
class ISetNextTemplate(interfaces.IRMLDirectiveSignature):
"""Define the next page template to use."""
name = attr.StringOrInt(
title=u'Name',
description=u'The name or index of the next page template.',
required=True)
class SetNextTemplate(Flowable):
signature = ISetNextTemplate
klass = reportlab.platypus.doctemplate.NextPageTemplate
attrMapping = {'name': 'pt'}
class IConditionalPageBreak(interfaces.IRMLDirectiveSignature):
"""Switch to the next page if not enough vertical space is available."""
height = attr.Measurement(
title=u'height',
description=u'The minimal height that must be remaining on the page.',
required=True)
class ConditionalPageBreak(Flowable):
signature = IConditionalPageBreak
klass = reportlab.platypus.CondPageBreak
class IKeepInFrame(interfaces.IRMLDirectiveSignature):
"""Ask a flowable to stay within the frame."""
maxWidth = attr.Measurement(
title=u'Maximum Width',
description=u'The maximum width the flowables are allotted.',
default=None,
required=False)
maxHeight = attr.Measurement(
title=u'Maximum Height',
description=u'The maximum height the flowables are allotted.',
default=None,
required=False)
mergeSpace = attr.Boolean(
title=u'Merge Space',
description=u'A flag to set whether the space should be merged.',
required=False)
onOverflow = attr.Choice(
title=u'On Overflow',
description=u'Defines what has to be done, if an overflow is detected.',
choices=('error', 'overflow', 'shrink', 'truncate'),
required=False)
id = attr.Text(
title=u'Name/Id',
description=u'The name/id of the flowable.',
required=False)
frame = attr.StringOrInt(
title=u'Frame',
description=u'The frame to which the flowable should be fitted.',
required=False)
class KeepInFrame(Flowable):
signature = IKeepInFrame
klass = platypus.KeepInFrame
attrMapping = {'onOverflow': 'mode', 'id': 'name'}
def process(self):
args = dict(self.getAttributeValues(attrMapping=self.attrMapping))
# Circumvent broken-ness in zope.schema
args['maxWidth'] = args.get('maxWidth', None)
args['maxHeight'] = args.get('maxHeight', None)
# If the frame was specifed, get us there
frame = args.pop('frame', None)
if frame:
self.parent.flow.append(
reportlab.platypus.doctemplate.FrameBreak(frame))
# Create the content of the container
flow = Flow(self.element, self.parent)
flow.process()
args['content'] = flow.flow
# Create the keep in frame container
frame = self.klass(**args)
self.parent.flow.append(frame)
class IKeepTogether(interfaces.IRMLDirectiveSignature):
"""Keep the child flowables in the same frame. Add frame break when
necessary."""
maxHeight = attr.Measurement(
title=u'Maximum Height',
description=u'The maximum height the flowables are allotted.',
default=None,
required=False)
class KeepTogether(Flowable):
signature = IKeepTogether
klass = reportlab.platypus.flowables.KeepTogether
def process(self):
args = dict(self.getAttributeValues())
# Create the content of the container
flow = Flow(self.element, self.parent)
flow.process()
# Create the keep in frame container
frame = self.klass(flow.flow, **args)
self.parent.flow.append(frame)
class IImage(interfaces.IRMLDirectiveSignature):
"""An image."""
src = attr.Image(
title=u'Image Source',
description=u'The file that is used to extract the image data.',
onlyOpen=True,
required=True)
width = attr.Measurement(
title=u'Image Width',
description=u'The width of the image.',
required=False)
height = attr.Measurement(
title=u'Image Height',
description=u'The height the image.',
required=False)
mask = attr.Color(
title=u'Mask',
description=u'The color mask used to render the image.',
required=False)
vAlign = attr.Choice(
title=u'Vertical Alignment',
description=u'The vertical alignment of the image.',
choices=interfaces.VALIGN_TEXT_CHOICES,
required=False)
class Image(Flowable):
signature = IImage
klass = reportlab.platypus.flowables.Image
attrMapping = {'src': 'filename'}
def process(self):
args = dict(self.getAttributeValues(attrMapping=self.attrMapping))
vAlign = args.pop('vAlign', None)
img = self.klass(**args)
if vAlign:
img.vAlign = vAlign
self.parent.flow.append(img)
class IImageAndFlowables(interfaces.IRMLDirectiveSignature):
"""An image with flowables around it."""
imageName = attr.Image(
title=u'Image',
description=u'The file that is used to extract the image data.',
onlyOpen=True,
required=True)
imageWidth = attr.Measurement(
title=u'Image Width',
description=u'The width of the image.',
required=False)
imageHeight = attr.Measurement(
title=u'Image Height',
description=u'The height the image.',
required=False)
imageMask = attr.Color(
title=u'Mask',
description=u'The height the image.',
required=False)
imageLeftPadding = attr.Measurement(
title=u'Image Left Padding',
description=u'The padding on the left side of the image.',
required=False)
imageRightPadding = attr.Measurement(
title=u'Image Right Padding',
description=u'The padding on the right side of the image.',
required=False)
imageTopPadding = attr.Measurement(
title=u'Image Top Padding',
description=u'The padding on the top of the image.',
required=False)
imageBottomPadding = attr.Measurement(
title=u'Image Bottom Padding',
description=u'The padding on the bottom of the image.',
required=False)
imageSide = attr.Choice(
title=u'Image Side',
description=u'The side at which the image will be placed.',
choices=('left', 'right'),
required=False)
class ImageAndFlowables(Flowable):
signature = IImageAndFlowables
klass = reportlab.platypus.flowables.ImageAndFlowables
attrMapping = {'imageWidth': 'width', 'imageHeight': 'height',
'imageMask': 'mask', 'imageName': 'filename'}
def process(self):
flow = Flow(self.element, self.parent)
flow.process()
# Create the image
args = dict(self.getAttributeValues(
select=('imageName', 'imageWidth', 'imageHeight', 'imageMask'),
attrMapping=self.attrMapping))
img = reportlab.platypus.flowables.Image(**args)
# Create the flowable and add it
args = dict(self.getAttributeValues(
ignore=('imageName', 'imageWidth', 'imageHeight', 'imageMask'),
attrMapping=self.attrMapping))
self.parent.flow.append(
self.klass(img, flow.flow, **args))
class IPTO(interfaces.IRMLDirectiveSignature):
'''A container for flowables decorated with trailer & header lists.
If the split operation would be called then the trailer and header
lists are injected before and after the split. This allows specialist
"please turn over" and "continued from previous" like behaviours.'''
class PTO(Flowable):
signature = IPTO
klass = reportlab.platypus.flowables.PTOContainer
def process(self):
# Get Content
flow = Flow(self.element, self.parent)
flow.process()
# Get the header
ptoHeader = self.element.find('pto_header')
header = None
if ptoHeader is not None:
header = Flow(ptoHeader, self.parent)
header.process()
header = header.flow
# Get the trailer
ptoTrailer = self.element.find('pto_trailer')
trailer = None
if ptoTrailer is not None:
trailer = Flow(ptoTrailer, self.parent)
trailer.process()
trailer = trailer.flow
# Create and add the PTO Container
self.parent.flow.append(self.klass(flow.flow, trailer, header))
class IIndent(interfaces.IRMLDirectiveSignature):
"""Indent the contained flowables."""
left = attr.Measurement(
title=u'Left',
description=u'The indentation to the left.',
required=False)
right = attr.Measurement(
title=u'Right',
description=u'The indentation to the right.',
required=False)
class Indent(Flowable):
signature = IIndent
def process(self):
kw = dict(self.getAttributeValues())
# Indent
self.parent.flow.append(reportlab.platypus.doctemplate.Indenter(**kw))
# Add Content
flow = Flow(self.element, self.parent)
flow.process()
self.parent.flow += flow.flow
# Dedent
for name, value in kw.items():
kw[name] = -value
self.parent.flow.append(reportlab.platypus.doctemplate.Indenter(**kw))
class IFixedSize(interfaces.IRMLDirectiveSignature):
"""Create a container flowable of a fixed size."""
width = attr.Measurement(
title=u'Width',
description=u'The width the flowables are allotted.',
required=True)
height = attr.Measurement(
title=u'Height',
description=u'The height the flowables are allotted.',
required=True)
class FixedSize(Flowable):
signature = IFixedSize
klass = reportlab.platypus.flowables.KeepInFrame
attrMapping = {'width': 'maxWidth', 'height': 'maxHeight'}
def process(self):
flow = Flow(self.element, self.parent)
flow.process()
args = dict(self.getAttributeValues(attrMapping=self.attrMapping))
frame = self.klass(content=flow.flow, mode='shrink', **args)
self.parent.flow.append(frame)
class IBookmarkPage(interfaces.IRMLDirectiveSignature):
"""
This creates a bookmark to the current page which can be referred to with
the given key elsewhere.
PDF offers very fine grained control over how Acrobat reader is zoomed
when people link to this. The default is to keep the user's current zoom
settings. the last arguments may or may not be needed depending on the
choice of 'fitType'.
"""
name = attr.Text(
title=u'Name',
description=u'The name of the bookmark.',
required=True)
fit = attr.Choice(
title=u'Fit',
description=u'The Fit Type.',
choices=('XYZ', 'Fit', 'FitH', 'FitV', 'FitR'),
required=False)
top = attr.Measurement(
title=u'Top',
description=u'The top position.',
required=False)
bottom = attr.Measurement(
title=u'Bottom',
description=u'The bottom position.',
required=False)
left = attr.Measurement(
title=u'Left',
description=u'The left position.',
required=False)
right = attr.Measurement(
title=u'Right',
description=u'The right position.',
required=False)
zoom = attr.Float(
title=u'Zoom',
description=u'The zoom level when clicking on the bookmark.',
required=False)
class BookmarkPage(Flowable):
signature = IBookmarkPage
klass = platypus.BookmarkPage
attrMapping = {'name': 'key', 'fitType': 'fit'}
class IBookmark(interfaces.IRMLDirectiveSignature):
"""
This creates a bookmark to the current page which can be referred to with
the given key elsewhere. (Used inside a story.)
"""
name = attr.Text(
title=u'Name',
description=u'The name of the bookmark.',
required=True)
x = attr.Measurement(
title=u'X Coordinate',
description=u'The x-position of the bookmark.',
default=0,
required=False)
y = attr.Measurement(
title=u'Y Coordinate',
description=u'The y-position of the bookmark.',
default=0,
required=False)
class Bookmark(Flowable):
signature = IBookmark
klass = platypus.Bookmark
attrMapping = {'name': 'key', 'x': 'relativeX', 'y': 'relativeY'}
class ILink(interfaces.IRMLDirectiveSignature):
"""Place an internal link around a set of flowables."""
destination = attr.Text(
title=u'Destination',
description=u'The name of the destination to link to.',
required=False)
url = attr.Text(
title=u'URL',
description=u'The URL to link to.',
required=False)
boxStrokeWidth = attr.Measurement(
title=u'Box Stroke Width',
description=u'The width of the box border line.',
required=False)
boxStrokeDashArray = attr.Sequence(
title=u'Box Stroke Dash Array',
description=u'The dash array of the box border line.',
value_type=attr.Float(),
required=False)
boxStrokeColor = attr.Color(
title=u'Box Stroke Color',
description=(u'The color in which the box border is drawn.'),
required=False)
class Link(Flowable):
signature = ILink
attrMapping = {'destination': 'destinationname',
'boxStrokeWidth': 'thickness',
'boxStrokeDashArray': 'dashArray',
'boxStrokeColor': 'color'}
def process(self):
flow = Flow(self.element, self.parent)
flow.process()
args = dict(self.getAttributeValues(attrMapping=self.attrMapping))
self.parent.flow.append(platypus.Link(flow.flow, **args))
class IHorizontalRow(interfaces.IRMLDirectiveSignature):
"""Create a horizontal line on the page."""
width = attr.Measurement(
title=u'Width',
description=u'The width of the line on the page.',
allowPercentage=True,
required=False)
thickness = attr.Measurement(
title=u'Thickness',
description=u'Line Thickness',
required=False)
color = attr.Color(
title=u'Color',
description=u'The color of the line.',
required=False)
lineCap = attr.Choice(
title=u'Cap',
description=u'The cap at the end of the line.',
choices=interfaces.CAP_CHOICES.keys(),
required=False)
spaceBefore = attr.Measurement(
title=u'Space Before',
description=u'The vertical space before the line.',
required=False)
spaceAfter = attr.Measurement(
title=u'Space After',
description=u'The vertical space after the line.',
required=False)
align = attr.Choice(
title=u'Alignment',
description=u'The alignment of the line within the frame.',
choices=interfaces.ALIGN_TEXT_CHOICES,
required=False)
valign = attr.Choice(
title=u'Vertical Alignment',
description=u'The vertical alignment of the line.',
choices=interfaces.VALIGN_TEXT_CHOICES,
required=False)
dash = attr.Sequence(
title=u'Dash-Pattern',
description=u'The dash-pattern of a line.',
value_type=attr.Measurement(),
default=None,
required=False)
class HorizontalRow(Flowable):
signature = IHorizontalRow
klass = reportlab.platypus.flowables.HRFlowable
attrMapping = {'align': 'hAlign'}
class IOutlineAdd(interfaces.IRMLDirectiveSignature):
"""Add a new entry to the outline of the PDF."""
title = attr.TextNode(
title=u'Title',
description=u'The text displayed for this item.',
required=True)
key = attr.String(
title=u'Key',
description=u'The unique key of the item.',
required=False)
level = attr.Integer(
title=u'Level',
description=u'The level in the outline tree.',
required=False)
closed = attr.Boolean(
title=u'Closed',
description=(u'A flag to determine whether the sub-tree is closed '
u'by default.'),
required=False)
class OutlineAdd(Flowable):
signature = IOutlineAdd
klass = platypus.OutlineAdd
class NamedStringFlowable(reportlab.platypus.flowables.Flowable):
def __init__(self, manager, id, value):
reportlab.platypus.flowables.Flowable.__init__(self)
self.manager = manager
self.id = id
self.value = value
def wrap(self, *args):
return (0, 0)
def draw(self):
self.manager.names[self.id] = self.value
class INamedString(interfaces.IRMLDirectiveSignature):
"""Defines a name for a string."""
id = attr.String(
title=u'Id',
description=u'The id under which the value will be known.',
required=True)
value = attr.XMLContent(
title=u'Value',
description=u'The text that is displayed if the id is called.',
required=True)
class NamedString(directive.RMLDirective):
signature = INamedString
def process(self):
id, value = self.getAttributeValues(valuesOnly=True)
manager = attr.getManager(self)
# We have to delay assigning values, otherwise the last one wins.
self.parent.flow.append(NamedStringFlowable(manager, id, value))
class IShowIndex(interfaces.IRMLDirectiveSignature):
"""Creates an index in the document."""
name = attr.String(
title=u'Name',
description=u'The name of the index.',
default='index',
required=False)
dot = attr.String(
title=u'Dot',
description=u'The character to use as a dot.',
required=False)
style = attr.Style(
title=u'Style',
description=u'The paragraph style that is applied to the index. ',
required=False)
tableStyle = attr.Style(
title=u'Table Style',
description=u'The table style that is applied to the index layout. ',
required=False)
class ShowIndex(directive.RMLDirective):
signature = IShowIndex
def process(self):
args = dict(self.getAttributeValues())
manager = attr.getManager(self)
index = manager.indexes[args['name']]
args['format'] = index.formatFunc.__name__[8:]
args['offset'] = index.offset
index.setup(**args)
self.parent.flow.append(index)
class IBaseLogCall(interfaces.IRMLDirectiveSignature):
message = attr.RawXMLContent(
title=u'Message',
description=u'The message to be logged.',
required=True)
class LogCallFlowable(reportlab.platypus.flowables.Flowable):
def __init__(self, logger, level, message):
self.logger = logger
self.level = level
self.message = message
def wrap(self, *args):
return (0, 0)
def draw(self):
self.logger.log(self.level, self.message)
class BaseLogCall(directive.RMLDirective):
signature = IBaseLogCall
level = None
def process(self):
message = self.getAttributeValues(
select=('message',), valuesOnly=True)[0]
manager = attr.getManager(self)
self.parent.flow.append(
LogCallFlowable(manager.logger, self.level, message))
class ILog(IBaseLogCall):
"""Log message at DEBUG level."""
level = attr.Choice(
title=u'Level',
description=u'The default log level.',
choices=interfaces.LOG_LEVELS,
doLower=False,
default=logging.INFO,
required=True)
class Log(BaseLogCall):
signature = ILog
@property
def level(self):
return self.getAttributeValues(select=('level',), valuesOnly=True)[0]
class IDebug(IBaseLogCall):
"""Log message at DEBUG level."""
class Debug(BaseLogCall):
signature = IDebug
level = logging.DEBUG
class IInfo(IBaseLogCall):
"""Log message at INFO level."""
class Info(BaseLogCall):
signature = IInfo
level = logging.INFO
class IWarning(IBaseLogCall):
"""Log message at WARNING level."""
class Warning(BaseLogCall):
signature = IWarning
level = logging.WARNING
class IError(IBaseLogCall):
"""Log message at ERROR level."""
class Error(BaseLogCall):
signature = IError
level = logging.ERROR
class ICritical(IBaseLogCall):
"""Log message at CRITICAL level."""
class Critical(BaseLogCall):
signature = ICritical
level = logging.CRITICAL
class IFlow(interfaces.IRMLDirectiveSignature):
"""A list of flowables."""
occurence.containing(
occurence.ZeroOrMore('spacer', ISpacer),
occurence.ZeroOrMore('illustration', IIllustration),
occurence.ZeroOrMore('pre', IPreformatted),
occurence.ZeroOrMore('xpre', IXPreformatted),
occurence.ZeroOrMore('codesnippet', ICodeSnippet),
occurence.ZeroOrMore('plugInFlowable', IPluginFlowable),
occurence.ZeroOrMore('barCodeFlowable', IBarCodeFlowable),
occurence.ZeroOrMore('outlineAdd', IOutlineAdd),
occurence.ZeroOrMore('title', ITitle),
occurence.ZeroOrMore('h1', IHeading1),
occurence.ZeroOrMore('h2', IHeading2),
occurence.ZeroOrMore('h3', IHeading3),
occurence.ZeroOrMore('h4', IHeading4),
occurence.ZeroOrMore('h5', IHeading5),
occurence.ZeroOrMore('h6', IHeading6),
occurence.ZeroOrMore('para', IParagraph),
occurence.ZeroOrMore('blockTable', IBlockTable),
occurence.ZeroOrMore('nextFrame', INextFrame),
occurence.ZeroOrMore('setNextFrame', ISetNextFrame),
occurence.ZeroOrMore('nextPage', INextPage),
occurence.ZeroOrMore('setNextTemplate', ISetNextTemplate),
occurence.ZeroOrMore('condPageBreak', IConditionalPageBreak),
occurence.ZeroOrMore('keepInFrame', IKeepInFrame),
occurence.ZeroOrMore('keepTogether', IKeepTogether),
occurence.ZeroOrMore('img', IImage),
occurence.ZeroOrMore('imageAndFlowables', IImageAndFlowables),
occurence.ZeroOrMore('pto', IPTO),
occurence.ZeroOrMore('indent', IIndent),
occurence.ZeroOrMore('fixedSize', IFixedSize),
occurence.ZeroOrMore('bookmarkPage', IBookmarkPage),
occurence.ZeroOrMore('bookmark', IBookmark),
occurence.ZeroOrMore('link', ILink),
occurence.ZeroOrMore('hr', IHorizontalRow),
occurence.ZeroOrMore('showIndex', IShowIndex),
occurence.ZeroOrMore('name', special.IName),
occurence.ZeroOrMore('namedString', INamedString),
occurence.ZeroOrMore('log', ILog),
occurence.ZeroOrMore('debug', IDebug),
occurence.ZeroOrMore('info', IInfo),
occurence.ZeroOrMore('warning', IWarning),
occurence.ZeroOrMore('error', IError),
occurence.ZeroOrMore('critical', ICritical),
)
class Flow(directive.RMLDirective):
factories = {
# Generic Flowables
'spacer': Spacer,
'illustration': Illustration,
'pre': Preformatted,
'xpre': XPreformatted,
'codesnippet': CodeSnippet,
'plugInFlowable': PluginFlowable,
'barCodeFlowable': BarCodeFlowable,
'outlineAdd': OutlineAdd,
# Paragraph-Like Flowables
'title': Title,
'h1': Heading1,
'h2': Heading2,
'h3': Heading3,
'h4': Heading4,
'h5': Heading5,
'h6': Heading6,
'para': Paragraph,
# Table Flowable
'blockTable': BlockTable,
# Page-level Flowables
'nextFrame': NextFrame,
'setNextFrame': SetNextFrame,
'nextPage': NextPage,
'setNextTemplate': SetNextTemplate,
'condPageBreak': ConditionalPageBreak,
'keepInFrame': KeepInFrame,
'keepTogether': KeepTogether,
'img': Image,
'imageAndFlowables': ImageAndFlowables,
'pto': PTO,
'indent': Indent,
'fixedSize': FixedSize,
'bookmarkPage': BookmarkPage,
'bookmark': Bookmark,
'link': Link,
'hr': HorizontalRow,
'showIndex': ShowIndex,
# Special Elements
'name': special.Name,
'namedString': NamedString,
# Logging
'log': Log,
'debug': Debug,
'info': Info,
'warning': Warning,
'error': Error,
'critical': Critical,
}
def __init__(self, *args, **kw):
super(Flow, self).__init__(*args, **kw)
self.flow = []
def process(self):
self.processSubDirectives()
return self.flow
|