~ubuntu-branches/ubuntu/utopic/gossip/utopic

« back to all changes in this revision

Viewing changes to src/gossip-log.c

  • Committer: Bazaar Package Importer
  • Author(s): Daniel Holbach
  • Date: 2006-08-25 09:45:44 UTC
  • mfrom: (1.1.9 upstream)
  • Revision ID: james.westby@ubuntu.com-20060825094544-he4b250gd01axmjh
Tags: 0.15-0ubuntu1
* New upstream release:
  - Updated the "Simple" theme
  - Removed the Edit Groups dialog and merged it into an Edit Contact 
    dialog where you can set the name too
  - Fixed "Hide Contact List" menu item which was actually hidden itself
  - Unsubscribe contacts when removing them, not just remove them from our 
    roster
  - Removed internal references for contacts in the Jabber backend when 
    removing the contact, this makes sure that when they are added again 
    during the same session, they are not just sent silent subscribed 
    responses
  - Added notifications when subscription requests arrive
  - Don't set contact type to permanent if they subscription is NONE.
  - Lots and lots of bug fixes.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1104
1104
        return chatrooms;
1105
1105
}
1106
1106
 
1107
 
// FIXME: Move to gossip-log-window.c
 
1107
/* Format is just date, 20061201. */
1108
1108
gchar *
1109
1109
gossip_log_get_date_readable (const gchar *date)
1110
1110
{
1111
1111
        gossip_time_t t;
1112
1112
 
1113
 
        // koko this won't work as the input doesn't have the time.
1114
 
        t = gossip_time_parse (date); //, LOG_TIME_FORMAT);
 
1113
        t = gossip_time_parse (date);
1115
1114
 
1116
1115
        return gossip_time_to_string_local (t, "%a %d %b %Y");
1117
1116
}