summaryrefslogtreecommitdiff
path: root/pystache
Commit message (Expand)AuthorAgeFilesLines
* Added a TODO to pystache/__init__.py about "from pystache import *".Chris Jerdonek2012-04-151-0/+4
* Added a TODO to pystache/commands/test.py about nose's defaultTest keyword ar...Chris Jerdonek2012-04-151-0/+2
* Some updates to the test code for moving the examples folder.Chris Jerdonek2012-04-153-6/+5
* Moved examples/ to pystache/tests/examples/.Chris Jerdonek2012-04-1539-0/+226
* Made the argument to pystache.command.render's main() function optional.Chris Jerdonek2012-04-141-2/+7
* Stubbed out a stand-alone script command.Chris Jerdonek2012-04-143-12/+48
* Moved commands.py into a commands sub-package.Chris Jerdonek2012-04-133-1/+1
* Make ImportErrors that occur while loading doctests easier to diagnose.Chris Jerdonek2012-04-131-1/+10
* Spacing.Chris Jerdonek2012-04-111-1/+0
* Cleaned up code around html.escape() in pystache.defaults.Chris Jerdonek2012-04-111-15/+8
* Merge branch 'master' into 'development': after releasing v0.5.0 to PyPIChris Jerdonek2012-04-111-1/+1
|\
| * Bump version from 0.5.0-rc to 0.5.0 prior to PyPI release: issue #101v0.5.0Chris Jerdonek2012-04-101-1/+3
* | Tests now pass with Python 3.1.Chris Jerdonek2012-04-102-2/+9
* | Got tox working with Python 2.4 through 3.2 (2.4, 2.5, 2.6, 2.7, 3.2).Chris Jerdonek2012-04-101-1/+2
* | Eliminated the nosetests hack around the load_tests protocol function.Chris Jerdonek2012-04-091-14/+8
* | Addressed TODO to rename reader to loader in test_loader.py.Chris Jerdonek2012-04-081-25/+24
* | Changed the deprecated (in Python 3) assertNotEquals to assertNotEqual everyw...Chris Jerdonek2012-04-082-2/+1
* | All unit tests except for spec tests now work in both Python 2/3.Chris Jerdonek2012-04-085-52/+70
* | More Python 3 unit test fixes; README doctests also now working.Chris Jerdonek2012-04-085-9/+27
* | More unit tests for Python 3: type-checking in Renderer.render() for byte str...Chris Jerdonek2012-04-082-7/+20
* | Made a test_context pass in Python 3.Chris Jerdonek2012-04-081-22/+19
* | Made 6 more tests pass in Python 3 (and simultaneously, Python 2)..Chris Jerdonek2012-04-082-0/+18
* | Exposed an html_escape function in tests.common for consistent Python 2/3 tes...Chris Jerdonek2012-04-082-1/+26
* | Fixed the built-in type integer unit test for Python 3.Chris Jerdonek2012-04-081-1/+1
* | Improved rendering logic around list-like section values for Python 3.Chris Jerdonek2012-04-081-3/+22
* | Cleaned up test_mustachespec.py somewhat.Chris Jerdonek2012-04-081-36/+12
* | More Python 3 unit test fixes.Chris Jerdonek2012-04-087-22/+54
* | Another Python 3 unit test change.Chris Jerdonek2012-04-082-6/+16
* | Fixed another unit test for Python 3.Chris Jerdonek2012-04-081-2/+2
* | Fixed another unit test for Python 3 compatibility.Chris Jerdonek2012-04-081-13/+37
* | Renamed two test modules: test_template_spec, test_spec -> test_specloader, t...Chris Jerdonek2012-04-082-0/+0
* | Renamed spec_loader module to specloader.Chris Jerdonek2012-04-083-3/+2
* | Added three TODO's to test_template_spec.py.Chris Jerdonek2012-04-081-0/+3
* | Fixed a test case in Python 3 related to the system's default encoding.Chris Jerdonek2012-04-081-1/+5
* | Added module pystache.common with a read(path) function.Chris Jerdonek2012-04-082-7/+29
* | Addressed TODO to rename _make_locator() to _make_loader().Chris Jerdonek2012-04-081-12/+11
* | Python 3 support: use html module instead of cgi.escape().Chris Jerdonek2012-04-083-8/+14
* | Python 3 support: switched assertEquals() to assertEqual().Chris Jerdonek2012-04-0811-156/+156
* | Switched to using codecs.open() in tests/test_spec.py for Python 3 support.Chris Jerdonek2012-04-081-4/+23
* | Cleaned up code comments in previous commit.Chris Jerdonek2012-04-081-7/+8
* | Test runner now supports both YAML and JSON.Chris Jerdonek2012-04-081-28/+68
* | Added a RenderEngine test case that strings should not be interpreted as lists.Chris Jerdonek2012-04-081-2/+13
* | Cleaned up test_renderengine unit tests related to built-in types.Chris Jerdonek2012-04-081-14/+41
* | Added a TODO re: correcting the test count when running nosetests.Chris Jerdonek2012-04-071-0/+4
* | Fixed issue that caused a SyntaxError when running nosetests in Python 2.4.Chris Jerdonek2012-04-071-3/+5
* | Enabled the "use_2to3" keyword argument to setup().Chris Jerdonek2012-04-071-0/+0
* | Renamed _to_unicode to _default_to_unicode.Chris Jerdonek2012-04-071-2/+2
* | Added a code comment with a link to unittest's load_tests protocol.Chris Jerdonek2012-04-071-3/+6
* | Added code comments re: the load_tests protocol.Chris Jerdonek2012-04-071-4/+14
* | Tests can now be run with nosetests or Distribute's test.Chris Jerdonek2012-04-071-1/+11