]>
Devi Nivas Git - chevron.git/log
Noah Morrison [Sat, 2 Jan 2021 21:35:20 +0000 (16:35 -0500)]
Add option to hide the file system
When partials_path is set to None or '', don't try loading from the
file system
Noah Morrison [Sat, 2 Jan 2021 21:18:35 +0000 (16:18 -0500)]
Merge branch 'binokkio-fix/yaml-loader_GH-78' into main
Noah Morrison [Sat, 2 Jan 2021 21:17:47 +0000 (16:17 -0500)]
Merge branch 'fix/yaml-loader_GH-78' of git://github.com/binokkio/chevron into binokkio-fix/yaml-loader_GH-78
Binokkio [Sat, 2 Jan 2021 19:08:07 +0000 (20:08 +0100)]
Changed default yaml loader to SafeLoader
Co-authored-by: Noah Morrison <noah+github@morrison.ph>
Noah Morrison [Sat, 2 Jan 2021 18:58:16 +0000 (13:58 -0500)]
Merge pull request #88 from tekknolagi/main
Add test for keys not in __dict__
Max Bernstein [Sat, 2 Jan 2021 18:19:19 +0000 (10:19 -0800)]
Add test for keys not in __dict__
See https://github.com/noahmorrison/chevron/pull/87
Noah Morrison [Sat, 2 Jan 2021 18:32:19 +0000 (13:32 -0500)]
Merge pull request #87 from tekknolagi/main
Use getattr instead of _asdict/__getitem__
Max Bernstein [Sat, 2 Jan 2021 18:19:19 +0000 (10:19 -0800)]
Use getattr instead of _asdict/__getitem__
`_asdict` is not public API for `namedtuple`.
You may want to consider using the built-in `string` module, which
implements this kind of `.0`/`.foo` formatting.
Noah Morrison [Sat, 2 Jan 2021 18:00:48 +0000 (13:00 -0500)]
Merge branch 'master' into fix/yaml-loader_GH-78
Noah Morrison [Sat, 2 Jan 2021 17:35:03 +0000 (12:35 -0500)]
Merge branch 'tchebb-fix-py3-namedtuple' into main
Noah Morrison [Sat, 2 Jan 2021 17:34:44 +0000 (12:34 -0500)]
Merge branch 'fix-py3-namedtuple' of git://github.com/tchebb/chevron into tchebb-fix-py3-namedtuple
Noah Morrison [Sat, 2 Jan 2021 17:29:05 +0000 (12:29 -0500)]
Merge branch 'joshhansen-master_warn' into main
Noah Morrison [Sat, 2 Jan 2021 17:28:53 +0000 (12:28 -0500)]
Merge branch 'master_warn' of git://github.com/joshhansen/chevron into joshhansen-master_warn
Noah Morrison [Sat, 2 Jan 2021 17:26:34 +0000 (12:26 -0500)]
Merge branch 'tirkarthi-fix-syntax-warning' into main
Noah Morrison [Sat, 2 Jan 2021 17:26:22 +0000 (12:26 -0500)]
Merge branch 'fix-syntax-warning' of git://github.com/tirkarthi/chevron into tirkarthi-fix-syntax-warning
Noah Morrison [Sat, 2 Jan 2021 17:22:53 +0000 (12:22 -0500)]
Merge branch 'alanyee-patch-2' into main
Noah Morrison [Sat, 2 Jan 2021 17:22:41 +0000 (12:22 -0500)]
Merge branch 'patch-2' of git://github.com/alanyee/chevron into alanyee-patch-2
Noah Morrison [Sat, 2 Jan 2021 17:20:48 +0000 (12:20 -0500)]
Merge branch 'alanyee-patch-1' into main
Noah Morrison [Sat, 2 Jan 2021 17:20:33 +0000 (12:20 -0500)]
Merge branch 'patch-1' of git://github.com/alanyee/chevron into alanyee-patch-1
Noah Morrison [Sat, 2 Jan 2021 17:17:59 +0000 (12:17 -0500)]
Merge branch 'masell-travis' into main
Noah Morrison [Sat, 2 Jan 2021 17:17:33 +0000 (12:17 -0500)]
Merge branch 'travis' of git://github.com/masell/chevron into masell-travis
Noah Morrison [Sat, 2 Jan 2021 17:11:31 +0000 (12:11 -0500)]
Merge branch 'masell-master' into main
Binokkio [Sun, 27 Dec 2020 10:24:17 +0000 (11:24 +0100)]
Excluding yaml parsing lines from coverage since pyyaml is not a dependency
Binokkio [Sun, 27 Dec 2020 10:01:44 +0000 (11:01 +0100)]
Defaulting to yaml.FullLoader with hidden cli arg to resolve GH-78
Thomas Hebb [Sat, 23 May 2020 03:24:22 +0000 (23:24 -0400)]
Allow field access for namedtuple in Python 3
`namedtuple` in Python 3 does not provide a `__dict__` attribute. See
https://bugs.python.org/issue24931 for rationale why. As such, if we
want to render keys in `namedtuple`s, we need to use its [`_asdict`][1]
method.
[1]: https://docs.python.org/3/library/collections.html#collections.somenamedtuple._asdict
Josh Hansen [Mon, 18 May 2020 06:24:09 +0000 (23:24 -0700)]
Adjust help text
Josh Hansen [Mon, 18 May 2020 06:20:37 +0000 (23:20 -0700)]
Add newlines to warning output
Josh Hansen [Mon, 18 May 2020 06:10:48 +0000 (23:10 -0700)]
Warn on undefined keys option
Karthikeyan Singaravelan [Fri, 1 May 2020 04:38:30 +0000 (04:38 +0000)]
Add specific check for zero and False since False == 0 is True.
Karthikeyan Singaravelan [Thu, 9 Apr 2020 14:26:11 +0000 (14:26 +0000)]
Fix SyntaxWarning over comparison of literals using is
Alan Yee [Mon, 25 Nov 2019 18:52:12 +0000 (10:52 -0800)]
Update renderer.py
More efficient to use rpartition over split in this use case
Alan Yee [Mon, 25 Nov 2019 18:43:17 +0000 (10:43 -0800)]
Update main.py
-Avoid the use of dangerous default values
-Send print statement into stderr
-Use sys.exit instead of exit
Martin Asell [Thu, 17 Oct 2019 20:38:43 +0000 (21:38 +0100)]
Add python 3.8
Martin Asell [Thu, 17 Oct 2019 20:09:18 +0000 (21:09 +0100)]
TravisCI update
Martin Asell [Sun, 13 Oct 2019 22:40:24 +0000 (23:40 +0100)]
Fix indentation when iterating in scope
Noah Morrison [Mon, 22 Apr 2019 00:30:22 +0000 (20:30 -0400)]
Merge pull request #55 from noahmorrison/travis-testing
Seperate Flake8 from Coveralls
Noah Morrison [Sun, 21 Apr 2019 20:08:35 +0000 (16:08 -0400)]
Cap Python to 3.6 to avoid Xenial workaround
Some limitation to travis. Hopefully will be fixed soon?
https://github.com/travis-ci/travis-ci/issues/9815
Noah Morrison [Sun, 21 Apr 2019 20:03:14 +0000 (16:03 -0400)]
Add Python 3.7 to the Python list
Noah Morrison [Sun, 21 Apr 2019 19:56:56 +0000 (15:56 -0400)]
Run flake8 and publish on Python 3.7
Noah Morrison [Sun, 21 Apr 2019 19:52:06 +0000 (15:52 -0400)]
Remove flake8 from publish env
Noah Morrison [Sun, 21 Apr 2019 19:47:05 +0000 (15:47 -0400)]
Seperate Flake8 from Coveralls
Noah Morrison [Sun, 21 Apr 2019 00:21:10 +0000 (20:21 -0400)]
Merge pull request #54 from dmorrison42/coverage
Improvements to coverage
Daniel Morrison [Sun, 21 Apr 2019 00:18:02 +0000 (20:18 -0400)]
Flake8 Fixes
Daniel Morrison [Sun, 21 Apr 2019 00:03:46 +0000 (20:03 -0400)]
Test render of partial insde of lambda
Daniel Morrison [Sat, 20 Apr 2019 23:56:26 +0000 (19:56 -0400)]
Mark unicode literal handling as Python2
Daniel Morrison [Sat, 20 Apr 2019 23:33:29 +0000 (19:33 -0400)]
Add test for custom falsy handling (#35)
Daniel Morrison [Sat, 20 Apr 2019 23:31:12 +0000 (19:31 -0400)]
Ignore coverage report
Daniel Morrison [Sat, 20 Apr 2019 23:15:02 +0000 (19:15 -0400)]
Add ChevronError to __init__.py
Required for pytest to pass
Daniel Morrison [Sat, 20 Apr 2019 23:13:21 +0000 (19:13 -0400)]
Update Coverage Badge
Point directly to coveralls.io instead of shields.io
Noah Morrison [Wed, 17 Apr 2019 06:57:01 +0000 (02:57 -0400)]
Merge pull request #53 from dmorrison42/indexed_lookup
Implement indexed scopes #52
Daniel Morrison [Tue, 16 Apr 2019 23:26:34 +0000 (19:26 -0400)]
Flake8 cleanup
Daniel Morrison [Tue, 16 Apr 2019 23:17:43 +0000 (19:17 -0400)]
Catch ValueError when trying to parse keys as int
Daniel Morrison [Tue, 16 Apr 2019 23:03:15 +0000 (19:03 -0400)]
Implement indexed scopes #52
Noah Morrison [Sun, 7 Apr 2019 17:12:51 +0000 (13:12 -0400)]
Merge pull request #51 from dmorrison42/partial_indentation
Allow tabs in partial indentation (Fixes #49?)
Noah Morrison [Sun, 7 Apr 2019 17:10:02 +0000 (13:10 -0400)]
Merge pull request #50 from dmorrison42/missing_key_partial
Missing key partial
Daniel Morrison [Sun, 7 Apr 2019 15:59:54 +0000 (11:59 -0400)]
Allow tabs in partial indentation (Fixes #49?)
This appears to be the underlying issue in #49.
Now tabs or spaces can be used to indent partials.
There is some slight possible API breakage changing padding from int.
If desired, a check could be added to check for an int padding.
Daniel Morrison [Sun, 7 Apr 2019 14:55:57 +0000 (10:55 -0400)]
Fix #48
Turns out some weird scoping things were happening.
The `scopes` variable is being passed throughout by reference.
Which is great (yay speed improvements). In theory. Except...
All operations must therefore operate on scopes by reference.
`scopes = scopes[1:]` used to end a scope updates the reference.
This means the parent call to renderer doesn't leave the scope.
Daniel Morrison [Sat, 23 Mar 2019 23:07:40 +0000 (19:07 -0400)]
Add test for #48
Noah Morrison [Sun, 7 Oct 2018 18:14:26 +0000 (14:14 -0400)]
Merge pull request #46 from akosthekiss/manifest-for-readme
Add MANIFEST.in to ensure that README.md is found by setup.py
Akos Kiss [Sun, 7 Oct 2018 12:42:28 +0000 (14:42 +0200)]
Add MANIFEST.in to ensure that README.md is found by setup.py
Noah Morrison [Wed, 3 Oct 2018 14:20:17 +0000 (10:20 -0400)]
Bump version (patch)
Noah Morrison [Wed, 3 Oct 2018 14:19:59 +0000 (10:19 -0400)]
Fix flake8 not realizing this line is python2
Noah Morrison [Wed, 3 Oct 2018 14:15:33 +0000 (10:15 -0400)]
Bump version (minor)
Noah Morrison [Wed, 3 Oct 2018 13:47:14 +0000 (09:47 -0400)]
Merge branch 'master' of https://github.com/gber/chevron into gber-master
Noah Morrison [Wed, 3 Oct 2018 13:45:53 +0000 (09:45 -0400)]
Fix flake8 error
Noah Morrison [Wed, 3 Oct 2018 13:43:32 +0000 (09:43 -0400)]
Merge branch 'master' of https://github.com/jonioni/chevron into jonioni-master
Noah Morrison [Wed, 3 Oct 2018 13:38:48 +0000 (09:38 -0400)]
Merge branch 'fix-open-unicode' of https://github.com/akosthekiss/chevron into akosthekiss-fix-open-unicode
Noah Morrison [Wed, 3 Oct 2018 13:37:29 +0000 (09:37 -0400)]
Merge branch 'fix-lambda-variable' of https://github.com/akosthekiss/chevron
Akos Kiss [Tue, 2 Oct 2018 11:31:42 +0000 (13:31 +0200)]
Force utf-8 encoding when opening files
The default `open(..., 'r')` may lead to errors when utf-8 encoded
files are read on a platform with non-utf-8 default locale /
preferred encoding. The `io` package allows to specify `encoding`
for `open` in a Python 2 & 3-compatible way.
Akos Kiss [Tue, 2 Oct 2018 09:44:45 +0000 (11:44 +0200)]
Fix the rendering of lambdas
Variables are the most common tag types, yet they were not handled
during the generation of template text for lambda scopes.
Akos Kiss [Mon, 1 Oct 2018 16:37:56 +0000 (18:37 +0200)]
Add missing single quotes to dict keys in README examples
Noah Morrison [Tue, 2 Oct 2018 20:59:04 +0000 (16:59 -0400)]
Okay, if I can't only run it once, only publish once
Noah Morrison [Tue, 2 Oct 2018 20:54:52 +0000 (16:54 -0400)]
Hopefully actually only run 3.6 once
Noah Morrison [Tue, 2 Oct 2018 20:43:54 +0000 (16:43 -0400)]
Only run python 3.6 once, only push to test.pypi on tags
Noah Morrison [Tue, 2 Oct 2018 20:39:24 +0000 (16:39 -0400)]
Merge branch 'akosthekiss-fix-flake8' into travis-test
Noah Morrison [Tue, 2 Oct 2018 20:34:12 +0000 (16:34 -0400)]
Bump patch version number for PyPi test
Noah Morrison [Tue, 2 Oct 2018 20:32:11 +0000 (16:32 -0400)]
Merge branch 'akosthekiss-pypi-deploy-origin-only' into travis-test
Noah Morrison [Tue, 2 Oct 2018 20:28:03 +0000 (16:28 -0400)]
Actually tell PyPi that the readme is in markdown
oops... who reads documentation anyways?
Noah Morrison [Tue, 2 Oct 2018 20:23:26 +0000 (16:23 -0400)]
Change upload version 3.5 => 3.6
Noah Morrison [Tue, 2 Oct 2018 20:17:37 +0000 (16:17 -0400)]
Missed a / while updating PyPi server locations
Noah Morrison [Tue, 2 Oct 2018 20:13:14 +0000 (16:13 -0400)]
Update PyPi server locations
Noah Morrison [Tue, 2 Oct 2018 20:06:56 +0000 (16:06 -0400)]
Remove pandoc, PyPi accepts markdown now
Noah Morrison [Tue, 2 Oct 2018 19:54:49 +0000 (15:54 -0400)]
Update Travis to only use tox and coveralls on 3.5
Akos Kiss [Tue, 2 Oct 2018 14:03:00 +0000 (16:03 +0200)]
Deploy to PyPI from the source repo only
Otherwise, Travis CI will try to deploy to (test)pypi for forks as
well, and it will fail.
Akos Kiss [Mon, 1 Oct 2018 16:58:58 +0000 (18:58 +0200)]
Fix flake8-reported style issues
Noah Morrison [Sat, 29 Sep 2018 05:41:24 +0000 (01:41 -0400)]
Fix nested loops
This feels like it might still have edge cases, but it works for now.
Jon [Fri, 21 Sep 2018 05:04:48 +0000 (01:04 -0400)]
Supporting Partial File Without File Extension
Change made to function `_get_partial_ext`:
From `path = partials_path + '/' + name + '.' + partials_ext` to `path = partials_path + '/' + name + ('.' + partials_ext if partials_ext else '')`.
Guido Berhoerster [Tue, 28 Aug 2018 13:43:52 +0000 (15:43 +0200)]
Use more pythonic type checking
Use isinstance() and abstract base classes for checking available
functionality instead of strictly checking for base types. Among other
things, this allows for rendering any non-string sequences, iterators or
generators as lists (resolves #33) and for passing in any callable
instead of just plain functions.
Noah Morrison [Fri, 24 Aug 2018 01:58:07 +0000 (21:58 -0400)]
Merge branch 'master' of https://github.com/klorenz/chevron into klorenz-master
Noah Morrison [Fri, 24 Aug 2018 00:22:34 +0000 (20:22 -0400)]
Allow for custom falsy data types
Helps resolve Issue #35
This allows for a custom data type be outputed even when falsy
Kay-Uwe (Kiwi) Lorenz [Sun, 29 Jul 2018 06:02:57 +0000 (08:02 +0200)]
cache tokens for lambdas for speed
Kay-Uwe (Kiwi) Lorenz [Sat, 28 Jul 2018 07:15:50 +0000 (09:15 +0200)]
fix my flake issues
Kay-Uwe (Kiwi) Lorenz [Sat, 28 Jul 2018 07:01:17 +0000 (09:01 +0200)]
update README
Kay-Uwe (Kiwi) Lorenz [Sat, 28 Jul 2018 06:36:06 +0000 (08:36 +0200)]
implement #27 -- Lambdas
Noah Morrison [Sat, 21 Jul 2018 00:01:35 +0000 (20:01 -0400)]
Bump version (patch)
Noah Morrison [Fri, 20 Jul 2018 23:58:35 +0000 (19:58 -0400)]
Remove extra newline from cli
The render function already handles adding a newline
Noah Morrison [Sun, 17 Jun 2018 11:55:27 +0000 (07:55 -0400)]
Put the version string in one place
--version was getting outdated because I was forgetting to
update it.
Noah Morrison [Sat, 16 Jun 2018 14:22:54 +0000 (10:22 -0400)]
Bump version (minor)
Noah Morrison [Sat, 16 Jun 2018 14:14:34 +0000 (10:14 -0400)]
Merge pull request #25 from cclauss/patch-1
Python 2.6, 2.7, 3.2-3.6 in README.md, setup.py, and tox.ini
Noah Morrison [Sat, 16 Jun 2018 14:08:20 +0000 (10:08 -0400)]
Merge pull request #29 from lksnmnn/fix-utf8-encoding
fix(renderer): allow unicode for no-escape variables