I notice that the following code causes a 501 error,

do_add(_Args) ->
    case validate_tool:validate_cu(item, create) of
        {ok, Item} ->
            wtype_item:create(Item),
            {redirect, "/item/all"};
        {error, _Reason} ->
            wpart:fset("__edit", wtype_item:prepare_validated()),
            {template, "/item/add.html"}
    end.

but changing the template line to, note lack of leading slash,

{template, "item/add.html"}

fixes the problem. This appear to be what it should be as the matching 
instructed entry for dispatch.conf is

{static, "^/item/add$", "item/add.html"}.


Jeff.


------------------------------------------------------------------------------
Download Intel® Parallel Studio Eval
Try the new software tools for yourself. Speed compiling, find bugs
proactively, and fine-tune applications for parallel performance.
See why Intel Parallel Studio got high marks during beta.
http://p.sf.net/sfu/intel-sw-dev
_______________________________________________
Erlangweb-users mailing list
Erlangweb-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/erlangweb-users
http://www.erlang-web.org/

Reply via email to