Magellan Linux

Diff of /alx-src/trunk/alx-web/show.php

Parent Directory Parent Directory | Revision Log Revision Log | View Patch Patch

revision 441 by niro, Thu Jun 5 11:48:41 2008 UTC revision 479 by niro, Sat Jun 7 10:12:00 2008 UTC
# Line 1  Line 1 
1  <?  <?
2   // INCLUDE UND TABELLEN-DEFINITIONEN   // INCLUDE UND TABELLEN-DEFINITIONEN
3   include('include/basesql.php');   include('include/basesql.php');
4   $tabs = array('cfg_graphic', 'cfg_network', 'cfg_input', 'client_auth', 'cfg_autostart', 'client_serials', 'cfg_comments', 'cfg_printers', 'cfg_sessions', 'cfg_modules', 'cfg_other_menuitems', 'cfg_screensaver');   $tabs = array('cfg_graphic', 'cfg_network', 'cfg_interfaces', 'cfg_input', 'client_auth', 'cfg_autostart', 'client_serials', 'cfg_comments', 'cfg_printers', 'cfg_sessions', 'cfg_modules', 'cfg_other_menuitems', 'cfg_screensaver');
5   $multi= array(    0, 1, 0, 0, 0, 0, 1, 1, 1, 1, 1, 0);   $multi= array(    0, 0,  1,   0, 0, 0, 0,   1,   1,   1,   1, 1,   0);
6   $data = array();   $data = array();
7    
8   if($kill==1)   if($kill==1)
# Line 29  Line 29 
29   $drop['keyboard'] = array('kbd');   $drop['keyboard'] = array('kbd');
30   $drop['cfg_network_module'] = array('auto','3c59x', '8139too', '8139cp', 'e100', 'ne2k-pci', 'pcnet32', 'sis900', 'via-rhine', 'zd1211');   $drop['cfg_network_module'] = array('auto','3c59x', '8139too', '8139cp', 'e100', 'ne2k-pci', 'pcnet32', 'sis900', 'via-rhine', 'zd1211');
31   $drop['networking'] = array('dhcp', 'static');   $drop['networking'] = array('dhcp', 'static');
32     $drop['default_iface'] = sqlarr('SELECT iface FROM cfg_interfaces where serial='.$id, '', 'iface');
33   $drop['iface'] = 'show';   $drop['iface'] = 'show';
34   $drop['port'] = array('lpt1', 'com1', 'com2', 'lpd', 'socket', 'ipp');   # only support parallel and seriell printing on tinyalx
35     //$drop['port'] = array('lpt1', 'com1', 'com2', 'lpd', 'socket', 'ipp');
36     $drop['port'] = array('lpt1', 'com1');
37   $drop['location'] = sqlarr('SELECT location FROM client_locations', '', 'location');   $drop['location'] = sqlarr('SELECT location FROM client_locations', '', 'location');
38   $drop['id'] = 'hidden';   $drop['id'] = 'hidden';
39   $drop['flg_modified'] = '1';   $drop['flg_modified'] = '1';
# Line 38  Line 41 
41   $drop['monitorid'] = 'monitorid';   $drop['monitorid'] = 'monitorid';
42   $drop['hostname'] = 'bold';   $drop['hostname'] = 'bold';
43   $drop['session'] = 'bold';   $drop['session'] = 'bold';
44   $drop['cfg_autostart_session'] = 'filename';   $drop['displaymode'] = array('fullscreen', 'seamless', '1280x1024', '1024x768', '800x600');
45     $drop['cfg_autostart_session'] = array('');
46     $drop['cfg_autostart_session'] += sqlarr('SELECT filename FROM cfg_sessions where serial='.$id, 'array', 'filename');
47   $drop['mtime'] = 'showtime';   $drop['mtime'] = 'showtime';
48   $drop['mac'] = 'show';   $drop['mac'] = 'show';
49   $drop['client_serials_serial'] = 'show';   $drop['client_serials_serial'] = 'show';
# Line 100  Line 105 
105    
106   foreach($tabs as $k=>$t)   foreach($tabs as $k=>$t)
107   {   {
108   if(!$multi[$k]) mysql_query('UPDATE '.$t.' SET '.updatestr(postarr($t)).' WHERE serial='.$id);   if(!$multi[$k])
109     {
110     mysql_query('UPDATE '.$t.' SET '.updatestr(postarr($t)).' WHERE serial='.$id);
111     }
112   else   else
113   {   {
114   $i=0;   $i=0;
# Line 172  Line 180 
180    
181   foreach($arr as $k=>$v)   foreach($arr as $k=>$v)
182   {   {
183   if( (substr($k,0,9)=='wireless_') xor $wireless ) Continue;   //if( (substr($k,0,9)=='wireless_') xor $wireless ) Continue;
184    
185   $d = $drop[$name.'_'.$k]; if($d==null) $d = $drop[$k];   $d = $drop[$name.'_'.$k]; if($d==null) $d = $drop[$k];
186   $k = str_replace('wireless_', '', $k);   //$k = str_replace('wireless_', '', $k);
187   $k2 = $k;   $k2 = $k;
188    
189   if(is_array($d))   if(is_array($d))
# Line 201  Line 209 
209   echo '</table>';   echo '</table>';
210   closeabs();   closeabs();
211    
212   if($name=='cfg_network' && !$wireless) parsearr($name.'_wireless', $arr, $del, true);   //if($name=='cfg_network' && !$wireless) parsearr($name.'_wireless', $arr, $del, true);
213   }   }
214   function parsearrs($name, $arr)   function parsearrs($name, $arr)
215   {   {

Legend:
Removed from v.441  
changed lines
  Added in v.479