Metadata-Version: 2.0
Name: zope.tales
Version: 4.2.0
Summary: Zope Template Application Language Expression Syntax (TALES)
Home-page: http://github.com/zopefoundation/zope.tales
Author: Zope Foundation and Contributors
Author-email: zope-dev@zope.org
License: ZPL 2.1
Description-Content-Type: UNKNOWN
Keywords: zope template xml tales
Platform: UNKNOWN
Classifier: Development Status :: 5 - Production/Stable
Classifier: Environment :: Web Environment
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: Zope Public License
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 2
Classifier: Programming Language :: Python :: 2.7
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.4
Classifier: Programming Language :: Python :: 3.5
Classifier: Programming Language :: Python :: 3.6
Classifier: Programming Language :: Python :: Implementation :: CPython
Classifier: Programming Language :: Python :: Implementation :: PyPy
Classifier: Natural Language :: English
Classifier: Operating System :: OS Independent
Classifier: Topic :: Internet :: WWW/HTTP
Classifier: Framework :: Zope3
Requires-Dist: setuptools
Requires-Dist: zope.interface
Requires-Dist: six
Provides-Extra: tal
Requires-Dist: zope.tal; extra == 'tal'
Provides-Extra: test
Requires-Dist: zope.testing; extra == 'test'
Requires-Dist: zope.testrunner; extra == 'test'

================
 ``zope.tales``
================

.. image:: https://img.shields.io/pypi/v/zope.tales.svg
        :target: https://pypi.python.org/pypi/zope.tales/
        :alt: Latest release

.. image:: https://img.shields.io/pypi/pyversions/zope.tales.svg
        :target: https://pypi.org/project/zope.tales/
        :alt: Supported Python versions

.. image:: https://travis-ci.org/zopefoundation/zope.tales.png?branch=master
        :target: https://travis-ci.org/zopefoundation/zope.tales

.. image:: https://coveralls.io/repos/github/zopefoundation/zope.tales/badge.svg?branch=master
        :target: https://coveralls.io/github/zopefoundation/zope.tales?branch=master

Template Attribute Language - Expression Syntax

See

* http://web.archive.org/web/20120814103624/http://wiki.zope.org:80/ZPT/TALESSpecification13
* https://docs.zope.org/zope2/zope2book/AppendixC.html#tales-overview


=========
 Changes
=========

4.2.0 (2017-09-22)
==================

- Add support for Python 3.5 and 3.6.

- Drop support for Python 2.6, 3.2 and 3.3.

- Drop support for ``python setup.py test``.

- Reach 100% test coverage and maintain it via tox.ini and Travis CI.

4.1.1 (2015-06-06)
==================

- Add support for Python 3.2 and PyPy3.


4.1.0 (2014-12-29)
==================

.. note::

   Support for PyPy3 is pending release of a fix for:
   https://bitbucket.org/pypy/pypy/issue/1946

- Add support for Python 3.4.

- Add support for testing on Travis.


4.0.2 (2013-11-12)
==================

- Add missing ``six`` dependency


4.0.1 (2013-02-22)
==================

- Fix a previously untested Python 3.3 compatibility problem.


4.0.0 (2013-02-14)
==================

- Remove hard dependency on ``zope.tal``, which was already conditionalized
  but required via ``setup.py``.

- Add support for Python 3.3 and PyPy.

- Replace deprecated ``zope.interface.implements`` usage with equivalent
  ``zope.interface.implementer`` decorator.

- Drop support for Python 2.4 and 2.5.

- Fix documentation link in README.txt


3.5.2 (2012-05-23)
==================

- Subexpressions of a 'string:' expression can be only path expressions.
  https://bugs.launchpad.net/zope.tales/+bug/1002242


3.5.1 (2010-04-30)
==================

- Remove use of ``zope.testing.doctestunit`` in favor of stdlib's 'doctest.


3.5.0 (2010-01-01)
==================

- Port the lazy expression from ``Products.PageTemplates``.


3.4.0 (2007-10-03)
==================

- Update package setup.

- Initial release outside the Zope 3 trunk.


3.2.0 (2006-01-05)
==================

- Corresponds to the verison of the zope.tales package shipped as part of
  the Zope 3.2.0 release.

- Documentation / test fixes.


3.0.0 (2004-11-07)
==================

- Corresponds to the verison of the zope.tales package shipped as part of
  the Zope X3.0.0 release.


