File: quvi-modules.7.txt

package info (click to toggle)
libquvi-scripts 0.9.20131130-3
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, sid, trixie
  • size: 2,828 kB
  • sloc: sh: 11,744; ansic: 2,587; makefile: 226
file content (81 lines) | stat: -rw-r--r-- 2,312 bytes parent folder | download | duplicates (3)
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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
quvi-modules(7)
===============

NAME
----
quvi-modules - Overview of the loadable quvi modules

DESCRIPTION
-----------
'quvi-modules' are a selection of importable modules implemented in Lua.
These modules are intended to be loaded ('require') from the
linkman:libquvi-scripts[7].

Many of the modules are documented within the code. Refer to the
individual modules for their detailed description of different
available functions.

The modules are usually installed at::
  $prefix/share/libquvi-scripts/$major_ver.$minor_ver/common/quvi/

MODULES
-------

quvi/http/cookie::
  A set of functions that wrap most of the quvi.http.cookie function
  features. See linkman:quvi-object[7].

quvi/const::
  Constants. Technically, (due to Lua language specification) these are
  not immutable values. The 'constants' are used to interact with
  libquvi, e.g. specifying function operation modes and checking for
  returned libquvi return codes.

quvi/debug::
  An message output facility intended to be used for debugging purposes.
  By 'default', all output from scripts using this facility remain
  'disabled'. To enable the output, define the LIBQUVI_SCRIPTS_VERBOSE
  environment variable.

quvi/entity::
  HTML entity conversion module. Converts the 'standard HTML entities'
  (to ASCII), and any numeric HTML entities to UTF-8 (using the
  'quvi/html' module).

quvi/hash::
  Wrapper functions for some of the common hash (message digest)
  functions provided by the linkman:quvi-object[7]. Note that these
  functions convert the given data into hexadecimal form before passing
  it to the hash functions.

quvi/hex::
  Functions for converting values from and to hexadecimal form. These
  are typically used together with the linkman:quvi-object[7] crypto
  functions.

quvi/html::
  Converts numeric HTML entities to UTF-8. See also 'quvi/entity', which
  uses this module.

quvi/lxph::
  LuaExpat wrapper/utility functions for parsing XML, see also
  linkman:quvi-modules-3rdparty[7].

quvi/stream::
  Media stream related functions.

quvi/time::
  Time related functions.

quvi/util::
  Misc. utility functions.

quvi/youtube::
  Functions common to YouTube.

SEE ALSO
--------
linkman:libquvi-scripts[7], linkman:libquvi[3], linkman:quvi-object[7],
linkman:quvi-modules-3rdparty[7]

include::footer.txt[]