From 6562d676fe079d53f820d947cb0815e089159457 Mon Sep 17 00:00:00 2001 From: Sebastien Helleu Date: Tue, 22 Jun 2010 19:46:28 +0200 Subject: Update licenses and copyrights, add missing author names in sources --- src/plugins/irc/CMakeLists.txt | 11 +++++++---- src/plugins/irc/Makefile.am | 11 +++++++---- src/plugins/irc/irc-bar-item.c | 12 ++++++------ src/plugins/irc/irc-bar-item.h | 12 ++++++------ src/plugins/irc/irc-buffer.c | 12 ++++++------ src/plugins/irc/irc-buffer.h | 12 ++++++------ src/plugins/irc/irc-channel.c | 12 ++++++------ src/plugins/irc/irc-channel.h | 12 ++++++------ src/plugins/irc/irc-color.c | 12 ++++++------ src/plugins/irc/irc-color.h | 12 ++++++------ src/plugins/irc/irc-command.c | 13 +++++++------ src/plugins/irc/irc-command.h | 12 ++++++------ src/plugins/irc/irc-completion.c | 12 ++++++------ src/plugins/irc/irc-completion.h | 12 ++++++------ src/plugins/irc/irc-config.c | 12 ++++++------ src/plugins/irc/irc-config.h | 12 ++++++------ src/plugins/irc/irc-ctcp.c | 12 ++++++------ src/plugins/irc/irc-ctcp.h | 12 ++++++------ src/plugins/irc/irc-debug.c | 12 ++++++------ src/plugins/irc/irc-debug.h | 12 ++++++------ src/plugins/irc/irc-display.c | 12 ++++++------ src/plugins/irc/irc-display.h | 12 ++++++------ src/plugins/irc/irc-ignore.c | 12 ++++++------ src/plugins/irc/irc-ignore.h | 12 ++++++------ src/plugins/irc/irc-info.c | 12 ++++++------ src/plugins/irc/irc-info.h | 12 ++++++------ src/plugins/irc/irc-input.c | 12 ++++++------ src/plugins/irc/irc-input.h | 12 ++++++------ src/plugins/irc/irc-mode.c | 12 ++++++------ src/plugins/irc/irc-mode.h | 12 ++++++------ src/plugins/irc/irc-msgbuffer.c | 12 ++++++------ src/plugins/irc/irc-msgbuffer.h | 12 ++++++------ src/plugins/irc/irc-nick.c | 12 ++++++------ src/plugins/irc/irc-nick.h | 12 ++++++------ src/plugins/irc/irc-protocol.c | 13 +++++++------ src/plugins/irc/irc-protocol.h | 12 ++++++------ src/plugins/irc/irc-raw.c | 12 ++++++------ src/plugins/irc/irc-raw.h | 12 ++++++------ src/plugins/irc/irc-sasl.c | 12 ++++++------ src/plugins/irc/irc-sasl.h | 12 ++++++------ src/plugins/irc/irc-server.c | 13 +++++++------ src/plugins/irc/irc-server.h | 12 ++++++------ src/plugins/irc/irc-upgrade.c | 12 ++++++------ src/plugins/irc/irc-upgrade.h | 12 ++++++------ src/plugins/irc/irc.c | 14 +++++++------- src/plugins/irc/irc.h | 13 +++++++------ 46 files changed, 283 insertions(+), 273 deletions(-) (limited to 'src/plugins/irc') diff --git a/src/plugins/irc/CMakeLists.txt b/src/plugins/irc/CMakeLists.txt index 65a22a68f..d751b90da 100644 --- a/src/plugins/irc/CMakeLists.txt +++ b/src/plugins/irc/CMakeLists.txt @@ -1,17 +1,20 @@ -# Copyright (c) 2003-2010 by FlashCode # -# This program is free software; you can redistribute it and/or modify +# Copyright (C) 2003-2010 Sebastien Helleu +# +# 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 . +# along with WeeChat. If not, see . # ADD_LIBRARY(irc MODULE diff --git a/src/plugins/irc/Makefile.am b/src/plugins/irc/Makefile.am index 6c0777387..da7b374be 100644 --- a/src/plugins/irc/Makefile.am +++ b/src/plugins/irc/Makefile.am @@ -1,17 +1,20 @@ -# Copyright (c) 2003-2010 by FlashCode # -# This program is free software; you can redistribute it and/or modify +# Copyright (C) 2003-2010 Sebastien Helleu +# +# 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 . +# along with WeeChat. If not, see . # INCLUDES = -DLOCALEDIR=\"$(datadir)/locale\" $(GCRYPT_CFLAGS) $(GNUTLS_CFLAGS) diff --git a/src/plugins/irc/irc-bar-item.c b/src/plugins/irc/irc-bar-item.c index 5f0dceb7e..558ba5a29 100644 --- a/src/plugins/irc/irc-bar-item.c +++ b/src/plugins/irc/irc-bar-item.c @@ -1,26 +1,26 @@ /* - * Copyright (c) 2003-2010 by FlashCode - * See README for License detail, AUTHORS for developers list. + * Copyright (C) 2003-2010 Sebastien Helleu * - * 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 . + * along with WeeChat. If not, see . */ /* * irc-bar-item.c: bar items for IRC plugin */ - #include #include #include diff --git a/src/plugins/irc/irc-bar-item.h b/src/plugins/irc/irc-bar-item.h index 5782f0f07..39a410f44 100644 --- a/src/plugins/irc/irc-bar-item.h +++ b/src/plugins/irc/irc-bar-item.h @@ -1,22 +1,22 @@ /* - * Copyright (c) 2003-2010 by FlashCode - * See README for License detail, AUTHORS for developers list. + * Copyright (C) 2003-2010 Sebastien Helleu * - * 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 . + * along with WeeChat. If not, see . */ - #ifndef __WEECHAT_IRC_BAR_ITEM_H #define __WEECHAT_IRC_BAR_ITEM_H 1 diff --git a/src/plugins/irc/irc-buffer.c b/src/plugins/irc/irc-buffer.c index ffa263395..8cc9edac4 100644 --- a/src/plugins/irc/irc-buffer.c +++ b/src/plugins/irc/irc-buffer.c @@ -1,26 +1,26 @@ /* - * Copyright (c) 2003-2010 by FlashCode - * See README for License detail, AUTHORS for developers list. + * Copyright (C) 2003-2010 Sebastien Helleu * - * 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 . + * along with WeeChat. If not, see . */ /* * irc-buffer.c: buffer functions for IRC plugin */ - #include #include #include diff --git a/src/plugins/irc/irc-buffer.h b/src/plugins/irc/irc-buffer.h index 4ad53334e..ede859087 100644 --- a/src/plugins/irc/irc-buffer.h +++ b/src/plugins/irc/irc-buffer.h @@ -1,22 +1,22 @@ /* - * Copyright (c) 2003-2010 by FlashCode - * See README for License detail, AUTHORS for developers list. + * Copyright (C) 2003-2010 Sebastien Helleu * - * 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 . + * along with WeeChat. If not, see . */ - #ifndef __WEECHAT_IRC_BUFFER_H #define __WEECHAT_IRC_BUFFER_H 1 diff --git a/src/plugins/irc/irc-channel.c b/src/plugins/irc/irc-channel.c index 60362d44f..f9813e84c 100644 --- a/src/plugins/irc/irc-channel.c +++ b/src/plugins/irc/irc-channel.c @@ -1,26 +1,26 @@ /* - * Copyright (c) 2003-2010 by FlashCode - * See README for License detail, AUTHORS for developers list. + * Copyright (C) 2003-2010 Sebastien Helleu * - * 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 . + * along with WeeChat. If not, see . */ /* * irc-channel.c: channel and private chat management for IRC plugin */ - #include #include #include diff --git a/src/plugins/irc/irc-channel.h b/src/plugins/irc/irc-channel.h index 00d4191ec..e8d818314 100644 --- a/src/plugins/irc/irc-channel.h +++ b/src/plugins/irc/irc-channel.h @@ -1,22 +1,22 @@ /* - * Copyright (c) 2003-2010 by FlashCode - * See README for License detail, AUTHORS for developers list. + * Copyright (C) 2003-2010 Sebastien Helleu * - * 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 . + * along with WeeChat. If not, see . */ - #ifndef __WEECHAT_IRC_CHANNEL_H #define __WEECHAT_IRC_CHANNEL_H 1 diff --git a/src/plugins/irc/irc-color.c b/src/plugins/irc/irc-color.c index 1469405bf..6373d8a66 100644 --- a/src/plugins/irc/irc-color.c +++ b/src/plugins/irc/irc-color.c @@ -1,26 +1,26 @@ /* - * Copyright (c) 2003-2010 by FlashCode - * See README for License detail, AUTHORS for developers list. + * Copyright (C) 2003-2010 Sebastien Helleu * - * 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 . + * along with WeeChat. If not, see . */ /* * irc-color.c: IRC color decoding/encoding in messages */ - #include #include #include diff --git a/src/plugins/irc/irc-color.h b/src/plugins/irc/irc-color.h index 4bf6d7347..36f40192f 100644 --- a/src/plugins/irc/irc-color.h +++ b/src/plugins/irc/irc-color.h @@ -1,22 +1,22 @@ /* - * Copyright (c) 2003-2010 by FlashCode - * See README for License detail, AUTHORS for developers list. + * Copyright (C) 2003-2010 Sebastien Helleu * - * 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 . + * along with WeeChat. If not, see . */ - #ifndef __WEECHAT_IRC_COLOR_H #define __WEECHAT_IRC_COLOR_H 1 diff --git a/src/plugins/irc/irc-command.c b/src/plugins/irc/irc-command.c index 6e81d9685..d2550faa0 100644 --- a/src/plugins/irc/irc-command.c +++ b/src/plugins/irc/irc-command.c @@ -1,26 +1,27 @@ /* - * Copyright (c) 2003-2010 by FlashCode - * See README for License detail, AUTHORS for developers list. + * Copyright (C) 2003-2010 Sebastien Helleu + * Copyright (C) 2006 Emmanuel Bouthenot * - * 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 . + * along with WeeChat. If not, see . */ /* * irc-command.c: IRC commands */ - #include #include #include diff --git a/src/plugins/irc/irc-command.h b/src/plugins/irc/irc-command.h index 9263c269f..621ee23b2 100644 --- a/src/plugins/irc/irc-command.h +++ b/src/plugins/irc/irc-command.h @@ -1,22 +1,22 @@ /* - * Copyright (c) 2003-2010 by FlashCode - * See README for License detail, AUTHORS for developers list. + * Copyright (C) 2003-2010 Sebastien Helleu * - * 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 . + * along with WeeChat. If not, see . */ - #ifndef __WEECHAT_IRC_COMMAND_H #define __WEECHAT_IRC_COMMAND_H 1 diff --git a/src/plugins/irc/irc-completion.c b/src/plugins/irc/irc-completion.c index 1e50fd2c2..a91ad96f4 100644 --- a/src/plugins/irc/irc-completion.c +++ b/src/plugins/irc/irc-completion.c @@ -1,26 +1,26 @@ /* - * Copyright (c) 2003-2010 by FlashCode - * See README for License detail, AUTHORS for developers list. + * Copyright (C) 2003-2010 Sebastien Helleu * - * 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 . + * along with WeeChat. If not, see . */ /* * irc-completion.c: completion for IRC commands */ - #include #include #include diff --git a/src/plugins/irc/irc-completion.h b/src/plugins/irc/irc-completion.h index 875366ec1..ac7ba3de3 100644 --- a/src/plugins/irc/irc-completion.h +++ b/src/plugins/irc/irc-completion.h @@ -1,22 +1,22 @@ /* - * Copyright (c) 2003-2010 by FlashCode - * See README for License detail, AUTHORS for developers list. + * Copyright (C) 2003-2010 Sebastien Helleu * - * 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 . + * along with WeeChat. If not, see . */ - #ifndef __WEECHAT_IRC_COMPLETION_H #define __WEECHAT_IRC_COMPLETION_H 1 diff --git a/src/plugins/irc/irc-config.c b/src/plugins/irc/irc-config.c index 4de2c1044..406da4e5e 100644 --- a/src/plugins/irc/irc-config.c +++ b/src/plugins/irc/irc-config.c @@ -1,26 +1,26 @@ /* - * Copyright (c) 2003-2010 by FlashCode - * See README for License detail, AUTHORS for developers list. + * Copyright (C) 2003-2010 Sebastien Helleu * - * 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 . + * along with WeeChat. If not, see . */ /* * irc-config.c: IRC configuration options (file irc.conf) */ - #include #include #include diff --git a/src/plugins/irc/irc-config.h b/src/plugins/irc/irc-config.h index b5b06a1dd..131e4c51b 100644 --- a/src/plugins/irc/irc-config.h +++ b/src/plugins/irc/irc-config.h @@ -1,22 +1,22 @@ /* - * Copyright (c) 2003-2010 by FlashCode - * See README for License detail, AUTHORS for developers list. + * Copyright (C) 2003-2010 Sebastien Helleu * - * 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 . + * along with WeeChat. If not, see . */ - #ifndef __WEECHAT_IRC_CONFIG_H #define __WEECHAT_IRC_CONFIG_H 1 diff --git a/src/plugins/irc/irc-ctcp.c b/src/plugins/irc/irc-ctcp.c index cbfdb39c4..3b8a5eae9 100644 --- a/src/plugins/irc/irc-ctcp.c +++ b/src/plugins/irc/irc-ctcp.c @@ -1,26 +1,26 @@ /* - * Copyright (c) 2003-2010 by FlashCode - * See README for License detail, AUTHORS for developers list. + * Copyright (C) 2003-2010 Sebastien Helleu * - * 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 . + * along with WeeChat. If not, see . */ /* * irc-ctcp.c: IRC CTCP protocol */ - #include #include #include diff --git a/src/plugins/irc/irc-ctcp.h b/src/plugins/irc/irc-ctcp.h index f825c53e2..541232af9 100644 --- a/src/plugins/irc/irc-ctcp.h +++ b/src/plugins/irc/irc-ctcp.h @@ -1,22 +1,22 @@ /* - * Copyright (c) 2003-2010 by FlashCode - * See README for License detail, AUTHORS for developers list. + * Copyright (C) 2003-2010 Sebastien Helleu * - * 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 . + * along with WeeChat. If not, see . */ - #ifndef __WEECHAT_IRC_CTCP_H #define __WEECHAT_IRC_CTCP_H 1 diff --git a/src/plugins/irc/irc-debug.c b/src/plugins/irc/irc-debug.c index b4dd3c57c..5a0eb32d0 100644 --- a/src/plugins/irc/irc-debug.c +++ b/src/plugins/irc/irc-debug.c @@ -1,26 +1,26 @@ /* - * Copyright (c) 2003-2010 by FlashCode - * See README for License detail, AUTHORS for developers list. + * Copyright (C) 2003-2010 Sebastien Helleu * - * 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 . + * along with WeeChat. If not, see . */ /* * irc-debug.c: debug functions for IRC plugin */ - #include #include diff --git a/src/plugins/irc/irc-debug.h b/src/plugins/irc/irc-debug.h index e8f9a06ed..598aec330 100644 --- a/src/plugins/irc/irc-debug.h +++ b/src/plugins/irc/irc-debug.h @@ -1,22 +1,22 @@ /* - * Copyright (c) 2003-2010 by FlashCode - * See README for License detail, AUTHORS for developers list. + * Copyright (C) 2003-2010 Sebastien Helleu * - * 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 . + * along with WeeChat. If not, see . */ - #ifndef __WEECHAT_IRC_DEBUG_H #define __WEECHAT_IRC_DEBUG_H 1 diff --git a/src/plugins/irc/irc-display.c b/src/plugins/irc/irc-display.c index ba8346999..96b936567 100644 --- a/src/plugins/irc/irc-display.c +++ b/src/plugins/irc/irc-display.c @@ -1,26 +1,26 @@ /* - * Copyright (c) 2003-2010 by FlashCode - * See README for License detail, AUTHORS for developers list. + * Copyright (C) 2003-2010 Sebastien Helleu * - * 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 . + * along with WeeChat. If not, see . */ /* * irc-display.c: display functions for IRC plugin */ - #include #include #include diff --git a/src/plugins/irc/irc-display.h b/src/plugins/irc/irc-display.h index 9e67a5f5b..0bc1e3289 100644 --- a/src/plugins/irc/irc-display.h +++ b/src/plugins/irc/irc-display.h @@ -1,22 +1,22 @@ /* - * Copyright (c) 2003-2010 by FlashCode - * See README for License detail, AUTHORS for developers list. + * Copyright (C) 2003-2010 Sebastien Helleu * - * 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 . + * along with WeeChat. If not, see . */ - #ifndef __WEECHAT_IRC_DISPLAY_H #define __WEECHAT_IRC_DISPLAY_H 1 diff --git a/src/plugins/irc/irc-ignore.c b/src/plugins/irc/irc-ignore.c index 025ad78b9..d84bdaf04 100644 --- a/src/plugins/irc/irc-ignore.c +++ b/src/plugins/irc/irc-ignore.c @@ -1,26 +1,26 @@ /* - * Copyright (c) 2003-2010 by FlashCode - * See README for License detail, AUTHORS for developers list. + * Copyright (C) 2003-2010 Sebastien Helleu * - * 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 . + * along with WeeChat. If not, see . */ /* * irc-ignore.c: ignore (nicks/hosts) management for IRC plugin */ - #include #include diff --git a/src/plugins/irc/irc-ignore.h b/src/plugins/irc/irc-ignore.h index db6c96d47..874d9e9f2 100644 --- a/src/plugins/irc/irc-ignore.h +++ b/src/plugins/irc/irc-ignore.h @@ -1,22 +1,22 @@ /* - * Copyright (c) 2003-2010 by FlashCode - * See README for License detail, AUTHORS for developers list. + * Copyright (C) 2003-2010 Sebastien Helleu * - * 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 . + * along with WeeChat. If not, see . */ - #ifndef __WEECHAT_IRC_IGNORE_H #define __WEECHAT_IRC_IGNORE_H 1 diff --git a/src/plugins/irc/irc-info.c b/src/plugins/irc/irc-info.c index 6ad2dc584..4f1602e1a 100644 --- a/src/plugins/irc/irc-info.c +++ b/src/plugins/irc/irc-info.c @@ -1,26 +1,26 @@ /* - * Copyright (c) 2003-2010 by FlashCode - * See README for License detail, AUTHORS for developers list. + * Copyright (C) 2003-2010 Sebastien Helleu * - * 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 . + * along with WeeChat. If not, see . */ /* * irc-info.c: info and infolist hooks for IRC plugin */ - #include #include #include diff --git a/src/plugins/irc/irc-info.h b/src/plugins/irc/irc-info.h index 1e3ac912a..f56eb6ca0 100644 --- a/src/plugins/irc/irc-info.h +++ b/src/plugins/irc/irc-info.h @@ -1,22 +1,22 @@ /* - * Copyright (c) 2003-2010 by FlashCode - * See README for License detail, AUTHORS for developers list. + * Copyright (C) 2003-2010 Sebastien Helleu * - * 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 . + * along with WeeChat. If not, see . */ - #ifndef __WEECHAT_IRC_INFO_H #define __WEECHAT_IRC_INFO_H 1 diff --git a/src/plugins/irc/irc-input.c b/src/plugins/irc/irc-input.c index 48464d03b..71a190aeb 100644 --- a/src/plugins/irc/irc-input.c +++ b/src/plugins/irc/irc-input.c @@ -1,26 +1,26 @@ /* - * Copyright (c) 2003-2010 by FlashCode - * See README for License detail, AUTHORS for developers list. + * Copyright (C) 2003-2010 Sebastien Helleu * - * 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 . + * along with WeeChat. If not, see . */ /* * irc-input.c: input data management for IRC buffers */ - #include #include diff --git a/src/plugins/irc/irc-input.h b/src/plugins/irc/irc-input.h index 437cc48c0..45fc7a158 100644 --- a/src/plugins/irc/irc-input.h +++ b/src/plugins/irc/irc-input.h @@ -1,22 +1,22 @@ /* - * Copyright (c) 2003-2010 by FlashCode - * See README for License detail, AUTHORS for developers list. + * Copyright (C) 2003-2010 Sebastien Helleu * - * 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 . + * along with WeeChat. If not, see . */ - #ifndef __WEECHAT_IRC_INPUT_H #define __WEECHAT_IRC_INPUT_H 1 diff --git a/src/plugins/irc/irc-mode.c b/src/plugins/irc/irc-mode.c index 6c28cef65..24664e9d0 100644 --- a/src/plugins/irc/irc-mode.c +++ b/src/plugins/irc/irc-mode.c @@ -1,26 +1,26 @@ /* - * Copyright (c) 2003-2010 by FlashCode - * See README for License detail, AUTHORS for developers list. + * Copyright (C) 2003-2010 Sebastien Helleu * - * 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 . + * along with WeeChat. If not, see . */ /* * irc-mode.c: IRC channel/user modes management */ - #include #include diff --git a/src/plugins/irc/irc-mode.h b/src/plugins/irc/irc-mode.h index a6969071a..a540b7ff7 100644 --- a/src/plugins/irc/irc-mode.h +++ b/src/plugins/irc/irc-mode.h @@ -1,22 +1,22 @@ /* - * Copyright (c) 2003-2010 by FlashCode - * See README for License detail, AUTHORS for developers list. + * Copyright (C) 2003-2010 Sebastien Helleu * - * 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 . + * along with WeeChat. If not, see . */ - #ifndef __WEECHAT_IRC_MODE_H #define __WEECHAT_IRC_MODE_H 1 diff --git a/src/plugins/irc/irc-msgbuffer.c b/src/plugins/irc/irc-msgbuffer.c index 159a46258..5fc14840b 100644 --- a/src/plugins/irc/irc-msgbuffer.c +++ b/src/plugins/irc/irc-msgbuffer.c @@ -1,26 +1,26 @@ /* - * Copyright (c) 2003-2010 by FlashCode - * See README for License detail, AUTHORS for developers list. + * Copyright (C) 2003-2010 Sebastien Helleu * - * 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 . + * along with WeeChat. If not, see . */ /* * irc-msgbuffer.c: target buffer for IRC messages (weechat, current, private) */ - #include #include #include diff --git a/src/plugins/irc/irc-msgbuffer.h b/src/plugins/irc/irc-msgbuffer.h index d5e50a791..2034e472f 100644 --- a/src/plugins/irc/irc-msgbuffer.h +++ b/src/plugins/irc/irc-msgbuffer.h @@ -1,22 +1,22 @@ /* - * Copyright (c) 2003-2010 by FlashCode - * See README for License detail, AUTHORS for developers list. + * Copyright (C) 2003-2010 Sebastien Helleu * - * 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 . + * along with WeeChat. If not, see . */ - #ifndef __WEECHAT_IRC_MSGBUFFER_H #define __WEECHAT_IRC_MSGBUFFER_H 1 diff --git a/src/plugins/irc/irc-nick.c b/src/plugins/irc/irc-nick.c index 9ea273910..835d39482 100644 --- a/src/plugins/irc/irc-nick.c +++ b/src/plugins/irc/irc-nick.c @@ -1,26 +1,26 @@ /* - * Copyright (c) 2003-2010 by FlashCode - * See README for License detail, AUTHORS for developers list. + * Copyright (C) 2003-2010 Sebastien Helleu * - * 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 . + * along with WeeChat. If not, see . */ /* * irc-nick.c: nick management for IRC plugin */ - #include #include #include diff --git a/src/plugins/irc/irc-nick.h b/src/plugins/irc/irc-nick.h index 43334207b..f5f1ec682 100644 --- a/src/plugins/irc/irc-nick.h +++ b/src/plugins/irc/irc-nick.h @@ -1,22 +1,22 @@ /* - * Copyright (c) 2003-2010 by FlashCode - * See README for License detail, AUTHORS for developers list. + * Copyright (C) 2003-2010 Sebastien Helleu * - * 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 . + * along with WeeChat. If not, see . */ - #ifndef __WEECHAT_IRC_NICK_H #define __WEECHAT_IRC_NICK_H 1 diff --git a/src/plugins/irc/irc-protocol.c b/src/plugins/irc/irc-protocol.c index 02d4ba726..ecae70f2d 100644 --- a/src/plugins/irc/irc-protocol.c +++ b/src/plugins/irc/irc-protocol.c @@ -1,19 +1,21 @@ /* - * Copyright (c) 2003-2010 by FlashCode - * See README for License detail, AUTHORS for developers list. + * Copyright (C) 2003-2010 Sebastien Helleu + * Copyright (C) 2006 Emmanuel Bouthenot * - * 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 . + * along with WeeChat. If not, see . */ /* @@ -21,7 +23,6 @@ * according to RFC 1459, 2810, 2811 and 2812 */ - #ifndef __USE_XOPEN #define __USE_XOPEN #endif diff --git a/src/plugins/irc/irc-protocol.h b/src/plugins/irc/irc-protocol.h index 6e112fb71..9918d5746 100644 --- a/src/plugins/irc/irc-protocol.h +++ b/src/plugins/irc/irc-protocol.h @@ -1,22 +1,22 @@ /* - * Copyright (c) 2003-2010 by FlashCode - * See README for License detail, AUTHORS for developers list. + * Copyright (C) 2003-2010 Sebastien Helleu * - * 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 . + * along with WeeChat. If not, see . */ - #ifndef __WEECHAT_IRC_PROTOCOL_H #define __WEECHAT_IRC_PROTOCOL_H 1 diff --git a/src/plugins/irc/irc-raw.c b/src/plugins/irc/irc-raw.c index 75e813f29..2a8d91fff 100644 --- a/src/plugins/irc/irc-raw.c +++ b/src/plugins/irc/irc-raw.c @@ -1,26 +1,26 @@ /* - * Copyright (c) 2003-2010 by FlashCode - * See README for License detail, AUTHORS for developers list. + * Copyright (C) 2003-2010 Sebastien Helleu * - * 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 . + * along with WeeChat. If not, see . */ /* * irc-raw.c: functions for IRC raw data messages */ - #include #include #include diff --git a/src/plugins/irc/irc-raw.h b/src/plugins/irc/irc-raw.h index 6b06ef0c6..489a9996a 100644 --- a/src/plugins/irc/irc-raw.h +++ b/src/plugins/irc/irc-raw.h @@ -1,22 +1,22 @@ /* - * Copyright (c) 2003-2010 by FlashCode - * See README for License detail, AUTHORS for developers list. + * Copyright (C) 2003-2010 Sebastien Helleu * - * 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 . + * along with WeeChat. If not, see . */ - #ifndef __WEECHAT_IRC_RAW_H #define __WEECHAT_IRC_RAW_H 1 diff --git a/src/plugins/irc/irc-sasl.c b/src/plugins/irc/irc-sasl.c index c41bc0ad7..076eb9f81 100644 --- a/src/plugins/irc/irc-sasl.c +++ b/src/plugins/irc/irc-sasl.c @@ -1,19 +1,20 @@ /* - * Copyright (c) 2003-2010 by FlashCode - * See README for License detail, AUTHORS for developers list. + * Copyright (C) 2003-2010 Sebastien Helleu * - * 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 . + * along with WeeChat. If not, see . */ /* @@ -21,7 +22,6 @@ * using mechanisms PLAIN or DH-BLOWFISH */ - #include #include #include diff --git a/src/plugins/irc/irc-sasl.h b/src/plugins/irc/irc-sasl.h index 6eb3b75f9..61f50abc5 100644 --- a/src/plugins/irc/irc-sasl.h +++ b/src/plugins/irc/irc-sasl.h @@ -1,22 +1,22 @@ /* - * Copyright (c) 2003-2010 by FlashCode - * See README for License detail, AUTHORS for developers list. + * Copyright (C) 2003-2010 Sebastien Helleu * - * 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 . + * along with WeeChat. If not, see . */ - #ifndef __WEECHAT_IRC_SASL_H #define __WEECHAT_IRC_SASL_H 1 diff --git a/src/plugins/irc/irc-server.c b/src/plugins/irc/irc-server.c index 6d09760ac..795a41441 100644 --- a/src/plugins/irc/irc-server.c +++ b/src/plugins/irc/irc-server.c @@ -1,26 +1,27 @@ /* - * Copyright (c) 2003-2010 by FlashCode - * See README for License detail, AUTHORS for developers list. + * Copyright (C) 2003-2010 Sebastien Helleu + * Copyright (C) 2005-2010 Emmanuel Bouthenot * - * 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 . + * along with WeeChat. If not, see . */ /* * irc-server.c: I/O communication with IRC servers */ - #include #include #include diff --git a/src/plugins/irc/irc-server.h b/src/plugins/irc/irc-server.h index bf9bfefda..575545467 100644 --- a/src/plugins/irc/irc-server.h +++ b/src/plugins/irc/irc-server.h @@ -1,22 +1,22 @@ /* - * Copyright (c) 2003-2010 by FlashCode - * See README for License detail, AUTHORS for developers list. + * Copyright (C) 2003-2010 Sebastien Helleu * - * 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 . + * along with WeeChat. If not, see . */ - #ifndef __WEECHAT_IRC_SERVER_H #define __WEECHAT_IRC_SERVER_H 1 diff --git a/src/plugins/irc/irc-upgrade.c b/src/plugins/irc/irc-upgrade.c index 45cf23f13..1ef0a69c7 100644 --- a/src/plugins/irc/irc-upgrade.c +++ b/src/plugins/irc/irc-upgrade.c @@ -1,26 +1,26 @@ /* - * Copyright (c) 2003-2010 by FlashCode - * See README for License detail, AUTHORS for developers list. + * Copyright (C) 2003-2010 Sebastien Helleu * - * 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 . + * along with WeeChat. If not, see . */ /* * irc-upgrade.c: save/restore IRC plugin data when upgrading WeeChat */ - #include #include diff --git a/src/plugins/irc/irc-upgrade.h b/src/plugins/irc/irc-upgrade.h index 34f5604c7..1b3ecf139 100644 --- a/src/plugins/irc/irc-upgrade.h +++ b/src/plugins/irc/irc-upgrade.h @@ -1,22 +1,22 @@ /* - * Copyright (c) 2003-2010 by FlashCode - * See README for License detail, AUTHORS for developers list. + * Copyright (C) 2003-2010 Sebastien Helleu * - * 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 . + * along with WeeChat. If not, see . */ - #ifndef __WEECHAT_IRC_UPGRADE_H #define __WEECHAT_IRC_UPGRADE_H 1 diff --git a/src/plugins/irc/irc.c b/src/plugins/irc/irc.c index fa09b29b2..56e7ae00b 100644 --- a/src/plugins/irc/irc.c +++ b/src/plugins/irc/irc.c @@ -1,26 +1,26 @@ /* - * Copyright (c) 2003-2010 by FlashCode - * See README for License detail, AUTHORS for developers list. + * Copyright (C) 2003-2010 Sebastien Helleu * - * 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 . + * along with WeeChat. If not, see . */ /* * irc.c: IRC (Internet Relay Chat) plugin for WeeChat */ - #include #include #include @@ -44,7 +44,7 @@ WEECHAT_PLUGIN_NAME(IRC_PLUGIN_NAME); WEECHAT_PLUGIN_DESCRIPTION("IRC (Internet Relay Chat) plugin for WeeChat"); -WEECHAT_PLUGIN_AUTHOR("FlashCode "); +WEECHAT_PLUGIN_AUTHOR("Sebastien Helleu "); WEECHAT_PLUGIN_VERSION(WEECHAT_VERSION); WEECHAT_PLUGIN_LICENSE(WEECHAT_LICENSE); diff --git a/src/plugins/irc/irc.h b/src/plugins/irc/irc.h index ed591ef06..5dea08884 100644 --- a/src/plugins/irc/irc.h +++ b/src/plugins/irc/irc.h @@ -1,22 +1,23 @@ /* - * Copyright (c) 2003-2010 by FlashCode - * See README for License detail, AUTHORS for developers list. + * Copyright (C) 2003-2010 Sebastien Helleu + * Copyright (C) 2006 Emmanuel Bouthenot * - * 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 . + * along with WeeChat. If not, see . */ - #ifndef __WEECHAT_IRC_H #define __WEECHAT_IRC_H 1 -- cgit v1.2.3