Accepting request 693919 from home:jengelh:branches:devel:languages:python

- Trim bias from descriptions. Make sure % is escaped.

OBS-URL: https://build.opensuse.org/request/show/693919
OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-Jinja2?expand=0&rev=67
This commit is contained in:
Tomáš Chvátal 2019-04-15 09:38:14 +00:00 committed by Git OBS Bridge
parent 45d9838fa2
commit 08a1273b8f
2 changed files with 12 additions and 7 deletions

View File

@ -1,3 +1,8 @@
-------------------------------------------------------------------
Sat Apr 13 16:46:23 UTC 2019 - Jan Engelhardt <jengelh@inai.de>
- Trim bias from descriptions. Make sure % is escaped.
------------------------------------------------------------------- -------------------------------------------------------------------
Sat Apr 13 03:06:31 UTC 2019 - Arun Persaud <arun@gmx.de> Sat Apr 13 03:06:31 UTC 2019 - Arun Persaud <arun@gmx.de>

View File

@ -21,7 +21,7 @@
Name: python-Jinja2 Name: python-Jinja2
Version: 2.10.1 Version: 2.10.1
Release: 0 Release: 0
Summary: A fast and easy to use template engine written in pure Python Summary: A template engine written in pure Python
License: BSD-3-Clause License: BSD-3-Clause
Group: Development/Languages/Python Group: Development/Languages/Python
URL: http://jinja.pocoo.org/ URL: http://jinja.pocoo.org/
@ -45,15 +45,15 @@ Jinja2 is a template engine written in pure Python. It provides a Django
inspired non-XML syntax but supports inline expressions and an optional inspired non-XML syntax but supports inline expressions and an optional
sandboxed environment. Here a small example of a Jinja template: sandboxed environment. Here a small example of a Jinja template:
{% extends 'base.html' %} {%% extends 'base.html' %%}
{% block title %}Memberlist{% endblock %} {%% block title %%}Memberlist{%% endblock %%}
{% block content %} {%% block content %%}
<ul> <ul>
{% for user in users %} {%% for user in users %%}
<li><a href="{{ user.url }}">{{ user.username }}</a></li> <li><a href="{{ user.url }}">{{ user.username }}</a></li>
{% endfor %} {%% endfor %%}
</ul> </ul>
{% endblock %} {%% endblock %%}
%package -n python-Jinja2-vim %package -n python-Jinja2-vim
Summary: Jinja2 syntax files for Vim Summary: Jinja2 syntax files for Vim