diff options
Diffstat (limited to 'src/mod_muc')
-rw-r--r-- | src/mod_muc/mod_muc.erl | 25 | ||||
-rw-r--r-- | src/mod_muc/mod_muc_log.erl | 25 | ||||
-rw-r--r-- | src/mod_muc/mod_muc_room.erl | 25 |
3 files changed, 66 insertions, 9 deletions
diff --git a/src/mod_muc/mod_muc.erl b/src/mod_muc/mod_muc.erl index e005e0d2..f0a19ba2 100644 --- a/src/mod_muc/mod_muc.erl +++ b/src/mod_muc/mod_muc.erl @@ -1,12 +1,31 @@ %%%---------------------------------------------------------------------- %%% File : mod_muc.erl -%%% Author : Alexey Shchepin <alexey@sevcom.net> +%%% Author : Alexey Shchepin <alexey@process-one.net> %%% Purpose : MUC support (JEP-0045) -%%% Created : 19 Mar 2003 by Alexey Shchepin <alexey@sevcom.net> +%%% Created : 19 Mar 2003 by Alexey Shchepin <alexey@process-one.net> +%%% +%%% +%%% ejabberd, Copyright (C) 2002-2007 Process-one +%%% +%%% This program 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 2 of the +%%% License, or (at your option) any later version. +%%% +%%% This program 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, write to the Free Software +%%% Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA +%%% 02111-1307 USA +%%% %%%---------------------------------------------------------------------- -module(mod_muc). --author('alexey@sevcom.net'). +-author('alexey@process-one.net'). -behaviour(gen_server). -behaviour(gen_mod). diff --git a/src/mod_muc/mod_muc_log.erl b/src/mod_muc/mod_muc_log.erl index 57cd03ed..50dab9e4 100644 --- a/src/mod_muc/mod_muc_log.erl +++ b/src/mod_muc/mod_muc_log.erl @@ -1,12 +1,31 @@ %%%---------------------------------------------------------------------- %%% File : mod_muc_log.erl -%%% Author : Badlop +%%% Author : Badlop@process-one.net %%% Purpose : MUC room logging -%%% Created : 12 Mar 2006 by Alexey Shchepin <alexey@sevcom.net> +%%% Created : 12 Mar 2006 by Alexey Shchepin <alexey@process-one.net> +%%% +%%% +%%% ejabberd, Copyright (C) 2002-2007 Process-one +%%% +%%% This program 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 2 of the +%%% License, or (at your option) any later version. +%%% +%%% This program 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, write to the Free Software +%%% Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA +%%% 02111-1307 USA +%%% %%%---------------------------------------------------------------------- -module(mod_muc_log). --author('badlop'). +-author('badlop@process-one.net'). -behaviour(gen_server). -behaviour(gen_mod). diff --git a/src/mod_muc/mod_muc_room.erl b/src/mod_muc/mod_muc_room.erl index ae4c2b91..c35b8636 100644 --- a/src/mod_muc/mod_muc_room.erl +++ b/src/mod_muc/mod_muc_room.erl @@ -1,12 +1,31 @@ %%%---------------------------------------------------------------------- %%% File : mod_muc_room.erl -%%% Author : Alexey Shchepin <alexey@sevcom.net> +%%% Author : Alexey Shchepin <alexey@process-one.net> %%% Purpose : MUC room stuff -%%% Created : 19 Mar 2003 by Alexey Shchepin <alexey@sevcom.net> +%%% Created : 19 Mar 2003 by Alexey Shchepin <alexey@process-one.net> +%%% +%%% +%%% ejabberd, Copyright (C) 2002-2007 Process-one +%%% +%%% This program 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 2 of the +%%% License, or (at your option) any later version. +%%% +%%% This program 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, write to the Free Software +%%% Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA +%%% 02111-1307 USA +%%% %%%---------------------------------------------------------------------- -module(mod_muc_room). --author('alexey@sevcom.net'). +-author('alexey@process-one.net'). -behaviour(gen_fsm). |