Mercurial > libervia-backend
comparison src/core/constants.py @ 2123:c42aab22c2c0
plugin XEP-0054, quick frontend(app): various improvments:
- memory.cache is now used
- getAvatar and setAvatar has been renamed to avatarGet and avatarSet to follow new convention
- getAvatar now return (optionally) full path, and may request vCard or only return avatar in cache
- getAvatarFile has been removed as it is not needed anymore (avatarGet can return full path)
- getCard has been removed from bridge as it was only used to request avatar
- new internal method getBareOfFull return jid to use depending of the jid being part of a MUC or not
- cache is now set per profile in client, instead of a general one for all profiles
- thanks to the use of memory.cache, correct extension is now used in saved file, according to MIME type
- fixed and better cache handling
- a warning message is shown if given avatar hash differs from computed one
- empty hash value is now in a constant, and ignored if received
- QuickApp has been updated to follow new behaviour
- Primitivus has been fixed (it was not declaring not using avatars correclty)
- jp has been updated to follow new methods name
author | Goffi <goffi@goffi.org> |
---|---|
date | Sun, 15 Jan 2017 17:51:37 +0100 |
parents | 85f3e12e984d |
children | 2f264f3df280 |
comparison
equal
deleted
inserted
replaced
2122:3970ebcf8830 | 2123:c42aab22c2c0 |
---|---|
283 IQ_SET = '/iq[@type="set"]' | 283 IQ_SET = '/iq[@type="set"]' |
284 ENV_PREFIX = 'SAT_' # Prefix used for environment variables | 284 ENV_PREFIX = 'SAT_' # Prefix used for environment variables |
285 IGNORE = 'ignore' | 285 IGNORE = 'ignore' |
286 NO_LIMIT = -1 # used in bridge when a integer value is expected | 286 NO_LIMIT = -1 # used in bridge when a integer value is expected |
287 DEFAULT_MAX_AGE = 1209600 # default max age of cached files, in seconds | 287 DEFAULT_MAX_AGE = 1209600 # default max age of cached files, in seconds |
288 HASH_SHA1_EMPTY = 'da39a3ee5e6b4b0d3255bfef95601890afd80709' | |
288 | 289 |
289 | 290 |
290 ## ANSI escape sequences ## | 291 ## ANSI escape sequences ## |
291 # XXX: used for logging | 292 # XXX: used for logging |
292 # XXX: they will be probably moved in a dedicated module in the future | 293 # XXX: they will be probably moved in a dedicated module in the future |