Webmachine redirect resource example
SImle redirect resource by webmachine-way
dispatch.conf
{[], redirect_resource, ["/some/url"]}.
redirect_resource.erl
-module(redirect_resource).
-export([init/1, resource_exists/2, moved_temporarily/2, previously_existed/2]).
-include_lib("webmachine/include/webmachine.hrl").
init([Redirect_to]) -> {ok, Redirect_to}.
resource_exists(ReqData, Context) -> {false, ReqData, Context}.
previously_existed(ReqData, Context) -> {true, ReqData, Context}.
moved_temporarily(ReqData, Redirect_to) ->
{{true, Redirect_to}, ReqData, Redirect_to}.
Читайте також:
- Simple generating XML in Erlang Using xmerl
- Mustache is a framework templating system
- Erlang: convert any string to binary utf8
- Erlang Meter
- Agner: a repository of libraries and applications
- Random shuffle in erlang
- Python and lists:flatten. Such as in Erlang
- QR-code erlang library
- URL encode in Erlang
- md5 в Erlang