public
Description: A new revision of Fuzed, the Erlang-based frontend for web apps. Check out the mailing list at http://groups.google.com/group/fuzed
Homepage:
Clone URL: git://github.com/KirinDave/fuzed.git
More work on getting the frontend working.
KirinDave (author)
Sun May 04 15:40:23 -0700 2008
commit  22c98aab064642f1cb7dc6fd59eb5654bd1601db
tree    a85326e1fb2985537e4f2205c2fc008141c34192
parent  e040848bb303c79773655fd30c3b4ce2aa1eaaac
...
1
 
 
...
1
2
3
0
@@ -1 +1,3 @@
0
 test/app/log/*.log
0
+*~
0
+\#*
...
6
7
8
 
9
10
11
...
6
7
8
9
10
11
12
0
@@ -6,6 +6,7 @@
0
 
0
 out404(A, _GC, SC) ->
0
   Parameters = {struct, parse_arg(A, SC)},
0
+  io:format("Param restructure:~n~p~n", [Parameters]),
0
   case node_api:safely_send_call_to_pool(handle_request,
0
                                          Parameters, 
0
                                          {handle_request, {request}},
...
1
2
3
4
5
6
...
 
 
 
1
2
3
0
@@ -1,6 +1,3 @@
0
-%%%-------------------------------------------------------------------
0
-%%% Author  : Tom Preston-Werner
0
-%%%-------------------------------------------------------------------
0
 -module(fuzed_node_supervisor).
0
 -behaviour(supervisor).
0
 -export([start/0, start_shell/0, start_link/1, init/1]).

Comments