.gajimrc in home's dir and email changed

This commit is contained in:
Yann Leboulanger 2003-10-23 09:54:19 +00:00
parent e470e520f9
commit 402ca97fcb
7 changed files with 16 additions and 11 deletions

View File

@ -4,7 +4,7 @@
## Gajim Team: ## Gajim Team:
## - Yann Le Boulanger <asterix@crans.org> ## - Yann Le Boulanger <asterix@crans.org>
## - Vincent Hanquez <tab@tuxfamily.org> ## - Vincent Hanquez <tab@tuxfamily.org>
## - David Ferlier <krp@yazzy.org> ## - David Ferlier <david@yazzy.org>
## ##
## Copyright (C) 2003 Gajim Team ## Copyright (C) 2003 Gajim Team
## ##

View File

@ -4,7 +4,7 @@
## Gajim Team: ## Gajim Team:
## - Yann Le Boulanger <asterix@crans.org> ## - Yann Le Boulanger <asterix@crans.org>
## - Vincent Hanquez <tab@tuxfamily.org> ## - Vincent Hanquez <tab@tuxfamily.org>
## - David Ferlier <krp@yazzy.org> ## - David Ferlier <david@yazzy.org>
## ##
## Copyright (C) 2003 Gajim Team ## Copyright (C) 2003 Gajim Team
## ##

View File

@ -4,7 +4,7 @@
## Gajim Team: ## Gajim Team:
## - Yann Le Boulanger <asterix@crans.org> ## - Yann Le Boulanger <asterix@crans.org>
## - Vincent Hanquez <tab@tuxfamily.org> ## - Vincent Hanquez <tab@tuxfamily.org>
## - David Ferlier <krp@yazzy.org> ## - David Ferlier <david@yazzy.org>
## ##
## Copyright (C) 2003 Gajim Team ## Copyright (C) 2003 Gajim Team
## ##

View File

@ -4,7 +4,7 @@
## Gajim Team: ## Gajim Team:
## - Yann Le Boulanger <asterix@crans.org> ## - Yann Le Boulanger <asterix@crans.org>
## - Vincent Hanquez <tab@tuxfamily.org> ## - Vincent Hanquez <tab@tuxfamily.org>
## - David Ferlier <krp@yazzy.org> ## - David Ferlier <david@yazzy.org>
## ##
## Copyright (C) 2003 Gajim Team ## Copyright (C) 2003 Gajim Team
## ##

View File

@ -4,7 +4,7 @@
## Gajim Team: ## Gajim Team:
## - Yann Le Boulanger <asterix@crans.org> ## - Yann Le Boulanger <asterix@crans.org>
## - Vincent Hanquez <tab@tuxfamily.org> ## - Vincent Hanquez <tab@tuxfamily.org>
## - David Ferlier <krp@yazzy.org> ## - David Ferlier <david@yazzy.org>
## ##
## Copyright (C) 2003 Gajim Team ## Copyright (C) 2003 Gajim Team
## ##
@ -21,6 +21,7 @@
import Queue import Queue
import socket import socket
import sys import sys
import os
import time import time
import logging import logging
@ -31,7 +32,11 @@ import common.optparser
log = logging.getLogger('core.core') log = logging.getLogger('core.core')
log.setLevel(logging.DEBUG) 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: class GajimCore:
def __init__(self): def __init__(self):

View File

@ -4,7 +4,7 @@
## Gajim Team: ## Gajim Team:
## - Yann Le Boulanger <asterix@crans.org> ## - Yann Le Boulanger <asterix@crans.org>
## - Vincent Hanquez <tab@tuxfamily.org> ## - Vincent Hanquez <tab@tuxfamily.org>
## - David Ferlier <krp@yazzy.org> ## - David Ferlier <david@yazzy.org>
## ##
## Copyright (C) 2003 Gajim Team ## Copyright (C) 2003 Gajim Team
## ##
@ -225,7 +225,7 @@ class roster:
self.optionmenu = self.xml.get_widget('optionmenu') self.optionmenu = self.xml.get_widget('optionmenu')
self.optionmenu.set_history(6) self.optionmenu.set_history(6)
self.tab_messages = {} self.tab_messages = {}
self.showOffline=1 self.showOffline=0
#colonnes #colonnes
self.col = gtk.TreeViewColumn() self.col = gtk.TreeViewColumn()

View File

@ -2,9 +2,9 @@
## runCore.py ## runCore.py
## ##
## Gajim Team: ## Gajim Team:
## - Yann Le Boulanger <asterix@crans.org> ## - Yann Le Boulanger <asterix@@crans.org>
## - Vincent Hanquez <tab@tuxfamily.org> ## - Vincent Hanquez <tab@@tuxfamily.org>
## - David Ferlier <krp@yazzy.org> ## - David Ferlier <david@@yazzy.org>
## ##
## Copyright (C) 2003 Gajim Team ## Copyright (C) 2003 Gajim Team
## ##