File: glossary.rst

package info (click to toggle)
python-pyramid-chameleon 0.3-8
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 356 kB
  • sloc: python: 976; makefile: 82
file content (29 lines) | stat: -rw-r--r-- 1,406 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
.. _glossary:

Glossary
========

.. glossary::
    :sorted:

    Babel
        A `collection of tools <https://babel.pocoo.org/en/latest/>`_ for internationalizing Python applications.
        :app:`Pyramid` does not depend on Babel to operate, but if Babel is installed, additional locale functionality becomes available to your application.

    Chameleon
        `Chameleon <https://chameleon.readthedocs.io/en/latest/>`_ is an open-source template engine written in `Python <https://www.python.org>`_.

    Genshi
        An `XML templating language <https://pypi.org/project/Genshi/>`_ by Christopher Lenz.

    Mako
        `Mako <https://www.makotemplates.org/>`_ is a template language which refines the familiar ideas of componentized layout and inheritance using Python with Python scoping and calling semantics.

    Response
        An object returned by a view callable that represents response data returned to the requesting user agent.
        It must implement the :class:`pyramid.interfaces.IResponse` interface.
        A response object is typically an instance of the :class:`pyramid.response.Response` class or a subclass such as :class:`pyramid.httpexceptions.HTTPFound`.
        See :ref:`pyramid:webob_chapter` for information about response objects.

    ZPT
        ZPT is the `Zope Page Template <https://zope.readthedocs.io/en/latest/zopebook/ZPT.html>`_ templating language.