Beispiel #1
0
def ircrypt_config_reload_cb(data, config_file):
    '''Handle a reload of the configuration file.
	'''
    global ircrypt_keys, ircrypt_cipher
    # Forget Keys and ciphers to make sure they are properly reloaded and no old
    # ones are left
    ircrypt_keys = {}
    ircrypt_cipher = {}
    return weechat.config_reload(config_file)
Beispiel #2
0
def ircrypt_config_reload_cb(data, config_file):
	'''Handle a reload of the configuration file.
	'''
	global ircrypt_keys, ircrypt_cipher
	# Forget Keys and ciphers to make sure they are properly reloaded and no old
	# ones are left
	ircrypt_keys   = {}
	ircrypt_cipher = {}
	return weechat.config_reload(config_file)
Beispiel #3
0
def fish_config_reload_cb(data, config_file):
    return weechat.config_reload(config_file)
Beispiel #4
0
def fish_config_reload_cb(data, config_file):
    return weechat.config_reload(config_file)
Beispiel #5
0
def webex_config_reload_cb(data, config_file):
    """ Reload config file. """
    return weechat.config_reload(config_file)
Beispiel #6
0
def ug_config_reload_cb(data, config_file):
    """ Reload configuration file. """
    return weechat.config_reload(config_file)
Beispiel #7
0
def bas_config_reload_cb(data, config_file):
    """Reload configuration file."""
    return weechat.config_reload(config_file)
Beispiel #8
0
def execbot_config_reload_cb(data, config_file):
    '''Handle a reload of the configuration file.'''
    global execbot_allows
    execbot_allows   = {}
    return weechat.config_reload(config_file)
Beispiel #9
0
def execbot_config_reload_cb(data, config_file):
    '''Handle a reload of the configuration file.'''
    global execbot_allows
    execbot_allows   = {}
    return weechat.config_reload(config_file)
Beispiel #10
0
def my_config_reload_cb():
    return weechat.config_reload(config_file)
Beispiel #11
0
def crypt_config_reload(data, config_file):
    global crypt_last_msg_type, crypt_ciphers
    crypt_last_msg_type = {}
    crypt_ciphers = {}
    return weechat.config_reload(config_file)
Beispiel #12
0
def my_config_reload_cb():
    return weechat.config_reload(config_file)