diff options
author | Per Andersson <avtobiff@gmail.com> | 2012-09-07 03:27:36 +0200 |
---|---|---|
committer | Per Andersson <avtobiff@gmail.com> | 2012-09-09 21:42:09 +0200 |
commit | e93c0910e79f7d156192e5e52f5df0ecc5b0c315 (patch) | |
tree | 43d99e04c1bfbe8175a6500c617895bf776e5f35 /debian/control | |
parent | 38dc3b8f231cf36bcc771001318556d9e84c2889 (diff) | |
download | python-bleach-e93c0910e79f7d156192e5e52f5df0ecc5b0c315.tar python-bleach-e93c0910e79f7d156192e5e52f5df0ecc5b0c315.tar.gz |
Initial packaging
Diffstat (limited to 'debian/control')
-rw-r--r-- | debian/control | 30 |
1 files changed, 30 insertions, 0 deletions
diff --git a/debian/control b/debian/control new file mode 100644 index 0000000..932e10d --- /dev/null +++ b/debian/control @@ -0,0 +1,30 @@ +Source: python-bleach +Section: python +Priority: optional +Maintainer: Per Andersson <avtobiff@gmail.com> +Standards-Version: 3.9.3 +Build-Depends: + debhelper (>= 7.0.50), + python (>= 2.6.6-9), + python-setuptools +Homepage: http://github.com/jsocol/bleach/ +Vcs-Git: git://git.debian.org/collab-maint/python-bleach.git +Vcs-Browser: http://git.debian.org/?p=collab-maint/python-bleach.git;a=summary + +Package: python-bleach +Architecture: all +Depends: ${misc:Depends}, ${python:Depends} +Description: whitelist-based HTML-sanitizing library + Bleach is an HTML sanitizing library that escapes or strips markup and + attributes based on a white list. Bleach can also linkify text safely, + applying filters that Django's urlize filter cannot, and optionally setting + rel attributes, even on links already in the text. + . + Bleach is intended for sanitizing text from untrusted sources. If you find + yourself jumping through hoops to allow your site administrators to do lots of + things, you're probably outside the use cases. Either trust those users, or + don't. + . + Because it relies on html5lib, Bleach is as good as modern browsers at dealing + with weird, quirky HTML fragments. And any of Bleach's methods will fix + unbalanced or mis-nested tags. |