--- alx-src/branches/alx-web-060/show.php 2011/11/02 13:47:36 3275 +++ alx-src/branches/alx-web-060/show.php 2015/07/23 15:36:35 6862 @@ -37,8 +37,15 @@ $drop = array(); if($alxos >= '0.6.0') { - $drop['cfg_graphic_module'] = array('vesa', 'ati', 'cirrus', 'i710', 'intel', 'nv', 'mach64', 'mga', 'openchrome', 'radeon', 's3', 's3virge', 'savage', 'sis', 'trident', 'tseng', 'vmware'); - if($gfxinfo[module] = 'intel') + if($alxos >= '0.6.2') + { + $drop['cfg_graphic_module'] = array('vesa', 'ati', 'cirrus', 'i710', 'intel', 'nv', 'nouveau', 'mach64', 'mga', 'unichrome', 'radeon', 's3', 's3virge', 'savage', 'sis', 'trident', 'tseng', 'vmware'); + } + else + { + $drop['cfg_graphic_module'] = array('vesa', 'ati', 'cirrus', 'i710', 'intel', 'nv', 'mach64', 'mga', 'openchrome', 'radeon', 's3', 's3virge', 'savage', 'sis', 'trident', 'tseng', 'vmware'); + } + if($gfxinfo[module] == 'intel') { $drop['cfg_graphic_hdmi'] = array('disable', 'enable'); } @@ -61,7 +68,11 @@ $drop['depth'] = array('24', '16', '8'); $drop['mouse'] = array('Auto', 'IMPS/2', 'PS/2'); $drop['keyboard'] = array('PC105'); -if($alxos >= '0.6.0') +if($alxos >= '0.6.8.100') +{ + $drop['cfg_network_module'] = array('3c509', '3c59x', '8139cp', '8139too', '8390', 'amd8111e', 'atl1c', 'atl1e', 'atl1', 'atl2', 'b44', 'bnx2', 'cnic', 'e100', 'e1000', 'e1000e', 'forcedeth', 'igb', 'ipg', 'jme', 'natsemi', 'ne2k-pci', 'ns83820', 'pcnet32', 'qla3xxx', 'r8169', 'sis190', 'sis900', 'skge', 'sky2', 'tg3', 'typhoon', 'via-rhine', 'via-velocity', 'adm8211', 'airo', 'at76c50x-usb', 'ar9170usb', 'ath5k', 'ath9k', 'atmel', 'atmel_pci', 'b43', 'b43legacy', 'hostap_pci', 'hostap_plx', 'ipw2100', 'ipw2200', 'iwl3945', 'iwl4965', 'iwldvm', 'iwlwifi', 'libertas_tf', 'libertas_tf_usb', 'mwl8k', 'orinoco', 'orinoco_nortel', 'orinoco_plx', 'orinoco_tmd', 'orinoco_usb', 'p54pci', 'p54usb', 'prism54', 'rndis_wlan', 'rt2400pci', 'rt2500pci', 'rt2500usb', 'rt2800pci', 'rt2800usb', 'rt61pci', 'rt73usb', 'rtl8180', 'rtl8187', 'usb8xxx', 'wl1251', 'wl1271', 'zd1201', 'zd1211rw'); +} +else if($alxos >= '0.6.0') { $drop['cfg_network_module'] = array('3c509', '3c59x', '8139cp', '8139too', '8390', 'amd8111e', 'atl1c', 'atl1e', 'atl1', 'atl2', 'b44', 'bnx2', 'cnic', 'e100', 'e1000', 'e1000e', 'forcedeth', 'igb', 'ipg', 'jme', 'natsemi', 'ne2k-pci', 'ns83820', 'pcnet32', 'qla3xxx', 'r8169', 'sis190', 'sis900', 'skge', 'sky2', 'tg3', 'typhoon', 'via-rhine', 'via-velocity', 'adm8211', 'airo', 'at76c50x-usb', 'ar9170usb', 'ath5k', 'ath9k', 'atmel', 'b43', 'b43legacy', 'hostap_pci', 'hostap_plx', 'ipw2100', 'ipw2200', 'iwl3945', 'usb8xxx', 'libertas_tf', 'libertas_tf_usb', 'mwl8k', 'orinoco', 'orinoco_nortel', 'orinoco_plx', 'orinoco_tmd', 'orinoco_usb', 'p54pci', 'p54usb', 'prism54', 'rndis_wlan', 'rt2400pci', 'rt2500pci', 'rt2500usb', 'rt2800pci', 'rt2800usb', 'rt61pci', 'rt73usb', 'rtl8180', 'rtl8187', 'wl1251', 'wl1271', 'zd1201', 'zd1211rw'); } @@ -145,7 +156,10 @@ for ($i=0; $i<999; $i++) { $drop['cfg_plugins_'.$i.'_plugin'] = 'pluginconfig'; } for ($i=0; $i<999; $i++) { - $drop['cfg_plugins_'.$i.'_plugin_array'] = sqlarr('SELECT plugin FROM avail_plugins', '', 'plugin'); + if($alxos>'0.6.5') + $drop['cfg_plugins_'.$i.'_plugin_array'] = sqlarr('SELECT plugin FROM avail_plugins', '', 'plugin'); + else + $drop['cfg_plugins_'.$i.'_plugin_array'] = sqlarr('SELECT plugin FROM avail_plugins where plugin<>"citrix_spe"', '', 'plugin'); array_unshift($drop['cfg_plugins_'.$i.'_plugin_array'], ""); } } @@ -169,8 +183,11 @@ array_unshift($citrix_public_applications, ""); for ($i=0; $i<999; $i++) { $drop['cfg_sessions_'.$i.'_session'] = $citrix_public_applications; } } - else if($retval = 126) echo "pnabrowser-wrapper has no execute permission! please run chmod +x on ".$wwwroot."/pnabrowser-wrapper."; - else echo "pnabrowse-wrapper does not run successfully! retval->'".$retval."'
"; + else + { + if($retval = 126) echo "pnabrowser-wrapper has no execute permission! please run chmod +x on ".$wwwroot."/pnabrowser-wrapper."; + else echo "pnabrowse-wrapper does not run successfully! retval->'".$retval."'
"; + } } // GGF. NEUEN DATENSATZ EINFÜGEN @@ -302,7 +319,20 @@ $v='openchrome'; } } - + if($alxos >= '0.6.2') + { + if($v == 'via') + { + echo '
Replaced "via" with "unichrome" - Please press SAVE!
'; + $v='unichrome'; + } + if($v == 'openchrome') + { + echo '
Replaced "openchrome" with "unichrome" - Please press SAVE!
'; + $v='unichrome'; + } + } + # tell something about vesa if ($v == 'vesa') echo '
Warning: "vesa" graphic module doesn\'t support any resolutions higher than 1024x786x16@60hz!
'; @@ -335,7 +365,7 @@ else if($d=='showtime') echo ''.$k2.'= '.date('d.m.y - H:i:s', $v).''; else if($d=='password' && $v=='') echo ''.$k2.'= '; else if($d=='password') echo ''.$k2.'= '; - else if($d=='txt') echo ''; + else if($d=='txt') echo ''; else if($d!='ignore') echo ''.$k2.'= '; } @@ -503,15 +533,15 @@ echo 'IP: '.$conn['ip'].'

'; if($alxos >= '0.6.0') { - $osver = sshdo('os_ver=$(= '0.5.3') @@ -525,7 +555,7 @@ echo 'OS: '.$osver[0].'
'; echo 'Utils: '.$osver[1].'
'; - if($osver[0] <> 'unkown') + if($osver[0] <> 'unknown') { //write them to database } @@ -548,6 +578,7 @@ echo ''; echo '
'; echo ''; + echo ''; echo '

'; }