2008-11-23 Raul Mateos <raulofpandora@gmail.com>
* index.php: Develop Bypass set to 1, to help debugging. Updated build. * extensions/update_manager/settings.php: Use print_input_password instead print_input_text for proxy password. * godmode/modules/manage_network_components_form_wmi.php: Cosmetic change. Closed some HTML tags. git-svn-id: https://svn.code.sf.net/p/pandora/code/trunk@1257 c3f86ba8-e40f-0410-aaad-9ba5e7f4b01f
This commit is contained in:
parent
cb3221be05
commit
652133523f
|
@ -1,3 +1,13 @@
|
|||
2008-11-23 Raul Mateos <raulofpandora@gmail.com>
|
||||
|
||||
* index.php: Develop Bypass set to 1, to help debugging. Updated build.
|
||||
|
||||
* extensions/update_manager/settings.php: Use print_input_password instead
|
||||
print_input_text for proxy password.
|
||||
|
||||
* godmode/modules/manage_network_components_form_wmi.php: Cosmetic change.
|
||||
Closed some HTML tags.
|
||||
|
||||
2008-11-21 Evi Vanoost <vanooste@rcbi.rochester.edu>
|
||||
|
||||
* include/functions.php: Added function_exists check for multibyte
|
||||
|
|
|
@ -74,7 +74,7 @@ $table->data[8][0] = '<strong>'.__('Proxy user').'</strong>';
|
|||
$table->data[8][1] = print_input_text ('keys[proxy_user]', $settings->proxy_user, '', 40, 255, true);
|
||||
|
||||
$table->data[9][0] = '<strong>'.__('Proxy password').'</strong>';
|
||||
$table->data[9][1] = print_input_text ('keys[proxy_pass]', $settings->proxy_pass, '', 40, 255, true);
|
||||
$table->data[9][1] = print_input_password ('keys[proxy_pass]', $settings->proxy_pass, '', 40, 255, true);
|
||||
|
||||
print_table ($table);
|
||||
echo '<div class="action-buttons" style="width: '.$table->width.'">';
|
||||
|
|
|
@ -89,8 +89,8 @@ echo '<table width="700" cellspacing="4" cellpadding="4" class="databox_color">'
|
|||
echo '<tr>';
|
||||
|
||||
// Name
|
||||
echo '<tr><td class="datos2">' . __('Module name');
|
||||
echo '<td class="datos2"><input type="text" name="name" size="25" value="' . $name . '">';
|
||||
echo '<tr><td class="datos2">' . __('Module name') . '</td>';
|
||||
echo '<td class="datos2"><input type="text" name="name" size="25" value="' . $name . '"></td>';
|
||||
|
||||
// Type
|
||||
echo '<td class="datos2">' . __('Module type') . '</td>';
|
||||
|
@ -130,7 +130,7 @@ echo '</select>';
|
|||
echo '<tr>';
|
||||
|
||||
// Interval
|
||||
echo '<td class="datos2">' . __('Module Interval');
|
||||
echo '<td class="datos2">' . __('Module Interval') . '</td>';
|
||||
echo '<td class="datos2">';
|
||||
echo '<input type="text" name="module_interval" size="5" value="'.$module_interval.'">';
|
||||
|
||||
|
@ -173,32 +173,32 @@ echo '<input type="text" name="tcp_send" size="25" value="' . $tcp_send . '">';
|
|||
echo '</td></tr>';
|
||||
|
||||
// Username
|
||||
echo '<tr><td class="datos2t">' . __('Username') . '</td>';
|
||||
echo '<td class="datos2">';
|
||||
echo '<tr><td class="datos">' . __('Username') . '</td>';
|
||||
echo '<td class="datos">';
|
||||
echo '<input type="text" name="plugin_user" size="25" value="' . $plugin_user . '">';
|
||||
echo '</td>';
|
||||
|
||||
// Password
|
||||
echo '<td class="datos2t">' . __('Password') . '</td>';
|
||||
echo '<td class="datos2">';
|
||||
echo '<td class="datos">' . __('Password') . '</td>';
|
||||
echo '<td class="datos">';
|
||||
echo '<input type="password" name="plugin_pass" size="25" value="' . $plugin_pass . '">';
|
||||
echo '</td></tr>';
|
||||
|
||||
// Min data
|
||||
echo '<tr><td class="datos">' . __('Minimum Data') . '</td>';
|
||||
echo '<td class="datos">';
|
||||
echo '<tr><td class="datos2">' . __('Minimum Data') . '</td>';
|
||||
echo '<td class="datos2">';
|
||||
echo '<input type="text" name="modulo_min" size="5" value="' . $modulo_min . '">';
|
||||
echo '</td>';
|
||||
echo '<td class="datos">' . __('Maximum Data') . '</td>';
|
||||
echo '<td class="datos">';
|
||||
echo '<td class="datos2">' . __('Maximum Data') . '</td>';
|
||||
echo '<td class="datos2">';
|
||||
|
||||
// Max data
|
||||
echo '<input type="text" name="modulo_max" size="5" value="' . $modulo_max . '">';
|
||||
echo '</td></tr>';
|
||||
|
||||
// Comments
|
||||
echo '<tr><td class="datos2t">'.__('Comments');
|
||||
echo '<td class="datos2" colspan=3>';
|
||||
echo '<tr><td class="datos">'.__('Comments') . '</td>';
|
||||
echo '<td class="datos" colspan=3>';
|
||||
echo '<textarea name="descripcion" cols=70 rows=2>';
|
||||
echo $description;
|
||||
echo '</textarea>';
|
||||
|
|
|
@ -20,13 +20,13 @@
|
|||
// Silk icon set 1.3 (cc) Mark James, http://www.famfamfam.com/lab/icons/silk/
|
||||
// Pandora FMS uses Pear Image::Graph code
|
||||
|
||||
$build_version="PC081016";
|
||||
$build_version="PC081123";
|
||||
$pandora_version="v2.1-dev";
|
||||
global $build_version;
|
||||
global $pandora_version;
|
||||
|
||||
// Set to 1 to do not check for installer or config file (for development!).
|
||||
$develop_bypass = 0;
|
||||
$develop_bypass = 1;
|
||||
|
||||
if ($develop_bypass != 1) {
|
||||
// If no config file, automatically try to install
|
||||
|
|
Loading…
Reference in New Issue