File: PKG-INFO

package info (click to toggle)
jinja 1.2-3
  • links: PTS, VCS
  • area: main
  • in suites: squeeze
  • size: 1,412 kB
  • ctags: 1,171
  • sloc: python: 6,438; ansic: 397; makefile: 74
file content (74 lines) | stat: -rw-r--r-- 2,864 bytes parent folder | download | duplicates (4)
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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
Metadata-Version: 1.0
Name: Jinja
Version: 1.2
Summary: A small but fast and easy to use stand-alone template engine written in pure python.
Home-page: http://jinja.pocoo.org/
Author: Armin Ronacher
Author-email: armin.ronacher@active-4.com
License: BSD
Description: jinja
        ~~~~~
        
        Jinja is a `sandboxed`_ template engine written in pure Python. It
        provides a `Django`_ like non-XML syntax and compiles templates into
        executable python code. It's basically a combination of Django templates
        and python code.
        
        Nutshell
        --------
        
        Here a small example of a Jinja template::
        
        {% extends 'base.html' %}
        {% block title %}Memberlist{% endblock %}
        {% block content %}
        <ul>
        {% for user in users %}
        <li><a href="{{ user.url|e }}">{{ user.username|e }}</a></li>
        {% endfor %}
        </ul>
        {% endblock %}
        
        Philosophy
        ----------
        
        Application logic is for the controller but don't try to make the life
        for the template designer too hard by giving him too few functionality.
        
        For more informations visit the new `jinja webpage`_ and `documentation`_.
        
        Note
        ----
        
        This is the Jinja 1.0 release which is completely incompatible with the
        old "pre 1.0" branch. The old branch will still receive security updates
        and bugfixes but the 1.0 branch will be the only version that receives
        support.
        
        If you have an application that uses Jinja 0.9 and won't be updated in
        the near future the best idea is to ship a Jinja 0.9 checkout together
        with the application.
        
        The `Jinja tip`_ is installable via `easy_install` with ``easy_install
        Jinja==dev``.
        
        .. _sandboxed: http://en.wikipedia.org/wiki/Sandbox_(computer_security)
        .. _Django: http://www.djangoproject.com/
        .. _jinja webpage: http://jinja.pocoo.org/
        .. _documentation: http://jinja.pocoo.org/documentation/index.html
        .. _Jinja tip: http://dev.pocoo.org/hg/jinja-main/archive/tip.tar.gz#egg=Jinja-dev
        
        
        :copyright: 2007 by Armin Ronacher.
        :license: BSD, see LICENSE for more details.
Keywords: python.templating.engines
Platform: UNKNOWN
Classifier: Development Status :: 5 - Production/Stable
Classifier: Environment :: Web Environment
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: BSD License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python
Classifier: Topic :: Internet :: WWW/HTTP :: Dynamic Content
Classifier: Topic :: Software Development :: Libraries :: Python Modules
Classifier: Topic :: Text Processing :: Markup :: HTML