├── CHANGES.txt ├── INSTALL.txt ├── LICENSE.txt ├── PKG-INFO ├── README.txt ├── VERSION.txt ├── demos ├── colors │ └── colortest.py ├── gadflypaper │ ├── 00readme.txt │ └── gfe.py ├── odyssey │ ├── 00readme.txt │ ├── dodyssey.py │ ├── fodyssey.py │ ├── odyssey.py │ └── odyssey.txt ├── rlzope │ ├── readme.txt │ └── rlzope.py ├── stdfonts │ ├── 00readme.txt │ └── stdfonts.py └── tests │ └── testdemos.py ├── docs ├── 00readme.txt ├── Makefile ├── genAll.py ├── gen_epydoc ├── images │ ├── Edit_Prefs.gif │ ├── Python_21.gif │ ├── Python_21_HINT.gif │ ├── fileExchange.gif │ ├── jpn.gif │ ├── jpnchars.jpg │ ├── lj8100.jpg │ ├── redsquare.png │ ├── replogo.a85 │ ├── replogo.gif │ └── testimg.gif ├── make.bat ├── reference │ ├── build.bat │ ├── genreference.py │ └── reference.yml ├── source │ ├── _static │ │ ├── basic.css │ │ └── default.css │ ├── _templates │ │ ├── layout.html │ │ └── page.html │ ├── conf.py │ ├── graphics.rst │ ├── index.rst │ ├── lib.rst │ ├── pdfgen.rst │ └── platypus.rst └── userguide │ ├── app_demos.py │ ├── ch1_intro.py │ ├── ch2_graphics.py │ ├── ch2a_fonts.py │ ├── ch3_pdffeatures.py │ ├── ch4_platypus_concepts.py │ ├── ch5_paragraphs.py │ ├── ch6_tables.py │ ├── ch7_custom.py │ ├── genuserguide.py │ ├── graph_charts.py │ ├── graph_concepts.py │ ├── graph_intro.py │ ├── graph_shapes.py │ ├── graph_widgets.py │ └── testfile.txt ├── ez_setup.py ├── setup.cfg ├── setup.py ├── src ├── reportlab │ ├── MANIFEST.in │ ├── __init__.py │ ├── fonts │ │ ├── 00readme.txt │ │ ├── DarkGarden-changelog.txt │ │ ├── DarkGarden-copying-gpl.txt │ │ ├── DarkGarden-copying.txt │ │ ├── DarkGarden-readme.txt │ │ ├── DarkGarden.sfd │ │ ├── DarkGardenMK.afm │ │ ├── DarkGardenMK.pfb │ │ ├── Vera.ttf │ │ ├── VeraBI.ttf │ │ ├── VeraBd.ttf │ │ ├── VeraIt.ttf │ │ └── bitstream-vera-license.txt │ ├── graphics │ │ ├── __init__.py │ │ ├── barcode │ │ │ ├── README │ │ │ ├── TODO │ │ │ ├── VERSION │ │ │ ├── __init__.py │ │ │ ├── code128.py │ │ │ ├── code39.py │ │ │ ├── code93.py │ │ │ ├── common.py │ │ │ ├── eanbc.py │ │ │ ├── fourstate.py │ │ │ ├── lto.py │ │ │ ├── qr.py │ │ │ ├── test.py │ │ │ ├── usps.py │ │ │ ├── usps4s.py │ │ │ └── widgets.py │ │ ├── charts │ │ │ ├── __init__.py │ │ │ ├── areas.py │ │ │ ├── axes.py │ │ │ ├── barcharts.py │ │ │ ├── dotbox.py │ │ │ ├── doughnut.py │ │ │ ├── legends.py │ │ │ ├── linecharts.py │ │ │ ├── lineplots.py │ │ │ ├── markers.py │ │ │ ├── piecharts.py │ │ │ ├── slidebox.py │ │ │ ├── spider.py │ │ │ ├── textlabels.py │ │ │ ├── utils.py │ │ │ └── utils3d.py │ │ ├── renderPDF.py │ │ ├── renderPM.py │ │ ├── renderPS.py │ │ ├── renderSVG.py │ │ ├── renderbase.py │ │ ├── samples │ │ │ ├── __init__.py │ │ │ ├── bubble.py │ │ │ ├── clustered_bar.py │ │ │ ├── clustered_column.py │ │ │ ├── excelcolors.py │ │ │ ├── exploded_pie.py │ │ │ ├── filled_radar.py │ │ │ ├── line_chart.py │ │ │ ├── linechart_with_markers.py │ │ │ ├── radar.py │ │ │ ├── runall.py │ │ │ ├── scatter.py │ │ │ ├── scatter_lines.py │ │ │ ├── scatter_lines_markers.py │ │ │ ├── simple_pie.py │ │ │ ├── stacked_bar.py │ │ │ └── stacked_column.py │ │ ├── shapes.py │ │ ├── testdrawings.py │ │ ├── testshapes.py │ │ ├── widgetbase.py │ │ └── widgets │ │ │ ├── __init__.py │ │ │ ├── eventcal.py │ │ │ ├── flags.py │ │ │ ├── grids.py │ │ │ ├── markers.py │ │ │ ├── signsandsymbols.py │ │ │ └── table.py │ ├── lib │ │ ├── PyFontify.py │ │ ├── __init__.py │ │ ├── abag.py │ │ ├── arciv.py │ │ ├── attrmap.py │ │ ├── boxstuff.py │ │ ├── codecharts.py │ │ ├── colors.py │ │ ├── corp.py │ │ ├── enums.py │ │ ├── extformat.py │ │ ├── fontfinder.py │ │ ├── fonts.py │ │ ├── formatters.py │ │ ├── geomutils.py │ │ ├── logger.py │ │ ├── normalDate.py │ │ ├── pagesizes.py │ │ ├── pdfencrypt.py │ │ ├── pygments2xpre.py │ │ ├── randomtext.py │ │ ├── rltempfile.py │ │ ├── rparsexml.py │ │ ├── sequencer.py │ │ ├── set_ops.py │ │ ├── styles.py │ │ ├── testutils.py │ │ ├── textsplit.py │ │ ├── units.py │ │ ├── utils.py │ │ ├── validators.py │ │ ├── xmllib.py │ │ └── yaml.py │ ├── license.txt │ ├── pdfbase │ │ ├── __init__.py │ │ ├── _can_cmap_data.py │ │ ├── _cidfontdata.py │ │ ├── _fontdata.py │ │ ├── _fontdata_enc_macexpert.py │ │ ├── _fontdata_enc_macroman.py │ │ ├── _fontdata_enc_pdfdoc.py │ │ ├── _fontdata_enc_standard.py │ │ ├── _fontdata_enc_symbol.py │ │ ├── _fontdata_enc_winansi.py │ │ ├── _fontdata_enc_zapfdingbats.py │ │ ├── _fontdata_widths_courier.py │ │ ├── _fontdata_widths_courierbold.py │ │ ├── _fontdata_widths_courierboldoblique.py │ │ ├── _fontdata_widths_courieroblique.py │ │ ├── _fontdata_widths_helvetica.py │ │ ├── _fontdata_widths_helveticabold.py │ │ ├── _fontdata_widths_helveticaboldoblique.py │ │ ├── _fontdata_widths_helveticaoblique.py │ │ ├── _fontdata_widths_symbol.py │ │ ├── _fontdata_widths_timesbold.py │ │ ├── _fontdata_widths_timesbolditalic.py │ │ ├── _fontdata_widths_timesitalic.py │ │ ├── _fontdata_widths_timesroman.py │ │ ├── _fontdata_widths_zapfdingbats.py │ │ ├── cidfonts.py │ │ ├── pdfdoc.py │ │ ├── pdfform.py │ │ ├── pdfmetrics.py │ │ ├── pdfpattern.py │ │ ├── pdfutils.py │ │ ├── rl_codecs.py │ │ └── ttfonts.py │ ├── pdfgen │ │ ├── __init__.py │ │ ├── canvas.py │ │ ├── pathobject.py │ │ ├── pdfgeom.py │ │ ├── pdfimages.py │ │ ├── pycanvas.py │ │ └── textobject.py │ ├── platypus │ │ ├── __init__.py │ │ ├── doctemplate.py │ │ ├── figures.py │ │ ├── flowables.py │ │ ├── frames.py │ │ ├── para.py │ │ ├── paragraph.py │ │ ├── paraparser.py │ │ ├── tableofcontents.py │ │ ├── tables.py │ │ └── xpreformatted.py │ └── rl_config.py └── rl_addons │ ├── README │ ├── renderPM │ ├── MANIFEST.in │ ├── _renderPM.c │ ├── gt1 │ │ ├── gt1-dict.c │ │ ├── gt1-dict.h │ │ ├── gt1-misc.h │ │ ├── gt1-namecontext.c │ │ ├── gt1-namecontext.h │ │ ├── gt1-parset1.c │ │ ├── gt1-parset1.h │ │ ├── gt1-region.c │ │ ├── gt1-region.h │ │ ├── gt1-value.h │ │ ├── parseAFM.c │ │ └── parseAFM.h │ ├── libart_lgpl │ │ ├── AUTHORS │ │ ├── COPYING │ │ ├── ChangeLog │ │ ├── Makefile.am │ │ ├── NEWS │ │ ├── README │ │ ├── README.CVS │ │ ├── acconfig.h │ │ ├── art_affine.c │ │ ├── art_affine.h │ │ ├── art_alphagamma.c │ │ ├── art_alphagamma.h │ │ ├── art_bpath.c │ │ ├── art_bpath.h │ │ ├── art_config.h │ │ ├── art_filterlevel.h │ │ ├── art_gray_svp.c │ │ ├── art_gray_svp.h │ │ ├── art_misc.c │ │ ├── art_misc.h │ │ ├── art_pathcode.h │ │ ├── art_pixbuf.c │ │ ├── art_pixbuf.h │ │ ├── art_point.h │ │ ├── art_rect.c │ │ ├── art_rect.h │ │ ├── art_rect_svp.c │ │ ├── art_rect_svp.h │ │ ├── art_rect_uta.c │ │ ├── art_rect_uta.h │ │ ├── art_render.c │ │ ├── art_render.h │ │ ├── art_render_gradient.c │ │ ├── art_render_gradient.h │ │ ├── art_render_mask.c │ │ ├── art_render_mask.h │ │ ├── art_render_svp.c │ │ ├── art_render_svp.h │ │ ├── art_rgb.c │ │ ├── art_rgb.h │ │ ├── art_rgb_a_affine.c │ │ ├── art_rgb_a_affine.h │ │ ├── art_rgb_affine.c │ │ ├── art_rgb_affine.h │ │ ├── art_rgb_affine_private.c │ │ ├── art_rgb_affine_private.h │ │ ├── art_rgb_bitmap_affine.c │ │ ├── art_rgb_bitmap_affine.h │ │ ├── art_rgb_pixbuf_affine.c │ │ ├── art_rgb_pixbuf_affine.h │ │ ├── art_rgb_rgba_affine.c │ │ ├── art_rgb_rgba_affine.h │ │ ├── art_rgb_svp.c │ │ ├── art_rgb_svp.h │ │ ├── art_rgba.c │ │ ├── art_rgba.h │ │ ├── art_svp.c │ │ ├── art_svp.h │ │ ├── art_svp_intersect.c │ │ ├── art_svp_intersect.h │ │ ├── art_svp_ops.c │ │ ├── art_svp_ops.h │ │ ├── art_svp_point.c │ │ ├── art_svp_point.h │ │ ├── art_svp_render_aa.c │ │ ├── art_svp_render_aa.h │ │ ├── art_svp_vpath.c │ │ ├── art_svp_vpath.h │ │ ├── art_svp_vpath_stroke.c │ │ ├── art_svp_vpath_stroke.h │ │ ├── art_svp_wind.c │ │ ├── art_svp_wind.h │ │ ├── art_uta.c │ │ ├── art_uta.h │ │ ├── art_uta_ops.c │ │ ├── art_uta_ops.h │ │ ├── art_uta_rect.c │ │ ├── art_uta_rect.h │ │ ├── art_uta_svp.c │ │ ├── art_uta_svp.h │ │ ├── art_uta_vpath.c │ │ ├── art_uta_vpath.h │ │ ├── art_vpath.c │ │ ├── art_vpath.h │ │ ├── art_vpath_bpath.c │ │ ├── art_vpath_bpath.h │ │ ├── art_vpath_dash.c │ │ ├── art_vpath_dash.h │ │ ├── art_vpath_svp.c │ │ ├── art_vpath_svp.h │ │ ├── autogen.sh │ │ ├── config.h │ │ ├── configure.in │ │ ├── gen_art_config.c │ │ ├── libart-2.0.pc.in │ │ ├── libart-config.in │ │ ├── libart-features.c │ │ ├── libart-features.h.in │ │ ├── libart.h │ │ ├── libart.m4 │ │ ├── libartConf.sh.in │ │ ├── test_gradient.c │ │ ├── testart.c │ │ └── testuta.c │ ├── pfm.py │ ├── setup.cfg │ ├── setup.py │ ├── test_renderPM.py │ └── tr.py │ └── rl_accel │ ├── MANIFEST.in │ ├── Makefile.pre.in │ ├── README.extensions │ ├── Setup.in │ ├── __BUILD.dsw │ ├── _rl_accel.c │ ├── _rl_accel.dsp │ ├── _rl_accel.java │ ├── hnjalloc.c │ ├── hnjalloc.h │ ├── hyphen.c │ ├── hyphen.h │ ├── hyphen.mashed │ ├── pyHnj.dsp │ ├── pyHnjmodule.c │ ├── sgmlop.c │ ├── sgmlop.dsp │ └── tests │ ├── getrc.py │ ├── t0.py │ ├── t1.py │ ├── t2.py │ ├── t3.py │ ├── t4.py │ └── t5.py ├── tests ├── 00readme.txt ├── __init__.py ├── alpha_test.png ├── pythonpowered.gif ├── runAll.py ├── solid_red_alpha.png ├── tall_red.png ├── test_charts_textlabels.py ├── test_crypto_algorithms.py ├── test_docs_build.py ├── test_docstrings.py ├── test_encrypt.py ├── test_extra.py ├── test_geomutils.py ├── test_graphics_charts.py ├── test_graphics_images.py ├── test_graphics_layout.py ├── test_graphics_speed.py ├── test_hello.py ├── test_images.py ├── test_invariant.py ├── test_lib_colors.py ├── test_lib_sequencer.py ├── test_lib_utils.py ├── test_lib_validators.py ├── test_multibyte_chs.py ├── test_multibyte_cht.py ├── test_multibyte_jpn.py ├── test_multibyte_kor.py ├── test_paragraphs.py ├── test_pdfbase_encodings.py ├── test_pdfbase_fontembed.py ├── test_pdfbase_pdfdoc.py ├── test_pdfbase_pdfmetrics.py ├── test_pdfbase_pdfutils.py ├── test_pdfbase_postscript.py ├── test_pdfbase_ttfonts.py ├── test_pdfencryption.py ├── test_pdfgen_callback.py ├── test_pdfgen_general.py ├── test_pdfgen_links.py ├── test_pdfgen_overprint.py ├── test_pdfgen_pagemodes.py ├── test_pdfgen_pycanvas.py ├── test_platypus_accum.py ├── test_platypus_breaking.py ├── test_platypus_general.py ├── test_platypus_indents.py ├── test_platypus_index.py ├── test_platypus_leftright.py ├── test_platypus_paragraphs.py ├── test_platypus_paraparser.py ├── test_platypus_pleaseturnover.py ├── test_platypus_programming.py ├── test_platypus_tables.py ├── test_platypus_toc.py ├── test_platypus_xref.py ├── test_pyfiles.py ├── test_renderSVG.py ├── test_rl_accel.py ├── test_source_chars.py ├── test_table_layout.py ├── test_tools_pythonpoint.py ├── test_utils.py ├── test_widgetbase_tpc.py └── test_widgets_grids.py └── tools ├── README ├── __init__.py ├── docco ├── README ├── __init__.py ├── codegrab.py ├── docpy.py ├── examples.py ├── graphdocpy.py ├── rl_doc_utils.py ├── rltemplate.py ├── stylesheet.py ├── t_parse.py ├── yaml.py └── yaml2pdf.py ├── pythonpoint ├── README ├── __init__.py ├── customshapes.py ├── demos │ ├── examples.py │ ├── figures.xml │ ├── htu.xml │ ├── leftlogo.a85 │ ├── leftlogo.gif │ ├── lj8100.jpg │ ├── monterey.xml │ ├── outline.gif │ ├── pplogo.gif │ ├── python.gif │ ├── pythonpoint.xml │ ├── slidebox.py │ ├── spectrum.png │ └── vertpython.gif ├── pythonpoint.dtd ├── pythonpoint.py ├── stdparser.py └── styles │ ├── __init__.py │ ├── horrible.py │ ├── htu.py │ ├── modern.py │ ├── projection.py │ └── standard.py └── utils ├── add_bleed.py └── dumpttf.py /CHANGES.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattjmorrison/ReportLab/HEAD/CHANGES.txt -------------------------------------------------------------------------------- /INSTALL.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattjmorrison/ReportLab/HEAD/INSTALL.txt -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattjmorrison/ReportLab/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /PKG-INFO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattjmorrison/ReportLab/HEAD/PKG-INFO -------------------------------------------------------------------------------- /README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattjmorrison/ReportLab/HEAD/README.txt -------------------------------------------------------------------------------- /VERSION.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattjmorrison/ReportLab/HEAD/VERSION.txt -------------------------------------------------------------------------------- /demos/colors/colortest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattjmorrison/ReportLab/HEAD/demos/colors/colortest.py -------------------------------------------------------------------------------- /demos/gadflypaper/00readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattjmorrison/ReportLab/HEAD/demos/gadflypaper/00readme.txt -------------------------------------------------------------------------------- /demos/gadflypaper/gfe.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattjmorrison/ReportLab/HEAD/demos/gadflypaper/gfe.py -------------------------------------------------------------------------------- /demos/odyssey/00readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattjmorrison/ReportLab/HEAD/demos/odyssey/00readme.txt -------------------------------------------------------------------------------- /demos/odyssey/dodyssey.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattjmorrison/ReportLab/HEAD/demos/odyssey/dodyssey.py -------------------------------------------------------------------------------- /demos/odyssey/fodyssey.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattjmorrison/ReportLab/HEAD/demos/odyssey/fodyssey.py -------------------------------------------------------------------------------- /demos/odyssey/odyssey.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattjmorrison/ReportLab/HEAD/demos/odyssey/odyssey.py -------------------------------------------------------------------------------- /demos/odyssey/odyssey.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattjmorrison/ReportLab/HEAD/demos/odyssey/odyssey.txt -------------------------------------------------------------------------------- /demos/rlzope/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattjmorrison/ReportLab/HEAD/demos/rlzope/readme.txt -------------------------------------------------------------------------------- /demos/rlzope/rlzope.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattjmorrison/ReportLab/HEAD/demos/rlzope/rlzope.py -------------------------------------------------------------------------------- /demos/stdfonts/00readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattjmorrison/ReportLab/HEAD/demos/stdfonts/00readme.txt -------------------------------------------------------------------------------- /demos/stdfonts/stdfonts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattjmorrison/ReportLab/HEAD/demos/stdfonts/stdfonts.py -------------------------------------------------------------------------------- /demos/tests/testdemos.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattjmorrison/ReportLab/HEAD/demos/tests/testdemos.py -------------------------------------------------------------------------------- /docs/00readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattjmorrison/ReportLab/HEAD/docs/00readme.txt -------------------------------------------------------------------------------- /docs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattjmorrison/ReportLab/HEAD/docs/Makefile -------------------------------------------------------------------------------- /docs/genAll.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattjmorrison/ReportLab/HEAD/docs/genAll.py -------------------------------------------------------------------------------- /docs/gen_epydoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattjmorrison/ReportLab/HEAD/docs/gen_epydoc -------------------------------------------------------------------------------- /docs/images/Edit_Prefs.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattjmorrison/ReportLab/HEAD/docs/images/Edit_Prefs.gif -------------------------------------------------------------------------------- /docs/images/Python_21.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattjmorrison/ReportLab/HEAD/docs/images/Python_21.gif -------------------------------------------------------------------------------- /docs/images/Python_21_HINT.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattjmorrison/ReportLab/HEAD/docs/images/Python_21_HINT.gif -------------------------------------------------------------------------------- /docs/images/fileExchange.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattjmorrison/ReportLab/HEAD/docs/images/fileExchange.gif -------------------------------------------------------------------------------- /docs/images/jpn.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattjmorrison/ReportLab/HEAD/docs/images/jpn.gif -------------------------------------------------------------------------------- /docs/images/jpnchars.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattjmorrison/ReportLab/HEAD/docs/images/jpnchars.jpg -------------------------------------------------------------------------------- /docs/images/lj8100.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattjmorrison/ReportLab/HEAD/docs/images/lj8100.jpg -------------------------------------------------------------------------------- /docs/images/redsquare.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattjmorrison/ReportLab/HEAD/docs/images/redsquare.png -------------------------------------------------------------------------------- /docs/images/replogo.a85: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattjmorrison/ReportLab/HEAD/docs/images/replogo.a85 -------------------------------------------------------------------------------- /docs/images/replogo.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattjmorrison/ReportLab/HEAD/docs/images/replogo.gif -------------------------------------------------------------------------------- /docs/images/testimg.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattjmorrison/ReportLab/HEAD/docs/images/testimg.gif -------------------------------------------------------------------------------- /docs/make.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattjmorrison/ReportLab/HEAD/docs/make.bat -------------------------------------------------------------------------------- /docs/reference/build.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattjmorrison/ReportLab/HEAD/docs/reference/build.bat -------------------------------------------------------------------------------- /docs/reference/genreference.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattjmorrison/ReportLab/HEAD/docs/reference/genreference.py -------------------------------------------------------------------------------- /docs/reference/reference.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattjmorrison/ReportLab/HEAD/docs/reference/reference.yml -------------------------------------------------------------------------------- /docs/source/_static/basic.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /docs/source/_static/default.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattjmorrison/ReportLab/HEAD/docs/source/_static/default.css -------------------------------------------------------------------------------- /docs/source/_templates/layout.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattjmorrison/ReportLab/HEAD/docs/source/_templates/layout.html -------------------------------------------------------------------------------- /docs/source/_templates/page.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattjmorrison/ReportLab/HEAD/docs/source/_templates/page.html -------------------------------------------------------------------------------- /docs/source/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattjmorrison/ReportLab/HEAD/docs/source/conf.py -------------------------------------------------------------------------------- /docs/source/graphics.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattjmorrison/ReportLab/HEAD/docs/source/graphics.rst -------------------------------------------------------------------------------- /docs/source/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattjmorrison/ReportLab/HEAD/docs/source/index.rst -------------------------------------------------------------------------------- /docs/source/lib.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattjmorrison/ReportLab/HEAD/docs/source/lib.rst -------------------------------------------------------------------------------- /docs/source/pdfgen.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattjmorrison/ReportLab/HEAD/docs/source/pdfgen.rst -------------------------------------------------------------------------------- /docs/source/platypus.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattjmorrison/ReportLab/HEAD/docs/source/platypus.rst -------------------------------------------------------------------------------- /docs/userguide/app_demos.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattjmorrison/ReportLab/HEAD/docs/userguide/app_demos.py -------------------------------------------------------------------------------- /docs/userguide/ch1_intro.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattjmorrison/ReportLab/HEAD/docs/userguide/ch1_intro.py -------------------------------------------------------------------------------- /docs/userguide/ch2_graphics.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattjmorrison/ReportLab/HEAD/docs/userguide/ch2_graphics.py -------------------------------------------------------------------------------- /docs/userguide/ch2a_fonts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattjmorrison/ReportLab/HEAD/docs/userguide/ch2a_fonts.py -------------------------------------------------------------------------------- /docs/userguide/ch3_pdffeatures.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattjmorrison/ReportLab/HEAD/docs/userguide/ch3_pdffeatures.py -------------------------------------------------------------------------------- /docs/userguide/ch4_platypus_concepts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattjmorrison/ReportLab/HEAD/docs/userguide/ch4_platypus_concepts.py -------------------------------------------------------------------------------- /docs/userguide/ch5_paragraphs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattjmorrison/ReportLab/HEAD/docs/userguide/ch5_paragraphs.py -------------------------------------------------------------------------------- /docs/userguide/ch6_tables.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattjmorrison/ReportLab/HEAD/docs/userguide/ch6_tables.py -------------------------------------------------------------------------------- /docs/userguide/ch7_custom.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattjmorrison/ReportLab/HEAD/docs/userguide/ch7_custom.py -------------------------------------------------------------------------------- /docs/userguide/genuserguide.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattjmorrison/ReportLab/HEAD/docs/userguide/genuserguide.py -------------------------------------------------------------------------------- /docs/userguide/graph_charts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattjmorrison/ReportLab/HEAD/docs/userguide/graph_charts.py -------------------------------------------------------------------------------- /docs/userguide/graph_concepts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattjmorrison/ReportLab/HEAD/docs/userguide/graph_concepts.py -------------------------------------------------------------------------------- /docs/userguide/graph_intro.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattjmorrison/ReportLab/HEAD/docs/userguide/graph_intro.py -------------------------------------------------------------------------------- /docs/userguide/graph_shapes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattjmorrison/ReportLab/HEAD/docs/userguide/graph_shapes.py -------------------------------------------------------------------------------- /docs/userguide/graph_widgets.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattjmorrison/ReportLab/HEAD/docs/userguide/graph_widgets.py -------------------------------------------------------------------------------- /docs/userguide/testfile.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattjmorrison/ReportLab/HEAD/docs/userguide/testfile.txt -------------------------------------------------------------------------------- /ez_setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattjmorrison/ReportLab/HEAD/ez_setup.py -------------------------------------------------------------------------------- /setup.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattjmorrison/ReportLab/HEAD/setup.cfg -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattjmorrison/ReportLab/HEAD/setup.py -------------------------------------------------------------------------------- /src/reportlab/MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattjmorrison/ReportLab/HEAD/src/reportlab/MANIFEST.in -------------------------------------------------------------------------------- /src/reportlab/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattjmorrison/ReportLab/HEAD/src/reportlab/__init__.py -------------------------------------------------------------------------------- /src/reportlab/fonts/00readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattjmorrison/ReportLab/HEAD/src/reportlab/fonts/00readme.txt -------------------------------------------------------------------------------- /src/reportlab/fonts/DarkGarden-changelog.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattjmorrison/ReportLab/HEAD/src/reportlab/fonts/DarkGarden-changelog.txt -------------------------------------------------------------------------------- /src/reportlab/fonts/DarkGarden-copying-gpl.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattjmorrison/ReportLab/HEAD/src/reportlab/fonts/DarkGarden-copying-gpl.txt -------------------------------------------------------------------------------- /src/reportlab/fonts/DarkGarden-copying.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattjmorrison/ReportLab/HEAD/src/reportlab/fonts/DarkGarden-copying.txt -------------------------------------------------------------------------------- /src/reportlab/fonts/DarkGarden-readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattjmorrison/ReportLab/HEAD/src/reportlab/fonts/DarkGarden-readme.txt -------------------------------------------------------------------------------- /src/reportlab/fonts/DarkGarden.sfd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattjmorrison/ReportLab/HEAD/src/reportlab/fonts/DarkGarden.sfd -------------------------------------------------------------------------------- /src/reportlab/fonts/DarkGardenMK.afm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattjmorrison/ReportLab/HEAD/src/reportlab/fonts/DarkGardenMK.afm -------------------------------------------------------------------------------- /src/reportlab/fonts/DarkGardenMK.pfb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattjmorrison/ReportLab/HEAD/src/reportlab/fonts/DarkGardenMK.pfb -------------------------------------------------------------------------------- /src/reportlab/fonts/Vera.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattjmorrison/ReportLab/HEAD/src/reportlab/fonts/Vera.ttf -------------------------------------------------------------------------------- /src/reportlab/fonts/VeraBI.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattjmorrison/ReportLab/HEAD/src/reportlab/fonts/VeraBI.ttf -------------------------------------------------------------------------------- /src/reportlab/fonts/VeraBd.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattjmorrison/ReportLab/HEAD/src/reportlab/fonts/VeraBd.ttf -------------------------------------------------------------------------------- /src/reportlab/fonts/VeraIt.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattjmorrison/ReportLab/HEAD/src/reportlab/fonts/VeraIt.ttf -------------------------------------------------------------------------------- /src/reportlab/fonts/bitstream-vera-license.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattjmorrison/ReportLab/HEAD/src/reportlab/fonts/bitstream-vera-license.txt -------------------------------------------------------------------------------- /src/reportlab/graphics/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattjmorrison/ReportLab/HEAD/src/reportlab/graphics/__init__.py -------------------------------------------------------------------------------- /src/reportlab/graphics/barcode/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattjmorrison/ReportLab/HEAD/src/reportlab/graphics/barcode/README -------------------------------------------------------------------------------- /src/reportlab/graphics/barcode/TODO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattjmorrison/ReportLab/HEAD/src/reportlab/graphics/barcode/TODO -------------------------------------------------------------------------------- /src/reportlab/graphics/barcode/VERSION: -------------------------------------------------------------------------------- 1 | 0.9 2 | -------------------------------------------------------------------------------- /src/reportlab/graphics/barcode/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattjmorrison/ReportLab/HEAD/src/reportlab/graphics/barcode/__init__.py -------------------------------------------------------------------------------- /src/reportlab/graphics/barcode/code128.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattjmorrison/ReportLab/HEAD/src/reportlab/graphics/barcode/code128.py -------------------------------------------------------------------------------- /src/reportlab/graphics/barcode/code39.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattjmorrison/ReportLab/HEAD/src/reportlab/graphics/barcode/code39.py -------------------------------------------------------------------------------- /src/reportlab/graphics/barcode/code93.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattjmorrison/ReportLab/HEAD/src/reportlab/graphics/barcode/code93.py -------------------------------------------------------------------------------- /src/reportlab/graphics/barcode/common.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattjmorrison/ReportLab/HEAD/src/reportlab/graphics/barcode/common.py -------------------------------------------------------------------------------- /src/reportlab/graphics/barcode/eanbc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattjmorrison/ReportLab/HEAD/src/reportlab/graphics/barcode/eanbc.py -------------------------------------------------------------------------------- /src/reportlab/graphics/barcode/fourstate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattjmorrison/ReportLab/HEAD/src/reportlab/graphics/barcode/fourstate.py -------------------------------------------------------------------------------- /src/reportlab/graphics/barcode/lto.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattjmorrison/ReportLab/HEAD/src/reportlab/graphics/barcode/lto.py -------------------------------------------------------------------------------- /src/reportlab/graphics/barcode/qr.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattjmorrison/ReportLab/HEAD/src/reportlab/graphics/barcode/qr.py -------------------------------------------------------------------------------- /src/reportlab/graphics/barcode/test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattjmorrison/ReportLab/HEAD/src/reportlab/graphics/barcode/test.py -------------------------------------------------------------------------------- /src/reportlab/graphics/barcode/usps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattjmorrison/ReportLab/HEAD/src/reportlab/graphics/barcode/usps.py -------------------------------------------------------------------------------- /src/reportlab/graphics/barcode/usps4s.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattjmorrison/ReportLab/HEAD/src/reportlab/graphics/barcode/usps4s.py -------------------------------------------------------------------------------- /src/reportlab/graphics/barcode/widgets.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattjmorrison/ReportLab/HEAD/src/reportlab/graphics/barcode/widgets.py -------------------------------------------------------------------------------- /src/reportlab/graphics/charts/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattjmorrison/ReportLab/HEAD/src/reportlab/graphics/charts/__init__.py -------------------------------------------------------------------------------- /src/reportlab/graphics/charts/areas.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattjmorrison/ReportLab/HEAD/src/reportlab/graphics/charts/areas.py -------------------------------------------------------------------------------- /src/reportlab/graphics/charts/axes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattjmorrison/ReportLab/HEAD/src/reportlab/graphics/charts/axes.py -------------------------------------------------------------------------------- /src/reportlab/graphics/charts/barcharts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattjmorrison/ReportLab/HEAD/src/reportlab/graphics/charts/barcharts.py -------------------------------------------------------------------------------- /src/reportlab/graphics/charts/dotbox.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattjmorrison/ReportLab/HEAD/src/reportlab/graphics/charts/dotbox.py -------------------------------------------------------------------------------- /src/reportlab/graphics/charts/doughnut.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattjmorrison/ReportLab/HEAD/src/reportlab/graphics/charts/doughnut.py -------------------------------------------------------------------------------- /src/reportlab/graphics/charts/legends.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattjmorrison/ReportLab/HEAD/src/reportlab/graphics/charts/legends.py -------------------------------------------------------------------------------- /src/reportlab/graphics/charts/linecharts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattjmorrison/ReportLab/HEAD/src/reportlab/graphics/charts/linecharts.py -------------------------------------------------------------------------------- /src/reportlab/graphics/charts/lineplots.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattjmorrison/ReportLab/HEAD/src/reportlab/graphics/charts/lineplots.py -------------------------------------------------------------------------------- /src/reportlab/graphics/charts/markers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattjmorrison/ReportLab/HEAD/src/reportlab/graphics/charts/markers.py -------------------------------------------------------------------------------- /src/reportlab/graphics/charts/piecharts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattjmorrison/ReportLab/HEAD/src/reportlab/graphics/charts/piecharts.py -------------------------------------------------------------------------------- /src/reportlab/graphics/charts/slidebox.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattjmorrison/ReportLab/HEAD/src/reportlab/graphics/charts/slidebox.py -------------------------------------------------------------------------------- /src/reportlab/graphics/charts/spider.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattjmorrison/ReportLab/HEAD/src/reportlab/graphics/charts/spider.py -------------------------------------------------------------------------------- /src/reportlab/graphics/charts/textlabels.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattjmorrison/ReportLab/HEAD/src/reportlab/graphics/charts/textlabels.py -------------------------------------------------------------------------------- /src/reportlab/graphics/charts/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattjmorrison/ReportLab/HEAD/src/reportlab/graphics/charts/utils.py -------------------------------------------------------------------------------- /src/reportlab/graphics/charts/utils3d.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattjmorrison/ReportLab/HEAD/src/reportlab/graphics/charts/utils3d.py -------------------------------------------------------------------------------- /src/reportlab/graphics/renderPDF.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattjmorrison/ReportLab/HEAD/src/reportlab/graphics/renderPDF.py -------------------------------------------------------------------------------- /src/reportlab/graphics/renderPM.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattjmorrison/ReportLab/HEAD/src/reportlab/graphics/renderPM.py -------------------------------------------------------------------------------- /src/reportlab/graphics/renderPS.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattjmorrison/ReportLab/HEAD/src/reportlab/graphics/renderPS.py -------------------------------------------------------------------------------- /src/reportlab/graphics/renderSVG.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattjmorrison/ReportLab/HEAD/src/reportlab/graphics/renderSVG.py -------------------------------------------------------------------------------- /src/reportlab/graphics/renderbase.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattjmorrison/ReportLab/HEAD/src/reportlab/graphics/renderbase.py -------------------------------------------------------------------------------- /src/reportlab/graphics/samples/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattjmorrison/ReportLab/HEAD/src/reportlab/graphics/samples/__init__.py -------------------------------------------------------------------------------- /src/reportlab/graphics/samples/bubble.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattjmorrison/ReportLab/HEAD/src/reportlab/graphics/samples/bubble.py -------------------------------------------------------------------------------- /src/reportlab/graphics/samples/clustered_bar.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattjmorrison/ReportLab/HEAD/src/reportlab/graphics/samples/clustered_bar.py -------------------------------------------------------------------------------- /src/reportlab/graphics/samples/clustered_column.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattjmorrison/ReportLab/HEAD/src/reportlab/graphics/samples/clustered_column.py -------------------------------------------------------------------------------- /src/reportlab/graphics/samples/excelcolors.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattjmorrison/ReportLab/HEAD/src/reportlab/graphics/samples/excelcolors.py -------------------------------------------------------------------------------- /src/reportlab/graphics/samples/exploded_pie.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattjmorrison/ReportLab/HEAD/src/reportlab/graphics/samples/exploded_pie.py -------------------------------------------------------------------------------- /src/reportlab/graphics/samples/filled_radar.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattjmorrison/ReportLab/HEAD/src/reportlab/graphics/samples/filled_radar.py -------------------------------------------------------------------------------- /src/reportlab/graphics/samples/line_chart.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattjmorrison/ReportLab/HEAD/src/reportlab/graphics/samples/line_chart.py -------------------------------------------------------------------------------- /src/reportlab/graphics/samples/linechart_with_markers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattjmorrison/ReportLab/HEAD/src/reportlab/graphics/samples/linechart_with_markers.py -------------------------------------------------------------------------------- /src/reportlab/graphics/samples/radar.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattjmorrison/ReportLab/HEAD/src/reportlab/graphics/samples/radar.py -------------------------------------------------------------------------------- /src/reportlab/graphics/samples/runall.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattjmorrison/ReportLab/HEAD/src/reportlab/graphics/samples/runall.py -------------------------------------------------------------------------------- /src/reportlab/graphics/samples/scatter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattjmorrison/ReportLab/HEAD/src/reportlab/graphics/samples/scatter.py -------------------------------------------------------------------------------- /src/reportlab/graphics/samples/scatter_lines.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattjmorrison/ReportLab/HEAD/src/reportlab/graphics/samples/scatter_lines.py -------------------------------------------------------------------------------- /src/reportlab/graphics/samples/scatter_lines_markers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattjmorrison/ReportLab/HEAD/src/reportlab/graphics/samples/scatter_lines_markers.py -------------------------------------------------------------------------------- /src/reportlab/graphics/samples/simple_pie.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattjmorrison/ReportLab/HEAD/src/reportlab/graphics/samples/simple_pie.py -------------------------------------------------------------------------------- /src/reportlab/graphics/samples/stacked_bar.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattjmorrison/ReportLab/HEAD/src/reportlab/graphics/samples/stacked_bar.py -------------------------------------------------------------------------------- /src/reportlab/graphics/samples/stacked_column.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattjmorrison/ReportLab/HEAD/src/reportlab/graphics/samples/stacked_column.py -------------------------------------------------------------------------------- /src/reportlab/graphics/shapes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattjmorrison/ReportLab/HEAD/src/reportlab/graphics/shapes.py -------------------------------------------------------------------------------- /src/reportlab/graphics/testdrawings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattjmorrison/ReportLab/HEAD/src/reportlab/graphics/testdrawings.py -------------------------------------------------------------------------------- /src/reportlab/graphics/testshapes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattjmorrison/ReportLab/HEAD/src/reportlab/graphics/testshapes.py -------------------------------------------------------------------------------- /src/reportlab/graphics/widgetbase.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattjmorrison/ReportLab/HEAD/src/reportlab/graphics/widgetbase.py -------------------------------------------------------------------------------- /src/reportlab/graphics/widgets/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattjmorrison/ReportLab/HEAD/src/reportlab/graphics/widgets/__init__.py -------------------------------------------------------------------------------- /src/reportlab/graphics/widgets/eventcal.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattjmorrison/ReportLab/HEAD/src/reportlab/graphics/widgets/eventcal.py -------------------------------------------------------------------------------- /src/reportlab/graphics/widgets/flags.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattjmorrison/ReportLab/HEAD/src/reportlab/graphics/widgets/flags.py -------------------------------------------------------------------------------- /src/reportlab/graphics/widgets/grids.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattjmorrison/ReportLab/HEAD/src/reportlab/graphics/widgets/grids.py -------------------------------------------------------------------------------- /src/reportlab/graphics/widgets/markers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattjmorrison/ReportLab/HEAD/src/reportlab/graphics/widgets/markers.py -------------------------------------------------------------------------------- /src/reportlab/graphics/widgets/signsandsymbols.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattjmorrison/ReportLab/HEAD/src/reportlab/graphics/widgets/signsandsymbols.py -------------------------------------------------------------------------------- /src/reportlab/graphics/widgets/table.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattjmorrison/ReportLab/HEAD/src/reportlab/graphics/widgets/table.py -------------------------------------------------------------------------------- /src/reportlab/lib/PyFontify.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattjmorrison/ReportLab/HEAD/src/reportlab/lib/PyFontify.py -------------------------------------------------------------------------------- /src/reportlab/lib/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattjmorrison/ReportLab/HEAD/src/reportlab/lib/__init__.py -------------------------------------------------------------------------------- /src/reportlab/lib/abag.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattjmorrison/ReportLab/HEAD/src/reportlab/lib/abag.py -------------------------------------------------------------------------------- /src/reportlab/lib/arciv.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattjmorrison/ReportLab/HEAD/src/reportlab/lib/arciv.py -------------------------------------------------------------------------------- /src/reportlab/lib/attrmap.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattjmorrison/ReportLab/HEAD/src/reportlab/lib/attrmap.py -------------------------------------------------------------------------------- /src/reportlab/lib/boxstuff.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattjmorrison/ReportLab/HEAD/src/reportlab/lib/boxstuff.py -------------------------------------------------------------------------------- /src/reportlab/lib/codecharts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattjmorrison/ReportLab/HEAD/src/reportlab/lib/codecharts.py -------------------------------------------------------------------------------- /src/reportlab/lib/colors.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattjmorrison/ReportLab/HEAD/src/reportlab/lib/colors.py -------------------------------------------------------------------------------- /src/reportlab/lib/corp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattjmorrison/ReportLab/HEAD/src/reportlab/lib/corp.py -------------------------------------------------------------------------------- /src/reportlab/lib/enums.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattjmorrison/ReportLab/HEAD/src/reportlab/lib/enums.py -------------------------------------------------------------------------------- /src/reportlab/lib/extformat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattjmorrison/ReportLab/HEAD/src/reportlab/lib/extformat.py -------------------------------------------------------------------------------- /src/reportlab/lib/fontfinder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattjmorrison/ReportLab/HEAD/src/reportlab/lib/fontfinder.py -------------------------------------------------------------------------------- /src/reportlab/lib/fonts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattjmorrison/ReportLab/HEAD/src/reportlab/lib/fonts.py -------------------------------------------------------------------------------- /src/reportlab/lib/formatters.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattjmorrison/ReportLab/HEAD/src/reportlab/lib/formatters.py -------------------------------------------------------------------------------- /src/reportlab/lib/geomutils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattjmorrison/ReportLab/HEAD/src/reportlab/lib/geomutils.py -------------------------------------------------------------------------------- /src/reportlab/lib/logger.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattjmorrison/ReportLab/HEAD/src/reportlab/lib/logger.py -------------------------------------------------------------------------------- /src/reportlab/lib/normalDate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattjmorrison/ReportLab/HEAD/src/reportlab/lib/normalDate.py -------------------------------------------------------------------------------- /src/reportlab/lib/pagesizes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattjmorrison/ReportLab/HEAD/src/reportlab/lib/pagesizes.py -------------------------------------------------------------------------------- /src/reportlab/lib/pdfencrypt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattjmorrison/ReportLab/HEAD/src/reportlab/lib/pdfencrypt.py -------------------------------------------------------------------------------- /src/reportlab/lib/pygments2xpre.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattjmorrison/ReportLab/HEAD/src/reportlab/lib/pygments2xpre.py -------------------------------------------------------------------------------- /src/reportlab/lib/randomtext.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattjmorrison/ReportLab/HEAD/src/reportlab/lib/randomtext.py -------------------------------------------------------------------------------- /src/reportlab/lib/rltempfile.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattjmorrison/ReportLab/HEAD/src/reportlab/lib/rltempfile.py -------------------------------------------------------------------------------- /src/reportlab/lib/rparsexml.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattjmorrison/ReportLab/HEAD/src/reportlab/lib/rparsexml.py -------------------------------------------------------------------------------- /src/reportlab/lib/sequencer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattjmorrison/ReportLab/HEAD/src/reportlab/lib/sequencer.py -------------------------------------------------------------------------------- /src/reportlab/lib/set_ops.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattjmorrison/ReportLab/HEAD/src/reportlab/lib/set_ops.py -------------------------------------------------------------------------------- /src/reportlab/lib/styles.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattjmorrison/ReportLab/HEAD/src/reportlab/lib/styles.py -------------------------------------------------------------------------------- /src/reportlab/lib/testutils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattjmorrison/ReportLab/HEAD/src/reportlab/lib/testutils.py -------------------------------------------------------------------------------- /src/reportlab/lib/textsplit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattjmorrison/ReportLab/HEAD/src/reportlab/lib/textsplit.py -------------------------------------------------------------------------------- /src/reportlab/lib/units.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattjmorrison/ReportLab/HEAD/src/reportlab/lib/units.py -------------------------------------------------------------------------------- /src/reportlab/lib/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattjmorrison/ReportLab/HEAD/src/reportlab/lib/utils.py -------------------------------------------------------------------------------- /src/reportlab/lib/validators.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattjmorrison/ReportLab/HEAD/src/reportlab/lib/validators.py -------------------------------------------------------------------------------- /src/reportlab/lib/xmllib.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattjmorrison/ReportLab/HEAD/src/reportlab/lib/xmllib.py -------------------------------------------------------------------------------- /src/reportlab/lib/yaml.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattjmorrison/ReportLab/HEAD/src/reportlab/lib/yaml.py -------------------------------------------------------------------------------- /src/reportlab/license.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattjmorrison/ReportLab/HEAD/src/reportlab/license.txt -------------------------------------------------------------------------------- /src/reportlab/pdfbase/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattjmorrison/ReportLab/HEAD/src/reportlab/pdfbase/__init__.py -------------------------------------------------------------------------------- /src/reportlab/pdfbase/_can_cmap_data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattjmorrison/ReportLab/HEAD/src/reportlab/pdfbase/_can_cmap_data.py -------------------------------------------------------------------------------- /src/reportlab/pdfbase/_cidfontdata.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattjmorrison/ReportLab/HEAD/src/reportlab/pdfbase/_cidfontdata.py -------------------------------------------------------------------------------- /src/reportlab/pdfbase/_fontdata.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattjmorrison/ReportLab/HEAD/src/reportlab/pdfbase/_fontdata.py -------------------------------------------------------------------------------- /src/reportlab/pdfbase/_fontdata_enc_macexpert.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattjmorrison/ReportLab/HEAD/src/reportlab/pdfbase/_fontdata_enc_macexpert.py -------------------------------------------------------------------------------- /src/reportlab/pdfbase/_fontdata_enc_macroman.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattjmorrison/ReportLab/HEAD/src/reportlab/pdfbase/_fontdata_enc_macroman.py -------------------------------------------------------------------------------- /src/reportlab/pdfbase/_fontdata_enc_pdfdoc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattjmorrison/ReportLab/HEAD/src/reportlab/pdfbase/_fontdata_enc_pdfdoc.py -------------------------------------------------------------------------------- /src/reportlab/pdfbase/_fontdata_enc_standard.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattjmorrison/ReportLab/HEAD/src/reportlab/pdfbase/_fontdata_enc_standard.py -------------------------------------------------------------------------------- /src/reportlab/pdfbase/_fontdata_enc_symbol.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattjmorrison/ReportLab/HEAD/src/reportlab/pdfbase/_fontdata_enc_symbol.py -------------------------------------------------------------------------------- /src/reportlab/pdfbase/_fontdata_enc_winansi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattjmorrison/ReportLab/HEAD/src/reportlab/pdfbase/_fontdata_enc_winansi.py -------------------------------------------------------------------------------- /src/reportlab/pdfbase/_fontdata_enc_zapfdingbats.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattjmorrison/ReportLab/HEAD/src/reportlab/pdfbase/_fontdata_enc_zapfdingbats.py -------------------------------------------------------------------------------- /src/reportlab/pdfbase/_fontdata_widths_courier.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattjmorrison/ReportLab/HEAD/src/reportlab/pdfbase/_fontdata_widths_courier.py -------------------------------------------------------------------------------- /src/reportlab/pdfbase/_fontdata_widths_courierbold.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattjmorrison/ReportLab/HEAD/src/reportlab/pdfbase/_fontdata_widths_courierbold.py -------------------------------------------------------------------------------- /src/reportlab/pdfbase/_fontdata_widths_courierboldoblique.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattjmorrison/ReportLab/HEAD/src/reportlab/pdfbase/_fontdata_widths_courierboldoblique.py -------------------------------------------------------------------------------- /src/reportlab/pdfbase/_fontdata_widths_courieroblique.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattjmorrison/ReportLab/HEAD/src/reportlab/pdfbase/_fontdata_widths_courieroblique.py -------------------------------------------------------------------------------- /src/reportlab/pdfbase/_fontdata_widths_helvetica.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattjmorrison/ReportLab/HEAD/src/reportlab/pdfbase/_fontdata_widths_helvetica.py -------------------------------------------------------------------------------- /src/reportlab/pdfbase/_fontdata_widths_helveticabold.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattjmorrison/ReportLab/HEAD/src/reportlab/pdfbase/_fontdata_widths_helveticabold.py -------------------------------------------------------------------------------- /src/reportlab/pdfbase/_fontdata_widths_helveticaboldoblique.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattjmorrison/ReportLab/HEAD/src/reportlab/pdfbase/_fontdata_widths_helveticaboldoblique.py -------------------------------------------------------------------------------- /src/reportlab/pdfbase/_fontdata_widths_helveticaoblique.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattjmorrison/ReportLab/HEAD/src/reportlab/pdfbase/_fontdata_widths_helveticaoblique.py -------------------------------------------------------------------------------- /src/reportlab/pdfbase/_fontdata_widths_symbol.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattjmorrison/ReportLab/HEAD/src/reportlab/pdfbase/_fontdata_widths_symbol.py -------------------------------------------------------------------------------- /src/reportlab/pdfbase/_fontdata_widths_timesbold.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattjmorrison/ReportLab/HEAD/src/reportlab/pdfbase/_fontdata_widths_timesbold.py -------------------------------------------------------------------------------- /src/reportlab/pdfbase/_fontdata_widths_timesbolditalic.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattjmorrison/ReportLab/HEAD/src/reportlab/pdfbase/_fontdata_widths_timesbolditalic.py -------------------------------------------------------------------------------- /src/reportlab/pdfbase/_fontdata_widths_timesitalic.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattjmorrison/ReportLab/HEAD/src/reportlab/pdfbase/_fontdata_widths_timesitalic.py -------------------------------------------------------------------------------- /src/reportlab/pdfbase/_fontdata_widths_timesroman.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattjmorrison/ReportLab/HEAD/src/reportlab/pdfbase/_fontdata_widths_timesroman.py -------------------------------------------------------------------------------- /src/reportlab/pdfbase/_fontdata_widths_zapfdingbats.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattjmorrison/ReportLab/HEAD/src/reportlab/pdfbase/_fontdata_widths_zapfdingbats.py -------------------------------------------------------------------------------- /src/reportlab/pdfbase/cidfonts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattjmorrison/ReportLab/HEAD/src/reportlab/pdfbase/cidfonts.py -------------------------------------------------------------------------------- /src/reportlab/pdfbase/pdfdoc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattjmorrison/ReportLab/HEAD/src/reportlab/pdfbase/pdfdoc.py -------------------------------------------------------------------------------- /src/reportlab/pdfbase/pdfform.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattjmorrison/ReportLab/HEAD/src/reportlab/pdfbase/pdfform.py -------------------------------------------------------------------------------- /src/reportlab/pdfbase/pdfmetrics.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattjmorrison/ReportLab/HEAD/src/reportlab/pdfbase/pdfmetrics.py -------------------------------------------------------------------------------- /src/reportlab/pdfbase/pdfpattern.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattjmorrison/ReportLab/HEAD/src/reportlab/pdfbase/pdfpattern.py -------------------------------------------------------------------------------- /src/reportlab/pdfbase/pdfutils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattjmorrison/ReportLab/HEAD/src/reportlab/pdfbase/pdfutils.py -------------------------------------------------------------------------------- /src/reportlab/pdfbase/rl_codecs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattjmorrison/ReportLab/HEAD/src/reportlab/pdfbase/rl_codecs.py -------------------------------------------------------------------------------- /src/reportlab/pdfbase/ttfonts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattjmorrison/ReportLab/HEAD/src/reportlab/pdfbase/ttfonts.py -------------------------------------------------------------------------------- /src/reportlab/pdfgen/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattjmorrison/ReportLab/HEAD/src/reportlab/pdfgen/__init__.py -------------------------------------------------------------------------------- /src/reportlab/pdfgen/canvas.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattjmorrison/ReportLab/HEAD/src/reportlab/pdfgen/canvas.py -------------------------------------------------------------------------------- /src/reportlab/pdfgen/pathobject.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattjmorrison/ReportLab/HEAD/src/reportlab/pdfgen/pathobject.py -------------------------------------------------------------------------------- /src/reportlab/pdfgen/pdfgeom.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattjmorrison/ReportLab/HEAD/src/reportlab/pdfgen/pdfgeom.py -------------------------------------------------------------------------------- /src/reportlab/pdfgen/pdfimages.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattjmorrison/ReportLab/HEAD/src/reportlab/pdfgen/pdfimages.py -------------------------------------------------------------------------------- /src/reportlab/pdfgen/pycanvas.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattjmorrison/ReportLab/HEAD/src/reportlab/pdfgen/pycanvas.py -------------------------------------------------------------------------------- /src/reportlab/pdfgen/textobject.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattjmorrison/ReportLab/HEAD/src/reportlab/pdfgen/textobject.py -------------------------------------------------------------------------------- /src/reportlab/platypus/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattjmorrison/ReportLab/HEAD/src/reportlab/platypus/__init__.py -------------------------------------------------------------------------------- /src/reportlab/platypus/doctemplate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattjmorrison/ReportLab/HEAD/src/reportlab/platypus/doctemplate.py -------------------------------------------------------------------------------- /src/reportlab/platypus/figures.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattjmorrison/ReportLab/HEAD/src/reportlab/platypus/figures.py -------------------------------------------------------------------------------- /src/reportlab/platypus/flowables.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattjmorrison/ReportLab/HEAD/src/reportlab/platypus/flowables.py -------------------------------------------------------------------------------- /src/reportlab/platypus/frames.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattjmorrison/ReportLab/HEAD/src/reportlab/platypus/frames.py -------------------------------------------------------------------------------- /src/reportlab/platypus/para.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattjmorrison/ReportLab/HEAD/src/reportlab/platypus/para.py -------------------------------------------------------------------------------- /src/reportlab/platypus/paragraph.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattjmorrison/ReportLab/HEAD/src/reportlab/platypus/paragraph.py -------------------------------------------------------------------------------- /src/reportlab/platypus/paraparser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattjmorrison/ReportLab/HEAD/src/reportlab/platypus/paraparser.py -------------------------------------------------------------------------------- /src/reportlab/platypus/tableofcontents.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattjmorrison/ReportLab/HEAD/src/reportlab/platypus/tableofcontents.py -------------------------------------------------------------------------------- /src/reportlab/platypus/tables.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattjmorrison/ReportLab/HEAD/src/reportlab/platypus/tables.py -------------------------------------------------------------------------------- /src/reportlab/platypus/xpreformatted.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattjmorrison/ReportLab/HEAD/src/reportlab/platypus/xpreformatted.py -------------------------------------------------------------------------------- /src/reportlab/rl_config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattjmorrison/ReportLab/HEAD/src/reportlab/rl_config.py -------------------------------------------------------------------------------- /src/rl_addons/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattjmorrison/ReportLab/HEAD/src/rl_addons/README -------------------------------------------------------------------------------- /src/rl_addons/renderPM/MANIFEST.in: -------------------------------------------------------------------------------- 1 | global-include *.h *.in 2 | -------------------------------------------------------------------------------- /src/rl_addons/renderPM/_renderPM.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattjmorrison/ReportLab/HEAD/src/rl_addons/renderPM/_renderPM.c -------------------------------------------------------------------------------- /src/rl_addons/renderPM/gt1/gt1-dict.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattjmorrison/ReportLab/HEAD/src/rl_addons/renderPM/gt1/gt1-dict.c -------------------------------------------------------------------------------- /src/rl_addons/renderPM/gt1/gt1-dict.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattjmorrison/ReportLab/HEAD/src/rl_addons/renderPM/gt1/gt1-dict.h -------------------------------------------------------------------------------- /src/rl_addons/renderPM/gt1/gt1-misc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattjmorrison/ReportLab/HEAD/src/rl_addons/renderPM/gt1/gt1-misc.h -------------------------------------------------------------------------------- /src/rl_addons/renderPM/gt1/gt1-namecontext.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattjmorrison/ReportLab/HEAD/src/rl_addons/renderPM/gt1/gt1-namecontext.c -------------------------------------------------------------------------------- /src/rl_addons/renderPM/gt1/gt1-namecontext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattjmorrison/ReportLab/HEAD/src/rl_addons/renderPM/gt1/gt1-namecontext.h -------------------------------------------------------------------------------- /src/rl_addons/renderPM/gt1/gt1-parset1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattjmorrison/ReportLab/HEAD/src/rl_addons/renderPM/gt1/gt1-parset1.c -------------------------------------------------------------------------------- /src/rl_addons/renderPM/gt1/gt1-parset1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattjmorrison/ReportLab/HEAD/src/rl_addons/renderPM/gt1/gt1-parset1.h -------------------------------------------------------------------------------- /src/rl_addons/renderPM/gt1/gt1-region.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattjmorrison/ReportLab/HEAD/src/rl_addons/renderPM/gt1/gt1-region.c -------------------------------------------------------------------------------- /src/rl_addons/renderPM/gt1/gt1-region.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattjmorrison/ReportLab/HEAD/src/rl_addons/renderPM/gt1/gt1-region.h -------------------------------------------------------------------------------- /src/rl_addons/renderPM/gt1/gt1-value.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattjmorrison/ReportLab/HEAD/src/rl_addons/renderPM/gt1/gt1-value.h -------------------------------------------------------------------------------- /src/rl_addons/renderPM/gt1/parseAFM.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattjmorrison/ReportLab/HEAD/src/rl_addons/renderPM/gt1/parseAFM.c -------------------------------------------------------------------------------- /src/rl_addons/renderPM/gt1/parseAFM.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattjmorrison/ReportLab/HEAD/src/rl_addons/renderPM/gt1/parseAFM.h -------------------------------------------------------------------------------- /src/rl_addons/renderPM/libart_lgpl/AUTHORS: -------------------------------------------------------------------------------- 1 | Raph Levien 2 | -------------------------------------------------------------------------------- /src/rl_addons/renderPM/libart_lgpl/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattjmorrison/ReportLab/HEAD/src/rl_addons/renderPM/libart_lgpl/COPYING -------------------------------------------------------------------------------- /src/rl_addons/renderPM/libart_lgpl/ChangeLog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattjmorrison/ReportLab/HEAD/src/rl_addons/renderPM/libart_lgpl/ChangeLog -------------------------------------------------------------------------------- /src/rl_addons/renderPM/libart_lgpl/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattjmorrison/ReportLab/HEAD/src/rl_addons/renderPM/libart_lgpl/Makefile.am -------------------------------------------------------------------------------- /src/rl_addons/renderPM/libart_lgpl/NEWS: -------------------------------------------------------------------------------- 1 | Please see http://www.levien.com/libart/ for the latest news. 2 | -------------------------------------------------------------------------------- /src/rl_addons/renderPM/libart_lgpl/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattjmorrison/ReportLab/HEAD/src/rl_addons/renderPM/libart_lgpl/README -------------------------------------------------------------------------------- /src/rl_addons/renderPM/libart_lgpl/README.CVS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattjmorrison/ReportLab/HEAD/src/rl_addons/renderPM/libart_lgpl/README.CVS -------------------------------------------------------------------------------- /src/rl_addons/renderPM/libart_lgpl/acconfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattjmorrison/ReportLab/HEAD/src/rl_addons/renderPM/libart_lgpl/acconfig.h -------------------------------------------------------------------------------- /src/rl_addons/renderPM/libart_lgpl/art_affine.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattjmorrison/ReportLab/HEAD/src/rl_addons/renderPM/libart_lgpl/art_affine.c -------------------------------------------------------------------------------- /src/rl_addons/renderPM/libart_lgpl/art_affine.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattjmorrison/ReportLab/HEAD/src/rl_addons/renderPM/libart_lgpl/art_affine.h -------------------------------------------------------------------------------- /src/rl_addons/renderPM/libart_lgpl/art_alphagamma.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattjmorrison/ReportLab/HEAD/src/rl_addons/renderPM/libart_lgpl/art_alphagamma.c -------------------------------------------------------------------------------- /src/rl_addons/renderPM/libart_lgpl/art_alphagamma.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattjmorrison/ReportLab/HEAD/src/rl_addons/renderPM/libart_lgpl/art_alphagamma.h -------------------------------------------------------------------------------- /src/rl_addons/renderPM/libart_lgpl/art_bpath.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattjmorrison/ReportLab/HEAD/src/rl_addons/renderPM/libart_lgpl/art_bpath.c -------------------------------------------------------------------------------- /src/rl_addons/renderPM/libart_lgpl/art_bpath.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattjmorrison/ReportLab/HEAD/src/rl_addons/renderPM/libart_lgpl/art_bpath.h -------------------------------------------------------------------------------- /src/rl_addons/renderPM/libart_lgpl/art_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattjmorrison/ReportLab/HEAD/src/rl_addons/renderPM/libart_lgpl/art_config.h -------------------------------------------------------------------------------- /src/rl_addons/renderPM/libart_lgpl/art_filterlevel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattjmorrison/ReportLab/HEAD/src/rl_addons/renderPM/libart_lgpl/art_filterlevel.h -------------------------------------------------------------------------------- /src/rl_addons/renderPM/libart_lgpl/art_gray_svp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattjmorrison/ReportLab/HEAD/src/rl_addons/renderPM/libart_lgpl/art_gray_svp.c -------------------------------------------------------------------------------- /src/rl_addons/renderPM/libart_lgpl/art_gray_svp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattjmorrison/ReportLab/HEAD/src/rl_addons/renderPM/libart_lgpl/art_gray_svp.h -------------------------------------------------------------------------------- /src/rl_addons/renderPM/libart_lgpl/art_misc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattjmorrison/ReportLab/HEAD/src/rl_addons/renderPM/libart_lgpl/art_misc.c -------------------------------------------------------------------------------- /src/rl_addons/renderPM/libart_lgpl/art_misc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattjmorrison/ReportLab/HEAD/src/rl_addons/renderPM/libart_lgpl/art_misc.h -------------------------------------------------------------------------------- /src/rl_addons/renderPM/libart_lgpl/art_pathcode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattjmorrison/ReportLab/HEAD/src/rl_addons/renderPM/libart_lgpl/art_pathcode.h -------------------------------------------------------------------------------- /src/rl_addons/renderPM/libart_lgpl/art_pixbuf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattjmorrison/ReportLab/HEAD/src/rl_addons/renderPM/libart_lgpl/art_pixbuf.c -------------------------------------------------------------------------------- /src/rl_addons/renderPM/libart_lgpl/art_pixbuf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattjmorrison/ReportLab/HEAD/src/rl_addons/renderPM/libart_lgpl/art_pixbuf.h -------------------------------------------------------------------------------- /src/rl_addons/renderPM/libart_lgpl/art_point.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattjmorrison/ReportLab/HEAD/src/rl_addons/renderPM/libart_lgpl/art_point.h -------------------------------------------------------------------------------- /src/rl_addons/renderPM/libart_lgpl/art_rect.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattjmorrison/ReportLab/HEAD/src/rl_addons/renderPM/libart_lgpl/art_rect.c -------------------------------------------------------------------------------- /src/rl_addons/renderPM/libart_lgpl/art_rect.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattjmorrison/ReportLab/HEAD/src/rl_addons/renderPM/libart_lgpl/art_rect.h -------------------------------------------------------------------------------- /src/rl_addons/renderPM/libart_lgpl/art_rect_svp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattjmorrison/ReportLab/HEAD/src/rl_addons/renderPM/libart_lgpl/art_rect_svp.c -------------------------------------------------------------------------------- /src/rl_addons/renderPM/libart_lgpl/art_rect_svp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattjmorrison/ReportLab/HEAD/src/rl_addons/renderPM/libart_lgpl/art_rect_svp.h -------------------------------------------------------------------------------- /src/rl_addons/renderPM/libart_lgpl/art_rect_uta.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattjmorrison/ReportLab/HEAD/src/rl_addons/renderPM/libart_lgpl/art_rect_uta.c -------------------------------------------------------------------------------- /src/rl_addons/renderPM/libart_lgpl/art_rect_uta.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattjmorrison/ReportLab/HEAD/src/rl_addons/renderPM/libart_lgpl/art_rect_uta.h -------------------------------------------------------------------------------- /src/rl_addons/renderPM/libart_lgpl/art_render.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattjmorrison/ReportLab/HEAD/src/rl_addons/renderPM/libart_lgpl/art_render.c -------------------------------------------------------------------------------- /src/rl_addons/renderPM/libart_lgpl/art_render.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattjmorrison/ReportLab/HEAD/src/rl_addons/renderPM/libart_lgpl/art_render.h -------------------------------------------------------------------------------- /src/rl_addons/renderPM/libart_lgpl/art_render_gradient.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattjmorrison/ReportLab/HEAD/src/rl_addons/renderPM/libart_lgpl/art_render_gradient.c -------------------------------------------------------------------------------- /src/rl_addons/renderPM/libart_lgpl/art_render_gradient.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattjmorrison/ReportLab/HEAD/src/rl_addons/renderPM/libart_lgpl/art_render_gradient.h -------------------------------------------------------------------------------- /src/rl_addons/renderPM/libart_lgpl/art_render_mask.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattjmorrison/ReportLab/HEAD/src/rl_addons/renderPM/libart_lgpl/art_render_mask.c -------------------------------------------------------------------------------- /src/rl_addons/renderPM/libart_lgpl/art_render_mask.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattjmorrison/ReportLab/HEAD/src/rl_addons/renderPM/libart_lgpl/art_render_mask.h -------------------------------------------------------------------------------- /src/rl_addons/renderPM/libart_lgpl/art_render_svp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattjmorrison/ReportLab/HEAD/src/rl_addons/renderPM/libart_lgpl/art_render_svp.c -------------------------------------------------------------------------------- /src/rl_addons/renderPM/libart_lgpl/art_render_svp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattjmorrison/ReportLab/HEAD/src/rl_addons/renderPM/libart_lgpl/art_render_svp.h -------------------------------------------------------------------------------- /src/rl_addons/renderPM/libart_lgpl/art_rgb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattjmorrison/ReportLab/HEAD/src/rl_addons/renderPM/libart_lgpl/art_rgb.c -------------------------------------------------------------------------------- /src/rl_addons/renderPM/libart_lgpl/art_rgb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattjmorrison/ReportLab/HEAD/src/rl_addons/renderPM/libart_lgpl/art_rgb.h -------------------------------------------------------------------------------- /src/rl_addons/renderPM/libart_lgpl/art_rgb_a_affine.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattjmorrison/ReportLab/HEAD/src/rl_addons/renderPM/libart_lgpl/art_rgb_a_affine.c -------------------------------------------------------------------------------- /src/rl_addons/renderPM/libart_lgpl/art_rgb_a_affine.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattjmorrison/ReportLab/HEAD/src/rl_addons/renderPM/libart_lgpl/art_rgb_a_affine.h -------------------------------------------------------------------------------- /src/rl_addons/renderPM/libart_lgpl/art_rgb_affine.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattjmorrison/ReportLab/HEAD/src/rl_addons/renderPM/libart_lgpl/art_rgb_affine.c -------------------------------------------------------------------------------- /src/rl_addons/renderPM/libart_lgpl/art_rgb_affine.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattjmorrison/ReportLab/HEAD/src/rl_addons/renderPM/libart_lgpl/art_rgb_affine.h -------------------------------------------------------------------------------- /src/rl_addons/renderPM/libart_lgpl/art_rgb_affine_private.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattjmorrison/ReportLab/HEAD/src/rl_addons/renderPM/libart_lgpl/art_rgb_affine_private.c -------------------------------------------------------------------------------- /src/rl_addons/renderPM/libart_lgpl/art_rgb_affine_private.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattjmorrison/ReportLab/HEAD/src/rl_addons/renderPM/libart_lgpl/art_rgb_affine_private.h -------------------------------------------------------------------------------- /src/rl_addons/renderPM/libart_lgpl/art_rgb_bitmap_affine.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattjmorrison/ReportLab/HEAD/src/rl_addons/renderPM/libart_lgpl/art_rgb_bitmap_affine.c -------------------------------------------------------------------------------- /src/rl_addons/renderPM/libart_lgpl/art_rgb_bitmap_affine.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattjmorrison/ReportLab/HEAD/src/rl_addons/renderPM/libart_lgpl/art_rgb_bitmap_affine.h -------------------------------------------------------------------------------- /src/rl_addons/renderPM/libart_lgpl/art_rgb_pixbuf_affine.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattjmorrison/ReportLab/HEAD/src/rl_addons/renderPM/libart_lgpl/art_rgb_pixbuf_affine.c -------------------------------------------------------------------------------- /src/rl_addons/renderPM/libart_lgpl/art_rgb_pixbuf_affine.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattjmorrison/ReportLab/HEAD/src/rl_addons/renderPM/libart_lgpl/art_rgb_pixbuf_affine.h -------------------------------------------------------------------------------- /src/rl_addons/renderPM/libart_lgpl/art_rgb_rgba_affine.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattjmorrison/ReportLab/HEAD/src/rl_addons/renderPM/libart_lgpl/art_rgb_rgba_affine.c -------------------------------------------------------------------------------- /src/rl_addons/renderPM/libart_lgpl/art_rgb_rgba_affine.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattjmorrison/ReportLab/HEAD/src/rl_addons/renderPM/libart_lgpl/art_rgb_rgba_affine.h -------------------------------------------------------------------------------- /src/rl_addons/renderPM/libart_lgpl/art_rgb_svp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattjmorrison/ReportLab/HEAD/src/rl_addons/renderPM/libart_lgpl/art_rgb_svp.c -------------------------------------------------------------------------------- /src/rl_addons/renderPM/libart_lgpl/art_rgb_svp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattjmorrison/ReportLab/HEAD/src/rl_addons/renderPM/libart_lgpl/art_rgb_svp.h -------------------------------------------------------------------------------- /src/rl_addons/renderPM/libart_lgpl/art_rgba.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattjmorrison/ReportLab/HEAD/src/rl_addons/renderPM/libart_lgpl/art_rgba.c -------------------------------------------------------------------------------- /src/rl_addons/renderPM/libart_lgpl/art_rgba.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattjmorrison/ReportLab/HEAD/src/rl_addons/renderPM/libart_lgpl/art_rgba.h -------------------------------------------------------------------------------- /src/rl_addons/renderPM/libart_lgpl/art_svp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattjmorrison/ReportLab/HEAD/src/rl_addons/renderPM/libart_lgpl/art_svp.c -------------------------------------------------------------------------------- /src/rl_addons/renderPM/libart_lgpl/art_svp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattjmorrison/ReportLab/HEAD/src/rl_addons/renderPM/libart_lgpl/art_svp.h -------------------------------------------------------------------------------- /src/rl_addons/renderPM/libart_lgpl/art_svp_intersect.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattjmorrison/ReportLab/HEAD/src/rl_addons/renderPM/libart_lgpl/art_svp_intersect.c -------------------------------------------------------------------------------- /src/rl_addons/renderPM/libart_lgpl/art_svp_intersect.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattjmorrison/ReportLab/HEAD/src/rl_addons/renderPM/libart_lgpl/art_svp_intersect.h -------------------------------------------------------------------------------- /src/rl_addons/renderPM/libart_lgpl/art_svp_ops.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattjmorrison/ReportLab/HEAD/src/rl_addons/renderPM/libart_lgpl/art_svp_ops.c -------------------------------------------------------------------------------- /src/rl_addons/renderPM/libart_lgpl/art_svp_ops.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattjmorrison/ReportLab/HEAD/src/rl_addons/renderPM/libart_lgpl/art_svp_ops.h -------------------------------------------------------------------------------- /src/rl_addons/renderPM/libart_lgpl/art_svp_point.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattjmorrison/ReportLab/HEAD/src/rl_addons/renderPM/libart_lgpl/art_svp_point.c -------------------------------------------------------------------------------- /src/rl_addons/renderPM/libart_lgpl/art_svp_point.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattjmorrison/ReportLab/HEAD/src/rl_addons/renderPM/libart_lgpl/art_svp_point.h -------------------------------------------------------------------------------- /src/rl_addons/renderPM/libart_lgpl/art_svp_render_aa.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattjmorrison/ReportLab/HEAD/src/rl_addons/renderPM/libart_lgpl/art_svp_render_aa.c -------------------------------------------------------------------------------- /src/rl_addons/renderPM/libart_lgpl/art_svp_render_aa.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattjmorrison/ReportLab/HEAD/src/rl_addons/renderPM/libart_lgpl/art_svp_render_aa.h -------------------------------------------------------------------------------- /src/rl_addons/renderPM/libart_lgpl/art_svp_vpath.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattjmorrison/ReportLab/HEAD/src/rl_addons/renderPM/libart_lgpl/art_svp_vpath.c -------------------------------------------------------------------------------- /src/rl_addons/renderPM/libart_lgpl/art_svp_vpath.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattjmorrison/ReportLab/HEAD/src/rl_addons/renderPM/libart_lgpl/art_svp_vpath.h -------------------------------------------------------------------------------- /src/rl_addons/renderPM/libart_lgpl/art_svp_vpath_stroke.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattjmorrison/ReportLab/HEAD/src/rl_addons/renderPM/libart_lgpl/art_svp_vpath_stroke.c -------------------------------------------------------------------------------- /src/rl_addons/renderPM/libart_lgpl/art_svp_vpath_stroke.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattjmorrison/ReportLab/HEAD/src/rl_addons/renderPM/libart_lgpl/art_svp_vpath_stroke.h -------------------------------------------------------------------------------- /src/rl_addons/renderPM/libart_lgpl/art_svp_wind.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattjmorrison/ReportLab/HEAD/src/rl_addons/renderPM/libart_lgpl/art_svp_wind.c -------------------------------------------------------------------------------- /src/rl_addons/renderPM/libart_lgpl/art_svp_wind.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattjmorrison/ReportLab/HEAD/src/rl_addons/renderPM/libart_lgpl/art_svp_wind.h -------------------------------------------------------------------------------- /src/rl_addons/renderPM/libart_lgpl/art_uta.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattjmorrison/ReportLab/HEAD/src/rl_addons/renderPM/libart_lgpl/art_uta.c -------------------------------------------------------------------------------- /src/rl_addons/renderPM/libart_lgpl/art_uta.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattjmorrison/ReportLab/HEAD/src/rl_addons/renderPM/libart_lgpl/art_uta.h -------------------------------------------------------------------------------- /src/rl_addons/renderPM/libart_lgpl/art_uta_ops.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattjmorrison/ReportLab/HEAD/src/rl_addons/renderPM/libart_lgpl/art_uta_ops.c -------------------------------------------------------------------------------- /src/rl_addons/renderPM/libart_lgpl/art_uta_ops.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattjmorrison/ReportLab/HEAD/src/rl_addons/renderPM/libart_lgpl/art_uta_ops.h -------------------------------------------------------------------------------- /src/rl_addons/renderPM/libart_lgpl/art_uta_rect.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattjmorrison/ReportLab/HEAD/src/rl_addons/renderPM/libart_lgpl/art_uta_rect.c -------------------------------------------------------------------------------- /src/rl_addons/renderPM/libart_lgpl/art_uta_rect.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattjmorrison/ReportLab/HEAD/src/rl_addons/renderPM/libart_lgpl/art_uta_rect.h -------------------------------------------------------------------------------- /src/rl_addons/renderPM/libart_lgpl/art_uta_svp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattjmorrison/ReportLab/HEAD/src/rl_addons/renderPM/libart_lgpl/art_uta_svp.c -------------------------------------------------------------------------------- /src/rl_addons/renderPM/libart_lgpl/art_uta_svp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattjmorrison/ReportLab/HEAD/src/rl_addons/renderPM/libart_lgpl/art_uta_svp.h -------------------------------------------------------------------------------- /src/rl_addons/renderPM/libart_lgpl/art_uta_vpath.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattjmorrison/ReportLab/HEAD/src/rl_addons/renderPM/libart_lgpl/art_uta_vpath.c -------------------------------------------------------------------------------- /src/rl_addons/renderPM/libart_lgpl/art_uta_vpath.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattjmorrison/ReportLab/HEAD/src/rl_addons/renderPM/libart_lgpl/art_uta_vpath.h -------------------------------------------------------------------------------- /src/rl_addons/renderPM/libart_lgpl/art_vpath.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattjmorrison/ReportLab/HEAD/src/rl_addons/renderPM/libart_lgpl/art_vpath.c -------------------------------------------------------------------------------- /src/rl_addons/renderPM/libart_lgpl/art_vpath.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattjmorrison/ReportLab/HEAD/src/rl_addons/renderPM/libart_lgpl/art_vpath.h -------------------------------------------------------------------------------- /src/rl_addons/renderPM/libart_lgpl/art_vpath_bpath.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattjmorrison/ReportLab/HEAD/src/rl_addons/renderPM/libart_lgpl/art_vpath_bpath.c -------------------------------------------------------------------------------- /src/rl_addons/renderPM/libart_lgpl/art_vpath_bpath.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattjmorrison/ReportLab/HEAD/src/rl_addons/renderPM/libart_lgpl/art_vpath_bpath.h -------------------------------------------------------------------------------- /src/rl_addons/renderPM/libart_lgpl/art_vpath_dash.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattjmorrison/ReportLab/HEAD/src/rl_addons/renderPM/libart_lgpl/art_vpath_dash.c -------------------------------------------------------------------------------- /src/rl_addons/renderPM/libart_lgpl/art_vpath_dash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattjmorrison/ReportLab/HEAD/src/rl_addons/renderPM/libart_lgpl/art_vpath_dash.h -------------------------------------------------------------------------------- /src/rl_addons/renderPM/libart_lgpl/art_vpath_svp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattjmorrison/ReportLab/HEAD/src/rl_addons/renderPM/libart_lgpl/art_vpath_svp.c -------------------------------------------------------------------------------- /src/rl_addons/renderPM/libart_lgpl/art_vpath_svp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattjmorrison/ReportLab/HEAD/src/rl_addons/renderPM/libart_lgpl/art_vpath_svp.h -------------------------------------------------------------------------------- /src/rl_addons/renderPM/libart_lgpl/autogen.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattjmorrison/ReportLab/HEAD/src/rl_addons/renderPM/libart_lgpl/autogen.sh -------------------------------------------------------------------------------- /src/rl_addons/renderPM/libart_lgpl/config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattjmorrison/ReportLab/HEAD/src/rl_addons/renderPM/libart_lgpl/config.h -------------------------------------------------------------------------------- /src/rl_addons/renderPM/libart_lgpl/configure.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattjmorrison/ReportLab/HEAD/src/rl_addons/renderPM/libart_lgpl/configure.in -------------------------------------------------------------------------------- /src/rl_addons/renderPM/libart_lgpl/gen_art_config.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattjmorrison/ReportLab/HEAD/src/rl_addons/renderPM/libart_lgpl/gen_art_config.c -------------------------------------------------------------------------------- /src/rl_addons/renderPM/libart_lgpl/libart-2.0.pc.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattjmorrison/ReportLab/HEAD/src/rl_addons/renderPM/libart_lgpl/libart-2.0.pc.in -------------------------------------------------------------------------------- /src/rl_addons/renderPM/libart_lgpl/libart-config.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattjmorrison/ReportLab/HEAD/src/rl_addons/renderPM/libart_lgpl/libart-config.in -------------------------------------------------------------------------------- /src/rl_addons/renderPM/libart_lgpl/libart-features.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattjmorrison/ReportLab/HEAD/src/rl_addons/renderPM/libart_lgpl/libart-features.c -------------------------------------------------------------------------------- /src/rl_addons/renderPM/libart_lgpl/libart-features.h.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattjmorrison/ReportLab/HEAD/src/rl_addons/renderPM/libart_lgpl/libart-features.h.in -------------------------------------------------------------------------------- /src/rl_addons/renderPM/libart_lgpl/libart.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattjmorrison/ReportLab/HEAD/src/rl_addons/renderPM/libart_lgpl/libart.h -------------------------------------------------------------------------------- /src/rl_addons/renderPM/libart_lgpl/libart.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattjmorrison/ReportLab/HEAD/src/rl_addons/renderPM/libart_lgpl/libart.m4 -------------------------------------------------------------------------------- /src/rl_addons/renderPM/libart_lgpl/libartConf.sh.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattjmorrison/ReportLab/HEAD/src/rl_addons/renderPM/libart_lgpl/libartConf.sh.in -------------------------------------------------------------------------------- /src/rl_addons/renderPM/libart_lgpl/test_gradient.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattjmorrison/ReportLab/HEAD/src/rl_addons/renderPM/libart_lgpl/test_gradient.c -------------------------------------------------------------------------------- /src/rl_addons/renderPM/libart_lgpl/testart.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattjmorrison/ReportLab/HEAD/src/rl_addons/renderPM/libart_lgpl/testart.c -------------------------------------------------------------------------------- /src/rl_addons/renderPM/libart_lgpl/testuta.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattjmorrison/ReportLab/HEAD/src/rl_addons/renderPM/libart_lgpl/testuta.c -------------------------------------------------------------------------------- /src/rl_addons/renderPM/pfm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattjmorrison/ReportLab/HEAD/src/rl_addons/renderPM/pfm.py -------------------------------------------------------------------------------- /src/rl_addons/renderPM/setup.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattjmorrison/ReportLab/HEAD/src/rl_addons/renderPM/setup.cfg -------------------------------------------------------------------------------- /src/rl_addons/renderPM/setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattjmorrison/ReportLab/HEAD/src/rl_addons/renderPM/setup.py -------------------------------------------------------------------------------- /src/rl_addons/renderPM/test_renderPM.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattjmorrison/ReportLab/HEAD/src/rl_addons/renderPM/test_renderPM.py -------------------------------------------------------------------------------- /src/rl_addons/renderPM/tr.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattjmorrison/ReportLab/HEAD/src/rl_addons/renderPM/tr.py -------------------------------------------------------------------------------- /src/rl_addons/rl_accel/MANIFEST.in: -------------------------------------------------------------------------------- 1 | include *.h 2 | -------------------------------------------------------------------------------- /src/rl_addons/rl_accel/Makefile.pre.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattjmorrison/ReportLab/HEAD/src/rl_addons/rl_accel/Makefile.pre.in -------------------------------------------------------------------------------- /src/rl_addons/rl_accel/README.extensions: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattjmorrison/ReportLab/HEAD/src/rl_addons/rl_accel/README.extensions -------------------------------------------------------------------------------- /src/rl_addons/rl_accel/Setup.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattjmorrison/ReportLab/HEAD/src/rl_addons/rl_accel/Setup.in -------------------------------------------------------------------------------- /src/rl_addons/rl_accel/__BUILD.dsw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattjmorrison/ReportLab/HEAD/src/rl_addons/rl_accel/__BUILD.dsw -------------------------------------------------------------------------------- /src/rl_addons/rl_accel/_rl_accel.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattjmorrison/ReportLab/HEAD/src/rl_addons/rl_accel/_rl_accel.c -------------------------------------------------------------------------------- /src/rl_addons/rl_accel/_rl_accel.dsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattjmorrison/ReportLab/HEAD/src/rl_addons/rl_accel/_rl_accel.dsp -------------------------------------------------------------------------------- /src/rl_addons/rl_accel/_rl_accel.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattjmorrison/ReportLab/HEAD/src/rl_addons/rl_accel/_rl_accel.java -------------------------------------------------------------------------------- /src/rl_addons/rl_accel/hnjalloc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattjmorrison/ReportLab/HEAD/src/rl_addons/rl_accel/hnjalloc.c -------------------------------------------------------------------------------- /src/rl_addons/rl_accel/hnjalloc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattjmorrison/ReportLab/HEAD/src/rl_addons/rl_accel/hnjalloc.h -------------------------------------------------------------------------------- /src/rl_addons/rl_accel/hyphen.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattjmorrison/ReportLab/HEAD/src/rl_addons/rl_accel/hyphen.c -------------------------------------------------------------------------------- /src/rl_addons/rl_accel/hyphen.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattjmorrison/ReportLab/HEAD/src/rl_addons/rl_accel/hyphen.h -------------------------------------------------------------------------------- /src/rl_addons/rl_accel/hyphen.mashed: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattjmorrison/ReportLab/HEAD/src/rl_addons/rl_accel/hyphen.mashed -------------------------------------------------------------------------------- /src/rl_addons/rl_accel/pyHnj.dsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattjmorrison/ReportLab/HEAD/src/rl_addons/rl_accel/pyHnj.dsp -------------------------------------------------------------------------------- /src/rl_addons/rl_accel/pyHnjmodule.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattjmorrison/ReportLab/HEAD/src/rl_addons/rl_accel/pyHnjmodule.c -------------------------------------------------------------------------------- /src/rl_addons/rl_accel/sgmlop.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattjmorrison/ReportLab/HEAD/src/rl_addons/rl_accel/sgmlop.c -------------------------------------------------------------------------------- /src/rl_addons/rl_accel/sgmlop.dsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattjmorrison/ReportLab/HEAD/src/rl_addons/rl_accel/sgmlop.dsp -------------------------------------------------------------------------------- /src/rl_addons/rl_accel/tests/getrc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattjmorrison/ReportLab/HEAD/src/rl_addons/rl_accel/tests/getrc.py -------------------------------------------------------------------------------- /src/rl_addons/rl_accel/tests/t0.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattjmorrison/ReportLab/HEAD/src/rl_addons/rl_accel/tests/t0.py -------------------------------------------------------------------------------- /src/rl_addons/rl_accel/tests/t1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattjmorrison/ReportLab/HEAD/src/rl_addons/rl_accel/tests/t1.py -------------------------------------------------------------------------------- /src/rl_addons/rl_accel/tests/t2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattjmorrison/ReportLab/HEAD/src/rl_addons/rl_accel/tests/t2.py -------------------------------------------------------------------------------- /src/rl_addons/rl_accel/tests/t3.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattjmorrison/ReportLab/HEAD/src/rl_addons/rl_accel/tests/t3.py -------------------------------------------------------------------------------- /src/rl_addons/rl_accel/tests/t4.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattjmorrison/ReportLab/HEAD/src/rl_addons/rl_accel/tests/t4.py -------------------------------------------------------------------------------- /src/rl_addons/rl_accel/tests/t5.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattjmorrison/ReportLab/HEAD/src/rl_addons/rl_accel/tests/t5.py -------------------------------------------------------------------------------- /tests/00readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattjmorrison/ReportLab/HEAD/tests/00readme.txt -------------------------------------------------------------------------------- /tests/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattjmorrison/ReportLab/HEAD/tests/__init__.py -------------------------------------------------------------------------------- /tests/alpha_test.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattjmorrison/ReportLab/HEAD/tests/alpha_test.png -------------------------------------------------------------------------------- /tests/pythonpowered.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattjmorrison/ReportLab/HEAD/tests/pythonpowered.gif -------------------------------------------------------------------------------- /tests/runAll.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattjmorrison/ReportLab/HEAD/tests/runAll.py -------------------------------------------------------------------------------- /tests/solid_red_alpha.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattjmorrison/ReportLab/HEAD/tests/solid_red_alpha.png -------------------------------------------------------------------------------- /tests/tall_red.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattjmorrison/ReportLab/HEAD/tests/tall_red.png -------------------------------------------------------------------------------- /tests/test_charts_textlabels.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattjmorrison/ReportLab/HEAD/tests/test_charts_textlabels.py -------------------------------------------------------------------------------- /tests/test_crypto_algorithms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattjmorrison/ReportLab/HEAD/tests/test_crypto_algorithms.py -------------------------------------------------------------------------------- /tests/test_docs_build.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattjmorrison/ReportLab/HEAD/tests/test_docs_build.py -------------------------------------------------------------------------------- /tests/test_docstrings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattjmorrison/ReportLab/HEAD/tests/test_docstrings.py -------------------------------------------------------------------------------- /tests/test_encrypt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattjmorrison/ReportLab/HEAD/tests/test_encrypt.py -------------------------------------------------------------------------------- /tests/test_extra.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattjmorrison/ReportLab/HEAD/tests/test_extra.py -------------------------------------------------------------------------------- /tests/test_geomutils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattjmorrison/ReportLab/HEAD/tests/test_geomutils.py -------------------------------------------------------------------------------- /tests/test_graphics_charts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattjmorrison/ReportLab/HEAD/tests/test_graphics_charts.py -------------------------------------------------------------------------------- /tests/test_graphics_images.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattjmorrison/ReportLab/HEAD/tests/test_graphics_images.py -------------------------------------------------------------------------------- /tests/test_graphics_layout.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattjmorrison/ReportLab/HEAD/tests/test_graphics_layout.py -------------------------------------------------------------------------------- /tests/test_graphics_speed.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattjmorrison/ReportLab/HEAD/tests/test_graphics_speed.py -------------------------------------------------------------------------------- /tests/test_hello.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattjmorrison/ReportLab/HEAD/tests/test_hello.py -------------------------------------------------------------------------------- /tests/test_images.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattjmorrison/ReportLab/HEAD/tests/test_images.py -------------------------------------------------------------------------------- /tests/test_invariant.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattjmorrison/ReportLab/HEAD/tests/test_invariant.py -------------------------------------------------------------------------------- /tests/test_lib_colors.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattjmorrison/ReportLab/HEAD/tests/test_lib_colors.py -------------------------------------------------------------------------------- /tests/test_lib_sequencer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattjmorrison/ReportLab/HEAD/tests/test_lib_sequencer.py -------------------------------------------------------------------------------- /tests/test_lib_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattjmorrison/ReportLab/HEAD/tests/test_lib_utils.py -------------------------------------------------------------------------------- /tests/test_lib_validators.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattjmorrison/ReportLab/HEAD/tests/test_lib_validators.py -------------------------------------------------------------------------------- /tests/test_multibyte_chs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattjmorrison/ReportLab/HEAD/tests/test_multibyte_chs.py -------------------------------------------------------------------------------- /tests/test_multibyte_cht.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattjmorrison/ReportLab/HEAD/tests/test_multibyte_cht.py -------------------------------------------------------------------------------- /tests/test_multibyte_jpn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattjmorrison/ReportLab/HEAD/tests/test_multibyte_jpn.py -------------------------------------------------------------------------------- /tests/test_multibyte_kor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattjmorrison/ReportLab/HEAD/tests/test_multibyte_kor.py -------------------------------------------------------------------------------- /tests/test_paragraphs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattjmorrison/ReportLab/HEAD/tests/test_paragraphs.py -------------------------------------------------------------------------------- /tests/test_pdfbase_encodings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattjmorrison/ReportLab/HEAD/tests/test_pdfbase_encodings.py -------------------------------------------------------------------------------- /tests/test_pdfbase_fontembed.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattjmorrison/ReportLab/HEAD/tests/test_pdfbase_fontembed.py -------------------------------------------------------------------------------- /tests/test_pdfbase_pdfdoc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattjmorrison/ReportLab/HEAD/tests/test_pdfbase_pdfdoc.py -------------------------------------------------------------------------------- /tests/test_pdfbase_pdfmetrics.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattjmorrison/ReportLab/HEAD/tests/test_pdfbase_pdfmetrics.py -------------------------------------------------------------------------------- /tests/test_pdfbase_pdfutils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattjmorrison/ReportLab/HEAD/tests/test_pdfbase_pdfutils.py -------------------------------------------------------------------------------- /tests/test_pdfbase_postscript.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattjmorrison/ReportLab/HEAD/tests/test_pdfbase_postscript.py -------------------------------------------------------------------------------- /tests/test_pdfbase_ttfonts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattjmorrison/ReportLab/HEAD/tests/test_pdfbase_ttfonts.py -------------------------------------------------------------------------------- /tests/test_pdfencryption.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattjmorrison/ReportLab/HEAD/tests/test_pdfencryption.py -------------------------------------------------------------------------------- /tests/test_pdfgen_callback.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattjmorrison/ReportLab/HEAD/tests/test_pdfgen_callback.py -------------------------------------------------------------------------------- /tests/test_pdfgen_general.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattjmorrison/ReportLab/HEAD/tests/test_pdfgen_general.py -------------------------------------------------------------------------------- /tests/test_pdfgen_links.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattjmorrison/ReportLab/HEAD/tests/test_pdfgen_links.py -------------------------------------------------------------------------------- /tests/test_pdfgen_overprint.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattjmorrison/ReportLab/HEAD/tests/test_pdfgen_overprint.py -------------------------------------------------------------------------------- /tests/test_pdfgen_pagemodes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattjmorrison/ReportLab/HEAD/tests/test_pdfgen_pagemodes.py -------------------------------------------------------------------------------- /tests/test_pdfgen_pycanvas.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattjmorrison/ReportLab/HEAD/tests/test_pdfgen_pycanvas.py -------------------------------------------------------------------------------- /tests/test_platypus_accum.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattjmorrison/ReportLab/HEAD/tests/test_platypus_accum.py -------------------------------------------------------------------------------- /tests/test_platypus_breaking.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattjmorrison/ReportLab/HEAD/tests/test_platypus_breaking.py -------------------------------------------------------------------------------- /tests/test_platypus_general.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattjmorrison/ReportLab/HEAD/tests/test_platypus_general.py -------------------------------------------------------------------------------- /tests/test_platypus_indents.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattjmorrison/ReportLab/HEAD/tests/test_platypus_indents.py -------------------------------------------------------------------------------- /tests/test_platypus_index.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattjmorrison/ReportLab/HEAD/tests/test_platypus_index.py -------------------------------------------------------------------------------- /tests/test_platypus_leftright.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattjmorrison/ReportLab/HEAD/tests/test_platypus_leftright.py -------------------------------------------------------------------------------- /tests/test_platypus_paragraphs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattjmorrison/ReportLab/HEAD/tests/test_platypus_paragraphs.py -------------------------------------------------------------------------------- /tests/test_platypus_paraparser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattjmorrison/ReportLab/HEAD/tests/test_platypus_paraparser.py -------------------------------------------------------------------------------- /tests/test_platypus_pleaseturnover.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattjmorrison/ReportLab/HEAD/tests/test_platypus_pleaseturnover.py -------------------------------------------------------------------------------- /tests/test_platypus_programming.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattjmorrison/ReportLab/HEAD/tests/test_platypus_programming.py -------------------------------------------------------------------------------- /tests/test_platypus_tables.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattjmorrison/ReportLab/HEAD/tests/test_platypus_tables.py -------------------------------------------------------------------------------- /tests/test_platypus_toc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattjmorrison/ReportLab/HEAD/tests/test_platypus_toc.py -------------------------------------------------------------------------------- /tests/test_platypus_xref.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattjmorrison/ReportLab/HEAD/tests/test_platypus_xref.py -------------------------------------------------------------------------------- /tests/test_pyfiles.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattjmorrison/ReportLab/HEAD/tests/test_pyfiles.py -------------------------------------------------------------------------------- /tests/test_renderSVG.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattjmorrison/ReportLab/HEAD/tests/test_renderSVG.py -------------------------------------------------------------------------------- /tests/test_rl_accel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattjmorrison/ReportLab/HEAD/tests/test_rl_accel.py -------------------------------------------------------------------------------- /tests/test_source_chars.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattjmorrison/ReportLab/HEAD/tests/test_source_chars.py -------------------------------------------------------------------------------- /tests/test_table_layout.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattjmorrison/ReportLab/HEAD/tests/test_table_layout.py -------------------------------------------------------------------------------- /tests/test_tools_pythonpoint.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattjmorrison/ReportLab/HEAD/tests/test_tools_pythonpoint.py -------------------------------------------------------------------------------- /tests/test_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattjmorrison/ReportLab/HEAD/tests/test_utils.py -------------------------------------------------------------------------------- /tests/test_widgetbase_tpc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattjmorrison/ReportLab/HEAD/tests/test_widgetbase_tpc.py -------------------------------------------------------------------------------- /tests/test_widgets_grids.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattjmorrison/ReportLab/HEAD/tests/test_widgets_grids.py -------------------------------------------------------------------------------- /tools/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattjmorrison/ReportLab/HEAD/tools/README -------------------------------------------------------------------------------- /tools/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattjmorrison/ReportLab/HEAD/tools/__init__.py -------------------------------------------------------------------------------- /tools/docco/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattjmorrison/ReportLab/HEAD/tools/docco/README -------------------------------------------------------------------------------- /tools/docco/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattjmorrison/ReportLab/HEAD/tools/docco/__init__.py -------------------------------------------------------------------------------- /tools/docco/codegrab.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattjmorrison/ReportLab/HEAD/tools/docco/codegrab.py -------------------------------------------------------------------------------- /tools/docco/docpy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattjmorrison/ReportLab/HEAD/tools/docco/docpy.py -------------------------------------------------------------------------------- /tools/docco/examples.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattjmorrison/ReportLab/HEAD/tools/docco/examples.py -------------------------------------------------------------------------------- /tools/docco/graphdocpy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattjmorrison/ReportLab/HEAD/tools/docco/graphdocpy.py -------------------------------------------------------------------------------- /tools/docco/rl_doc_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattjmorrison/ReportLab/HEAD/tools/docco/rl_doc_utils.py -------------------------------------------------------------------------------- /tools/docco/rltemplate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattjmorrison/ReportLab/HEAD/tools/docco/rltemplate.py -------------------------------------------------------------------------------- /tools/docco/stylesheet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattjmorrison/ReportLab/HEAD/tools/docco/stylesheet.py -------------------------------------------------------------------------------- /tools/docco/t_parse.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattjmorrison/ReportLab/HEAD/tools/docco/t_parse.py -------------------------------------------------------------------------------- /tools/docco/yaml.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattjmorrison/ReportLab/HEAD/tools/docco/yaml.py -------------------------------------------------------------------------------- /tools/docco/yaml2pdf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattjmorrison/ReportLab/HEAD/tools/docco/yaml2pdf.py -------------------------------------------------------------------------------- /tools/pythonpoint/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattjmorrison/ReportLab/HEAD/tools/pythonpoint/README -------------------------------------------------------------------------------- /tools/pythonpoint/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattjmorrison/ReportLab/HEAD/tools/pythonpoint/__init__.py -------------------------------------------------------------------------------- /tools/pythonpoint/customshapes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattjmorrison/ReportLab/HEAD/tools/pythonpoint/customshapes.py -------------------------------------------------------------------------------- /tools/pythonpoint/demos/examples.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattjmorrison/ReportLab/HEAD/tools/pythonpoint/demos/examples.py -------------------------------------------------------------------------------- /tools/pythonpoint/demos/figures.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattjmorrison/ReportLab/HEAD/tools/pythonpoint/demos/figures.xml -------------------------------------------------------------------------------- /tools/pythonpoint/demos/htu.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattjmorrison/ReportLab/HEAD/tools/pythonpoint/demos/htu.xml -------------------------------------------------------------------------------- /tools/pythonpoint/demos/leftlogo.a85: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattjmorrison/ReportLab/HEAD/tools/pythonpoint/demos/leftlogo.a85 -------------------------------------------------------------------------------- /tools/pythonpoint/demos/leftlogo.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattjmorrison/ReportLab/HEAD/tools/pythonpoint/demos/leftlogo.gif -------------------------------------------------------------------------------- /tools/pythonpoint/demos/lj8100.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattjmorrison/ReportLab/HEAD/tools/pythonpoint/demos/lj8100.jpg -------------------------------------------------------------------------------- /tools/pythonpoint/demos/monterey.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattjmorrison/ReportLab/HEAD/tools/pythonpoint/demos/monterey.xml -------------------------------------------------------------------------------- /tools/pythonpoint/demos/outline.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattjmorrison/ReportLab/HEAD/tools/pythonpoint/demos/outline.gif -------------------------------------------------------------------------------- /tools/pythonpoint/demos/pplogo.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattjmorrison/ReportLab/HEAD/tools/pythonpoint/demos/pplogo.gif -------------------------------------------------------------------------------- /tools/pythonpoint/demos/python.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattjmorrison/ReportLab/HEAD/tools/pythonpoint/demos/python.gif -------------------------------------------------------------------------------- /tools/pythonpoint/demos/pythonpoint.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattjmorrison/ReportLab/HEAD/tools/pythonpoint/demos/pythonpoint.xml -------------------------------------------------------------------------------- /tools/pythonpoint/demos/slidebox.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattjmorrison/ReportLab/HEAD/tools/pythonpoint/demos/slidebox.py -------------------------------------------------------------------------------- /tools/pythonpoint/demos/spectrum.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattjmorrison/ReportLab/HEAD/tools/pythonpoint/demos/spectrum.png -------------------------------------------------------------------------------- /tools/pythonpoint/demos/vertpython.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattjmorrison/ReportLab/HEAD/tools/pythonpoint/demos/vertpython.gif -------------------------------------------------------------------------------- /tools/pythonpoint/pythonpoint.dtd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattjmorrison/ReportLab/HEAD/tools/pythonpoint/pythonpoint.dtd -------------------------------------------------------------------------------- /tools/pythonpoint/pythonpoint.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattjmorrison/ReportLab/HEAD/tools/pythonpoint/pythonpoint.py -------------------------------------------------------------------------------- /tools/pythonpoint/stdparser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattjmorrison/ReportLab/HEAD/tools/pythonpoint/stdparser.py -------------------------------------------------------------------------------- /tools/pythonpoint/styles/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattjmorrison/ReportLab/HEAD/tools/pythonpoint/styles/__init__.py -------------------------------------------------------------------------------- /tools/pythonpoint/styles/horrible.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattjmorrison/ReportLab/HEAD/tools/pythonpoint/styles/horrible.py -------------------------------------------------------------------------------- /tools/pythonpoint/styles/htu.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattjmorrison/ReportLab/HEAD/tools/pythonpoint/styles/htu.py -------------------------------------------------------------------------------- /tools/pythonpoint/styles/modern.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattjmorrison/ReportLab/HEAD/tools/pythonpoint/styles/modern.py -------------------------------------------------------------------------------- /tools/pythonpoint/styles/projection.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattjmorrison/ReportLab/HEAD/tools/pythonpoint/styles/projection.py -------------------------------------------------------------------------------- /tools/pythonpoint/styles/standard.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattjmorrison/ReportLab/HEAD/tools/pythonpoint/styles/standard.py -------------------------------------------------------------------------------- /tools/utils/add_bleed.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattjmorrison/ReportLab/HEAD/tools/utils/add_bleed.py -------------------------------------------------------------------------------- /tools/utils/dumpttf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattjmorrison/ReportLab/HEAD/tools/utils/dumpttf.py --------------------------------------------------------------------------------