J'essaie de gérer Yast appmod. Donc :
yaws.conf :
<server localhost>
port = 8005
listen = 127.0.0.1
docroot = /home/ziel/www/CatsScript/src/
appmods = </, myappmod>
</server>
de http://yaws.hyber.org/appmods.yaws myappmod.erl :
-module(myappmod2).
-author('klacke@bluetail.com').
-include("/home/ziel/erlang/yaws/include/yaws_api.hrl").
-compile(export_all).
box(Str) ->
{'div',[{class,"box"}],
{pre,[],Str}}.
out(A) ->
{ehtml,
[{p,[],
box(io_lib:format("A#arg.appmoddata = ~p~n"
"A#arg.appmod_prepath = ~p~n"
"A#arg.querydata = ~p~n",
[A#arg.appmoddata,
A#arg.appmod_prepath,
A#arg.querydata]))}]}.
Et ça a marché quand je l'ai utilisé la première fois. Mais plus tard, lorsque j'ai modifié quelque chose dans myappmod.erl, rien n'a changé dans la réponse du serveur. J'ai alors supprimé myappmod.erl, mais il fonctionne toujours. Que dois-je faire pour apporter des modifications ?