Update of /cvsroot/gmailagent/GA-main
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv26598
Modified Files:
Gmail.py GuiQT.py INSTALL
Removed Files:
libgmail.py
Log Message:
minor fixes
Index: GuiQT.py
===================================================================
RCS file: /cvsroot/gmailagent/GA-main/GuiQT.py,v
retrieving revision 1.37
retrieving revision 1.38
diff -C2 -d -r1.37 -r1.38
*** GuiQT.py 14 Sep 2005 15:23:45 -0000 1.37
--- GuiQT.py 28 Sep 2005 12:41:27 -0000 1.38
***************
*** 19,23 ****
# Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
! GQ_DEBUG = 1
from qt import *
--- 19,23 ----
# Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
! GQ_DEBUG = 0
from qt import *
***************
*** 237,245 ****
--- 237,248 ----
self.lineEditLogin.setText(log)
self.lineEditPass.setText(pas)
+ self.butlogin_state = 0# used to signal button is pushed. (It sucks, it's a quick hack)
self.setModal(1)
self.show()
def pushButtonLogin_clicked(self):
+ if self.butlogin_state: return
print "FormLogin.pushButtonLogin_clicked()"
+ self.butlogin_state = 1
log = str(self.lineEditLogin.text())
pas = str(self.lineEditPass.text())
***************
*** 274,280 ****
--- 277,285 ----
"Error", result[1],
QMessageBox.Ok)
+ self.butlogin_state = 0
def pushButtonCancel_clicked(self):
print "FormLogin.pushButtonCancel_clicked()"
+ self.butlogin_state = 0
self.done(1)
def checkBoxPass_toggled(self,a0):
***************
*** 338,342 ****
if conlist:
self._load(conlist)
- print "AddressBookDialog conlist",conlist
self.show()
--- 343,346 ----
--- libgmail.py DELETED ---
Index: INSTALL
===================================================================
RCS file: /cvsroot/gmailagent/GA-main/INSTALL,v
retrieving revision 1.5
retrieving revision 1.6
diff -C2 -d -r1.5 -r1.6
*** INSTALL 14 May 2005 06:10:20 -0000 1.5
--- INSTALL 28 Sep 2005 12:41:27 -0000 1.6
***************
*** 12,15 ****
--- 12,16 ----
Python-dev
Python-qt3 (pyQT3)
+ libgmail
If you have problems with GmailAgent or just want to talk to me :-)
Index: Gmail.py
===================================================================
RCS file: /cvsroot/gmailagent/GA-main/Gmail.py,v
retrieving revision 1.20
retrieving revision 1.21
diff -C2 -d -r1.20 -r1.21
*** Gmail.py 14 Sep 2005 11:36:28 -0000 1.20
--- Gmail.py 28 Sep 2005 12:41:27 -0000 1.21
***************
*** 22,26 ****
access gcm stuff."""
! GM_DEBUG = 1
import libgmail,urllib2,logging,ConfigParser,os
try:
--- 22,26 ----
access gcm stuff."""
! GM_DEBUG = 0
import libgmail,urllib2,logging,ConfigParser,os
try:
|