]> jfr.im git - irc/weechat/qweechat.git/blobdiff - src/qweechat/config.py
Use one line titles and less chars for delimited blocks in asciidoc files
[irc/weechat/qweechat.git] / src / qweechat / config.py
index 120a4bb18b26f2d3aa86e1a349091bc0abc75e54..30930171e63a28dfd1dba28cf5052b9caf70223f 100644 (file)
@@ -1,7 +1,9 @@
 #!/usr/bin/python
 # -*- coding: utf-8 -*-
 #
-# Copyright (C) 2011-2012 Sebastien Helleu <flashcode@flashtux.org>
+# config.py - configuration for QWeeChat (~/.qweechat/qweechat.conf)
+#
+# Copyright (C) 2011-2013 Sebastien Helleu <flashcode@flashtux.org>
 #
 # This file is part of QWeeChat, a Qt remote GUI for WeeChat.
 #
 # along with QWeeChat.  If not, see <http://www.gnu.org/licenses/>.
 #
 
-#
-# Configuration for QWeeChat (~/.qweechat/qweechat.conf)
-#
-
 import os, ConfigParser
 import weechat.color as color
 
@@ -32,6 +30,7 @@ CONFIG_FILENAME = '%s/qweechat.conf' % CONFIG_DIR
 CONFIG_DEFAULT_SECTIONS = ('relay', 'look', 'color')
 CONFIG_DEFAULT_OPTIONS = (('relay.server', ''),
                           ('relay.port', ''),
+                          ('relay.ssl', 'off'),
                           ('relay.password', ''),
                           ('relay.autoconnect', 'off'),
                           ('look.debug', 'off'),
@@ -75,7 +74,14 @@ CONFIG_DEFAULT_COLOR_OPTIONS = (('separator', '#000066'), # 0
                                 ('chat_tags', '#000000'), # 34
                                 ('chat_inactive_window', '#000000'), # 35
                                 ('chat_inactive_buffer', '#000000'), # 36
-                                ('chat_prefix_buffer_inactive_buffer', '#000000')) # 37
+                                ('chat_prefix_buffer_inactive_buffer', '#000000'), # 37
+                                ('chat_nick_offline', '#000000'), # 38
+                                ('chat_nick_offline_highlight', '#000000'), # 39
+                                ('chat_nick_prefix', '#000000'), # 40
+                                ('chat_nick_suffix', '#000000'), # 41
+                                ('emphasis', '#000000'), # 42
+                                ('chat_day_change', '#000000'), #43
+                            )
 config_color_options = []