|
From: Kevin A. <ka...@us...> - 2004-08-08 18:32:01
|
Update of /cvsroot/pythoncard/PythonCard/samples/fpop In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv29050/samples/fpop Modified Files: emailfilter.py preview.py Log Message: switched to docs.pytho.org in URLs Index: preview.py =================================================================== RCS file: /cvsroot/pythoncard/PythonCard/samples/fpop/preview.py,v retrieving revision 1.20 retrieving revision 1.21 diff -C2 -d -r1.20 -r1.21 *** preview.py 10 May 2004 00:45:18 -0000 1.20 --- preview.py 8 Aug 2004 18:31:53 -0000 1.21 *************** *** 183,187 **** # see the email module documentation ! # http://www.python.org/doc/current/lib/module-email.html # this probably isn't the best way to put together a message def displayMessage(self, msg, msgNumber, headers): --- 183,187 ---- # see the email module documentation ! # http://docs.python.org/lib/module-email.html # this probably isn't the best way to put together a message def displayMessage(self, msg, msgNumber, headers): Index: emailfilter.py =================================================================== RCS file: /cvsroot/pythoncard/PythonCard/samples/fpop/emailfilter.py,v retrieving revision 1.5 retrieving revision 1.6 diff -C2 -d -r1.5 -r1.6 *** emailfilter.py 9 May 2004 19:46:05 -0000 1.5 --- emailfilter.py 8 Aug 2004 18:31:53 -0000 1.6 *************** *** 17,22 **** # module documentation is at: ! # http://www.python.org/doc/current/lib/module-poplib.html ! # http://www.python.org/doc/current/lib/module-email.html import sys --- 17,22 ---- # module documentation is at: ! # http://docs.python.org/lib/module-poplib.html ! # http://docs.python.org/lib/module-email.html import sys *************** *** 155,159 **** encodedSubject = message.get('subject') # handle internationalized subject line ! # http://www.python.org/doc/current/lib/module-email.Header.html subject, encoding = Header.decode_header(encodedSubject)[0] #print i, "Subject:", subject, encoding --- 155,159 ---- encodedSubject = message.get('subject') # handle internationalized subject line ! # http://docs.python.org/lib/module-email.Header.html subject, encoding = Header.decode_header(encodedSubject)[0] #print i, "Subject:", subject, encoding |