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

« back to all changes in this revision

Viewing changes to www/apps/fileservice/listing.py

  • Committer: mattgiuca
  • Date: 2008-01-13 12:08:48 UTC
  • Revision ID: svn-v3-trunk0:2b9c9e99-6f39-0410-b283-7f802c844ae2:trunk:211
fileservice/listing: Slight change to date format.
browser.js: Abstracted get_handler_type.
browser/listing.js: Wrote code to populate the side panel with the information
about the selected file and action links (very rough).

Show diffs side-by-side

added added

removed removed

Lines of Context:
270
270
    "ddd mmm dd, yyyy h:m a"
271
271
    """
272
272
    #return time.ctime(seconds_since_epoch)
273
 
    return time.strftime("%a %b %d, %Y %I:%M %p",
 
273
    return time.strftime("%a %b %d %Y, %I:%M %p",
274
274
        time.localtime(seconds_since_epoch))
275
275
 
276
276
def make_date_nice_short(seconds_since_epoch):