diff options
author | Sebastien Helleu <flashcode@flashtux.org> | 2010-11-25 21:28:14 +0100 |
---|---|---|
committer | Sebastien Helleu <flashcode@flashtux.org> | 2010-11-25 21:28:14 +0100 |
commit | e92079cfe9c2ad89cf4c9f7d2ce146f4393cb9f4 (patch) | |
tree | 09343bd04a8c939351237d3babdcf0b05f0a0eb4 /src/plugins/scripts/python/weechat-python-api.c | |
parent | 8b9abab711ccdccceafcbea351b8bef0d23b8ecd (diff) | |
download | weechat-e92079cfe9c2ad89cf4c9f7d2ce146f4393cb9f4.zip |
Add new option weechat.look.highlight_regex and function string_has_highlight_regex in plugin API (task #10321)
Diffstat (limited to 'src/plugins/scripts/python/weechat-python-api.c')
-rw-r--r-- | src/plugins/scripts/python/weechat-python-api.c | 38 |
1 files changed, 38 insertions, 0 deletions
diff --git a/src/plugins/scripts/python/weechat-python-api.c b/src/plugins/scripts/python/weechat-python-api.c index 16ff35db0..6429ad383 100644 --- a/src/plugins/scripts/python/weechat-python-api.c +++ b/src/plugins/scripts/python/weechat-python-api.c @@ -396,6 +396,43 @@ weechat_python_api_string_has_highlight (PyObject *self, PyObject *args) } /* + * weechat_python_api_string_has_highlight_regex: return 1 if string contains a + * highlight (using regular + * expression) + * return 0 if no highlight is + * found in string + */ + +static PyObject * +weechat_python_api_string_has_highlight_regex (PyObject *self, PyObject *args) +{ + char *string, *regex; + int value; + + /* make C compiler happy */ + (void) self; + + if (!python_current_script || !python_current_script->name) + { + WEECHAT_SCRIPT_MSG_NOT_INIT(PYTHON_CURRENT_SCRIPT_NAME, "string_has_highlight_regex"); + PYTHON_RETURN_INT(0); + } + + string = NULL; + regex = NULL; + + if (!PyArg_ParseTuple (args, "ss", &string, ®ex)) + { + WEECHAT_SCRIPT_MSG_WRONG_ARGS(PYTHON_CURRENT_SCRIPT_NAME, "string_has_highlight_regex"); + PYTHON_RETURN_INT(0); + } + + value = weechat_string_has_highlight_regex (string, regex); + + PYTHON_RETURN_INT(value); +} + +/* * weechat_python_api_string_mask_to_regex: convert a mask (string with only * "*" as wildcard) to a regex, paying * attention to special chars in a @@ -6838,6 +6875,7 @@ PyMethodDef weechat_python_funcs[] = { "ngettext", &weechat_python_api_ngettext, METH_VARARGS, "" }, { "string_match", &weechat_python_api_string_match, METH_VARARGS, "" }, { "string_has_highlight", &weechat_python_api_string_has_highlight, METH_VARARGS, "" }, + { "string_has_highlight_regex", &weechat_python_api_string_has_highlight_regex, METH_VARARGS, "" }, { "string_mask_to_regex", &weechat_python_api_string_mask_to_regex, METH_VARARGS, "" }, { "string_remove_color", &weechat_python_api_string_remove_color, METH_VARARGS, "" }, { "string_is_command_char", &weechat_python_api_string_is_command_char, METH_VARARGS, "" }, |