Skip to content
Snippets Groups Projects
Commit 402ca97f authored by Yann Leboulanger's avatar Yann Leboulanger
Browse files

.gajimrc in home's dir and email changed

parent e470e520
No related branches found
No related tags found
No related merge requests found
......@@ -4,7 +4,7 @@
## Gajim Team:
## - Yann Le Boulanger <asterix@crans.org>
## - Vincent Hanquez <tab@tuxfamily.org>
## - David Ferlier <krp@yazzy.org>
## - David Ferlier <david@yazzy.org>
##
## Copyright (C) 2003 Gajim Team
##
......
......@@ -4,7 +4,7 @@
## Gajim Team:
## - Yann Le Boulanger <asterix@crans.org>
## - Vincent Hanquez <tab@tuxfamily.org>
## - David Ferlier <krp@yazzy.org>
## - David Ferlier <david@yazzy.org>
##
## Copyright (C) 2003 Gajim Team
##
......
......@@ -4,7 +4,7 @@
## Gajim Team:
## - Yann Le Boulanger <asterix@crans.org>
## - Vincent Hanquez <tab@tuxfamily.org>
## - David Ferlier <krp@yazzy.org>
## - David Ferlier <david@yazzy.org>
##
## Copyright (C) 2003 Gajim Team
##
......
......@@ -4,7 +4,7 @@
## Gajim Team:
## - Yann Le Boulanger <asterix@crans.org>
## - Vincent Hanquez <tab@tuxfamily.org>
## - David Ferlier <krp@yazzy.org>
## - David Ferlier <david@yazzy.org>
##
## Copyright (C) 2003 Gajim Team
##
......
......@@ -4,7 +4,7 @@
## Gajim Team:
## - Yann Le Boulanger <asterix@crans.org>
## - Vincent Hanquez <tab@tuxfamily.org>
## - David Ferlier <krp@yazzy.org>
## - David Ferlier <david@yazzy.org>
##
## Copyright (C) 2003 Gajim Team
##
......@@ -21,6 +21,7 @@
import Queue
import socket
import sys
import os
import time
import logging
......@@ -31,7 +32,11 @@ import common.optparser
log = logging.getLogger('core.core')
log.setLevel(logging.DEBUG)
CONFPATH = ".gajimrc"
if 'HOME' in os.environ:
home = os.environ['HOME']
elif os.name == 'posix':
home = os.path.expanduser("~/")
CONFPATH = os.path.join(home,".gajimrc")
class GajimCore:
def __init__(self):
......
......@@ -4,7 +4,7 @@
## Gajim Team:
## - Yann Le Boulanger <asterix@crans.org>
## - Vincent Hanquez <tab@tuxfamily.org>
## - David Ferlier <krp@yazzy.org>
## - David Ferlier <david@yazzy.org>
##
## Copyright (C) 2003 Gajim Team
##
......@@ -225,7 +225,7 @@ class roster:
self.optionmenu = self.xml.get_widget('optionmenu')
self.optionmenu.set_history(6)
self.tab_messages = {}
self.showOffline=1
self.showOffline=0
#colonnes
self.col = gtk.TreeViewColumn()
......
......@@ -2,9 +2,9 @@
## runCore.py
##
## Gajim Team:
## - Yann Le Boulanger <asterix@crans.org>
## - Vincent Hanquez <tab@tuxfamily.org>
## - David Ferlier <krp@yazzy.org>
## - Yann Le Boulanger <asterix@@crans.org>
## - Vincent Hanquez <tab@@tuxfamily.org>
## - David Ferlier <david@@yazzy.org>
##
## Copyright (C) 2003 Gajim Team
##
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment