File: control

package info (click to toggle)
django-markupfield 1.4.1-1
  • links: PTS, VCS
  • area: main
  • in suites: stretch
  • size: 192 kB
  • ctags: 122
  • sloc: python: 577; makefile: 16
file content (67 lines) | stat: -rw-r--r-- 2,781 bytes parent folder | download
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
Source: django-markupfield
Maintainer: Debian Python Modules Team <python-modules-team@lists.alioth.debian.org>
Uploaders: Michael Fladischer <fladi@debian.org>
Section: python
Priority: optional
Build-Depends: debhelper (>= 9),
               dh-python,
               python-all,
               python-django (>= 1.8),
               python-docutils,
               python-markdown,
               python-setuptools,
               python3-all,
               python3-babel,
               python3-django (>= 1.8),
               python3-docutils,
               python3-markdown,
               python3-setuptools
Standards-Version: 3.9.8
Vcs-Browser: https://anonscm.debian.org/cgit/python-modules/packages/django-markupfield.git
Vcs-Git: https://anonscm.debian.org/git/python-modules/packages/django-markupfield.git
Homepage: https://pypi.python.org/pypi/django-markupfield/
X-Python-Version: >= 2.7
X-Python3-Version: >= 3.4

Package: python-django-markupfield
Architecture: all
Depends: python-django (>= 1.8),
         ${misc:Depends},
         ${python:Depends}
Suggests: python-docutils,
          python-markdown,
          python-textile
Description: custom Django field for easy use of markup in text fields
 An implementation of a custom MarkupField for Django. A MarkupField is in
 essence a TextField with an associated markup type. The field also caches
 its rendered value.
 .
 It supports these markup types by default:
  * html: allows HTML, potentially unsafe
  * plain: plain text markup, calls urlize and replaces text with linebreaks
 And these markups if the appropriate Python module is installed:
  * markdown: default markdown renderer (requires python-markdown)
  * restructuredtext: default ReST renderer (requires python-docutils)
  * textile: default textile renderer (requires python-textile)

Package: python3-django-markupfield
Architecture: all
Depends: python3-django (>= 1.8),
         ${misc:Depends},
         ${python3:Depends}
Suggests: python3-docutils,
          python3-markdown
Description: custom Django field for easy use of markup in text fields (Python3 version)
 An implementation of a custom MarkupField for Django. A MarkupField is in
 essence a TextField with an associated markup type. The field also caches
 its rendered value.
 .
 It supports these markup types by default:
  * html: allows HTML, potentially unsafe
  * plain: plain text markup, calls urlize and replaces text with linebreaks
 And these markups if the appropriate Python module is installed:
  * markdown: default markdown renderer (requires python-markdown)
  * restructuredtext: default ReST renderer (requires python-docutils)
  * textile: default textile renderer (requires python-textile)
 .
 This package contains the Python 3 version of the library.