Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | style: double quotes | Ned Batchelder | 2023-03-22 | 1 | -19/+19 |
| | |||||
* | mypy: templite.py test_templite.py | Ned Batchelder | 2023-01-07 | 1 | -20/+32 |
| | |||||
* | style: fix spelling | Ned Batchelder | 2022-11-28 | 1 | -1/+1 |
| | | | | un-executed, white space, time stamp. | ||||
* | fix: raise chained errors with "from" #998 | Ned Batchelder | 2021-07-20 | 1 | -2/+2 |
| | | | | | | This makes exceptions report their causes correctly, as "The above exception was the direct cause of the following exception" instead of "During handling of the above exception, another exception occurred." | ||||
* | refactor: pyupgrade --py36-plus coverage/*.py | Ned Batchelder | 2021-05-02 | 1 | -8/+8 |
| | |||||
* | refactor: remove code explicitly choosing between py2 and py3 | Ned Batchelder | 2021-05-01 | 1 | -6/+1 |
| | |||||
* | Templite {% joined %} is more convenient than trailing hyphens | Ned Batchelder | 2019-11-11 | 1 | -4/+15 |
| | |||||
* | Update NOTICE link to GitHub. | Ned Batchelder | 2018-06-24 | 1 | -1/+1 |
| | |||||
* | Change an always-taken elif to an else | Ned Batchelder | 2016-06-25 | 1 | -1/+2 |
| | |||||
* | Templite can now collapse whitespace after tags | Ned Batchelder | 2016-02-15 | 1 | -43/+57 |
| | |||||
* | Link to 500 Lines from templite.py | Ned Batchelder | 2015-09-02 | 1 | -1/+6 |
| | |||||
* | Add license mention to the top of all files. #313. | Ned Batchelder | 2015-07-24 | 1 | -0/+3 |
| | |||||
* | Convert single quoted html output to use double quotes. | Jon Chappell | 2015-04-13 | 1 | -1/+1 |
| | |||||
* | More pep8 compliance | Ned Batchelder | 2015-01-19 | 1 | -0/+1 |
| | |||||
* | Collect all the nudgy environment checks into coverage.env | Ned Batchelder | 2015-01-18 | 1 | -2/+3 |
| | |||||
* | Report a more useful error if an expression fails. | Ned Batchelder | 2015-01-09 | 1 | -1/+11 |
| | |||||
* | Source is always Unicode in HTML code. More refactoring to come. | Ned Batchelder | 2014-12-12 | 1 | -1/+5 |
| | |||||
* | Try out pylint spelling. Kinda noisy, but fixed some stuff. | Ned Batchelder | 2014-11-27 | 1 | -2/+2 |
| | |||||
* | Latest better names in templite.py | Ned Batchelder | 2014-08-09 | 1 | -22/+23 |
| | |||||
* | Latest code form 500lines | Ned Batchelder | 2014-05-09 | 1 | -50/+85 |
| | |||||
* | Polished-up code from 500lines | Ned Batchelder | 2014-04-26 | 1 | -29/+39 |
| | |||||
* | A few last listcomp -> genexp upgrades. | Ned Batchelder | 2013-12-14 | 1 | -3/+3 |
| | |||||
* | Merged 4.0 to default | Ned Batchelder | 2013-12-13 | 1 | -2/+0 |
|\ | |||||
* | | Python 2.3, my old nemesis! | Ned Batchelder | 2013-10-27 | 1 | -1/+3 |
| | | |||||
* | | More templite fiddling: use locals instead of ctx[] each time. | Ned Batchelder | 2013-10-27 | 1 | -11/+41 |
| | | |||||
* | | Templite now compiles to Python code for speed. | Ned Batchelder | 2013-10-26 | 1 | -92/+102 |
|/ | |||||
* | Clean up the lst += string stuff, whereby string being iterable means each ↵ | Ned Batchelder | 2010-02-07 | 1 | -2/+2 |
| | | | | char is added as an element of the list. Also, apply the 'join is better than append' rule to other places, where, alas, it doesn't seem to have the same magic effect. | ||||
* | You know that thing they say about how ''.join(slist) is faster than s1 += ↵ | Ned Batchelder | 2010-02-07 | 1 | -2/+2 |
| | | | | s? It's really true. This one change removed 90% of the templite time, and 59% of the html report generation time. | ||||
* | Massive eol whitespace clean-up. | Ned Batchelder | 2009-12-02 | 1 | -19/+19 |
| | |||||
* | There doesn't seem to be a way to raise an exception with an old traceback ↵ | Ned Batchelder | 2009-11-21 | 1 | -2/+2 |
| | | | | that works on both 2.x and 3.x, so lose the traceback. | ||||
* | Increase templite test coverage, and use the new branch awesomeness when ↵ | Ned Batchelder | 2009-11-21 | 1 | -2/+2 |
| | | | | coverage testing ourselves. | ||||
* | Add nicer exception reporting inside Templite so when a template goes wrong ↵ | Ned Batchelder | 2009-11-21 | 1 | -2/+8 |
| | | | | we have some hope of figuring out why. | ||||
* | Put back a comment distinguishing this Templite from another Templite. | Ned Batchelder | 2009-10-27 | 1 | -0/+2 |
| | |||||
* | Cleanup and commenting in Templite. | Ned Batchelder | 2009-10-26 | 1 | -14/+26 |
| | |||||
* | Templite v2, which can handle if's and nested control structures. | Ned Batchelder | 2009-10-25 | 1 | -60/+87 |
| | |||||
* | Templite now allows comments within curly-hash markers. | Ned Batchelder | 2009-10-25 | 1 | -0/+6 |
| | |||||
* | The best way to get py3k support: same source runs on both, with some ↵ | Ned Batchelder | 2009-09-22 | 1 | -1/+1 |
| | | | | contortions. | ||||
* | Minor templite tweaks. | Ned Batchelder | 2009-09-06 | 1 | -1/+2 |
| | |||||
* | More docstrings all around. | Ned Batchelder | 2009-05-09 | 1 | -5/+33 |
| | |||||
* | Variables' items (dict access) can be used in templates. | Ned Batchelder | 2009-04-20 | 1 | -1/+4 |
| | |||||
* | Muliple loops and multi-line loops didn't work. | Ned Batchelder | 2009-04-20 | 1 | -1/+1 |
| | |||||
* | Templite: a lightweight template class to use when making HTML reports. | Ned Batchelder | 2009-04-19 | 1 | -0/+81 |