[Python-modules-commits] r2483 - in /packages/jinja/trunk/debian: NEWS changelog control copyright
piotr at users.alioth.debian.org
piotr at users.alioth.debian.org
Wed May 30 20:16:33 UTC 2007
Author: piotr
Date: Wed May 30 20:16:33 2007
New Revision: 2483
URL: http://svn.debian.org/wsvn/python-modules/?sc=1&rev=2483
Log:
* New upstream release
* Description rewritten
* Removed python-xml from Recommends (no longer used) and added python-simplejson
* Changed my address to piotr at debian.org
Added:
packages/jinja/trunk/debian/NEWS
Modified:
packages/jinja/trunk/debian/changelog
packages/jinja/trunk/debian/control
packages/jinja/trunk/debian/copyright
Added: packages/jinja/trunk/debian/NEWS
URL: http://svn.debian.org/wsvn/python-modules/packages/jinja/trunk/debian/NEWS?rev=2483&op=file
==============================================================================
--- packages/jinja/trunk/debian/NEWS (added)
+++ packages/jinja/trunk/debian/NEWS Wed May 30 20:16:33 2007
@@ -1,0 +1,7 @@
+jinja (1.0-1) unstable; urgency=low
+
+ Please note that Jinja 1.0 is completely incompatible with the old "pre 1.0"
+ branch. Migration notes can be found on the following site:
+ http://wsgiarea.pocoo.org/jinja/upgrade.html
+
+ -- Piotr Ożarowski <piotr at debian.org> Wed, 30 May 2007 20:52:51 +0200
Modified: packages/jinja/trunk/debian/changelog
URL: http://svn.debian.org/wsvn/python-modules/packages/jinja/trunk/debian/changelog?rev=2483&op=diff
==============================================================================
--- packages/jinja/trunk/debian/changelog (original)
+++ packages/jinja/trunk/debian/changelog Wed May 30 20:16:33 2007
@@ -1,9 +1,13 @@
-jinja (0.9-3) UNRELEASED; urgency=low
+jinja (1.0-1) unstable; urgency=low
- * Fixed typo in long description (closes: #400711)
+ * New upstream release
+ * Description rewritten (closes: #400711)
* XS-Vcs-Svn points to repository with anonymous access
+ * Removed python-xml from Recommends (no longer used)
+ and added python-simplejson
+ * Changed my address to piotr at debian.org
- -- Piotr Ozarowski <ozarow at gmail.com> Tue, 28 Nov 2006 10:26:02 +0100
+ -- Piotr Ożarowski <piotr at debian.org> Wed, 30 May 2007 20:48:47 +0200
jinja (0.9-2) unstable; urgency=low
Modified: packages/jinja/trunk/debian/control
URL: http://svn.debian.org/wsvn/python-modules/packages/jinja/trunk/debian/control?rev=2483&op=diff
==============================================================================
--- packages/jinja/trunk/debian/control (original)
+++ packages/jinja/trunk/debian/control Wed May 30 20:16:33 2007
@@ -1,7 +1,7 @@
Source: jinja
Section: python
Priority: optional
-Maintainer: Piotr Ozarowski <ozarow at gmail.com>
+Maintainer: Piotr Ożarowski <piotr at debian.org>
Uploaders: Debian Python Modules Team <python-modules-team at lists.alioth.debian.org>
Build-Depends: debhelper (>= 5.0.38)
Build-Depends-Indep: python (>= 2.3.5-11), python-all-dev, python-central (>= 0.5.6), python-setuptools (>= 0.6b3-1)
@@ -12,14 +12,33 @@
Package: python-jinja
Architecture: all
Depends: ${python:Depends}
-Recommends: python-textile (>=2.0.10-3.1), python-markdown (>=1.4-2), python-xml (>= 0.8.4-5), python-setuptools (>= 0.6b3-1)
+Recommends: python-textile (>=2.0.10-3.1), python-markdown (>=1.4-2),
+ python-simplejson (>= 1.1-1.1), python-setuptools (>= 0.6b3-1)
XB-Python-Version: ${python:Versions}
-Description: simple pythonic template language
- Jinja is a text-based template language similar to Cheetah and Smarty.
- The syntax and parts of the code were taken from the django template.
+Description: small but fast and easy to use stand-alone template engine
+ Jinja 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.
.
- Like the django template, Jinja tries to simplify templating but provide a
- powerful syntax. The idea is to remove all application logic from the
- template.
+ 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.
.
- Homepage: http://wsgiarea.pocoo.org/jinja/
+ Features:
+ * Simple API.
+ * Extremely lightweight.
+ * The whole engine is completely sandboxed. A template designer won't be able
+ to modify application data or execute dangerous code
+ * You can use nearly every Python expression. Not supported are the binary
+ operators and list comprehensions / generator expressions.
+ * Uses the same concept for inheritance Django uses. It's very powerful
+ and easy to understand.
+ * Provides so called macros that allow you to put often used template
+ snippets into callable blocks
+ * Designer friendly. Jinja simplifies many things for a template designer.
+ Loops can be used in a recursive way, filters are available to format
+ values, loops know about their iteration etc.
+ * Dynamic syntax. You don't like the Django block syntax? You can override
+ the syntax elements on environment initialisation. It's no problem to use
+ ASP/PHP/Ruby syntax, html comments for blocks etc.
+ .
+ Homepage: http://jinja.pocoo.org/
Modified: packages/jinja/trunk/debian/copyright
URL: http://svn.debian.org/wsvn/python-modules/packages/jinja/trunk/debian/copyright?rev=2483&op=diff
==============================================================================
--- packages/jinja/trunk/debian/copyright (original)
+++ packages/jinja/trunk/debian/copyright Wed May 30 20:16:33 2007
@@ -1,4 +1,4 @@
-This package was debianized by Piotr Ozarowski <ozarow at gmail.com> on
+This package was debianized by Piotr Ożarowski <piotr at debian.org> on
Thu, 29 Jul 2006 16:57:00 +0200.
It was downloaded from http://wsgiarea.pocoo.org/jinja/dist/
@@ -7,12 +7,12 @@
License: BSD
-Copyright (c) 2005 Armin Ronacher
+Copyright (c) 2005-2007 Armin Ronacher
On Debian systems, the complete text of the BSD License
can be found in `/usr/share/common-licenses/BSD'
-The Debian packaging is (C) 2006, Piotr Ozarowski <ozarow at gmail.com> and
+The Debian packaging is (C) 2006-2007, Piotr Ożarowski <piotr at debian.org> and
is licensed under the GPL.
On Debian systems, the complete text of the GNU General Public License
More information about the Python-modules-commits
mailing list