]> matita.cs.unibo.it Git - helm.git/commitdiff
removed an ancient debugging message
authorStefano Zacchiroli <zack@upsilon.cc>
Wed, 12 Mar 2003 17:24:01 +0000 (17:24 +0000)
committerStefano Zacchiroli <zack@upsilon.cc>
Wed, 12 Mar 2003 17:24:01 +0000 (17:24 +0000)
helm/uwobo/src/ocaml/uwobo.ml

index bea96a2a09b1cf1d61af184e658b9ddea5825138..741b8d20f44ab6aa20cc55681068c0d04e56c217 100644 (file)
@@ -131,7 +131,7 @@ let (add_cmd_RE, remove_cmd_RE, reload_cmd_RE) =
 
 exception Restart_HTTP_daemon;;
 
-  (* thread action
+  (* reuquest handler action
   @param syslogger Uwobo_logger.sysLogger instance used for logginf
   @param styles Uwobo_styles.styles instance which keeps the stylesheets list
   @param cmd_pipe output _channel_ used to _write_ update messages
@@ -199,12 +199,7 @@ let callback
           return_error
             (sprintf "Stylesheet chain application failed: %s" errmsg)
             outchan)
-    | "/help" ->
-        output_string cmd_pipe "test\n";
-        flush cmd_pipe;
-        debug_print
-          (sprintf "Grandchild: grandparent said '%s'" (input_line res_pipe));
-        Http_daemon.respond ~body:usage_string outchan
+    | "/help" -> Http_daemon.respond ~body:usage_string outchan
     | invalid_request ->
         Http_daemon.respond_error ~status:(`Client_error `Bad_request) outchan);
     syslogger#log `Debug (sprintf "%s done!" req#path);
@@ -332,6 +327,8 @@ let main () =
         let cmd_pipe = Unix.out_channel_of_descr cmd_pipe_entrance in
         let res_pipe = Unix.in_channel_of_descr res_pipe_exit in
         debug_print "Starting HTTP daemon ...";
+          (* next invocation doesn't return, process will keep on serving HTTP
+          requests until it will get killed by father *)
         Http_daemon.start'~port ~mode:`Fork
           (callback ~syslogger ~styles ~cmd_pipe ~res_pipe ())
     | _ (* < 0 *) ->  (* fork failed :-((( *)
@@ -345,4 +342,3 @@ try
   main ()
 with Sys.Break -> ()  (* 'die_nice' registered with at_exit *)
 
-