Set restore timeout inactiv, this should be really an advanced option, probably only set for specific MUCs not as default for every MUC. Set restore_lines to 10, so the User has an indication that Gajim can display history, and that there is probably a setting to adjust. Set muc_restore_lines to 100, this is a try to get a reasonable amount of history, especially in small Groupchats. Most server will limit this to 20-50 anyway. The limit 100 is more of a precaution if we run into a misconfigured server. This is intended as a workaround until we can implement MAM for Groupchats.
44 lines
1.4 KiB
Python
44 lines
1.4 KiB
Python
# -*- coding:utf-8 -*-
|
|
## src/common/defs.py
|
|
##
|
|
## Copyright (C) 2006 Nikos Kouremenos <kourem AT gmail.com>
|
|
## Copyright (C) 2006-2014 Yann Leboulanger <asterix AT lagaule.org>
|
|
## Copyright (C) 2006-2008 Jean-Marie Traissard <jim AT lapin.org>
|
|
## Copyright (C) 2007 Brendan Taylor <whateley AT gmail.com>
|
|
## Tomasz Melcer <liori AT exroot.org>
|
|
## Copyright (C) 2008 Jonathan Schleifer <js-gajim AT webkeks.org>
|
|
##
|
|
## This file is part of Gajim.
|
|
##
|
|
## Gajim is free software; you can redistribute it and/or modify
|
|
## it under the terms of the GNU General Public License as published
|
|
## by the Free Software Foundation; version 3 only.
|
|
##
|
|
## Gajim is distributed in the hope that it will be useful,
|
|
## but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
## MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
## GNU General Public License for more details.
|
|
##
|
|
## You should have received a copy of the GNU General Public License
|
|
## along with Gajim. If not, see <http://www.gnu.org/licenses/>.
|
|
##
|
|
|
|
import subprocess
|
|
import sys
|
|
import os.path
|
|
|
|
docdir = '../'
|
|
basedir = '../'
|
|
localedir = '../po'
|
|
version = '0.16.10.5'
|
|
|
|
try:
|
|
node = subprocess.Popen('git rev-parse --short=12 HEAD', shell=True,
|
|
stdout=subprocess.PIPE).communicate()[0]
|
|
if node:
|
|
version += '-' + node.decode('utf-8').strip()
|
|
except Exception:
|
|
pass
|
|
|
|
for base in ('.', 'common'):
|
|
sys.path.append(os.path.join(base, '.libs'))
|