diff options
Diffstat (limited to 'src/plugins/scripts')
38 files changed, 268 insertions, 205 deletions
diff --git a/src/plugins/scripts/CMakeLists.txt b/src/plugins/scripts/CMakeLists.txt index 4940c3dc8..e0d46b984 100644 --- a/src/plugins/scripts/CMakeLists.txt +++ b/src/plugins/scripts/CMakeLists.txt @@ -1,17 +1,20 @@ -# Copyright (c) 2003-2010 by FlashCode <flashcode@flashtux.org> # -# This program is free software; you can redistribute it and/or modify +# Copyright (C) 2003-2010 Sebastien Helleu <flashcode@flashtux.org> +# +# This file is part of WeeChat, the extensible chat client. +# +# WeeChat is free software; you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by # the Free Software Foundation; either version 3 of the License, or # (at your option) any later version. # -# This program is distributed in the hope that it will be useful, +# WeeChat is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. # # You should have received a copy of the GNU General Public License -# along with this program. If not, see <http://www.gnu.org/licenses/>. +# along with WeeChat. If not, see <http://www.gnu.org/licenses/>. # SET(LIB_SCRIPTS_SRC script.c script.h script-callback.c script-callback.h diff --git a/src/plugins/scripts/Makefile.am b/src/plugins/scripts/Makefile.am index bb786fefd..0ad064a31 100644 --- a/src/plugins/scripts/Makefile.am +++ b/src/plugins/scripts/Makefile.am @@ -1,17 +1,20 @@ -# Copyright (c) 2003-2010 by FlashCode <flashcode@flashtux.org> # -# This program is free software; you can redistribute it and/or modify +# Copyright (C) 2003-2010 Sebastien Helleu <flashcode@flashtux.org> +# +# This file is part of WeeChat, the extensible chat client. +# +# WeeChat is free software; you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by # the Free Software Foundation; either version 3 of the License, or # (at your option) any later version. # -# This program is distributed in the hope that it will be useful, +# WeeChat is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. # # You should have received a copy of the GNU General Public License -# along with this program. If not, see <http://www.gnu.org/licenses/>. +# along with WeeChat. If not, see <http://www.gnu.org/licenses/>. # INCLUDES = -DLOCALEDIR=\"$(datadir)/locale\" diff --git a/src/plugins/scripts/lua/CMakeLists.txt b/src/plugins/scripts/lua/CMakeLists.txt index eede0539b..6c050d953 100644 --- a/src/plugins/scripts/lua/CMakeLists.txt +++ b/src/plugins/scripts/lua/CMakeLists.txt @@ -1,17 +1,21 @@ -# Copyright (c) 2003-2010 by FlashCode <flashcode@flashtux.org> # -# This program is free software; you can redistribute it and/or modify +# Copyright (C) 2006-2007 Emmanuel Bouthenot <kolter@openics.org> +# Copyright (C) 2006-2010 Sebastien Helleu <flashcode@flashtux.org> +# +# This file is part of WeeChat, the extensible chat client. +# +# WeeChat is free software; you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by # the Free Software Foundation; either version 3 of the License, or # (at your option) any later version. # -# This program is distributed in the hope that it will be useful, +# WeeChat is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. # # You should have received a copy of the GNU General Public License -# along with this program. If not, see <http://www.gnu.org/licenses/>. +# along with WeeChat. If not, see <http://www.gnu.org/licenses/>. # ADD_LIBRARY(lua MODULE weechat-lua.c weechat-lua.h weechat-lua-api.c diff --git a/src/plugins/scripts/lua/Makefile.am b/src/plugins/scripts/lua/Makefile.am index 8223bb55e..70f5b3152 100644 --- a/src/plugins/scripts/lua/Makefile.am +++ b/src/plugins/scripts/lua/Makefile.am @@ -1,17 +1,21 @@ -# Copyright (c) 2003-2010 by FlashCode <flashcode@flashtux.org> # -# This program is free software; you can redistribute it and/or modify +# Copyright (C) 2006-2007 Emmanuel Bouthenot <kolter@openics.org> +# Copyright (C) 2006-2010 Sebastien Helleu <flashcode@flashtux.org> +# +# This file is part of WeeChat, the extensible chat client. +# +# WeeChat is free software; you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by # the Free Software Foundation; either version 3 of the License, or # (at your option) any later version. # -# This program is distributed in the hope that it will be useful, +# WeeChat is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. # # You should have received a copy of the GNU General Public License -# along with this program. If not, see <http://www.gnu.org/licenses/>. +# along with WeeChat. If not, see <http://www.gnu.org/licenses/>. # INCLUDES = -DLOCALEDIR=\"$(datadir)/locale\" $(LUA_CFLAGS) diff --git a/src/plugins/scripts/lua/weechat-lua-api.c b/src/plugins/scripts/lua/weechat-lua-api.c index 41b099ce8..7a5de5bd7 100644 --- a/src/plugins/scripts/lua/weechat-lua-api.c +++ b/src/plugins/scripts/lua/weechat-lua-api.c @@ -1,26 +1,27 @@ /* - * Copyright (c) 2003-2010 by FlashCode <flashcode@flashtux.org> - * See README for License detail, AUTHORS for developers list. + * Copyright (C) 2006-2007 Emmanuel Bouthenot <kolter@openics.org> + * Copyright (C) 2006-2010 Sebastien Helleu <flashcode@flashtux.org> * - * This program is free software; you can redistribute it and/or modify + * This file is part of WeeChat, the extensible chat client. + * + * WeeChat is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 3 of the License, or * (at your option) any later version. * - * This program is distributed in the hope that it will be useful, + * WeeChat is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License - * along with this program. If not, see <http://www.gnu.org/licenses/>. + * along with WeeChat. If not, see <http://www.gnu.org/licenses/>. */ /* * weechat-lua-api.c: lua API functions */ - #undef _ #include <lua.h> diff --git a/src/plugins/scripts/lua/weechat-lua-api.h b/src/plugins/scripts/lua/weechat-lua-api.h index 2a2d4f310..30d3b8337 100644 --- a/src/plugins/scripts/lua/weechat-lua-api.h +++ b/src/plugins/scripts/lua/weechat-lua-api.h @@ -1,22 +1,23 @@ /* - * Copyright (c) 2003-2010 by FlashCode <flashcode@flashtux.org> - * See README for License detail, AUTHORS for developers list. + * Copyright (C) 2006-2007 Emmanuel Bouthenot <kolter@openics.org> + * Copyright (C) 2006-2010 Sebastien Helleu <flashcode@flashtux.org> * - * This program is free software; you can redistribute it and/or modify + * This file is part of WeeChat, the extensible chat client. + * + * WeeChat is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 3 of the License, or * (at your option) any later version. * - * This program is distributed in the hope that it will be useful, + * WeeChat is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License - * along with this program. If not, see <http://www.gnu.org/licenses/>. + * along with WeeChat. If not, see <http://www.gnu.org/licenses/>. */ - #ifndef __WEECHAT_LUA_API_H #define __WEECHAT_LUA_API_H 1 diff --git a/src/plugins/scripts/lua/weechat-lua.c b/src/plugins/scripts/lua/weechat-lua.c index 06209cfcf..10248ed21 100644 --- a/src/plugins/scripts/lua/weechat-lua.c +++ b/src/plugins/scripts/lua/weechat-lua.c @@ -1,26 +1,27 @@ /* - * Copyright (c) 2003-2010 by FlashCode <flashcode@flashtux.org> - * See README for License detail, AUTHORS for developers list. + * Copyright (C) 2006-2007 Emmanuel Bouthenot <kolter@openics.org> + * Copyright (C) 2006-2010 Sebastien Helleu <flashcode@flashtux.org> * - * This program is free software; you can redistribute it and/or modify + * This file is part of WeeChat, the extensible chat client. + * + * WeeChat is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 3 of the License, or * (at your option) any later version. * - * This program is distributed in the hope that it will be useful, + * WeeChat is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License - * along with this program. If not, see <http://www.gnu.org/licenses/>. + * along with WeeChat. If not, see <http://www.gnu.org/licenses/>. */ /* * weechat-lua.c: lua plugin for WeeChat */ - #undef _ #include <lua.h> @@ -37,7 +38,7 @@ WEECHAT_PLUGIN_NAME(LUA_PLUGIN_NAME); WEECHAT_PLUGIN_DESCRIPTION("Lua plugin for WeeChat"); -WEECHAT_PLUGIN_AUTHOR("FlashCode <flashcode@flashtux.org>"); +WEECHAT_PLUGIN_AUTHOR("Sebastien Helleu <flashcode@flashtux.org>"); WEECHAT_PLUGIN_VERSION(WEECHAT_VERSION); WEECHAT_PLUGIN_LICENSE(WEECHAT_LICENSE); diff --git a/src/plugins/scripts/lua/weechat-lua.h b/src/plugins/scripts/lua/weechat-lua.h index d22cf47b2..a2131205f 100644 --- a/src/plugins/scripts/lua/weechat-lua.h +++ b/src/plugins/scripts/lua/weechat-lua.h @@ -1,22 +1,23 @@ /* - * Copyright (c) 2003-2010 by FlashCode <flashcode@flashtux.org> - * See README for License detail, AUTHORS for developers list. + * Copyright (C) 2006-2007 Emmanuel Bouthenot <kolter@openics.org> + * Copyright (C) 2006-2010 Sebastien Helleu <flashcode@flashtux.org> * - * This program is free software; you can redistribute it and/or modify + * This file is part of WeeChat, the extensible chat client. + * + * WeeChat is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 3 of the License, or * (at your option) any later version. * - * This program is distributed in the hope that it will be useful, + * WeeChat is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License - * along with this program. If not, see <http://www.gnu.org/licenses/>. + * along with WeeChat. If not, see <http://www.gnu.org/licenses/>. */ - #ifndef __WEECHAT_LUA_H #define __WEECHAT_LUA_H 1 diff --git a/src/plugins/scripts/perl/CMakeLists.txt b/src/plugins/scripts/perl/CMakeLists.txt index 4fde8fc8a..36ca082c4 100644 --- a/src/plugins/scripts/perl/CMakeLists.txt +++ b/src/plugins/scripts/perl/CMakeLists.txt @@ -1,17 +1,20 @@ -# Copyright (c) 2003-2010 by FlashCode <flashcode@flashtux.org> # -# This program is free software; you can redistribute it and/or modify +# Copyright (C) 2003-2010 Sebastien Helleu <flashcode@flashtux.org> +# +# This file is part of WeeChat, the extensible chat client. +# +# WeeChat is free software; you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by # the Free Software Foundation; either version 3 of the License, or # (at your option) any later version. # -# This program is distributed in the hope that it will be useful, +# WeeChat is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. # # You should have received a copy of the GNU General Public License -# along with this program. If not, see <http://www.gnu.org/licenses/>. +# along with WeeChat. If not, see <http://www.gnu.org/licenses/>. # ADD_LIBRARY(perl MODULE weechat-perl.c weechat-perl.h weechat-perl-api.c diff --git a/src/plugins/scripts/perl/Makefile.am b/src/plugins/scripts/perl/Makefile.am index 7d1d5f2fb..a8c0a6f4b 100644 --- a/src/plugins/scripts/perl/Makefile.am +++ b/src/plugins/scripts/perl/Makefile.am @@ -1,17 +1,20 @@ -# Copyright (c) 2003-2010 by FlashCode <flashcode@flashtux.org> # -# This program is free software; you can redistribute it and/or modify +# Copyright (C) 2003-2010 Sebastien Helleu <flashcode@flashtux.org> +# +# This file is part of WeeChat, the extensible chat client. +# +# WeeChat is free software; you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by # the Free Software Foundation; either version 3 of the License, or # (at your option) any later version. # -# This program is distributed in the hope that it will be useful, +# WeeChat is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. # # You should have received a copy of the GNU General Public License -# along with this program. If not, see <http://www.gnu.org/licenses/>. +# along with WeeChat. If not, see <http://www.gnu.org/licenses/>. # INCLUDES = -DLOCALEDIR=\"$(datadir)/locale\" $(PERL_CFLAGS) diff --git a/src/plugins/scripts/perl/weechat-perl-api.c b/src/plugins/scripts/perl/weechat-perl-api.c index e3a1bc733..e38f0a7c3 100644 --- a/src/plugins/scripts/perl/weechat-perl-api.c +++ b/src/plugins/scripts/perl/weechat-perl-api.c @@ -1,26 +1,27 @@ /* - * Copyright (c) 2003-2010 by FlashCode <flashcode@flashtux.org> - * See README for License detail, AUTHORS for developers list. + * Copyright (C) 2003-2010 Sebastien Helleu <flashcode@flashtux.org> + * Copyright (C) 2005-2008 Emmanuel Bouthenot <kolter@openics.org> * - * This program is free software; you can redistribute it and/or modify + * This file is part of WeeChat, the extensible chat client. + * + * WeeChat is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 3 of the License, or * (at your option) any later version. * - * This program is distributed in the hope that it will be useful, + * WeeChat is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License - * along with this program. If not, see <http://www.gnu.org/licenses/>. + * along with WeeChat. If not, see <http://www.gnu.org/licenses/>. */ /* * weechat-perl-api.c: perl API functions */ - #undef _ #include <EXTERN.h> diff --git a/src/plugins/scripts/perl/weechat-perl-api.h b/src/plugins/scripts/perl/weechat-perl-api.h index 155aa78da..bd3b9b314 100644 --- a/src/plugins/scripts/perl/weechat-perl-api.h +++ b/src/plugins/scripts/perl/weechat-perl-api.h @@ -1,22 +1,22 @@ /* - * Copyright (c) 2003-2010 by FlashCode <flashcode@flashtux.org> - * See README for License detail, AUTHORS for developers list. + * Copyright (C) 2003-2010 Sebastien Helleu <flashcode@flashtux.org> * - * This program is free software; you can redistribute it and/or modify + * This file is part of WeeChat, the extensible chat client. + * + * WeeChat is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 3 of the License, or * (at your option) any later version. * - * This program is distributed in the hope that it will be useful, + * WeeChat is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License - * along with this program. If not, see <http://www.gnu.org/licenses/>. + * along with WeeChat. If not, see <http://www.gnu.org/licenses/>. */ - #ifndef __WEECHAT_PERL_API_H #define __WEECHAT_PERL_API_H 1 diff --git a/src/plugins/scripts/perl/weechat-perl.c b/src/plugins/scripts/perl/weechat-perl.c index 63626a9d7..7de8af730 100644 --- a/src/plugins/scripts/perl/weechat-perl.c +++ b/src/plugins/scripts/perl/weechat-perl.c @@ -1,26 +1,27 @@ /* - * Copyright (c) 2003-2010 by FlashCode <flashcode@flashtux.org> - * See README for License detail, AUTHORS for developers list. + * Copyright (C) 2003-2010 Sebastien Helleu <flashcode@flashtux.org> + * Copyright (C) 2005-2008 Emmanuel Bouthenot <kolter@openics.org> * - * This program is free software; you can redistribute it and/or modify + * This file is part of WeeChat, the extensible chat client. + * + * WeeChat is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 3 of the License, or * (at your option) any later version. * - * This program is distributed in the hope that it will be useful, + * WeeChat is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License - * along with this program. If not, see <http://www.gnu.org/licenses/>. + * along with WeeChat. If not, see <http://www.gnu.org/licenses/>. */ /* * weechat-perl.c: perl plugin for WeeChat */ - #undef _ #include <EXTERN.h> @@ -35,7 +36,7 @@ WEECHAT_PLUGIN_NAME(PERL_PLUGIN_NAME); WEECHAT_PLUGIN_DESCRIPTION("Perl plugin for WeeChat"); -WEECHAT_PLUGIN_AUTHOR("FlashCode <flashcode@flashtux.org>"); +WEECHAT_PLUGIN_AUTHOR("Sebastien Helleu <flashcode@flashtux.org>"); WEECHAT_PLUGIN_VERSION(WEECHAT_VERSION); WEECHAT_PLUGIN_LICENSE(WEECHAT_LICENSE); diff --git a/src/plugins/scripts/perl/weechat-perl.h b/src/plugins/scripts/perl/weechat-perl.h index 0e6b5ccf7..f5e209538 100644 --- a/src/plugins/scripts/perl/weechat-perl.h +++ b/src/plugins/scripts/perl/weechat-perl.h @@ -1,22 +1,22 @@ /* - * Copyright (c) 2003-2010 by FlashCode <flashcode@flashtux.org> - * See README for License detail, AUTHORS for developers list. + * Copyright (C) 2003-2010 Sebastien Helleu <flashcode@flashtux.org> * - * This program is free software; you can redistribute it and/or modify + * This file is part of WeeChat, the extensible chat client. + * + * WeeChat is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 3 of the License, or * (at your option) any later version. * - * This program is distributed in the hope that it will be useful, + * WeeChat is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License - * along with this program. If not, see <http://www.gnu.org/licenses/>. + * along with WeeChat. If not, see <http://www.gnu.org/licenses/>. */ - #ifndef __WEECHAT_PERL_H #define __WEECHAT_PERL_H 1 diff --git a/src/plugins/scripts/python/CMakeLists.txt b/src/plugins/scripts/python/CMakeLists.txt index 484df5956..4cd7f566d 100644 --- a/src/plugins/scripts/python/CMakeLists.txt +++ b/src/plugins/scripts/python/CMakeLists.txt @@ -1,17 +1,20 @@ -# Copyright (c) 2003-2010 by FlashCode <flashcode@flashtux.org> # -# This program is free software; you can redistribute it and/or modify +# Copyright (C) 2003-2010 Sebastien Helleu <flashcode@flashtux.org> +# +# This file is part of WeeChat, the extensible chat client. +# +# WeeChat is free software; you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by # the Free Software Foundation; either version 3 of the License, or # (at your option) any later version. # -# This program is distributed in the hope that it will be useful, +# WeeChat is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. # # You should have received a copy of the GNU General Public License -# along with this program. If not, see <http://www.gnu.org/licenses/>. +# along with WeeChat. If not, see <http://www.gnu.org/licenses/>. # ADD_LIBRARY(python MODULE weechat-python.c weechat-python.h diff --git a/src/plugins/scripts/python/Makefile.am b/src/plugins/scripts/python/Makefile.am index 9e8b96ba9..81fb9e083 100644 --- a/src/plugins/scripts/python/Makefile.am +++ b/src/plugins/scripts/python/Makefile.am @@ -1,17 +1,20 @@ -# Copyright (c) 2003-2010 by FlashCode <flashcode@flashtux.org> # -# This program is free software; you can redistribute it and/or modify +# Copyright (C) 2003-2010 Sebastien Helleu <flashcode@flashtux.org> +# +# This file is part of WeeChat, the extensible chat client. +# +# WeeChat is free software; you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by # the Free Software Foundation; either version 3 of the License, or # (at your option) any later version. # -# This program is distributed in the hope that it will be useful, +# WeeChat is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. # # You should have received a copy of the GNU General Public License -# along with this program. If not, see <http://www.gnu.org/licenses/>. +# along with WeeChat. If not, see <http://www.gnu.org/licenses/>. # INCLUDES = -DLOCALEDIR=\"$(datadir)/locale\" $(PYTHON_CFLAGS) diff --git a/src/plugins/scripts/python/weechat-python-api.c b/src/plugins/scripts/python/weechat-python-api.c index 561bafad5..5f83d4abd 100644 --- a/src/plugins/scripts/python/weechat-python-api.c +++ b/src/plugins/scripts/python/weechat-python-api.c @@ -1,26 +1,27 @@ /* - * Copyright (c) 2003-2010 by FlashCode <flashcode@flashtux.org> - * See README for License detail, AUTHORS for developers list. + * Copyright (C) 2003-2010 Sebastien Helleu <flashcode@flashtux.org> + * Copyright (C) 2005-2007 Emmanuel Bouthenot <kolter@openics.org> * - * This program is free software; you can redistribute it and/or modify + * This file is part of WeeChat, the extensible chat client. + * + * WeeChat is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 3 of the License, or * (at your option) any later version. * - * This program is distributed in the hope that it will be useful, + * WeeChat is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License - * along with this program. If not, see <http://www.gnu.org/licenses/>. + * along with WeeChat. If not, see <http://www.gnu.org/licenses/>. */ /* * weechat-python-api.c: python API functions */ - #undef _ #include <Python.h> diff --git a/src/plugins/scripts/python/weechat-python-api.h b/src/plugins/scripts/python/weechat-python-api.h index 6ffe17870..a0830ac4b 100644 --- a/src/plugins/scripts/python/weechat-python-api.h +++ b/src/plugins/scripts/python/weechat-python-api.h @@ -1,22 +1,23 @@ /* - * Copyright (c) 2003-2010 by FlashCode <flashcode@flashtux.org> - * See README for License detail, AUTHORS for developers list. + * Copyright (C) 2003-2010 Sebastien Helleu <flashcode@flashtux.org> + * Copyright (C) 2005-2007 Emmanuel Bouthenot <kolter@openics.org> * - * This program is free software; you can redistribute it and/or modify + * This file is part of WeeChat, the extensible chat client. + * + * WeeChat is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 3 of the License, or * (at your option) any later version. * - * This program is distributed in the hope that it will be useful, + * WeeChat is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License - * along with this program. If not, see <http://www.gnu.org/licenses/>. + * along with WeeChat. If not, see <http://www.gnu.org/licenses/>. */ - #ifndef __WEECHAT_PYTHON_API_H #define __WEECHAT_PYTHON_API_H 1 diff --git a/src/plugins/scripts/python/weechat-python.c b/src/plugins/scripts/python/weechat-python.c index d30096473..110bbe0cf 100644 --- a/src/plugins/scripts/python/weechat-python.c +++ b/src/plugins/scripts/python/weechat-python.c @@ -1,26 +1,27 @@ /* - * Copyright (c) 2003-2010 by FlashCode <flashcode@flashtux.org> - * See README for License detail, AUTHORS for developers list. + * Copyright (C) 2003-2010 Sebastien Helleu <flashcode@flashtux.org> + * Copyright (C) 2005-2007 Emmanuel Bouthenot <kolter@openics.org> * - * This program is free software; you can redistribute it and/or modify + * This file is part of WeeChat, the extensible chat client. + * + * WeeChat is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 3 of the License, or * (at your option) any later version. * - * This program is distributed in the hope that it will be useful, + * WeeChat is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License - * along with this program. If not, see <http://www.gnu.org/licenses/>. + * along with WeeChat. If not, see <http://www.gnu.org/licenses/>. */ /* * weechat-python.c: python plugin for WeeChat */ - #undef _ #include <Python.h> @@ -33,7 +34,7 @@ WEECHAT_PLUGIN_NAME(PYTHON_PLUGIN_NAME); WEECHAT_PLUGIN_DESCRIPTION("Python plugin for WeeChat"); -WEECHAT_PLUGIN_AUTHOR("FlashCode <flashcode@flashtux.org>"); +WEECHAT_PLUGIN_AUTHOR("Sebastien Helleu <flashcode@flashtux.org>"); WEECHAT_PLUGIN_VERSION(WEECHAT_VERSION); WEECHAT_PLUGIN_LICENSE(WEECHAT_LICENSE); diff --git a/src/plugins/scripts/python/weechat-python.h b/src/plugins/scripts/python/weechat-python.h index 421f73b6b..7966d36d4 100644 --- a/src/plugins/scripts/python/weechat-python.h +++ b/src/plugins/scripts/python/weechat-python.h @@ -1,22 +1,23 @@ /* - * Copyright (c) 2003-2010 by FlashCode <flashcode@flashtux.org> - * See README for License detail, AUTHORS for developers list. + * Copyright (C) 2003-2010 Sebastien Helleu <flashcode@flashtux.org> + * Copyright (C) 2005-2007 Emmanuel Bouthenot <kolter@openics.org> * - * This program is free software; you can redistribute it and/or modify + * This file is part of WeeChat, the extensible chat client. + * + * WeeChat is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 3 of the License, or * (at your option) any later version. * - * This program is distributed in the hope that it will be useful, + * WeeChat is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License - * along with this program. If not, see <http://www.gnu.org/licenses/>. + * along with WeeChat. If not, see <http://www.gnu.org/licenses/>. */ - #ifndef __WEECHAT_PYTHON_H #define __WEECHAT_PYTHON_H 1 diff --git a/src/plugins/scripts/ruby/CMakeLists.txt b/src/plugins/scripts/ruby/CMakeLists.txt index f9b853802..e6b7697c8 100644 --- a/src/plugins/scripts/ruby/CMakeLists.txt +++ b/src/plugins/scripts/ruby/CMakeLists.txt @@ -1,17 +1,20 @@ -# Copyright (c) 2003-2010 by FlashCode <flashcode@flashtux.org> # -# This program is free software; you can redistribute it and/or modify +# Copyright (C) 2003-2010 Sebastien Helleu <flashcode@flashtux.org> +# +# This file is part of WeeChat, the extensible chat client. +# +# WeeChat is free software; you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by # the Free Software Foundation; either version 3 of the License, or # (at your option) any later version. # -# This program is distributed in the hope that it will be useful, +# WeeChat is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. # # You should have received a copy of the GNU General Public License -# along with this program. If not, see <http://www.gnu.org/licenses/>. +# along with WeeChat. If not, see <http://www.gnu.org/licenses/>. # ADD_LIBRARY(ruby MODULE weechat-ruby.c weechat-ruby.h weechat-ruby-api.c diff --git a/src/plugins/scripts/ruby/Makefile.am b/src/plugins/scripts/ruby/Makefile.am index 5b56e8612..f6203b022 100644 --- a/src/plugins/scripts/ruby/Makefile.am +++ b/src/plugins/scripts/ruby/Makefile.am @@ -1,17 +1,20 @@ -# Copyright (c) 2003-2010 by FlashCode <flashcode@flashtux.org> # -# This program is free software; you can redistribute it and/or modify +# Copyright (C) 2003-2010 Sebastien Helleu <flashcode@flashtux.org> +# +# This file is part of WeeChat, the extensible chat client. +# +# WeeChat is free software; you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by # the Free Software Foundation; either version 3 of the License, or # (at your option) any later version. # -# This program is distributed in the hope that it will be useful, +# WeeChat is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. # # You should have received a copy of the GNU General Public License -# along with this program. If not, see <http://www.gnu.org/licenses/>. +# along with WeeChat. If not, see <http://www.gnu.org/licenses/>. # INCLUDES = -DLOCALEDIR=\"$(datadir)/locale\" $(RUBY_CFLAGS) diff --git a/src/plugins/scripts/ruby/weechat-ruby-api.c b/src/plugins/scripts/ruby/weechat-ruby-api.c index 67258afa4..0e52378a5 100644 --- a/src/plugins/scripts/ruby/weechat-ruby-api.c +++ b/src/plugins/scripts/ruby/weechat-ruby-api.c @@ -1,26 +1,27 @@ /* - * Copyright (c) 2003-2010 by FlashCode <flashcode@flashtux.org> - * See README for License detail, AUTHORS for developers list. + * Copyright (C) 2003-2010 Sebastien Helleu <flashcode@flashtux.org> + * Copyright (C) 2005-2007 Emmanuel Bouthenot <kolter@openics.org> * - * This program is free software; you can redistribute it and/or modify + * This file is part of WeeChat, the extensible chat client. + * + * WeeChat is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 3 of the License, or * (at your option) any later version. * - * This program is distributed in the hope that it will be useful, + * WeeChat is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License - * along with this program. If not, see <http://www.gnu.org/licenses/>. + * along with WeeChat. If not, see <http://www.gnu.org/licenses/>. */ /* * weechat-ruby-api.c: ruby API functions */ - #undef _ #include <ruby.h> diff --git a/src/plugins/scripts/ruby/weechat-ruby-api.h b/src/plugins/scripts/ruby/weechat-ruby-api.h index 49130389d..4742e71d6 100644 --- a/src/plugins/scripts/ruby/weechat-ruby-api.h +++ b/src/plugins/scripts/ruby/weechat-ruby-api.h @@ -1,22 +1,23 @@ /* - * Copyright (c) 2003-2010 by FlashCode <flashcode@flashtux.org> - * See README for License detail, AUTHORS for developers list. + * Copyright (C) 2003-2010 Sebastien Helleu <flashcode@flashtux.org> + * Copyright (C) 2005-2007 Emmanuel Bouthenot <kolter@openics.org> * - * This program is free software; you can redistribute it and/or modify + * This file is part of WeeChat, the extensible chat client. + * + * WeeChat is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 3 of the License, or * (at your option) any later version. * - * This program is distributed in the hope that it will be useful, + * WeeChat is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License - * along with this program. If not, see <http://www.gnu.org/licenses/>. + * along with WeeChat. If not, see <http://www.gnu.org/licenses/>. */ - #ifndef __WEECHAT_RUBY_API_H #define __WEECHAT_RUBY_API_H 1 diff --git a/src/plugins/scripts/ruby/weechat-ruby.c b/src/plugins/scripts/ruby/weechat-ruby.c index 40f3a69ed..ffaf816d2 100644 --- a/src/plugins/scripts/ruby/weechat-ruby.c +++ b/src/plugins/scripts/ruby/weechat-ruby.c @@ -1,26 +1,27 @@ /* - * Copyright (c) 2003-2010 by FlashCode <flashcode@flashtux.org> - * See README for License detail, AUTHORS for developers list. + * Copyright (C) 2003-2010 Sebastien Helleu <flashcode@flashtux.org> + * Copyright (C) 2005-2007 Emmanuel Bouthenot <kolter@openics.org> * - * This program is free software; you can redistribute it and/or modify + * This file is part of WeeChat, the extensible chat client. + * + * WeeChat is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 3 of the License, or * (at your option) any later version. * - * This program is distributed in the hope that it will be useful, + * WeeChat is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License - * along with this program. If not, see <http://www.gnu.org/licenses/>. + * along with WeeChat. If not, see <http://www.gnu.org/licenses/>. */ /* * weechat-ruby.c: ruby plugin for WeeChat */ - #undef _ #include <ruby.h> @@ -56,7 +57,7 @@ WEECHAT_PLUGIN_NAME(RUBY_PLUGIN_NAME); WEECHAT_PLUGIN_DESCRIPTION("Ruby plugin for WeeChat"); -WEECHAT_PLUGIN_AUTHOR("FlashCode <flashcode@flashtux.org>"); +WEECHAT_PLUGIN_AUTHOR("Sebastien Helleu <flashcode@flashtux.org>"); WEECHAT_PLUGIN_VERSION(WEECHAT_VERSION); WEECHAT_PLUGIN_LICENSE(WEECHAT_LICENSE); diff --git a/src/plugins/scripts/ruby/weechat-ruby.h b/src/plugins/scripts/ruby/weechat-ruby.h index 89cfad2c3..f61a568d0 100644 --- a/src/plugins/scripts/ruby/weechat-ruby.h +++ b/src/plugins/scripts/ruby/weechat-ruby.h @@ -1,22 +1,23 @@ /* - * Copyright (c) 2003-2010 by FlashCode <flashcode@flashtux.org> - * See README for License detail, AUTHORS for developers list. + * Copyright (C) 2003-2010 Sebastien Helleu <flashcode@flashtux.org> + * Copyright (C) 2005-2007 Emmanuel Bouthenot <kolter@openics.org> * - * This program is free software; you can redistribute it and/or modify + * This file is part of WeeChat, the extensible chat client. + * + * WeeChat is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 3 of the License, or * (at your option) any later version. * - * This program is distributed in the hope that it will be useful, + * WeeChat is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License - * along with this program. If not, see <http://www.gnu.org/licenses/>. + * along with WeeChat. If not, see <http://www.gnu.org/licenses/>. */ - #ifndef __WEECHAT_RUBY_H #define __WEECHAT_RUBY_H 1 diff --git a/src/plugins/scripts/script-api.c b/src/plugins/scripts/script-api.c index 05904ecfb..04b8b5951 100644 --- a/src/plugins/scripts/script-api.c +++ b/src/plugins/scripts/script-api.c @@ -1,26 +1,26 @@ /* - * Copyright (c) 2003-2010 by FlashCode <flashcode@flashtux.org> - * See README for License detail, AUTHORS for developers list. + * Copyright (C) 2003-2010 Sebastien Helleu <flashcode@flashtux.org> * - * This program is free software; you can redistribute it and/or modify + * This file is part of WeeChat, the extensible chat client. + * + * WeeChat is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 3 of the License, or * (at your option) any later version. * - * This program is distributed in the hope that it will be useful, + * WeeChat is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License - * along with this program. If not, see <http://www.gnu.org/licenses/>. + * along with WeeChat. If not, see <http://www.gnu.org/licenses/>. */ /* * script-api.c: script API functions, used by script plugins (perl/python/..) */ - #include <stdlib.h> #include <string.h> #include <stdarg.h> diff --git a/src/plugins/scripts/script-api.h b/src/plugins/scripts/script-api.h index fab902e2a..0bb4c9c10 100644 --- a/src/plugins/scripts/script-api.h +++ b/src/plugins/scripts/script-api.h @@ -1,19 +1,20 @@ /* - * Copyright (c) 2003-2010 by FlashCode <flashcode@flashtux.org> - * See README for License detail, AUTHORS for developers list. + * Copyright (C) 2003-2010 Sebastien Helleu <flashcode@flashtux.org> * - * This program is free software; you can redistribute it and/or modify + * This file is part of WeeChat, the extensible chat client. + * + * WeeChat is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 3 of the License, or * (at your option) any later version. * - * This program is distributed in the hope that it will be useful, + * WeeChat is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License - * along with this program. If not, see <http://www.gnu.org/licenses/>. + * along with WeeChat. If not, see <http://www.gnu.org/licenses/>. */ #ifndef __WEECHAT_SCRIPT_API_H diff --git a/src/plugins/scripts/script-callback.c b/src/plugins/scripts/script-callback.c index b62645c74..b32e53f4c 100644 --- a/src/plugins/scripts/script-callback.c +++ b/src/plugins/scripts/script-callback.c @@ -1,26 +1,26 @@ /* - * Copyright (c) 2003-2010 by FlashCode <flashcode@flashtux.org> - * See README for License detail, AUTHORS for developers list. + * Copyright (C) 2003-2010 Sebastien Helleu <flashcode@flashtux.org> * - * This program is free software; you can redistribute it and/or modify + * This file is part of WeeChat, the extensible chat client. + * + * WeeChat is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 3 of the License, or * (at your option) any later version. * - * This program is distributed in the hope that it will be useful, + * WeeChat is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License - * along with this program. If not, see <http://www.gnu.org/licenses/>. + * along with WeeChat. If not, see <http://www.gnu.org/licenses/>. */ /* * script-callback.c: script callbacks management */ - #include <stdlib.h> #include <unistd.h> #include <string.h> diff --git a/src/plugins/scripts/script-callback.h b/src/plugins/scripts/script-callback.h index c3db7a32e..db9f38dd9 100644 --- a/src/plugins/scripts/script-callback.h +++ b/src/plugins/scripts/script-callback.h @@ -1,19 +1,20 @@ /* - * Copyright (c) 2003-2010 by FlashCode <flashcode@flashtux.org> - * See README for License detail, AUTHORS for developers list. + * Copyright (C) 2003-2010 Sebastien Helleu <flashcode@flashtux.org> * - * This program is free software; you can redistribute it and/or modify + * This file is part of WeeChat, the extensible chat client. + * + * WeeChat is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 3 of the License, or * (at your option) any later version. * - * This program is distributed in the hope that it will be useful, + * WeeChat is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License - * along with this program. If not, see <http://www.gnu.org/licenses/>. + * along with WeeChat. If not, see <http://www.gnu.org/licenses/>. */ #ifndef __WEECHAT_SCRIPT_CALLBACK_H diff --git a/src/plugins/scripts/script.c b/src/plugins/scripts/script.c index 3a811b9a8..532f458e9 100644 --- a/src/plugins/scripts/script.c +++ b/src/plugins/scripts/script.c @@ -1,26 +1,26 @@ /* - * Copyright (c) 2003-2010 by FlashCode <flashcode@flashtux.org> - * See README for License detail, AUTHORS for developers list. + * Copyright (C) 2003-2010 Sebastien Helleu <flashcode@flashtux.org> * - * This program is free software; you can redistribute it and/or modify + * This file is part of WeeChat, the extensible chat client. + * + * WeeChat is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 3 of the License, or * (at your option) any later version. * - * This program is distributed in the hope that it will be useful, + * WeeChat is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License - * along with this program. If not, see <http://www.gnu.org/licenses/>. + * along with WeeChat. If not, see <http://www.gnu.org/licenses/>. */ /* * script.c: common functions used by script plugins (perl/python/..) */ - #include <stdlib.h> #include <unistd.h> #include <stdio.h> diff --git a/src/plugins/scripts/script.h b/src/plugins/scripts/script.h index 702cb0f79..3f7f86cc5 100644 --- a/src/plugins/scripts/script.h +++ b/src/plugins/scripts/script.h @@ -1,19 +1,20 @@ /* - * Copyright (c) 2003-2010 by FlashCode <flashcode@flashtux.org> - * See README for License detail, AUTHORS for developers list. + * Copyright (C) 2003-2010 Sebastien Helleu <flashcode@flashtux.org> * - * This program is free software; you can redistribute it and/or modify + * This file is part of WeeChat, the extensible chat client. + * + * WeeChat is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 3 of the License, or * (at your option) any later version. * - * This program is distributed in the hope that it will be useful, + * WeeChat is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License - * along with this program. If not, see <http://www.gnu.org/licenses/>. + * along with WeeChat. If not, see <http://www.gnu.org/licenses/>. */ #ifndef __WEECHAT_SCRIPT_H diff --git a/src/plugins/scripts/tcl/CMakeLists.txt b/src/plugins/scripts/tcl/CMakeLists.txt index 1ac87f279..6c5b5524d 100644 --- a/src/plugins/scripts/tcl/CMakeLists.txt +++ b/src/plugins/scripts/tcl/CMakeLists.txt @@ -1,17 +1,22 @@ -# Copyright (c) 2003-2010 by FlashCode <flashcode@flashtux.org> # -# This program is free software; you can redistribute it and/or modify +# Copyright (C) 2008-2010 Dmitry Kobylin <fnfal@academ.tsc.ru> +# Copyright (C) 2008 Julien Louis <ptitlouis@sysif.net> +# Copyright (C) 2008-2010 Sebastien Helleu <flashcode@flashtux.org> +# +# This file is part of WeeChat, the extensible chat client. +# +# WeeChat is free software; you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by # the Free Software Foundation; either version 3 of the License, or # (at your option) any later version. # -# This program is distributed in the hope that it will be useful, +# WeeChat is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. # # You should have received a copy of the GNU General Public License -# along with this program. If not, see <http://www.gnu.org/licenses/>. +# along with WeeChat. If not, see <http://www.gnu.org/licenses/>. # ADD_LIBRARY(tcl MODULE weechat-tcl.c weechat-tcl.h diff --git a/src/plugins/scripts/tcl/Makefile.am b/src/plugins/scripts/tcl/Makefile.am index 2bab8cbc3..2d92e2e1a 100644 --- a/src/plugins/scripts/tcl/Makefile.am +++ b/src/plugins/scripts/tcl/Makefile.am @@ -1,17 +1,21 @@ -# Copyright (c) 2003-2010 by FlashCode <flashcode@flashtux.org> # -# This program is free software; you can redistribute it and/or modify +# Copyright (C) 2008-2010 Dmitry Kobylin <fnfal@academ.tsc.ru> +# Copyright (C) 2008-2010 Sebastien Helleu <flashcode@flashtux.org> +# +# This file is part of WeeChat, the extensible chat client. +# +# WeeChat is free software; you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by # the Free Software Foundation; either version 3 of the License, or # (at your option) any later version. # -# This program is distributed in the hope that it will be useful, +# WeeChat is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. # # You should have received a copy of the GNU General Public License -# along with this program. If not, see <http://www.gnu.org/licenses/>. +# along with WeeChat. If not, see <http://www.gnu.org/licenses/>. # INCLUDES = -DLOCALEDIR=\"$(datadir)/locale\" $(TCL_CFLAGS) diff --git a/src/plugins/scripts/tcl/weechat-tcl-api.c b/src/plugins/scripts/tcl/weechat-tcl-api.c index 8430139df..0688652a9 100644 --- a/src/plugins/scripts/tcl/weechat-tcl-api.c +++ b/src/plugins/scripts/tcl/weechat-tcl-api.c @@ -1,26 +1,28 @@ /* - * Copyright (c) 2008-2010 by Dmitry Kobylin <fnfal@academ.tsc.ru> - * See README for License detail, AUTHORS for developers list. + * Copyright (C) 2008-2010 Dmitry Kobylin <fnfal@academ.tsc.ru> + * Copyright (C) 2008 Julien Louis <ptitlouis@sysif.net> + * Copyright (C) 2008-2010 Sebastien Helleu <flashcode@flashtux.org> * - * This program is free software; you can redistribute it and/or modify + * This file is part of WeeChat, the extensible chat client. + * + * WeeChat is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 3 of the License, or * (at your option) any later version. * - * This program is distributed in the hope that it will be useful, + * WeeChat is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License - * along with this program. If not, see <http://www.gnu.org/licenses/>. + * along with WeeChat. If not, see <http://www.gnu.org/licenses/>. */ /* * weechat-tcl-api.c: tcl API functions */ - #undef _ #include <tcl.h> diff --git a/src/plugins/scripts/tcl/weechat-tcl-api.h b/src/plugins/scripts/tcl/weechat-tcl-api.h index df44f3b53..c9a461b36 100644 --- a/src/plugins/scripts/tcl/weechat-tcl-api.h +++ b/src/plugins/scripts/tcl/weechat-tcl-api.h @@ -1,22 +1,23 @@ /* - * Copyright (c) 2003-2010 by FlashCode <flashcode@flashtux.org> - * See README for License detail, AUTHORS for developers list. + * Copyright (C) 2008-2010 Dmitry Kobylin <fnfal@academ.tsc.ru> + * Copyright (C) 2008-2010 Sebastien Helleu <flashcode@flashtux.org> * - * This program is free software; you can redistribute it and/or modify + * This file is part of WeeChat, the extensible chat client. + * + * WeeChat is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 3 of the License, or * (at your option) any later version. * - * This program is distributed in the hope that it will be useful, + * WeeChat is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License - * along with this program. If not, see <http://www.gnu.org/licenses/>. + * along with WeeChat. If not, see <http://www.gnu.org/licenses/>. */ - #ifndef __WEECHAT_TCL_API_H #define __WEECHAT_TCL_API_H 1 diff --git a/src/plugins/scripts/tcl/weechat-tcl.c b/src/plugins/scripts/tcl/weechat-tcl.c index b6aa6e5e6..f874c83b5 100644 --- a/src/plugins/scripts/tcl/weechat-tcl.c +++ b/src/plugins/scripts/tcl/weechat-tcl.c @@ -1,26 +1,27 @@ /* - * Copyright (c) 2008-2010 by Dmitry Kobylin <fnfal@academ.tsc.ru> - * See README for License detail, AUTHORS for developers list. + * Copyright (C) 2008-2010 Dmitry Kobylin <fnfal@academ.tsc.ru> + * Copyright (C) 2008-2010 Sebastien Helleu <flashcode@flashtux.org> * - * This program is free software; you can redistribute it and/or modify + * This file is part of WeeChat, the extensible chat client. + * + * WeeChat is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 3 of the License, or * (at your option) any later version. * - * This program is distributed in the hope that it will be useful, + * WeeChat is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License - * along with this program. If not, see <http://www.gnu.org/licenses/>. + * along with WeeChat. If not, see <http://www.gnu.org/licenses/>. */ /* * weechat-tcl.c: tcl plugin for WeeChat */ - #undef _ #include <tcl.h> diff --git a/src/plugins/scripts/tcl/weechat-tcl.h b/src/plugins/scripts/tcl/weechat-tcl.h index d680fe8da..c4bce34a4 100644 --- a/src/plugins/scripts/tcl/weechat-tcl.h +++ b/src/plugins/scripts/tcl/weechat-tcl.h @@ -1,22 +1,23 @@ /* - * Copyright (c) 2003-2010 by FlashCode <flashcode@flashtux.org> - * See README for License detail, AUTHORS for developers list. + * Copyright (C) 2008-2010 Dmitry Kobylin <fnfal@academ.tsc.ru> + * Copyright (C) 2008-2010 Sebastien Helleu <flashcode@flashtux.org> * - * This program is free software; you can redistribute it and/or modify + * This file is part of WeeChat, the extensible chat client. + * + * WeeChat is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 3 of the License, or * (at your option) any later version. * - * This program is distributed in the hope that it will be useful, + * WeeChat is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License - * along with this program. If not, see <http://www.gnu.org/licenses/>. + * along with WeeChat. If not, see <http://www.gnu.org/licenses/>. */ - #ifndef __WEECHAT_TCL_H #define __WEECHAT_TCL_H 1 |