aboutsummaryrefslogtreecommitdiff
path: root/print/py-preppy
Commit message (Collapse)AuthorAgeFilesLines
* Remove # $FreeBSD$ from Makefiles.Mathieu Arnold2021-04-061-1/+0
|
* Drop python 2.7 support from a few portsAntoine Brodin2020-12-281-1/+1
| | | | | | | With hat: portmgr Notes: svn path=/head/; revision=559531
* Update to 2.4.1Sunpoet Po-Chuan Hsieh2020-12-102-6/+8
| | | | Notes: svn path=/head/; revision=557689
* print/py-preppy: Give up maintainershipSerhii (Sergey) Kozlov2020-09-261-1/+1
| | | | Notes: svn path=/head/; revision=550207
* Change MAINTAINER in my ports to @FreeBSD.org emailSerhii (Sergey) Kozlov2018-09-231-1/+1
| | | | | | | | Approved By: sbruno Differential Revision: https://reviews.freebsd.org/D17284 Notes: svn path=/head/; revision=480460
* - Update to 2.3.4Wen Heping2015-09-123-16/+7
| | | | | | | | PR: 203024 Submitted by: kozlov.sergey.404@gmail.com(maintainer) Notes: svn path=/head/; revision=396733
* - Convert ports of news/ and print/ to new USES=pythonMarcus von Appen2014-10-241-3/+2
| | | | | | | Approved by: portmgr (implicit) Notes: svn path=/head/; revision=371452
* - Update to 2.3.2Frederic Culot2014-05-263-3/+14
| | | | | | | | PR: ports/190205 Submitted by: Kozlov Sergey <kozlov.sergey.404@gmail.com> (maintainer) Notes: svn path=/head/; revision=355285
* Preppy is ReportLab's templating system. It was developed in late 2000 and hasMartin Wilke2014-05-253-0/+43
been in continual production use since then. It is open source (BSD-license). The key features are: - *small*. Preppy is a single Python module. If you want a templating system 'in the box', it's easy to include it in your project - *easy to learn*. It takes about one minute to scan all the features - *just Python*. We have not invented another language, and if you want to do something - includes, quoting, filters - you just use Python - *compiled to bytecode*: a .prep file gets compiled to a Python function in a .pyc file - *easy to debug*: preppy generates proper Python exceptions, with the correct line numbers for the .prep file. You can follow tracebacks from Python script to Preppy template and back, through multiple includes - *easy to type and read*. We've been using ``{{this}}`` syntax since well before Django was thought of - *8-bit safe*: it makes no assumption that you are generating markup and does nothing unexpected with whitespace; you could use it to generate images or binary files if you wanted to. WWW: http://preppy.readthedocs.org/en/latest/ PR: ports/186881 Submitted by: Kozlov Sergey <kozlov.sergey.404@gmail.com> Notes: svn path=/head/; revision=355133