From b5e9a1a4f9797f4552b2226aaa3c547c8be277fe Mon Sep 17 00:00:00 2001 From: Ramon Novoa Date: Tue, 26 Feb 2013 17:04:48 +0000 Subject: [PATCH] 2013-02-26 Ramon Novoa * images/hand_point.png: Added to repository. Hand icon. * include/functions_snmp_browser.php: Style fixes. git-svn-id: https://svn.code.sf.net/p/pandora/code/trunk@7724 c3f86ba8-e40f-0410-aaad-9ba5e7f4b01f --- pandora_console/ChangeLog | 6 ++++++ pandora_console/images/hand_point.png | Bin 0 -> 702 bytes .../include/functions_snmp_browser.php | 8 ++++---- 3 files changed, 10 insertions(+), 4 deletions(-) create mode 100644 pandora_console/images/hand_point.png diff --git a/pandora_console/ChangeLog b/pandora_console/ChangeLog index f9ba22e70e..8872eea5ed 100644 --- a/pandora_console/ChangeLog +++ b/pandora_console/ChangeLog @@ -1,3 +1,9 @@ +2013-02-26 Ramon Novoa + + * images/hand_point.png: Added to repository. Hand icon. + + * include/functions_snmp_browser.php: Style fixes. + 2013-02-26 Miguel de Dios * general/login_page.php, include/javascript/jquery.pandora.js, diff --git a/pandora_console/images/hand_point.png b/pandora_console/images/hand_point.png new file mode 100644 index 0000000000000000000000000000000000000000..531fd3989539397a3b97a1fc54e61ca222d9f757 GIT binary patch literal 702 zcmV;v0zv(WP)7C)4FLo?6+^{n|a^7x9<%TLSW{+4)0(LJ!DQ1d>+~$OmKnh(J^z4)a1(+ z4gNj`B=!%E3~uR)MIqe9;^*9#?86(X0MFC(&+2AHzLpJviYZ`{JUz$!p~&{lk=;?d zT1Bl=L9JXyYk235aQsM*&2iX!nu5l0!r$JJ?C!sG+9F3oqEte)j&SVIUR#KLUI)$d zebV3FdFH^`kpVfeOcQ3U=0I=`MNy!&hB_=8k){YJ%j4vH?%>dsf#T8dV8b1~n(H08f*VlX@x+}JA z?)9@=SG+G~+Kmyo|3F}r%9mI+kP7Hf4Ju!H>h=q{mU%Uvmh*+&`@F(JGCY(#Z zxk~oCrm*Mgy3TO~CUXLrZ@_T3%PH>P)>MXGNzBaG^JOkBZj{1&5xAdqMJnY|O>%cL zF8_ZBtRGC?M#h*7Y!jg^8Ao!@RwO$vN*6PQ} kHZbduQP~9U75FE>0N-XI+r{blB>(^b07*qoM6N<$f)1ugSpWb4 literal 0 HcmV?d00001 diff --git a/pandora_console/include/functions_snmp_browser.php b/pandora_console/include/functions_snmp_browser.php index f54a679592..118f547656 100644 --- a/pandora_console/include/functions_snmp_browser.php +++ b/pandora_console/include/functions_snmp_browser.php @@ -76,7 +76,7 @@ function snmp_browser_print_tree ($tree, $id = 0, $depth = 0, $last = 0, $last_a echo ""; if ($depth == 0 && $count == 0) { if ($count == $total) { - echo ''; + echo ''; } else { echo ''; @@ -115,9 +115,9 @@ function snmp_browser_print_tree ($tree, $id = 0, $depth = 0, $last = 0, $last_a echo ""; } - echo '' . $level . ''; + echo ' ' . $level . ''; if (isset ($sub_level['__VALUE__'])) { - echo ''; + echo ''; } echo ""; @@ -383,7 +383,7 @@ function snmp_browser_print_container ($return = false, $width = '95%', $height $table->data[0][4] = '' . html_print_image ("images/fullscreen.png", true, array ('title' => __('Expand the tree') . ' (' . __('can be slow') . ')', 'style' => 'vertical-align: middle;', 'onclick' => 'expandAll();')) . ''; $table->data[0][4] .= ' ' . '' . html_print_image ("images/normalscreen.png", true, array ('title' => __('Collapse the tree'), 'style' => 'vertical-align: middle;', 'onclick' => 'collapseAll();')) . ''; $table->data[1][0] = ''.__('Starting OID').''; - $table->data[1][1] = html_print_input_text ('starting_oid', '', '', 25, 0, true); + $table->data[1][1] = html_print_input_text ('starting_oid', '.1.3.6.1.2', '', 25, 0, true); $table->data[1][2] = ''.__('Search text').''; $table->data[1][3] = html_print_input_text ('search_text', '', '', 25, 0, true); $table->data[1][4] = '' . html_print_image ("images/lupa.png", true, array ('title' => __('Search'), 'style' => 'vertical-align: middle;', 'onclick' => 'searchText();')) . '';