~azzar1/unity/add-show-desktop-key

« back to all changes in this revision

Viewing changes to ivle/date.py

  • Committer: William Grant
  • Date: 2009-04-07 03:48:23 UTC
  • mfrom: (1165.1.46 submissions)
  • Revision ID: grantw@unimelb.edu.au-20090407034823-snd6wa5p6otzq073
Allow students to submit projects from personal or group repositories.

Show diffs side-by-side

added added

removed removed

Lines of Context:
66
66
    # Else, include the year (mmm dd, yyyy)
67
67
    else:
68
68
        return dt.strftime("%b %d, %Y")
 
69
 
 
70
def format_datetime_for_paragraph(datetime_or_seconds):
 
71
    """Generate a compact representation of a datetime for use in a paragraph.
 
72
 
 
73
    Given a datetime or number of seconds elapsed since the epoch, generates
 
74
    a compact string representing the date and time in human-readable form.
 
75
 
 
76
    Unlike make_date_nice_short, the time will always be included.
 
77
 
 
78
    Also unlike make_date_nice_short, it is suitable for use in the middle of
 
79
    a block of prose and properly handles timestamps in the future nicely.
 
80
    """
 
81
 
 
82
    dt = get_datetime(datetime_or_seconds)
 
83
    now = datetime.datetime.now()
 
84
 
 
85
    delta = dt - now
 
86
 
 
87
    # If the date is earlier than now, we want to either say something like
 
88
    # '5 days ago' or '25 seconds ago', 'yesterday at 08:54' or
 
89
    # 'on 2009-03-26 at 20:09'.
 
90
 
 
91
    # If the time is within one hour of now, we show it nicely in either
 
92
    # minutes or seconds.
 
93
 
 
94
    if abs(delta).days == 0 and abs(delta).seconds <= 1:
 
95
        return 'now'
 
96
 
 
97
    if abs(delta).days == 0 and abs(delta).seconds < 60*60:
 
98
        if abs(delta) == delta:
 
99
            # It's in the future.
 
100
            prefix = 'in '
 
101
            suffix = ''
 
102
        else:
 
103
            prefix = ''
 
104
            suffix = ' ago'
 
105
 
 
106
        # Show the number of minutes unless we are within two minutes.
 
107
        if abs(delta).seconds >= 120:
 
108
            return (prefix + '%d minutes' + suffix) % (abs(delta).seconds / 60)
 
109
        else:
 
110
            return (prefix + '%d seconds' + suffix) % (abs(delta).seconds)
 
111
 
 
112
    if dt < now:
 
113
        if dt.date() == now.date():
 
114
            # Today.
 
115
            return dt.strftime('today at %I:%M %p')
 
116
        elif dt.date() == now.date() - datetime.timedelta(days=1):
 
117
            # Yesterday.
 
118
            return dt.strftime('yesterday at %I:%M %p')
 
119
    elif dt > now:
 
120
        if dt.date() == now.date():
 
121
            # Today.
 
122
            return dt.strftime('today at %I:%M %p')
 
123
        elif dt.date() == now.date() + datetime.timedelta(days=1):
 
124
            # Tomorrow
 
125
            return dt.strftime('tomorrow at %I:%M %p')
 
126
 
 
127
    return dt.strftime('on %Y-%m-%d at %I:%M %p')