aboutsummaryrefslogtreecommitdiff
path: root/debian/control
blob: 112b17f9cc83d228f8f8e373782ada6bfb940cff (plain)
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
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-all (>= 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.