Added SILC Thread Queue API
[crypto.git] / apps / irssi / src / perl / module-formats.c
1 /*
2  module-formats.c : irssi
3
4     Copyright (C) 2001 Timo Sirainen
5
6     This program is free software; you can redistribute it and/or modify
7     it under the terms of the GNU General Public License as published by
8     the Free Software Foundation; either version 2 of the License, or
9     (at your option) any later version.
10
11     This program is distributed in the hope that it will be useful,
12     but WITHOUT ANY WARRANTY; without even the implied warranty of
13     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14     GNU General Public License for more details.
15
16     You should have received a copy of the GNU General Public License
17     along with this program; if not, write to the Free Software
18     Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
19 */
20
21 #include "module.h"
22 #include "formats.h"
23
24 FORMAT_REC feperl_formats[] = {
25         { MODULE_NAME, "Core", 0 },
26
27         /* ---- */
28         { NULL, "Perl", 0 },
29
30         { "script_not_found", "Script {hilight $0} not found", 1, { 0 } },
31         { "script_not_loaded", "Script {hilight $0} is not loaded", 1, { 0 } },
32         { "script_loaded", "Loaded script {hilight $0}", 2, { 0, 0 } },
33         { "script_unloaded", "Unloaded script {hilight $0}", 1, { 0 } },
34         { "no_scripts_loaded", "No scripts are loaded", 0 },
35         { "script_list_header", "%#Loaded scripts:", 0 },
36         { "script_list_line", "%#$[!15]0 $1", 2, { 0, 0 } },
37         { "script_list_footer", "", 0 },
38         { "script_error", "{error Error in script {hilight $0}:}", 1, { 0 } },
39
40         { NULL, NULL, 0 }
41 };