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
|
Source: tryton-modules-web-shortener
Section: python
Priority: optional
Maintainer: Debian Tryton Maintainers <team+tryton-team@tracker.debian.org>
Uploaders: Mathias Behrle <mathiasb@m9s.biz>
Build-Depends: debhelper-compat (= 13),
dh-python,
jdupes,
python3-all,
python3-setuptools,
python3-sphinx
Standards-Version: 4.7.0
Homepage: https://www.tryton.org/
Vcs-Git: https://salsa.debian.org/tryton-team/tryton-modules-web-shortener.git
Vcs-Browser: https://salsa.debian.org/tryton-team/tryton-modules-web-shortener
Rules-Requires-Root: no
Package: tryton-modules-web-shortener
Architecture: all
Depends: python3-sql,
tryton-server (>= ${version:major}),
${API},
${misc:Depends},
${python3:Depends},
${sphinxdoc:Depends}
Description: Tryton application platform - web shortener module
Tryton is a high-level general purpose application platform. It is the base
of a complete business solution as well as a comprehensive health and hospital
information system (GNUHealth).
.
The web_shortener module allows URLs to be shortened. It counts the number of
times the URL is accessed and optionally triggers action.
.
The module defines a route `/s/<shortened_id>`
which will redirect the queries to the URL registered previously with
`ShortenedURL.get_url`.
.
Models that need to be callable from a shortened URL must define the method
`shortened_url_execute`. This class method will be called from the underlying
queue with the record and the keywords arguments transmitted when calling
`get_url`.
.
Shortened URL
*************
.
- Shortened URL: The shortened URL
- Redirect URL: The URL the request is redirected to
- Record: The record on which `method` will be executed
- Method: The name of the method to call on `record`
- Count: The number of times this shortened URL has been triggered
.
Configuration
*************
.
The web_shortener modules uses the parameter from the section:
.
- `[web]`:
.
- `shortener_base`: The base URL without path for shortened URL.
The default value is composed with the configuration `[web]` `hostname`.
|