From 1f00040a3541728a517176d318f0c099a3f813c1 Mon Sep 17 00:00:00 2001 From: bescoto Date: Thu, 23 Feb 2006 02:57:19 +0000 Subject: Times like "Mon Jun 5 11:00:23 1997" now recognized git-svn-id: http://svn.savannah.nongnu.org/svn/rdiff-backup/trunk@757 2b77aa54-bcbc-44c9-a7ec-4f6cf2b41109 --- rdiff-backup/rdiff_backup/Time.py | 9 +++++++++ 1 file changed, 9 insertions(+) (limited to 'rdiff-backup/rdiff_backup/Time.py') diff --git a/rdiff-backup/rdiff_backup/Time.py b/rdiff-backup/rdiff_backup/Time.py index 6481a58..7885332 100644 --- a/rdiff-backup/rdiff_backup/Time.py +++ b/rdiff-backup/rdiff_backup/Time.py @@ -96,6 +96,11 @@ def stringtopretty(timestring): """Return pretty version of time given w3 time string""" return timetopretty(stringtotime(timestring)) +def prettytotime(prettystring): + """Converts time like "Mon Jun 5 11:00:23" to epoch sec, or None""" + try: return time.mktime(time.strptime(prettystring)) + except ValueError: return None + def inttopretty(seconds): """Convert num of seconds to readable string like "2 hours".""" partlist = [] @@ -222,6 +227,10 @@ the day).""" % timestr) if _session_regexp.search(timestr): return time_from_session(int(timestr[:-1]), rp) + # Try for long time, like "Mon Jun 5 11:00:23 1990" + t = prettytotime(timestr) + if t is not None: return t + try: # test for an interval, like "2 days ago" return curtime - intstringtoseconds(timestr) except TimeException: pass -- cgit v1.2.1