<br><br><div class="gmail_quote">2011/4/12 Robert Virding <span dir="ltr"><<a href="mailto:robert.virding@erlang-solutions.com">robert.virding@erlang-solutions.com</a>></span><br><blockquote class="gmail_quote" style="margin: 0pt 0pt 0pt 0.8ex; border-left: 1px solid rgb(204, 204, 204); padding-left: 1ex;">
<div><div style="font-family: Times New Roman; font-size: 12pt; color: rgb(0, 0, 0);">Roberto,<br><br>I am only a casual writer of webservers and Misultin has worked well so far. It has been easy to use and has had sufficient features for what I need. BUT couldn't you make a misultin-- without parametrized modules using only standard erlang for us users who prefer classic Erlang? :-)<br>
<br>Robert<br></div></div></blockquote><div><br><br>Hi all,<br>
<br>
you may now decide whether you use parametrized modules in Misultin or not.<br>
<br>
If you decide to use them, you simply go by the current examples. If you
 decide not to use them, you can refer to the modules 'misultin_req' and
 'misultin_ws' for request and websockets respectively.<br>
<br>
For example, the hello world callback function for parametrized modules is:<br>
<br>
handle_http(Req) ->    <br>
    Req:ok("Hello World.").<br>
<br>
The same without parametrized modules will go:<br>
<br>

handle_http(Req) ->    <br>

    misultin_req:ok("Hello World.", Req).<br>
<br>
Hopefully this will please more than one (Robert, I'm looking at you :) ). It is currently up in master, which is 0.7.1-dev:<br>
<a href="https://github.com/ostinelli/misultin">https://github.com/ostinelli/misultin</a><br>
<br>
thank you to yrashk, nox and essen.<br>
<br>
Any comments welcome.<br>
<br>
r. <br></div></div>