X-Git-Url: http://git.euphorik.ch/?a=blobdiff_plain;f=modules%2Ferl%2Feuphorik_protocole.erl;h=35bf9933b3603b8aff8ea93a7c5eb05d356a25d8;hb=cded85bdaf899cef1ba38d2ee6fd24c67f2abc52;hp=75c017c69e47868ecab6861dcccf773f2441f54b;hpb=cf7d2e87e769d470fe6390771d6f498fb3570ed0;p=euphorik.git diff --git a/modules/erl/euphorik_protocole.erl b/modules/erl/euphorik_protocole.erl index 75c017c..35bf993 100755 --- a/modules/erl/euphorik_protocole.erl +++ b/modules/erl/euphorik_protocole.erl @@ -8,8 +8,8 @@ -module(euphorik_protocole). -export([ - generation_captcha/1, - nouveau_user_captcha/1, + %generation_captcha/1, Obsolète + %nouveau_user_captcha/1, Obsolète nouveau_user_login/1, login/1, logout/1, @@ -112,6 +112,12 @@ profile(Action) -> Pseudo = case xmerl_xpath:string("pseudo", Action) of [#xmlElement{content = [#xmlText{value = P2}]}] -> P2; _ -> Login end, Email = case xmerl_xpath:string("email", Action) of [#xmlElement{content = [#xmlText{value = E}]}] -> E; _ -> undefined end, Css = case xmerl_xpath:string("css", Action) of [#xmlElement{content = [#xmlText{value = C}]}] -> C; _ -> undefined end, + Conversations = case xmerl_xpath:string("conversations", Action) of + Conversations -> + % extraction de chaque conversation + + _ -> [] + end, case euphorik_minichat:set_profile(Cookie, Login, Password, Pseudo, Email, Css) of ok -> xml_reponse_profile_ok();