You can subscribe to this list here.
2002 |
Jan
|
Feb
|
Mar
|
Apr
|
May
(10) |
Jun
(50) |
Jul
(27) |
Aug
(53) |
Sep
(75) |
Oct
(42) |
Nov
(43) |
Dec
(23) |
---|---|---|---|---|---|---|---|---|---|---|---|---|
2003 |
Jan
(7) |
Feb
(6) |
Mar
(24) |
Apr
(10) |
May
(12) |
Jun
(1) |
Jul
|
Aug
|
Sep
(7) |
Oct
(5) |
Nov
(7) |
Dec
(13) |
2004 |
Jan
(1) |
Feb
(2) |
Mar
(2) |
Apr
(2) |
May
(1) |
Jun
|
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
2005 |
Jan
|
Feb
|
Mar
|
Apr
|
May
|
Jun
|
Jul
|
Aug
(1) |
Sep
|
Oct
|
Nov
|
Dec
|
2006 |
Jan
(1) |
Feb
|
Mar
|
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
(3) |
Nov
(1) |
Dec
(3) |
2007 |
Jan
(1) |
Feb
|
Mar
|
Apr
(12) |
May
|
Jun
|
Jul
(2) |
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
2008 |
Jan
|
Feb
|
Mar
|
Apr
|
May
|
Jun
|
Jul
(1) |
Aug
(1) |
Sep
(7) |
Oct
(11) |
Nov
(20) |
Dec
(34) |
2009 |
Jan
(11) |
Feb
(13) |
Mar
(11) |
Apr
(21) |
May
(36) |
Jun
(22) |
Jul
(30) |
Aug
(9) |
Sep
(1) |
Oct
|
Nov
|
Dec
(9) |
2010 |
Jan
(9) |
Feb
(4) |
Mar
(4) |
Apr
(1) |
May
|
Jun
(2) |
Jul
(1) |
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
From: <cl...@us...> - 2002-05-24 14:27:30
|
Update of /cvsroot/todo-manager/todo-manager In directory usw-pr-cvs1:/tmp/cvs-serv7465 Modified Files: Tag: dev-bronze .cvsignore Log Message: hmm, I forgot about these Index: .cvsignore =================================================================== RCS file: /cvsroot/todo-manager/todo-manager/.cvsignore,v retrieving revision 1.1.2.1 retrieving revision 1.1.2.2 diff -u -d -r1.1.2.1 -r1.1.2.2 --- .cvsignore 20 Nov 2001 23:05:44 -0000 1.1.2.1 +++ .cvsignore 24 May 2002 14:27:26 -0000 1.1.2.2 @@ -2,3 +2,5 @@ *.pyo *.tmf todo-manager.ini +MANIFEST +dist |
From: <cl...@us...> - 2002-05-24 12:21:52
|
Update of /cvsroot/todo-manager/todo-manager In directory usw-pr-cvs1:/tmp/cvs-serv1363 Modified Files: Tag: dev-bronze tdm_calendar.py Log Message: * GetDay has been changed to SelDay since it is called when a day is selected * Drawing of the calendar has been reworked * The current day will be red when the calendar first draws Index: tdm_calendar.py =================================================================== RCS file: /cvsroot/todo-manager/todo-manager/Attic/tdm_calendar.py,v retrieving revision 1.1.2.9 retrieving revision 1.1.2.10 diff -u -d -r1.1.2.9 -r1.1.2.10 --- tdm_calendar.py 24 May 2002 04:25:54 -0000 1.1.2.9 +++ tdm_calendar.py 24 May 2002 12:21:49 -0000 1.1.2.10 @@ -9,8 +9,8 @@ # $Revision$ from Tkinter import * -from time import * from calendar import monthrange +import time # Class Calendar # @@ -27,6 +27,7 @@ # 3. The calendar date can be changed to any mounth with function ChangeTime(year,month). # 4. The current calendar date can be obtained with function GetDate(). # The integers year and month will be returned. + class Calendar(Frame): def __init__(self,master,command=None,**kw): Frame.__init__(self, master, kw) @@ -65,30 +66,26 @@ for i in range(1,8): # Column loop DayCount=DayCount+1 - if DayCount >0 and DayCount<=DaysInMonth: - if DayCount==self.day: #Current day in red - Button(self,text=str(DayCount),bd=0,width=1,height=1,relief=FLAT, - fg='darkred',bg=self.__bgcolor, - command= lambda s=self, p=DayCount: s.GetDay(p)).grid(row=j,column=i) - else: - if i==1 or i==7: # Saturdays and sundays in gray + if DayCount > 0 and DayCount <= DaysInMonth: + fg = 'black' # The default color + if DayCount == self.day: + fg = 'darkred' # The current day in red + elif i == 1 or i == 7: + fg = 'gray40' # The weekend should be gray - Button(self,text=str(DayCount),bd=0,width=1,height=1,relief=FLAT, - fg='gray40',bg=self.__bgcolor, - command= lambda s=self, p=DayCount: s.GetDay(p)).grid(row=j,column=i) - else: - Button(self,text=str(DayCount),bd=0,width=1,height=1,relief=FLAT, - fg='black',bg=self.__bgcolor, - command= lambda s=self, p=DayCount: s.GetDay(p)).grid(row=j,column=i) + Button(self,text=str(DayCount),bd=0,width=1,height=1,relief=FLAT, + fg=fg,bg=self.__bgcolor, + command= lambda s=self, p=DayCount: s.SelDay(p)).grid(row=j,column=i) else: - # Required to make shore their are the right number of rows + # Required to make sure there are the right number of rows Label(self,text='',bd=0,width=1,height=1,relief=FLAT,bg=self.__bgcolor).grid( row=j,column=i) i=i+1 # Returns the day the user has selected with the mouse - def GetDay(self): + def SelDay(self, p): + self.day = p if self.__LeftClickDateCommand: self.__LeftClickDateCommand(p) @@ -125,9 +122,9 @@ def SetCurrentDate(self): # Obtaining the current locale time - temptime=localtime(time()) + temptime=time.localtime(time.time()) - self.month = int(strftime('%m',temptime)) - self.year = int(strftime('%Y',temptime)) - self.day = int(strftime('%j',temptime)) + self.year = temptime[0] + self.month = temptime[1] + self.day = temptime[2] self.Draw() |
From: <cl...@us...> - 2002-05-24 04:53:22
|
Update of /cvsroot/todo-manager/todo-manager In directory usw-pr-cvs1:/tmp/cvs-serv22567 Modified Files: Tag: dev-bronze setup.py Log Message: I must have missed this before Index: setup.py =================================================================== RCS file: /cvsroot/todo-manager/todo-manager/setup.py,v retrieving revision 1.1.2.4 retrieving revision 1.1.2.5 diff -u -d -r1.1.2.4 -r1.1.2.5 --- setup.py 15 Dec 2001 16:42:34 -0000 1.1.2.4 +++ setup.py 24 May 2002 04:53:18 -0000 1.1.2.5 @@ -72,7 +72,7 @@ long_description="A standard task manager with notes, due dates, priorities, multiple sorting"\ " modes, HTML exporting. Interface uses Tk", author="Brian Bernas", - author_email="cli...@ya...", + author_email="cl...@so...", url="http://todo-manager.sourceforge.net", platforms="Windows, Linux", licence="Python", |
From: <cl...@us...> - 2002-05-24 04:25:56
|
Update of /cvsroot/todo-manager/todo-manager In directory usw-pr-cvs1:/tmp/cvs-serv16915 Modified Files: Tag: dev-bronze tdm_calendar.py Log Message: If it Gets then why should it be setting variables? Index: tdm_calendar.py =================================================================== RCS file: /cvsroot/todo-manager/todo-manager/Attic/tdm_calendar.py,v retrieving revision 1.1.2.8 retrieving revision 1.1.2.9 diff -u -d -r1.1.2.8 -r1.1.2.9 --- tdm_calendar.py 3 Mar 2002 18:15:59 -0000 1.1.2.8 +++ tdm_calendar.py 24 May 2002 04:25:54 -0000 1.1.2.9 @@ -88,8 +88,7 @@ i=i+1 # Returns the day the user has selected with the mouse - def GetDay(self,p): - self.day = p + def GetDay(self): if self.__LeftClickDateCommand: self.__LeftClickDateCommand(p) |