mldonkey-commits
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Mldonkey-commits] Changes to mldonkey/src/daemon/driver/driverCommands.


From: mldonkey-commits
Subject: [Mldonkey-commits] Changes to mldonkey/src/daemon/driver/driverCommands.ml
Date: Sat, 12 Nov 2005 15:07:04 -0500

Index: mldonkey/src/daemon/driver/driverCommands.ml
diff -u mldonkey/src/daemon/driver/driverCommands.ml:1.98 
mldonkey/src/daemon/driver/driverCommands.ml:1.99
--- mldonkey/src/daemon/driver/driverCommands.ml:1.98   Sat Nov 12 11:09:39 2005
+++ mldonkey/src/daemon/driver/driverCommands.ml        Sat Nov 12 20:07:01 2005
@@ -401,19 +401,26 @@
 
     "buildinfo", Arg_none (fun o ->
         let buf = o.conn_buf in
+        let runinfo = CommonComplexOptions.runinfo () in
         let buildinfo = CommonComplexOptions.buildinfo () in
         if o.conn_output = HTML then
           begin
             Printf.bprintf buf "\\<div class=\\\"cs\\\"\\>";
             html_mods_table_header buf "versionTable" "results" [];
-            Printf.bprintf buf "\\<tr class=\\\"dl-1\\\"\\>";
+            Printf.bprintf buf "\\<tr\\>";
+            html_mods_td buf [ ("", "srh", "Buildinfo"); ];
+            Printf.bprintf buf "\\</tr\\>\\<tr class=\\\"dl-1\\\"\\>";
             html_mods_td buf [ ("", "sr", Str.global_replace (Str.regexp "\n") 
"\\<br\\>" buildinfo); ];
+            Printf.bprintf buf "\\</tr\\>\\<tr\\>";
+            html_mods_td buf [ ("", "srh", "Runinfo"); ];            
+            Printf.bprintf buf "\\</tr\\>\\<tr class=\\\"dl-1\\\"\\>";
+            html_mods_td buf [ ("", "sr", Str.global_replace (Str.regexp "\n") 
"\\<br\\>" runinfo); ];            
             Printf.bprintf buf "\\</tr\\>\\</table\\>\\</div\\>\\</div\\>";
           end
         else
-            Printf.bprintf buf "%s" buildinfo;
+            Printf.bprintf buf "Buildinfo:\n%s\nRuninfo:\n%s" buildinfo 
runinfo;
         ""
-    ), ":\t\t\t\tprint mldonkey core build information";
+    ), ":\t\t\t\tprint mldonkey core build and runtime information";
 
     "activity", Arg_one (fun arg o ->
         let arg = int_of_string arg in




reply via email to

[Prev in Thread] Current Thread [Next in Thread]