ADD licences sur les fichier .erl
[euphorik.git] / modules / erl / euphorik_requests.erl
index f8dad51..524f735 100755 (executable)
@@ -1,8 +1,26 @@
 % coding: utf-8\r
+% Copyright 2008 Grégory Burri\r
+%\r
+% This file is part of Euphorik.\r
+%\r
+% Euphorik is free software: you can redistribute it and/or modify\r
+% it under the terms of the GNU General Public License as published by\r
+% the Free Software Foundation, either version 3 of the License, or\r
+% (at your option) any later version.\r
+%\r
+% Euphorik is distributed in the hope that it will be useful,\r
+% but WITHOUT ANY WARRANTY; without even the implied warranty of\r
+% MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\r
+% GNU General Public License for more details.\r
+%\r
+% You should have received a copy of the GNU General Public License\r
+% along with Euphorik.  If not, see <http://www.gnu.org/licenses/>.\r
+% \r
 % Ce module est fait pour répondre à des requêtes 'AJAX'.\r
 % Il est définit comme 'appmods' pour l'url "request" dans yaws.\r
 % Par exemple http://www.euphorik.ch/request abouti sur la fonction out() de ce module.
 % @author G.Burri
+\r
 
 -module(euphorik_requests).\r
 -export([\r
@@ -64,5 +82,9 @@ traiter_action("put_troll", JSON, _) ->
 traiter_action("mod_troll", JSON, _) ->
    euphorik_protocole:mod_troll(JSON);
 traiter_action("del_troll", JSON, _) ->
-   euphorik_protocole:del_troll(JSON).
+   euphorik_protocole:del_troll(JSON);
+traiter_action("list_banned_ips", JSON, _) ->
+   euphorik_protocole:list_banned_ips(JSON);
+traiter_action("unban", JSON, _) ->
+   euphorik_protocole:unban_ip(JSON).
  
\ No newline at end of file