diff options
-rw-r--r-- | src/core/wee-command.c | 38 | ||||
-rw-r--r-- | src/plugins/alias/alias.c | 8 | ||||
-rw-r--r-- | src/plugins/aspell/aspell.c | 9 | ||||
-rw-r--r-- | src/plugins/charset/charset.c | 8 | ||||
-rw-r--r-- | src/plugins/demo/demo.c | 8 | ||||
-rw-r--r-- | src/plugins/fifo/fifo.c | 8 | ||||
-rw-r--r-- | src/plugins/irc/irc.c | 10 | ||||
-rw-r--r-- | src/plugins/logger/logger.c | 8 | ||||
-rw-r--r-- | src/plugins/plugin.c | 50 | ||||
-rw-r--r-- | src/plugins/scripts/lua/lua.c | 8 | ||||
-rw-r--r-- | src/plugins/scripts/perl/perl.c | 8 | ||||
-rw-r--r-- | src/plugins/scripts/python/python.c | 8 | ||||
-rw-r--r-- | src/plugins/scripts/ruby/ruby.c | 8 | ||||
-rw-r--r-- | src/plugins/trigger/trigger.c | 7 | ||||
-rw-r--r-- | src/plugins/trigger/trigger.h | 8 | ||||
-rw-r--r-- | src/plugins/weechat-plugin.h | 20 |
16 files changed, 144 insertions, 70 deletions
diff --git a/src/core/wee-command.c b/src/core/wee-command.c index a663dd330..4c9ae76bb 100644 --- a/src/core/wee-command.c +++ b/src/core/wee-command.c @@ -895,6 +895,12 @@ command_plugin_list (char *name, int full) if (full) { + /* second line of plugin info */ + gui_chat_printf (NULL, + _(" written by \"%s\", license: s%"), + ptr_plugin->author, + ptr_plugin->license); + /* commands hooked */ hook_found = 0; for (ptr_hook = weechat_hooks[HOOK_TYPE_COMMAND]; ptr_hook; @@ -903,10 +909,10 @@ command_plugin_list (char *name, int full) if (!ptr_hook->deleted && (ptr_hook->plugin == ptr_plugin)) { if (!hook_found) - gui_chat_printf (NULL, _(" commands hooked:")); + gui_chat_printf (NULL, _(" commands hooked:")); hook_found = 1; gui_chat_printf (NULL, - " /%s %s%s%s", + " /%s %s%s%s", HOOK_COMMAND(ptr_hook, command), HOOK_COMMAND(ptr_hook, description) ? "(" : "", HOOK_COMMAND(ptr_hook, description) ? @@ -923,14 +929,14 @@ command_plugin_list (char *name, int full) if (!ptr_hook->deleted && (ptr_hook->plugin == ptr_plugin)) { if (!hook_found) - gui_chat_printf (NULL, _(" timers hooked:")); + gui_chat_printf (NULL, _(" timers hooked:")); hook_found = 1; interval = (HOOK_TIMER(ptr_hook, interval) % 1000 == 0) ? HOOK_TIMER(ptr_hook, interval) / 1000 : HOOK_TIMER(ptr_hook, interval); if (HOOK_TIMER(ptr_hook, remaining_calls) > 0) gui_chat_printf (NULL, - _(" %d %s " + _(" %d %s " "(%d calls remaining)"), interval, (HOOK_TIMER(ptr_hook, interval) % 1000 == 0) ? @@ -939,7 +945,7 @@ command_plugin_list (char *name, int full) HOOK_TIMER(ptr_hook, remaining_calls)); else gui_chat_printf (NULL, - _(" %d %s " + _(" %d %s " "(no call limit)"), interval, (HOOK_TIMER(ptr_hook, interval) % 1000 == 0) ? @@ -957,10 +963,10 @@ command_plugin_list (char *name, int full) { if (!hook_found) gui_chat_printf (NULL, - _(" fd hooked:")); + _(" fd hooked:")); hook_found = 1; gui_chat_printf (NULL, - _(" %d (flags: %d)"), + _(" %d (flags: %d)"), HOOK_FD(ptr_hook, fd), HOOK_FD(ptr_hook, flags)); } @@ -974,18 +980,18 @@ command_plugin_list (char *name, int full) if (!ptr_hook->deleted && (ptr_hook->plugin == ptr_plugin)) { if (!hook_found) - gui_chat_printf (NULL, _(" prints hooked:")); + gui_chat_printf (NULL, _(" prints hooked:")); hook_found = 1; if (HOOK_PRINT(ptr_hook, buffer)) gui_chat_printf (NULL, - _(" buffer: %s / %s, message: \"%s\""), + _(" buffer: %s / %s, message: \"%s\""), HOOK_PRINT(ptr_hook, buffer)->category, HOOK_PRINT(ptr_hook, buffer)->name, HOOK_PRINT(ptr_hook, message) ? HOOK_PRINT(ptr_hook, message) : _("(none)")); else gui_chat_printf (NULL, - _(" message: \"%s\""), + _(" message: \"%s\""), HOOK_PRINT(ptr_hook, message) ? HOOK_PRINT(ptr_hook, message) : _("(none)")); } @@ -999,10 +1005,10 @@ command_plugin_list (char *name, int full) if (!ptr_hook->deleted && (ptr_hook->plugin == ptr_plugin)) { if (!hook_found) - gui_chat_printf (NULL, _(" signals hooked:")); + gui_chat_printf (NULL, _(" signals hooked:")); hook_found = 1; gui_chat_printf (NULL, - _(" signal: %s"), + _(" signal: %s"), HOOK_SIGNAL(ptr_hook, signal) ? HOOK_SIGNAL(ptr_hook, signal) : _("(all)")); } @@ -1017,11 +1023,11 @@ command_plugin_list (char *name, int full) { if (!hook_found) gui_chat_printf (NULL, - _(" configuration options " + _(" configuration options " "hooked:")); hook_found = 1; gui_chat_printf (NULL, - " (%s) %s", + " (%s) %s", HOOK_CONFIG(ptr_hook, type) ? HOOK_CONFIG(ptr_hook, type) : "*", HOOK_CONFIG(ptr_hook, option) ? @@ -1038,10 +1044,10 @@ command_plugin_list (char *name, int full) { if (!hook_found) gui_chat_printf (NULL, - _(" completion hooked:")); + _(" completions hooked:")); hook_found = 1; gui_chat_printf (NULL, - " %s", + " %s", HOOK_COMPLETION(ptr_hook, completion)); } } diff --git a/src/plugins/alias/alias.c b/src/plugins/alias/alias.c index 0c0be73aa..d34a1bb40 100644 --- a/src/plugins/alias/alias.c +++ b/src/plugins/alias/alias.c @@ -30,9 +30,11 @@ #include "alias.h" -char plugin_name[] = "alias"; -char plugin_version[] = "0.1"; -char plugin_description[] = "Alias plugin for WeeChat"; +WEECHAT_PLUGIN_NAME("alias"); +WEECHAT_PLUGIN_DESCRIPTION("Alias plugin for WeeChat"); +WEECHAT_PLUGIN_AUTHOR("FlashCode <flashcode@flashtux.org>"); +WEECHAT_PLUGIN_VERSION("0.1"); +WEECHAT_PLUGIN_LICENSE("GPL"); struct t_weechat_plugin *weechat_alias_plugin = NULL; #define weechat_plugin weechat_alias_plugin diff --git a/src/plugins/aspell/aspell.c b/src/plugins/aspell/aspell.c index 78b19fa54..2fa7ba0e6 100644 --- a/src/plugins/aspell/aspell.c +++ b/src/plugins/aspell/aspell.c @@ -27,9 +27,12 @@ #include "../weechat-plugin.h" #include "aspell.h" -char plugin_name[] = "aspell"; -char plugin_version[] = "0.1"; -char plugin_description[] = "Aspell plugin for WeeChat"; + +WEECHAT_PLUGIN_NAME("aspell"); +WEECHAT_PLUGIN_DESCRIPTION("Aspell plugin for WeeChat"); +WEECHAT_PLUGIN_AUTHOR("FlashCode <flashcode@flashtux.org>"); +WEECHAT_PLUGIN_VERSION("0.1"); +WEECHAT_LICENSE("GPL"); struct t_weechat_plugin *weechat_aspell_plugin = NULL; #define weechat_plugin weechat_aspell_plugin diff --git a/src/plugins/charset/charset.c b/src/plugins/charset/charset.c index 2b17a93c5..45125307d 100644 --- a/src/plugins/charset/charset.c +++ b/src/plugins/charset/charset.c @@ -28,9 +28,11 @@ #include "../weechat-plugin.h" -char plugin_name[] = "charset"; -char plugin_version[] = "0.1"; -char plugin_description[] = "Charset plugin for WeeChat"; +WEECHAT_PLUGIN_NAME("charset"); +WEECHAT_PLUGIN_DESCRIPTION("Charset plugin for WeeChat"); +WEECHAT_PLUGIN_AUTHOR("FlashCode <flashcode@flashtux.org>"); +WEECHAT_PLUGIN_VERSION("0.1"); +WEECHAT_PLUGIN_LICENSE("GPL"); struct t_weechat_plugin *weechat_charset_plugin = NULL; #define weechat_plugin weechat_charset_plugin diff --git a/src/plugins/demo/demo.c b/src/plugins/demo/demo.c index 719e12450..e65bfd533 100644 --- a/src/plugins/demo/demo.c +++ b/src/plugins/demo/demo.c @@ -35,9 +35,11 @@ #include "../weechat-plugin.h" -char plugin_name[] = "demo"; -char plugin_version[] = "0.1"; -char plugin_description[] = "Demo plugin for WeeChat"; +WEECHAT_PLUGIN_NAME("demo"); +WEECHAT_PLUGIN_DESCRIPTION("Demo plugin for WeeChat"); +WEECHAT_PLUGIN_AUTHOR("FlashCode <flashcode@flashtux.org>"); +WEECHAT_PLUGIN_VERSION("0.1"); +WEECHAT_PLUGIN_LICENSE("GPL"); struct t_weechat_plugin *weechat_demo_plugin = NULL; #define weechat_plugin weechat_demo_plugin diff --git a/src/plugins/fifo/fifo.c b/src/plugins/fifo/fifo.c index a41985d18..c1607314d 100644 --- a/src/plugins/fifo/fifo.c +++ b/src/plugins/fifo/fifo.c @@ -34,9 +34,11 @@ #include "../weechat-plugin.h" -char plugin_name[] = "fifo"; -char plugin_version[] = "0.1"; -char plugin_description[] = "Fifo plugin for WeeChat"; +WEECHAT_PLUGIN_NAME("fifo"); +WEECHAT_PLUGIN_DESCRIPTION("Fifo plugin for WeeChat"); +WEECHAT_PLUGIN_AUTHOR("FlashCode <flashcode@flashtux.org>"); +WEECHAT_PLUGIN_VERSION("0.1"); +WEECHAT_PLUGIN_LICENSE("GPL"); struct t_weechat_plugin *weechat_fifo_plugin = NULL; #define weechat_plugin weechat_fifo_plugin diff --git a/src/plugins/irc/irc.c b/src/plugins/irc/irc.c index 1b6c1f190..31cec28a2 100644 --- a/src/plugins/irc/irc.c +++ b/src/plugins/irc/irc.c @@ -39,13 +39,15 @@ #include "irc-dcc.h" -char plugin_name[] = "irc"; -char plugin_version[] = "0.1"; -char plugin_description[] = "IRC (Internet Relay Chat)"; +WEECHAT_PLUGIN_NAME("irc"); +WEECHAT_PLUGIN_DESCRIPTION("IRC (Internet Relay Chat) plugin for WeeChat"); +WEECHAT_PLUGIN_AUTHOR("FlashCode <flashcode@flashtux.org>"); +WEECHAT_PLUGIN_VERSION("0.1"); +WEECHAT_PLUGIN_LICENSE("GPL"); struct t_weechat_plugin *weechat_irc_plugin = NULL; - struct t_hook *irc_hook_timer = NULL; +struct t_hook *irc_hook_timer = NULL; struct t_hook *irc_hook_timer_check_away = NULL; int irc_debug = 0; diff --git a/src/plugins/logger/logger.c b/src/plugins/logger/logger.c index c9af330a7..379c0482a 100644 --- a/src/plugins/logger/logger.c +++ b/src/plugins/logger/logger.c @@ -39,9 +39,11 @@ #include "logger-tail.h" -char plugin_name[] = "logger"; -char plugin_version[] = "0.1"; -char plugin_description[] = "Logger plugin for WeeChat"; +WEECHAT_PLUGIN_NAME("logger"); +WEECHAT_PLUGIN_DESCRIPTION("Logger plugin for WeeChat"); +WEECHAT_PLUGIN_AUTHOR("FlashCode <flashcode@flashtux.org>"); +WEECHAT_PLUGIN_VERSION("0.1"); +WEECHAT_PLUGIN_LICENSE("GPL"); struct t_weechat_plugin *weechat_logger_plugin = NULL; diff --git a/src/plugins/plugin.c b/src/plugins/plugin.c index cc589136b..3661b4fea 100644 --- a/src/plugins/plugin.c +++ b/src/plugins/plugin.c @@ -84,7 +84,7 @@ plugin_load (char *filename) { char *full_name; void *handle; - char *name, *description, *version, *charset; + char *name, *author, *description, *version, *license, *charset; t_weechat_init_func *init_func; struct t_weechat_plugin *new_plugin; @@ -108,7 +108,7 @@ plugin_load (char *filename) } /* look for plugin name */ - name = dlsym (handle, "plugin_name"); + name = dlsym (handle, "weechat_plugin_name"); if (!name) { dlclose (handle); @@ -116,7 +116,7 @@ plugin_load (char *filename) _("%sError: symbol \"%s\" not found in " "plugin \"%s\", failed to load"), gui_chat_prefix[GUI_CHAT_PREFIX_ERROR], - "plugin_name", + "weechat_plugin_name", full_name); free (full_name); return NULL; @@ -136,7 +136,7 @@ plugin_load (char *filename) } /* look for plugin description */ - description = dlsym (handle, "plugin_description"); + description = dlsym (handle, "weechat_plugin_description"); if (!description) { dlclose (handle); @@ -144,14 +144,29 @@ plugin_load (char *filename) _("%sError: symbol \"%s\" not found " "in plugin \"%s\", failed to load"), gui_chat_prefix[GUI_CHAT_PREFIX_ERROR], - "plugin_description", + "weechat_plugin_description", + full_name); + free (full_name); + return NULL; + } + + /* look for plugin author */ + author = dlsym (handle, "weechat_plugin_author"); + if (!author) + { + dlclose (handle); + gui_chat_printf (NULL, + _("%sError: symbol \"%s\" not found " + "in plugin \"%s\", failed to load"), + gui_chat_prefix[GUI_CHAT_PREFIX_ERROR], + "weechat_plugin_author", full_name); free (full_name); return NULL; } /* look for plugin version */ - version = dlsym (handle, "plugin_version"); + version = dlsym (handle, "weechat_plugin_version"); if (!version) { dlclose (handle); @@ -159,14 +174,29 @@ plugin_load (char *filename) _("%sError: symbol \"%s\" not found in " "plugin \"%s\", failed to load"), gui_chat_prefix[GUI_CHAT_PREFIX_ERROR], - "plugin_version", + "weechat_plugin_version", + full_name); + free (full_name); + return NULL; + } + + /* look for plugin license */ + license = dlsym (handle, "weechat_plugin_license"); + if (!license) + { + dlclose (handle); + gui_chat_printf (NULL, + _("%sError: symbol \"%s\" not found in " + "plugin \"%s\", failed to load"), + gui_chat_prefix[GUI_CHAT_PREFIX_ERROR], + "weechat_plugin_license", full_name); free (full_name); return NULL; } - /* look for plugin charset (optional) */ - charset = dlsym (handle, "plugin_charset"); + /* look for plugin charset (optional, default is UTF-8) */ + charset = dlsym (handle, "weechat_plugin_charset"); /* look for plugin init function */ init_func = dlsym (handle, "weechat_plugin_init"); @@ -192,7 +222,9 @@ plugin_load (char *filename) new_plugin->handle = handle; new_plugin->name = strdup (name); new_plugin->description = strdup (description); + new_plugin->author = strdup (author); new_plugin->version = strdup (version); + new_plugin->license = strdup (license); new_plugin->charset = (charset) ? strdup (charset) : NULL; /* functions */ diff --git a/src/plugins/scripts/lua/lua.c b/src/plugins/scripts/lua/lua.c index 233dec413..8ced9008b 100644 --- a/src/plugins/scripts/lua/lua.c +++ b/src/plugins/scripts/lua/lua.c @@ -38,9 +38,11 @@ #include "../weechat-script.h" -char plugin_name[] = "Lua"; -char plugin_version[] = "0.1"; -char plugin_description[] = "Lua scripts support"; +WEECHAT_PLUGIN_NAME("lua"); +WEECHAT_PLUGIN_DESCRIPTION("Lua plugin for WeeChat"); +WEECHAT_PLUGIN_AUTHOR("FlashCode <flashcode@flashtux.org>"); +WEECHAT_PLUGIN_VERSION("0.1"); +WEECHAT_PLUGIN_LICENSE("GPL"); t_weechat_plugin *lua_plugin; diff --git a/src/plugins/scripts/perl/perl.c b/src/plugins/scripts/perl/perl.c index 49c766f47..a1eeef6ae 100644 --- a/src/plugins/scripts/perl/perl.c +++ b/src/plugins/scripts/perl/perl.c @@ -39,9 +39,11 @@ #include "../../weechat-plugin.h" #include "../weechat-script.h" -char plugin_name[] = "Perl"; -char plugin_version[] = "0.1"; -char plugin_description[] = "Perl scripts support"; +WEECHAT_PLUGIN_NAME("perl"); +WEECHAT_PLUGIN_DESCRIPTION("Perl plugin for WeeChat"); +WEECHAT_PLUGIN_AUTHOR("FlashCode <flashcode@flashtux.org>"); +WEECHAT_PLUGIN_VERSION("0.1"); +WEECHAT_PLUGIN_LICENSE("GPL"); t_weechat_plugin *perl_plugin; diff --git a/src/plugins/scripts/python/python.c b/src/plugins/scripts/python/python.c index ae29b1752..cdb6ad35c 100644 --- a/src/plugins/scripts/python/python.c +++ b/src/plugins/scripts/python/python.c @@ -36,9 +36,11 @@ #include "../weechat-script.h" -char plugin_name[] = "Python"; -char plugin_version[] = "0.1"; -char plugin_description[] = "Python scripts support"; +WEECHAT_PLUGIN_NAME("python"); +WEECHAT_PLUGIN_DESCRIPTION("Python plugin for WeeChat"); +WEECHAT_PLUGIN_AUTHOR("FlashCode <flashcode@flashtux.org>"); +WEECHAT_PLUGIN_VERSION("0.1"); +WEECHAT_PLUGIN_LICENSE("GPL"); t_weechat_plugin *python_plugin; diff --git a/src/plugins/scripts/ruby/ruby.c b/src/plugins/scripts/ruby/ruby.c index 726e9f77f..fdf174c4d 100644 --- a/src/plugins/scripts/ruby/ruby.c +++ b/src/plugins/scripts/ruby/ruby.c @@ -38,9 +38,11 @@ #include "../weechat-script.h" -char plugin_name[] = "Ruby"; -char plugin_version[] = "0.1"; -char plugin_description[] = "Ruby scripts support"; +WEECHAT_PLUGIN_NAME("ruby"); +WEECHAT_PLUGIN_DESCRIPTION("Ruby plugin for WeeChat"); +WEECHAT_PLUGIN_AUTHOR("FlashCode <flashcode@flashtux.org>"); +WEECHAT_PLUGIN_VERSION("0.1"); +WEECHAT_PLUGIN_LICENSE("GPL"); t_weechat_plugin *ruby_plugin; diff --git a/src/plugins/trigger/trigger.c b/src/plugins/trigger/trigger.c index 6fdaa1db8..caa8237e8 100644 --- a/src/plugins/trigger/trigger.c +++ b/src/plugins/trigger/trigger.c @@ -27,6 +27,13 @@ #include "weechat-trigger-libirc.h" #include "weechat-trigger-libc.h" + +WEECHAT_PLUGIN_NAME("trigger"); +WEECHAT_PLUGIN_DESCRIPTION("Trigger plugin for WeeChat"); +WEECHAT_PLUGIN_AUTHOR("FlashCode <flashcode@flashtux.org>"); +WEECHAT_PLUGIN_VERSION("0.1"); +WEECHAT_PLUGIN_LICENSE("GPL"); + t_weechat_trigger *weechat_trigger_list = NULL; t_weechat_trigger *weechat_trigger_last = NULL; diff --git a/src/plugins/trigger/trigger.h b/src/plugins/trigger/trigger.h index 4d22f59ed..23d23e5ec 100644 --- a/src/plugins/trigger/trigger.h +++ b/src/plugins/trigger/trigger.h @@ -21,14 +21,6 @@ #ifndef __WEECHAT_TRIGGER_H #define __WEECHAT_TRIGGER_H 1 -#define _PLUGIN_NAME "trigger" -#define _PLUGIN_VERSION "0.1" -#define _PLUGIN_DESC "Trigger plugin for WeeChat" - -char plugin_name[] = _PLUGIN_NAME; -char plugin_version[] = _PLUGIN_VERSION; -char plugin_description[] = _PLUGIN_DESC; - typedef struct t_weechat_trigger { char *pattern; diff --git a/src/plugins/weechat-plugin.h b/src/plugins/weechat-plugin.h index 7c6e2c91d..4d688ac51 100644 --- a/src/plugins/weechat-plugin.h +++ b/src/plugins/weechat-plugin.h @@ -26,6 +26,18 @@ struct t_gui_buffer; struct t_weelist; +/* macros for defining plugin infos */ +#define WEECHAT_PLUGIN_NAME(__name) \ + char weechat_plugin_name[] = __name; +#define WEECHAT_PLUGIN_AUTHOR(__author) \ + char weechat_plugin_author[] = __author; +#define WEECHAT_PLUGIN_DESCRIPTION(__desc) \ + char weechat_plugin_description[] = __desc; +#define WEECHAT_PLUGIN_VERSION(__version) \ + char weechat_plugin_version[] = __version; +#define WEECHAT_PLUGIN_LICENSE(__license) \ + char weechat_plugin_license[] = __license; + /* return codes for plugin functions */ #define WEECHAT_RC_ERROR -1 /* function failed with an error */ #define WEECHAT_RC_OK 0 /* function ok */ @@ -49,9 +61,11 @@ struct t_weechat_plugin /* plugin variables */ char *filename; /* name of plugin on disk */ void *handle; /* handle of plugin (given by dlopen)*/ - char *name; /* plugin name */ - char *description; /* plugin description */ - char *version; /* plugin version */ + char *name; /* short name */ + char *description; /* description */ + char *author; /* author */ + char *version; /* version */ + char *license; /* license */ char *charset; /* charset used by plugin */ struct t_weechat_plugin *prev_plugin; /* link to previous plugin */ struct t_weechat_plugin *next_plugin; /* link to next plugin */ |