Added prof_on_room_history_message to test plugins

This commit is contained in:
James Booth
2016-04-08 00:12:02 +01:00
parent df0b39f720
commit 97b3995c59
2 changed files with 24 additions and 0 deletions

View File

@@ -457,6 +457,13 @@ def prof_post_room_message_send(room, message):
_create_win()
prof.win_show(plugin_win, "fired -> prof_post_room_message_send: " + room + ", " + message)
def prof_on_room_history_message(room, nick, message, timestamp):
_create_win()
if timestamp:
prof.win_show(plugin_win, "fired -> prof_on_room_history_message: " + room + ", " + nick + ", " + message + ", " + timestamp)
else:
prof.win_show(plugin_win, "fired -> prof_on_room_history_message: " + room + ", " + nick + ", " + message)
def prof_pre_priv_message_display(room, nick, message):
_create_win()
prof.win_show(plugin_win, "fired -> prof_pre_priv_message_display: " + room + ", " + nick + ", " + message)

View File

@@ -704,6 +704,23 @@ prof_post_room_message_send(const char * const room, const char *message)
prof_win_show(plugin_win, buf);
}
void
prof_on_room_history_message(const char * const room, const char *const nick, const char *const message, const char *const timestamp)
{
create_win();
char *str = "fired -> prof_on_room_history_message: ";
if (timestamp == NULL) {
char buf[strlen(str) + strlen(room) + 2 + strlen(nick) + 2 + strlen(message) + 1];
sprintf(buf, "%s%s, %s, %s", str, room, nick, message);
prof_win_show(plugin_win, buf);
} else {
char buf[strlen(str) + strlen(room) + 2 + strlen(nick) + 2 + strlen(message) + 2 + strlen(timestamp) + 1];
sprintf(buf, "%s%s, %s, %s, %s", str, room, nick, message, timestamp);
prof_win_show(plugin_win, buf);
}
}
char *
prof_pre_priv_message_display(const char * const room, const char * const nick, const char *message)
{