You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 

74 lines
2.2 KiB

  1. <div class="operation">
  2. <?php render_server_menu("server"); ?>
  3. </div>
  4. <table bgcolor="#cccccc" cellpadding="2" cellspacing="1" width="600">
  5. <tr>
  6. <th colspan="2"><a href="http://www.mongodb.org/display/DOCS/Command+Line+Parameters" target="_blank"><?php hm("command_line"); ?></a> (db.serverCmdLineOpts())</th>
  7. </tr>
  8. <tr bgcolor="#fffeee">
  9. <td colspan="2"><?php h($commandLine);?></td>
  10. </tr>
  11. </table>
  12. <div class="gap"></div>
  13. <table bgcolor="#cccccc" cellpadding="2" cellspacing="1" width="600">
  14. <tr>
  15. <th colspan="2"><?php hm("connection"); ?></th>
  16. </tr>
  17. <?php foreach ($connections as $param=>$value):?>
  18. <tr bgcolor="#fffeee">
  19. <td width="120" ><?php h($param);?></td>
  20. <td><?php h($value);?></td>
  21. </tr>
  22. <?php endforeach; ?>
  23. </table>
  24. <div class="gap"></div>
  25. <table bgcolor="#cccccc" cellpadding="2" cellspacing="1" width="600">
  26. <tr>
  27. <th colspan="2"><?php hm("web"); ?> <?php hm("server"); ?></th>
  28. </tr>
  29. <?php foreach ($webServers as $param=>$value):?>
  30. <tr bgcolor="#fffeee">
  31. <td width="120" ><?php h($param);?></td>
  32. <td><?php h($value);?></td>
  33. </tr>
  34. <?php endforeach; ?>
  35. </table>
  36. <div class="gap"></div>
  37. <table bgcolor="#cccccc" cellpadding="2" cellspacing="1" width="600">
  38. <tr>
  39. <th colspan="3"><a href="http://us.php.net/manual/mongo.configuration.php" target="_blank"><?php hm("directives"); ?></a></th>
  40. </tr>
  41. <tr bgcolor="#fffeee">
  42. <th><?php hm("directive"); ?></th>
  43. <th><?php hm("global_value"); ?></th>
  44. <th><?php hm("local_value"); ?></th>
  45. </tr>
  46. <?php foreach ($directives as $param=>$value):?>
  47. <tr bgcolor="#fffeee">
  48. <td width="200" ><?php h($param);?></td>
  49. <td><?php h($value["global_value"]);?></td>
  50. <td><?php h($value["local_value"]);?></td>
  51. </tr>
  52. <?php endforeach; ?>
  53. </table>
  54. <div class="gap"></div>
  55. <table bgcolor="#cccccc" cellpadding="2" cellspacing="1" width="600">
  56. <tr>
  57. <th colspan="2"><a href="http://www.mongodb.org/downloads" target="_blank"><?php hm("build_info"); ?></a> ({buildinfo:1})</th>
  58. </tr>
  59. <?php foreach ($buildInfos as $param=>$value):?>
  60. <tr bgcolor="#fffeee">
  61. <td width="120" valign="top"><?php h($param);?></td>
  62. <td><?php h($value);?></td>
  63. </tr>
  64. <?php endforeach; ?>
  65. </table>
  66. <div class="gap"></div>