Remove docs from source tree

This commit is contained in:
John Goerzen
2006-12-06 04:24:27 +01:00
parent 83dfc24c7d
commit d3184a97cb
11 changed files with 9 additions and 3714 deletions

View File

@ -1,5 +1,5 @@
# Maildir folder support
# Copyright (C) 2002 - 2006 John Goerzen
# Copyright (C) 2002 John Goerzen
# <jgoerzen@complete.org>
#
# This program is free software; you can redistribute it and/or modify
@ -170,8 +170,7 @@ class MaildirFolder(BaseFolder):
file = open(os.path.join(tmpdir, tmpmessagename), "wt")
file.write(content)
file.close()
if rtime != None:
os.utime(os.path.join(tmpdir,tmpmessagename), (rtime,rtime))
os.utime(os.path.join(tmpdir,tmpmessagename), (rtime,rtime))
ui.debug('maildir', 'savemessage: moving from %s to %s' % \
(tmpmessagename, messagename))
os.link(os.path.join(tmpdir, tmpmessagename),

View File

@ -1,5 +1,5 @@
productname = 'OfflineIMAP'
versionstr = "4.0.16"
versionstr = "4.0.15"
versionlist = versionstr.split(".")
major = versionlist[0]