1
0
mirror of https://github.com/weechat/weechat.git synced 2026-07-03 08:13:14 +02:00

core: remove "wee-" prefix from source files in src/core and src/core/hook

This commit is contained in:
Sébastien Helleu
2024-03-12 21:09:42 +01:00
parent bb346f8c6c
commit 24c4029c96
204 changed files with 1321 additions and 1321 deletions
+52 -52
View File
@@ -21,58 +21,58 @@
set(LIB_CORE_SRC
weechat.c weechat.h
wee-arraylist.c wee-arraylist.h
wee-backtrace.c wee-backtrace.h
wee-calc.c wee-calc.h
wee-command.c wee-command.h
wee-completion.c wee-completion.h
wee-config.c wee-config.h
wee-config-file.c wee-config-file.h
wee-crypto.c wee-crypto.h
wee-debug.c wee-debug.h
wee-dir.c wee-dir.h
wee-doc.c wee-doc.h
wee-eval.c wee-eval.h
wee-hashtable.c wee-hashtable.h
wee-hdata.c wee-hdata.h
wee-hook.c wee-hook.h
wee-infolist.c wee-infolist.h
wee-input.c wee-input.h
wee-list.c wee-list.h
wee-log.c wee-log.h
wee-network.c wee-network.h
wee-proxy.c wee-proxy.h
wee-secure.c wee-secure.h
wee-secure-buffer.c wee-secure-buffer.h
wee-secure-config.c wee-secure-config.h
wee-signal.c wee-signal.h
wee-string.c wee-string.h
wee-sys.c wee-sys.h
wee-upgrade.c wee-upgrade.h
wee-upgrade-file.c wee-upgrade-file.h
wee-url.c wee-url.h
wee-utf8.c wee-utf8.h
wee-util.c wee-util.h
wee-version.c wee-version.h
hook/wee-hook-command-run.c hook/wee-hook-command-run.h
hook/wee-hook-command.c hook/wee-hook-command.h
hook/wee-hook-completion.c hook/wee-hook-completion.h
hook/wee-hook-config.c hook/wee-hook-config.h
hook/wee-hook-connect.c hook/wee-hook-connect.h
hook/wee-hook-fd.c hook/wee-hook-fd.h
hook/wee-hook-focus.c hook/wee-hook-focus.h
hook/wee-hook-hdata.c hook/wee-hook-hdata.h
hook/wee-hook-hsignal.c hook/wee-hook-hsignal.h
hook/wee-hook-info-hashtable.c hook/wee-hook-info-hashtable.h
hook/wee-hook-info.c hook/wee-hook-info.h
hook/wee-hook-infolist.c hook/wee-hook-infolist.h
hook/wee-hook-line.c hook/wee-hook-line.h
hook/wee-hook-modifier.c hook/wee-hook-modifier.h
hook/wee-hook-print.c hook/wee-hook-print.h
hook/wee-hook-process.c hook/wee-hook-process.h
hook/wee-hook-signal.c hook/wee-hook-signal.h
hook/wee-hook-timer.c hook/wee-hook-timer.h
hook/wee-hook-url.c hook/wee-hook-url.h
core-arraylist.c core-arraylist.h
core-backtrace.c core-backtrace.h
core-calc.c core-calc.h
core-command.c core-command.h
core-completion.c core-completion.h
core-config.c core-config.h
core-config-file.c core-config-file.h
core-crypto.c core-crypto.h
core-debug.c core-debug.h
core-dir.c core-dir.h
core-doc.c core-doc.h
core-eval.c core-eval.h
core-hashtable.c core-hashtable.h
core-hdata.c core-hdata.h
core-hook.c core-hook.h
core-infolist.c core-infolist.h
core-input.c core-input.h
core-list.c core-list.h
core-log.c core-log.h
core-network.c core-network.h
core-proxy.c core-proxy.h
core-secure.c core-secure.h
core-secure-buffer.c core-secure-buffer.h
core-secure-config.c core-secure-config.h
core-signal.c core-signal.h
core-string.c core-string.h
core-sys.c core-sys.h
core-upgrade.c core-upgrade.h
core-upgrade-file.c core-upgrade-file.h
core-url.c core-url.h
core-utf8.c core-utf8.h
core-util.c core-util.h
core-version.c core-version.h
hook/hook-command-run.c hook/hook-command-run.h
hook/hook-command.c hook/hook-command.h
hook/hook-completion.c hook/hook-completion.h
hook/hook-config.c hook/hook-config.h
hook/hook-connect.c hook/hook-connect.h
hook/hook-fd.c hook/hook-fd.h
hook/hook-focus.c hook/hook-focus.h
hook/hook-hdata.c hook/hook-hdata.h
hook/hook-hsignal.c hook/hook-hsignal.h
hook/hook-info-hashtable.c hook/hook-info-hashtable.h
hook/hook-info.c hook/hook-info.h
hook/hook-infolist.c hook/hook-infolist.h
hook/hook-line.c hook/hook-line.h
hook/hook-modifier.c hook/hook-modifier.h
hook/hook-print.c hook/hook-print.h
hook/hook-process.c hook/hook-process.h
hook/hook-signal.c hook/hook-signal.h
hook/hook-timer.c hook/hook-timer.h
hook/hook-url.c hook/hook-url.h
)
# Check for flock support
@@ -1,5 +1,5 @@
/*
* wee-arraylist.c - array lists management
* core-arraylist.c - array lists management
*
* Copyright (C) 2014-2024 Sébastien Helleu <flashcode@flashtux.org>
*
@@ -27,9 +27,9 @@
#include <string.h>
#include "weechat.h"
#include "wee-arraylist.h"
#include "wee-log.h"
#include "wee-string.h"
#include "core-arraylist.h"
#include "core-log.h"
#include "core-string.h"
/*
@@ -1,5 +1,5 @@
/*
* wee-backtrace.c - backtrace after a segfault
* core-backtrace.c - backtrace after a segfault
*
* Copyright (C) 2003-2024 Sébastien Helleu <flashcode@flashtux.org>
*
@@ -39,10 +39,10 @@
#endif
#include "weechat.h"
#include "wee-backtrace.h"
#include "wee-log.h"
#include "wee-string.h"
#include "wee-version.h"
#include "core-backtrace.h"
#include "core-log.h"
#include "core-string.h"
#include "core-version.h"
#include "../plugins/plugin.h"
+3 -3
View File
@@ -1,5 +1,5 @@
/*
* wee-calc.c - calculate result of an expression
* core-calc.c - calculate result of an expression
*
* Copyright (C) 2019-2024 Sébastien Helleu <flashcode@flashtux.org>
*
@@ -30,8 +30,8 @@
#include <locale.h>
#include "weechat.h"
#include "wee-arraylist.h"
#include "wee-string.h"
#include "core-arraylist.h"
#include "core-string.h"
enum t_calc_symbol
{
@@ -1,5 +1,5 @@
/*
* wee-command.c - WeeChat core commands
* core-command.c - WeeChat core commands
*
* Copyright (C) 2003-2024 Sébastien Helleu <flashcode@flashtux.org>
* Copyright (C) 2005-2006 Emmanuel Bouthenot <kolter@openics.org>
@@ -45,32 +45,32 @@
#endif
#include "weechat.h"
#include "wee-command.h"
#include "wee-arraylist.h"
#include "wee-config.h"
#include "wee-config-file.h"
#include "wee-debug.h"
#include "wee-dir.h"
#include "wee-eval.h"
#include "wee-hashtable.h"
#include "wee-hdata.h"
#include "wee-hook.h"
#include "wee-input.h"
#include "wee-list.h"
#include "wee-log.h"
#include "wee-network.h"
#include "wee-proxy.h"
#include "wee-secure.h"
#include "wee-secure-buffer.h"
#include "wee-secure-config.h"
#include "wee-signal.h"
#include "wee-string.h"
#include "wee-sys.h"
#include "wee-upgrade.h"
#include "wee-url.h"
#include "wee-utf8.h"
#include "wee-util.h"
#include "wee-version.h"
#include "core-command.h"
#include "core-arraylist.h"
#include "core-config.h"
#include "core-config-file.h"
#include "core-debug.h"
#include "core-dir.h"
#include "core-eval.h"
#include "core-hashtable.h"
#include "core-hdata.h"
#include "core-hook.h"
#include "core-input.h"
#include "core-list.h"
#include "core-log.h"
#include "core-network.h"
#include "core-proxy.h"
#include "core-secure.h"
#include "core-secure-buffer.h"
#include "core-secure-config.h"
#include "core-signal.h"
#include "core-string.h"
#include "core-sys.h"
#include "core-upgrade.h"
#include "core-url.h"
#include "core-utf8.h"
#include "core-util.h"
#include "core-version.h"
#include "../gui/gui-bar.h"
#include "../gui/gui-bar-item.h"
#include "../gui/gui-bar-item-custom.h"
@@ -1,5 +1,5 @@
/*
* wee-completion.c - completion for WeeChat commands
* core-completion.c - completion for WeeChat commands
*
* Copyright (C) 2003-2024 Sébastien Helleu <flashcode@flashtux.org>
* Copyright (C) 2006 Emmanuel Bouthenot <kolter@openics.org>
@@ -34,16 +34,16 @@
#include <unistd.h>
#include "weechat.h"
#include "wee-arraylist.h"
#include "wee-config.h"
#include "wee-dir.h"
#include "wee-eval.h"
#include "wee-hashtable.h"
#include "wee-hook.h"
#include "wee-list.h"
#include "wee-proxy.h"
#include "wee-secure.h"
#include "wee-string.h"
#include "core-arraylist.h"
#include "core-config.h"
#include "core-dir.h"
#include "core-eval.h"
#include "core-hashtable.h"
#include "core-hook.h"
#include "core-list.h"
#include "core-proxy.h"
#include "core-secure.h"
#include "core-string.h"
#include "../gui/gui-completion.h"
#include "../gui/gui-bar.h"
#include "../gui/gui-bar-item.h"
@@ -1,5 +1,5 @@
/*
* wee-config-file.c - configuration files/sections/options management
* core-config-file.c - configuration files/sections/options management
*
* Copyright (C) 2003-2024 Sébastien Helleu <flashcode@flashtux.org>
* Copyright (C) 2005-2006 Emmanuel Bouthenot <kolter@openics.org>
@@ -34,17 +34,17 @@
#include <errno.h>
#include "weechat.h"
#include "wee-config-file.h"
#include "wee-arraylist.h"
#include "wee-config.h"
#include "wee-dir.h"
#include "wee-hashtable.h"
#include "wee-hdata.h"
#include "wee-hook.h"
#include "wee-infolist.h"
#include "wee-log.h"
#include "wee-string.h"
#include "wee-version.h"
#include "core-config-file.h"
#include "core-arraylist.h"
#include "core-config.h"
#include "core-dir.h"
#include "core-hashtable.h"
#include "core-hdata.h"
#include "core-hook.h"
#include "core-infolist.h"
#include "core-log.h"
#include "core-string.h"
#include "core-version.h"
#include "../gui/gui-color.h"
#include "../gui/gui-chat.h"
#include "../plugins/plugin.h"
@@ -1,5 +1,5 @@
/*
* wee-config.c - WeeChat configuration options (file weechat.conf)
* core-config.c - WeeChat configuration options (file weechat.conf)
*
* Copyright (C) 2003-2024 Sébastien Helleu <flashcode@flashtux.org>
* Copyright (C) 2005-2006 Emmanuel Bouthenot <kolter@openics.org>
@@ -36,19 +36,19 @@
#include <regex.h>
#include "weechat.h"
#include "wee-arraylist.h"
#include "wee-config.h"
#include "wee-eval.h"
#include "wee-hashtable.h"
#include "wee-hook.h"
#include "wee-log.h"
#include "wee-network.h"
#include "wee-utf8.h"
#include "wee-list.h"
#include "wee-proxy.h"
#include "wee-string.h"
#include "wee-sys.h"
#include "wee-version.h"
#include "core-arraylist.h"
#include "core-config.h"
#include "core-eval.h"
#include "core-hashtable.h"
#include "core-hook.h"
#include "core-log.h"
#include "core-network.h"
#include "core-utf8.h"
#include "core-list.h"
#include "core-proxy.h"
#include "core-string.h"
#include "core-sys.h"
#include "core-version.h"
#include "../gui/gui-bar.h"
#include "../gui/gui-bar-item.h"
#include "../gui/gui-bar-item-custom.h"
@@ -24,7 +24,7 @@
#include <regex.h>
#include <wctype.h>
#include "wee-config-file.h"
#include "core-config-file.h"
struct t_gui_buffer;
@@ -1,5 +1,5 @@
/*
* wee-crypto.c - cryptographic functions
* core-crypto.c - cryptographic functions
*
* Copyright (C) 2018-2024 Sébastien Helleu <flashcode@flashtux.org>
*
@@ -32,10 +32,10 @@
#include <gcrypt.h>
#include "weechat.h"
#include "wee-crypto.h"
#include "wee-config-file.h"
#include "wee-hashtable.h"
#include "wee-string.h"
#include "core-crypto.h"
#include "core-config-file.h"
#include "core-hashtable.h"
#include "core-string.h"
#include "../plugins/plugin.h"
char *weecrypto_hash_algo_string[] = {
+13 -13
View File
@@ -1,5 +1,5 @@
/*
* wee-debug.c - debug functions
* core-debug.c - debug functions
*
* Copyright (C) 2003-2024 Sébastien Helleu <flashcode@flashtux.org>
*
@@ -43,18 +43,18 @@
#include <gnutls/gnutls.h>
#include "weechat.h"
#include "wee-backtrace.h"
#include "wee-config-file.h"
#include "wee-hashtable.h"
#include "wee-hdata.h"
#include "wee-hook.h"
#include "wee-infolist.h"
#include "wee-list.h"
#include "wee-log.h"
#include "wee-proxy.h"
#include "wee-string.h"
#include "wee-utf8.h"
#include "wee-util.h"
#include "core-backtrace.h"
#include "core-config-file.h"
#include "core-hashtable.h"
#include "core-hdata.h"
#include "core-hook.h"
#include "core-infolist.h"
#include "core-list.h"
#include "core-log.h"
#include "core-proxy.h"
#include "core-string.h"
#include "core-utf8.h"
#include "core-util.h"
#include "../gui/gui-bar.h"
#include "../gui/gui-bar-item.h"
#include "../gui/gui-buffer.h"
+3 -3
View File
@@ -1,5 +1,5 @@
/*
* wee-dir.c - directory/file functions
* core-dir.c - directory/file functions
*
* Copyright (C) 2003-2024 Sébastien Helleu <flashcode@flashtux.org>
*
@@ -50,8 +50,8 @@
#endif
#include "weechat.h"
#include "wee-config.h"
#include "wee-string.h"
#include "core-config.h"
#include "core-string.h"
/*
+13 -13
View File
@@ -1,5 +1,5 @@
/*
* wee-doc.c - documentation generator
* core-doc.c - documentation generator
*
* Copyright (C) 2023-2024 Sébastien Helleu <flashcode@flashtux.org>
*
@@ -33,18 +33,18 @@
#include <regex.h>
#include "weechat.h"
#include "wee-arraylist.h"
#include "wee-command.h"
#include "wee-config-file.h"
#include "wee-crypto.h"
#include "wee-dir.h"
#include "wee-hashtable.h"
#include "wee-hdata.h"
#include "wee-hook.h"
#include "wee-infolist.h"
#include "wee-string.h"
#include "wee-url.h"
#include "wee-utf8.h"
#include "core-arraylist.h"
#include "core-command.h"
#include "core-config-file.h"
#include "core-crypto.h"
#include "core-dir.h"
#include "core-hashtable.h"
#include "core-hdata.h"
#include "core-hook.h"
#include "core-infolist.h"
#include "core-string.h"
#include "core-url.h"
#include "core-utf8.h"
#include "../plugins/plugin.h"
#define ESCAPE_TABLE(msg) (doc_gen_escape_table (msg))
+11 -11
View File
@@ -1,5 +1,5 @@
/*
* wee-eval.c - evaluate expressions with references to internal vars
* core-eval.c - evaluate expressions with references to internal vars
*
* Copyright (C) 2012-2024 Sébastien Helleu <flashcode@flashtux.org>
*
@@ -31,16 +31,16 @@
#include <sys/time.h>
#include "weechat.h"
#include "wee-eval.h"
#include "wee-calc.h"
#include "wee-config.h"
#include "wee-hashtable.h"
#include "wee-hdata.h"
#include "wee-hook.h"
#include "wee-secure.h"
#include "wee-string.h"
#include "wee-utf8.h"
#include "wee-util.h"
#include "core-eval.h"
#include "core-calc.h"
#include "core-config.h"
#include "core-hashtable.h"
#include "core-hdata.h"
#include "core-hook.h"
#include "core-secure.h"
#include "core-string.h"
#include "core-utf8.h"
#include "core-util.h"
#include "../gui/gui-buffer.h"
#include "../gui/gui-chat.h"
#include "../gui/gui-color.h"
@@ -1,5 +1,5 @@
/*
* wee-hashtable.c - implementation of hashtable
* core-hashtable.c - implementation of hashtable
*
* Copyright (C) 2010-2024 Sébastien Helleu <flashcode@flashtux.org>
*
@@ -29,12 +29,12 @@
#include <time.h>
#include "weechat.h"
#include "wee-hashtable.h"
#include "wee-infolist.h"
#include "wee-list.h"
#include "wee-log.h"
#include "wee-string.h"
#include "wee-utf8.h"
#include "core-hashtable.h"
#include "core-infolist.h"
#include "core-list.h"
#include "core-log.h"
#include "core-string.h"
#include "core-utf8.h"
#include "../plugins/plugin.h"
@@ -1,5 +1,5 @@
/*
* wee-hdata.c - direct access to WeeChat data using hashtables
* core-hdata.c - direct access to WeeChat data using hashtables
*
* Copyright (C) 2011-2024 Sébastien Helleu <flashcode@flashtux.org>
*
@@ -27,12 +27,12 @@
#include <string.h>
#include "weechat.h"
#include "wee-hdata.h"
#include "wee-hook.h"
#include "wee-eval.h"
#include "wee-hashtable.h"
#include "wee-log.h"
#include "wee-string.h"
#include "core-hdata.h"
#include "core-hook.h"
#include "core-eval.h"
#include "core-hashtable.h"
#include "core-log.h"
#include "core-string.h"
#include "../plugins/plugin.h"
+9 -9
View File
@@ -1,5 +1,5 @@
/*
* wee-hook.c - WeeChat hooks management
* core-hook.c - WeeChat hooks management
*
* Copyright (C) 2003-2024 Sébastien Helleu <flashcode@flashtux.org>
*
@@ -32,14 +32,14 @@
#include <errno.h>
#include "weechat.h"
#include "wee-debug.h"
#include "wee-hook.h"
#include "wee-hashtable.h"
#include "wee-infolist.h"
#include "wee-log.h"
#include "wee-signal.h"
#include "wee-string.h"
#include "wee-util.h"
#include "core-debug.h"
#include "core-hook.h"
#include "core-hashtable.h"
#include "core-infolist.h"
#include "core-log.h"
#include "core-signal.h"
#include "core-string.h"
#include "core-util.h"
#include "../gui/gui-chat.h"
#include "../plugins/plugin.h"
+19 -19
View File
@@ -22,25 +22,25 @@
struct t_hook;
#include "hook/wee-hook-command-run.h"
#include "hook/wee-hook-command.h"
#include "hook/wee-hook-completion.h"
#include "hook/wee-hook-config.h"
#include "hook/wee-hook-connect.h"
#include "hook/wee-hook-fd.h"
#include "hook/wee-hook-focus.h"
#include "hook/wee-hook-hdata.h"
#include "hook/wee-hook-hsignal.h"
#include "hook/wee-hook-info-hashtable.h"
#include "hook/wee-hook-info.h"
#include "hook/wee-hook-infolist.h"
#include "hook/wee-hook-line.h"
#include "hook/wee-hook-modifier.h"
#include "hook/wee-hook-print.h"
#include "hook/wee-hook-process.h"
#include "hook/wee-hook-signal.h"
#include "hook/wee-hook-timer.h"
#include "hook/wee-hook-url.h"
#include "hook/hook-command-run.h"
#include "hook/hook-command.h"
#include "hook/hook-completion.h"
#include "hook/hook-config.h"
#include "hook/hook-connect.h"
#include "hook/hook-fd.h"
#include "hook/hook-focus.h"
#include "hook/hook-hdata.h"
#include "hook/hook-hsignal.h"
#include "hook/hook-info-hashtable.h"
#include "hook/hook-info.h"
#include "hook/hook-infolist.h"
#include "hook/hook-line.h"
#include "hook/hook-modifier.h"
#include "hook/hook-print.h"
#include "hook/hook-process.h"
#include "hook/hook-signal.h"
#include "hook/hook-timer.h"
#include "hook/hook-url.h"
struct t_gui_bar;
struct t_gui_buffer;
@@ -1,5 +1,5 @@
/*
* wee-infolist.c - info lists management
* core-infolist.c - info lists management
*
* Copyright (C) 2003-2024 Sébastien Helleu <flashcode@flashtux.org>
*
@@ -27,9 +27,9 @@
#include <string.h>
#include "weechat.h"
#include "wee-log.h"
#include "wee-string.h"
#include "wee-infolist.h"
#include "core-log.h"
#include "core-string.h"
#include "core-infolist.h"
struct t_infolist *weechat_infolists = NULL;
@@ -1,5 +1,5 @@
/*
* wee-input.c - default input callback for buffers
* core-input.c - default input callback for buffers
*
* Copyright (C) 2003-2024 Sébastien Helleu <flashcode@flashtux.org>
*
@@ -27,11 +27,11 @@
#include <string.h>
#include "weechat.h"
#include "wee-input.h"
#include "wee-config.h"
#include "wee-hook.h"
#include "wee-string.h"
#include "wee-utf8.h"
#include "core-input.h"
#include "core-config.h"
#include "core-hook.h"
#include "core-string.h"
#include "core-utf8.h"
#include "../gui/gui-buffer.h"
#include "../gui/gui-chat.h"
#include "../gui/gui-filter.h"
+4 -4
View File
@@ -1,5 +1,5 @@
/*
* wee-list.c - sorted lists
* core-list.c - sorted lists
*
* Copyright (C) 2003-2024 Sébastien Helleu <flashcode@flashtux.org>
*
@@ -27,9 +27,9 @@
#include <string.h>
#include "weechat.h"
#include "wee-list.h"
#include "wee-log.h"
#include "wee-string.h"
#include "core-list.h"
#include "core-log.h"
#include "core-string.h"
#include "../plugins/plugin.h"
+5 -5
View File
@@ -1,5 +1,5 @@
/*
* wee-log.c - WeeChat log file (weechat.log)
* core-log.c - WeeChat log file (weechat.log)
*
* Copyright (C) 2003-2024 Sébastien Helleu <flashcode@flashtux.org>
* Copyright (C) 2006 Emmanuel Bouthenot <kolter@openics.org>
@@ -38,10 +38,10 @@
#include <time.h>
#include "weechat.h"
#include "wee-log.h"
#include "wee-debug.h"
#include "wee-string.h"
#include "wee-version.h"
#include "core-log.h"
#include "core-debug.h"
#include "core-string.h"
#include "core-version.h"
#include "../plugins/plugin.h"
@@ -1,5 +1,5 @@
/*
* wee-network.c - network functions
* core-network.c - network functions
*
* Copyright (C) 2003-2024 Sébastien Helleu <flashcode@flashtux.org>
* Copyright (C) 2005-2010 Emmanuel Bouthenot <kolter@openics.org>
@@ -55,14 +55,14 @@
#include <gnutls/gnutls.h>
#include "weechat.h"
#include "wee-network.h"
#include "wee-config.h"
#include "wee-eval.h"
#include "wee-hashtable.h"
#include "wee-hook.h"
#include "wee-config.h"
#include "wee-proxy.h"
#include "wee-string.h"
#include "core-network.h"
#include "core-config.h"
#include "core-eval.h"
#include "core-hashtable.h"
#include "core-hook.h"
#include "core-config.h"
#include "core-proxy.h"
#include "core-string.h"
#include "../gui/gui-chat.h"
#include "../plugins/plugin.h"
@@ -1,5 +1,5 @@
/*
* wee-proxy.c - proxy functions
* core-proxy.c - proxy functions
*
* Copyright (C) 2003-2024 Sébastien Helleu <flashcode@flashtux.org>
*
@@ -28,12 +28,12 @@
#include <string.h>
#include "weechat.h"
#include "wee-proxy.h"
#include "wee-config.h"
#include "wee-hdata.h"
#include "wee-infolist.h"
#include "wee-log.h"
#include "wee-string.h"
#include "core-proxy.h"
#include "core-config.h"
#include "core-hdata.h"
#include "core-infolist.h"
#include "core-log.h"
#include "core-string.h"
#include "../plugins/plugin.h"
@@ -1,5 +1,5 @@
/*
* wee-secure-buffer.c - secured data buffer
* core-secure-buffer.c - secured data buffer
*
* Copyright (C) 2013-2024 Sébastien Helleu <flashcode@flashtux.org>
*
@@ -29,13 +29,13 @@
#include <gcrypt.h>
#include "weechat.h"
#include "wee-config-file.h"
#include "wee-crypto.h"
#include "wee-hashtable.h"
#include "wee-secure.h"
#include "wee-secure-buffer.h"
#include "wee-secure-config.h"
#include "wee-string.h"
#include "core-config-file.h"
#include "core-crypto.h"
#include "core-hashtable.h"
#include "core-secure.h"
#include "core-secure-buffer.h"
#include "core-secure-config.h"
#include "core-string.h"
#include "../gui/gui-buffer.h"
#include "../gui/gui-chat.h"
#include "../gui/gui-color.h"
@@ -1,5 +1,5 @@
/*
* wee-secure-config.c - secured data configuration options (file sec.conf)
* core-secure-config.c - secured data configuration options (file sec.conf)
*
* Copyright (C) 2013-2024 Sébastien Helleu <flashcode@flashtux.org>
*
@@ -29,12 +29,12 @@
#include <gcrypt.h>
#include "weechat.h"
#include "wee-config-file.h"
#include "wee-crypto.h"
#include "wee-hashtable.h"
#include "wee-secure.h"
#include "wee-secure-config.h"
#include "wee-string.h"
#include "core-config-file.h"
#include "core-crypto.h"
#include "core-hashtable.h"
#include "core-secure.h"
#include "core-secure-config.h"
#include "core-string.h"
#include "../gui/gui-chat.h"
#include "../gui/gui-main.h"
#include "../gui/gui-window.h"
@@ -1,5 +1,5 @@
/*
* wee-secure.c - secured data
* core-secure.c - secured data
*
* Copyright (C) 2013-2024 Sébastien Helleu <flashcode@flashtux.org>
*
@@ -28,13 +28,13 @@
#include <gcrypt.h>
#include "weechat.h"
#include "wee-config-file.h"
#include "wee-crypto.h"
#include "wee-hashtable.h"
#include "wee-hook.h"
#include "wee-secure.h"
#include "wee-secure-config.h"
#include "wee-string.h"
#include "core-config-file.h"
#include "core-crypto.h"
#include "core-hashtable.h"
#include "core-hook.h"
#include "core-secure.h"
#include "core-secure-config.h"
#include "core-string.h"
#include "../plugins/plugin.h"
/* the passphrase used to encrypt/decrypt data */
@@ -1,5 +1,5 @@
/*
* wee-signal.c - signal functions
* core-signal.c - signal functions
*
* Copyright (C) 2021-2024 Sébastien Helleu <flashcode@flashtux.org>
*
@@ -29,14 +29,14 @@
#include <signal.h>
#include "weechat.h"
#include "wee-signal.h"
#include "wee-config.h"
#include "wee-debug.h"
#include "wee-eval.h"
#include "wee-hook.h"
#include "wee-input.h"
#include "wee-log.h"
#include "wee-string.h"
#include "core-signal.h"
#include "core-config.h"
#include "core-debug.h"
#include "core-eval.h"
#include "core-hook.h"
#include "core-input.h"
#include "core-log.h"
#include "core-string.h"
#include "../gui/gui-buffer.h"
#include "../gui/gui-window.h"
#include "../plugins/plugin.h"
@@ -1,5 +1,5 @@
/*
* wee-string.c - string functions
* core-string.c - string functions
*
* Copyright (C) 2003-2024 Sébastien Helleu <flashcode@flashtux.org>
*
@@ -49,11 +49,11 @@
#endif /* ICONV_CONST */
#include "weechat.h"
#include "wee-string.h"
#include "wee-config.h"
#include "wee-eval.h"
#include "wee-hashtable.h"
#include "wee-utf8.h"
#include "core-string.h"
#include "core-config.h"
#include "core-eval.h"
#include "core-hashtable.h"
#include "core-utf8.h"
#include "../gui/gui-chat.h"
#include "../gui/gui-color.h"
#include "../plugins/plugin.h"
+6 -6
View File
@@ -1,5 +1,5 @@
/*
* wee-sys.c - system actions
* core-sys.c - system actions
*
* Copyright (C) 2023-2024 Sébastien Helleu <flashcode@flashtux.org>
*
@@ -35,11 +35,11 @@
#include <sys/wait.h>
#include "weechat.h"
#include "wee-config.h"
#include "wee-log.h"
#include "wee-string.h"
#include "wee-sys.h"
#include "wee-util.h"
#include "core-config.h"
#include "core-log.h"
#include "core-string.h"
#include "core-sys.h"
#include "core-util.h"
#include "../gui/gui-chat.h"
#include "../gui/gui-window.h"
#include "../plugins/plugin.h"
@@ -1,5 +1,5 @@
/*
* wee-upgrade-file.c - save/restore data for upgrading WeeChat
* core-upgrade-file.c - save/restore data for upgrading WeeChat
*
* Copyright (C) 2003-2024 Sébastien Helleu <flashcode@flashtux.org>
*
@@ -32,10 +32,10 @@
#include <sys/stat.h>
#include "weechat.h"
#include "wee-upgrade-file.h"
#include "wee-infolist.h"
#include "wee-string.h"
#include "wee-utf8.h"
#include "core-upgrade-file.h"
#include "core-infolist.h"
#include "core-string.h"
#include "core-utf8.h"
#include "../gui/gui-chat.h"
#include "../gui/gui-main.h"
#include "../plugins/plugin.h"
@@ -1,5 +1,5 @@
/*
* wee-upgrade.c - save/restore session data of WeeChat core
* core-upgrade.c - save/restore session data of WeeChat core
*
* Copyright (C) 2003-2024 Sébastien Helleu <flashcode@flashtux.org>
*
@@ -29,13 +29,13 @@
#include <sys/time.h>
#include "weechat.h"
#include "wee-upgrade.h"
#include "wee-dir.h"
#include "wee-hook.h"
#include "wee-infolist.h"
#include "wee-secure-buffer.h"
#include "wee-string.h"
#include "wee-util.h"
#include "core-upgrade.h"
#include "core-dir.h"
#include "core-hook.h"
#include "core-infolist.h"
#include "core-secure-buffer.h"
#include "core-string.h"
#include "core-util.h"
#include "../gui/gui-buffer.h"
#include "../gui/gui-chat.h"
#include "../gui/gui-color.h"
@@ -20,7 +20,7 @@
#ifndef WEECHAT_UPGRADE_H
#define WEECHAT_UPGRADE_H
#include "wee-upgrade-file.h"
#include "core-upgrade-file.h"
#define WEECHAT_UPGRADE_FILENAME "weechat"
+7 -7
View File
@@ -1,5 +1,5 @@
/*
* wee-url.c - URL transfer
* core-url.c - URL transfer
*
* Copyright (C) 2012-2024 Sébastien Helleu <flashcode@flashtux.org>
*
@@ -29,12 +29,12 @@
#include <curl/curl.h>
#include "weechat.h"
#include "wee-url.h"
#include "wee-config.h"
#include "wee-hashtable.h"
#include "wee-infolist.h"
#include "wee-proxy.h"
#include "wee-string.h"
#include "core-url.h"
#include "core-config.h"
#include "core-hashtable.h"
#include "core-infolist.h"
#include "core-proxy.h"
#include "core-string.h"
#include "../plugins/plugin.h"
+4 -4
View File
@@ -1,5 +1,5 @@
/*
* wee-utf8.c - UTF-8 string functions
* core-utf8.c - UTF-8 string functions
*
* Copyright (C) 2003-2024 Sébastien Helleu <flashcode@flashtux.org>
* Copyright (C) 2006 Emmanuel Bouthenot <kolter@openics.org>
@@ -29,9 +29,9 @@
#include <wctype.h>
#include "weechat.h"
#include "wee-utf8.h"
#include "wee-config.h"
#include "wee-string.h"
#include "core-utf8.h"
#include "core-config.h"
#include "core-string.h"
int local_utf8 = 0;
+6 -6
View File
@@ -1,5 +1,5 @@
/*
* wee-util.c - some useful functions
* core-util.c - some useful functions
*
* Copyright (C) 2003-2024 Sébastien Helleu <flashcode@flashtux.org>
*
@@ -36,11 +36,11 @@
#include <time.h>
#include "weechat.h"
#include "wee-util.h"
#include "wee-config.h"
#include "wee-log.h"
#include "wee-string.h"
#include "wee-utf8.h"
#include "core-util.h"
#include "core-config.h"
#include "core-log.h"
#include "core-string.h"
#include "core-utf8.h"
#include "../gui/gui-chat.h"
#include "../gui/gui-window.h"
#include "../plugins/plugin.h"
@@ -1,5 +1,5 @@
/*
* wee-version.c - functions for WeeChat version
* core-version.c - functions for WeeChat version
*
* Copyright (C) 2003-2024 Sébastien Helleu <flashcode@flashtux.org>
*
@@ -1,5 +1,5 @@
/*
* wee-hook-command-run.c - WeeChat command_run hook
* hook-command-run.c - WeeChat command_run hook
*
* Copyright (C) 2003-2024 Sébastien Helleu <flashcode@flashtux.org>
*
@@ -27,11 +27,11 @@
#include <string.h>
#include "../weechat.h"
#include "../wee-hook.h"
#include "../wee-infolist.h"
#include "../wee-log.h"
#include "../wee-string.h"
#include "../wee-utf8.h"
#include "../core-hook.h"
#include "../core-infolist.h"
#include "../core-log.h"
#include "../core-string.h"
#include "../core-utf8.h"
#include "../../plugins/plugin.h"
@@ -1,5 +1,5 @@
/*
* wee-hook-command.c - WeeChat command hook
* hook-command.c - WeeChat command hook
*
* Copyright (C) 2003-2024 Sébastien Helleu <flashcode@flashtux.org>
*
@@ -27,14 +27,14 @@
#include <string.h>
#include "../weechat.h"
#include "../wee-arraylist.h"
#include "../wee-config.h"
#include "../wee-hook.h"
#include "../wee-infolist.h"
#include "../wee-list.h"
#include "../wee-log.h"
#include "../wee-string.h"
#include "../wee-utf8.h"
#include "../core-arraylist.h"
#include "../core-config.h"
#include "../core-hook.h"
#include "../core-infolist.h"
#include "../core-list.h"
#include "../core-log.h"
#include "../core-string.h"
#include "../core-utf8.h"
#include "../../gui/gui-chat.h"
#include "../../gui/gui-filter.h"
#include "../../plugins/plugin.h"
@@ -1,5 +1,5 @@
/*
* wee-hook-completion.c - WeeChat completion hook
* hook-completion.c - WeeChat completion hook
*
* Copyright (C) 2003-2024 Sébastien Helleu <flashcode@flashtux.org>
*
@@ -27,10 +27,10 @@
#include <string.h>
#include "../weechat.h"
#include "../wee-hook.h"
#include "../wee-infolist.h"
#include "../wee-log.h"
#include "../wee-string.h"
#include "../core-hook.h"
#include "../core-infolist.h"
#include "../core-log.h"
#include "../core-string.h"
#include "../../gui/gui-completion.h"
@@ -1,5 +1,5 @@
/*
* wee-hook-config.c - WeeChat config hook
* hook-config.c - WeeChat config hook
*
* Copyright (C) 2003-2024 Sébastien Helleu <flashcode@flashtux.org>
*
@@ -27,10 +27,10 @@
#include <string.h>
#include "../weechat.h"
#include "../wee-hook.h"
#include "../wee-infolist.h"
#include "../wee-log.h"
#include "../wee-string.h"
#include "../core-hook.h"
#include "../core-infolist.h"
#include "../core-log.h"
#include "../core-string.h"
/*
@@ -1,5 +1,5 @@
/*
* wee-hook-connect.c - WeeChat connect hook
* hook-connect.c - WeeChat connect hook
*
* Copyright (C) 2003-2024 Sébastien Helleu <flashcode@flashtux.org>
* Copyright (C) 2012 Simon Arlott
@@ -31,10 +31,10 @@
#include <sys/wait.h>
#include "../weechat.h"
#include "../wee-hook.h"
#include "../wee-infolist.h"
#include "../wee-log.h"
#include "../wee-network.h"
#include "../core-hook.h"
#include "../core-infolist.h"
#include "../core-log.h"
#include "../core-network.h"
#include "../../plugins/plugin.h"
@@ -1,5 +1,5 @@
/*
* wee-hook-fd.c - WeeChat fd hook
* hook-fd.c - WeeChat fd hook
*
* Copyright (C) 2003-2024 Sébastien Helleu <flashcode@flashtux.org>
*
@@ -30,9 +30,9 @@
#include <errno.h>
#include "../weechat.h"
#include "../wee-hook.h"
#include "../wee-infolist.h"
#include "../wee-log.h"
#include "../core-hook.h"
#include "../core-infolist.h"
#include "../core-log.h"
#include "../../gui/gui-chat.h"
@@ -1,5 +1,5 @@
/*
* wee-hook-focus.c - WeeChat focus hook
* hook-focus.c - WeeChat focus hook
*
* Copyright (C) 2003-2024 Sébastien Helleu <flashcode@flashtux.org>
*
@@ -27,11 +27,11 @@
#include <string.h>
#include "../weechat.h"
#include "../wee-hashtable.h"
#include "../wee-hook.h"
#include "../wee-infolist.h"
#include "../wee-log.h"
#include "../wee-string.h"
#include "../core-hashtable.h"
#include "../core-hook.h"
#include "../core-infolist.h"
#include "../core-log.h"
#include "../core-string.h"
#include "../../plugins/plugin.h"
@@ -1,5 +1,5 @@
/*
* wee-hook-hdata.c - WeeChat hdata hook
* hook-hdata.c - WeeChat hdata hook
*
* Copyright (C) 2003-2024 Sébastien Helleu <flashcode@flashtux.org>
*
@@ -27,12 +27,12 @@
#include <string.h>
#include "../weechat.h"
#include "../wee-hashtable.h"
#include "../wee-hdata.h"
#include "../wee-hook.h"
#include "../wee-infolist.h"
#include "../wee-log.h"
#include "../wee-string.h"
#include "../core-hashtable.h"
#include "../core-hdata.h"
#include "../core-hook.h"
#include "../core-infolist.h"
#include "../core-log.h"
#include "../core-string.h"
/*
@@ -1,5 +1,5 @@
/*
* wee-hook-hsignal.c - WeeChat hsignal hook
* hook-hsignal.c - WeeChat hsignal hook
*
* Copyright (C) 2003-2024 Sébastien Helleu <flashcode@flashtux.org>
*
@@ -27,10 +27,10 @@
#include <string.h>
#include "../weechat.h"
#include "../wee-hook.h"
#include "../wee-infolist.h"
#include "../wee-log.h"
#include "../wee-string.h"
#include "../core-hook.h"
#include "../core-infolist.h"
#include "../core-log.h"
#include "../core-string.h"
#include "../../plugins/plugin.h"
@@ -1,5 +1,5 @@
/*
* wee-hook-info-hashtable.c - WeeChat info_hashtable hook
* hook-info-hashtable.c - WeeChat info_hashtable hook
*
* Copyright (C) 2003-2024 Sébastien Helleu <flashcode@flashtux.org>
*
@@ -27,10 +27,10 @@
#include <string.h>
#include "../weechat.h"
#include "../wee-hook.h"
#include "../wee-infolist.h"
#include "../wee-log.h"
#include "../wee-string.h"
#include "../core-hook.h"
#include "../core-infolist.h"
#include "../core-log.h"
#include "../core-string.h"
/*
@@ -1,5 +1,5 @@
/*
* wee-hook-info.c - WeeChat info hook
* hook-info.c - WeeChat info hook
*
* Copyright (C) 2003-2024 Sébastien Helleu <flashcode@flashtux.org>
*
@@ -27,10 +27,10 @@
#include <string.h>
#include "../weechat.h"
#include "../wee-hook.h"
#include "../wee-infolist.h"
#include "../wee-log.h"
#include "../wee-string.h"
#include "../core-hook.h"
#include "../core-infolist.h"
#include "../core-log.h"
#include "../core-string.h"
/*
@@ -1,5 +1,5 @@
/*
* wee-hook-infolist.c - WeeChat infolist hook
* hook-infolist.c - WeeChat infolist hook
*
* Copyright (C) 2003-2024 Sébastien Helleu <flashcode@flashtux.org>
*
@@ -27,10 +27,10 @@
#include <string.h>
#include "../weechat.h"
#include "../wee-hook.h"
#include "../wee-infolist.h"
#include "../wee-log.h"
#include "../wee-string.h"
#include "../core-hook.h"
#include "../core-infolist.h"
#include "../core-log.h"
#include "../core-string.h"
/*
@@ -1,5 +1,5 @@
/*
* wee-hook-line.c - WeeChat line hook
* hook-line.c - WeeChat line hook
*
* Copyright (C) 2003-2024 Sébastien Helleu <flashcode@flashtux.org>
*
@@ -27,11 +27,11 @@
#include <string.h>
#include "../weechat.h"
#include "../wee-hashtable.h"
#include "../wee-hook.h"
#include "../wee-infolist.h"
#include "../wee-log.h"
#include "../wee-string.h"
#include "../core-hashtable.h"
#include "../core-hook.h"
#include "../core-infolist.h"
#include "../core-log.h"
#include "../core-string.h"
#include "../../gui/gui-buffer.h"
#include "../../gui/gui-line.h"
#include "../../plugins/plugin.h"
@@ -1,5 +1,5 @@
/*
* wee-hook-modifier.c - WeeChat modifier hook
* hook-modifier.c - WeeChat modifier hook
*
* Copyright (C) 2003-2024 Sébastien Helleu <flashcode@flashtux.org>
*
@@ -27,10 +27,10 @@
#include <string.h>
#include "../weechat.h"
#include "../wee-hook.h"
#include "../wee-infolist.h"
#include "../wee-log.h"
#include "../wee-string.h"
#include "../core-hook.h"
#include "../core-infolist.h"
#include "../core-log.h"
#include "../core-string.h"
/*
@@ -1,5 +1,5 @@
/*
* wee-hook-print.c - WeeChat print hook
* hook-print.c - WeeChat print hook
*
* Copyright (C) 2003-2024 Sébastien Helleu <flashcode@flashtux.org>
*
@@ -27,10 +27,10 @@
#include <string.h>
#include "../weechat.h"
#include "../wee-hook.h"
#include "../wee-infolist.h"
#include "../wee-log.h"
#include "../wee-string.h"
#include "../core-hook.h"
#include "../core-infolist.h"
#include "../core-log.h"
#include "../core-string.h"
#include "../../gui/gui-buffer.h"
#include "../../gui/gui-color.h"
#include "../../gui/gui-line.h"
@@ -1,5 +1,5 @@
/*
* wee-hook-process.c - WeeChat process hook
* hook-process.c - WeeChat process hook
*
* Copyright (C) 2003-2024 Sébastien Helleu <flashcode@flashtux.org>
*
@@ -32,12 +32,12 @@
#include <errno.h>
#include "../weechat.h"
#include "../wee-hashtable.h"
#include "../wee-hook.h"
#include "../wee-infolist.h"
#include "../wee-log.h"
#include "../wee-string.h"
#include "../wee-url.h"
#include "../core-hashtable.h"
#include "../core-hook.h"
#include "../core-infolist.h"
#include "../core-log.h"
#include "../core-string.h"
#include "../core-url.h"
#include "../../gui/gui-chat.h"
#include "../../plugins/plugin.h"
@@ -1,5 +1,5 @@
/*
* wee-hook-signal.c - WeeChat signal hook
* hook-signal.c - WeeChat signal hook
*
* Copyright (C) 2003-2024 Sébastien Helleu <flashcode@flashtux.org>
*
@@ -27,10 +27,10 @@
#include <string.h>
#include "../weechat.h"
#include "../wee-hook.h"
#include "../wee-infolist.h"
#include "../wee-log.h"
#include "../wee-string.h"
#include "../core-hook.h"
#include "../core-infolist.h"
#include "../core-log.h"
#include "../core-string.h"
#include "../../plugins/plugin.h"

Some files were not shown because too many files have changed in this diff Show More