# HG changeset patch # User Etan Reisner # Date 1192594234 0 # Node ID 0d8061bbfc1d1013c45ca1eaad056e0090565422 # Parent ff00e91f962e8b60200f3e35e8afa8d7053bbf2c Document the show_date parameters to the log-timestamp and conversation-timestamp signals. diff -r ff00e91f962e -r 0d8061bbfc1d doc/gtkconv-signals.dox --- a/doc/gtkconv-signals.dox Wed Oct 17 04:05:19 2007 +0000 +++ b/doc/gtkconv-signals.dox Wed Oct 17 04:10:34 2007 +0000 @@ -28,12 +28,14 @@ @signaldef conversation-timestamp @signalproto -char *(*conversation_timestamp)(PurpleConversation *conv, time_t when); +char *(*conversation_timestamp)(PurpleConversation *conv, time_t when, + gboolean show_date); @endsignalproto @signaldesc Emitted to allow plugins to customize the timestamp on a message. - @param conv The conversation the message belongs to. - @param when The time to be converted to a string. + @param conv The conversation the message belongs to. + @param when The time to be converted to a string. + @param show_date Whether the date should be displayed. @return A textual representation of the time, or @c NULL to use a default format. @endsignaldef diff -r ff00e91f962e -r 0d8061bbfc1d doc/log-signals.dox --- a/doc/log-signals.dox Wed Oct 17 04:05:19 2007 +0000 +++ b/doc/log-signals.dox Wed Oct 17 04:10:34 2007 +0000 @@ -10,13 +10,14 @@ @signaldef log-timestamp @signalproto -char *(*log_timestamp)(PurpleLog *log, time_t when); +char *(*log_timestamp)(PurpleLog *log, time_t when, gboolean show_date); @endsignalproto @signaldesc Emitted to allow plugins to customize the timestamp on a message being logged. - @param log The log the message belongs to. - @param when The time to be converted to a string. + @param log The log the message belongs to. + @param when The time to be converted to a string. + @param show_date Whether the date should be displayed. @return A textual representation of the time, or @c NULL to use a default format. @note Plugins must be careful of logs with a type of PURPLE_LOG_SYSTEM.