Index: head/www/phpvirtualbox/Makefile =================================================================== --- head/www/phpvirtualbox/Makefile (revision 446745) +++ head/www/phpvirtualbox/Makefile (revision 446746) @@ -1,29 +1,35 @@ # Created by: Bernhard Froehlich # $FreeBSD$ PORTNAME= phpvirtualbox -DISTVERSION= 5.0-5 +DISTVERSION= 5.1-1 CATEGORIES= www -MASTER_SITES= SF/${PORTNAME} MAINTAINER= vbox@FreeBSD.org COMMENT= AJAX Web Interface for VirtualBox LICENSE= GPLv3 NO_ARCH= yes NO_BUILD= yes +USES= dos2unix php USE_PHP= json session simplexml soap xml -USES= dos2unix php zip +USE_GITHUB= yes +GH_TAGNAME= 65ebced + DOS2UNIX_REGEX= .*\.(php|txt|js|css|html) ETCDIR= ${WWWDIR} + +post-patch: + @${MV} ${WRKSRC}/endpoints/lib/vboxweb-5.0.wsdl ${WRKSRC}/endpoints/lib/vboxweb-5.1.wsdl + @${MV} ${WRKSRC}/endpoints/lib/vboxwebService-5.0.wsdl ${WRKSRC}/endpoints/lib/vboxwebService-5.1.wsdl do-install: ${MKDIR} ${STAGEDIR}${WWWDIR} (cd ${WRKSRC}/ && ${COPYTREE_SHARE} "*" ${STAGEDIR}${WWWDIR} \ "-not -name *.orig -not -name config.php-example") ${INSTALL_DATA} ${WRKSRC}/config.php-example \ ${STAGEDIR}${WWWDIR}/config.php.sample .include Index: head/www/phpvirtualbox/distinfo =================================================================== --- head/www/phpvirtualbox/distinfo (revision 446745) +++ head/www/phpvirtualbox/distinfo (revision 446746) @@ -1,2 +1,3 @@ -SHA256 (phpvirtualbox-5.0-5.zip) = c80c423fda30e5795872c9b9adc68429deee5726e468729472a573c324303c05 -SIZE (phpvirtualbox-5.0-5.zip) = 4093766 +TIMESTAMP = 1501174865 +SHA256 (phpvirtualbox-phpvirtualbox-5.1-1-65ebced_GH0.tar.gz) = d7b36c84aa2cf8be650f6da74860a4af4abf17bd878590e31fd948f45ed51753 +SIZE (phpvirtualbox-phpvirtualbox-5.1-1-65ebced_GH0.tar.gz) = 3716806 Index: head/www/phpvirtualbox/files/patch-endpoints_lib_config.php =================================================================== --- head/www/phpvirtualbox/files/patch-endpoints_lib_config.php (nonexistent) +++ head/www/phpvirtualbox/files/patch-endpoints_lib_config.php (revision 446746) @@ -0,0 +1,11 @@ +--- endpoints/lib/config.php.orig 2017-07-27 16:54:58 UTC ++++ endpoints/lib/config.php +@@ -14,7 +14,7 @@ + /* + * This version of phpVirtualBox + */ +-define('PHPVBOX_VER', '5.0-6'); ++define('PHPVBOX_VER', '5.1-1'); + + class phpVBoxConfigClass { + Property changes on: head/www/phpvirtualbox/files/patch-endpoints_lib_config.php ___________________________________________________________________ Added: fbsd:nokeywords ## -0,0 +1 ## +yes \ No newline at end of property Added: svn:eol-style ## -0,0 +1 ## +native \ No newline at end of property Added: svn:mime-type ## -0,0 +1 ## +text/plain \ No newline at end of property Index: head/www/phpvirtualbox/files/patch-endpoints_lib_vboxServiceWrappers.php =================================================================== --- head/www/phpvirtualbox/files/patch-endpoints_lib_vboxServiceWrappers.php (nonexistent) +++ head/www/phpvirtualbox/files/patch-endpoints_lib_vboxServiceWrappers.php (revision 446746) @@ -0,0 +1,13 @@ +--- endpoints/lib/vboxServiceWrappers.php.orig 2017-07-27 16:54:58 UTC ++++ endpoints/lib/vboxServiceWrappers.php +@@ -7889,6 +7889,10 @@ class IMedium extends VBox_ManagedObject + + public function changeEncryption($arg_currentPassword, $arg_cipher, $arg_newPassword, $arg_newPasswordId) + { ++ // No password ID in case of decryption and de-/encryption are both handled here. ++ $isDecryption = ($arg_cipher == '') && ($arg_newPassword == ''); ++ $arg_newPasswordId = $isDecryption ? '' : $arg_newPasswordId; ++ + $request = new stdClass(); + $request->_this = $this->handle; + $request->currentPassword = $arg_currentPassword; Property changes on: head/www/phpvirtualbox/files/patch-endpoints_lib_vboxServiceWrappers.php ___________________________________________________________________ Added: fbsd:nokeywords ## -0,0 +1 ## +yes \ No newline at end of property Added: svn:eol-style ## -0,0 +1 ## +native \ No newline at end of property Added: svn:mime-type ## -0,0 +1 ## +text/plain \ No newline at end of property Index: head/www/phpvirtualbox/files/patch-endpoints_lib_vboxconnector.php =================================================================== --- head/www/phpvirtualbox/files/patch-endpoints_lib_vboxconnector.php (nonexistent) +++ head/www/phpvirtualbox/files/patch-endpoints_lib_vboxconnector.php (revision 446746) @@ -0,0 +1,209 @@ +--- endpoints/lib/vboxconnector.php.orig 2017-07-27 16:54:58 UTC ++++ endpoints/lib/vboxconnector.php +@@ -1126,7 +1126,7 @@ class vboxconnector { + // Try to register medium. + foreach($checks as $iso) { + try { +- $gem = $this->vbox->openMedium($iso,'DVD','ReadOnly'); ++ $gem = $this->vbox->openMedium($iso,'DVD','ReadOnly',null); + break; + } catch (Exception $e) { + // Ignore +@@ -1358,7 +1358,7 @@ class vboxconnector { + $src = $nsrc->machine; + } + /* @var $m IMachine */ +- $m = $this->vbox->createMachine($this->vbox->composeMachineFilename($args['name'],null,null),$args['name'],null,null,null,false); ++ $m = $this->vbox->createMachine($this->vbox->composeMachineFilename($args['name'],null,null,null),$args['name'],null,null,null,false); + $sfpath = $m->settingsFilePath; + + /* @var $cm CloneMode */ +@@ -1522,7 +1522,7 @@ class vboxconnector { + $md->releaseRemote(); + } + } else { +- $med = $this->vbox->openMedium($ma['medium']['location'],$ma['type']); ++ $med = $this->vbox->openMedium($ma['medium']['location'],$ma['type'],null,null); + } + } else { + $med = null; +@@ -1591,7 +1591,7 @@ class vboxconnector { + if($state != 'Saved') { + + // Network properties +- $eprops = $n->getProperties(); ++ $eprops = $n->getProperties(null); + $eprops = array_combine($eprops[1],$eprops[0]); + $iprops = array_map(create_function('$a','$b=explode("=",$a); return array($b[0]=>$b[1]);'),preg_split('/[\r|\n]+/',$args['networkAdapters'][$i]['properties'])); + $inprops = array(); +@@ -2028,7 +2028,7 @@ class vboxconnector { + } + } else { + /* @var $med IMedium */ +- $med = $this->vbox->openMedium($ma['medium']['location'],$ma['type']); ++ $med = $this->vbox->openMedium($ma['medium']['location'],$ma['type'],null,null); + } + } else { + $med = null; +@@ -2111,7 +2111,7 @@ class vboxconnector { + */ + + // Network properties +- $eprops = $n->getProperties(); ++ $eprops = $n->getProperties(null); + $eprops = array_combine($eprops[1],$eprops[0]); + $iprops = array_map(create_function('$a','$b=explode("=",$a); return array($b[0]=>$b[1]);'),preg_split('/[\r|\n]+/',$args['networkAdapters'][$i]['properties'])); + $inprops = array(); +@@ -2519,7 +2519,7 @@ class vboxconnector { + */ + public function remote_vboxGetEnumerationMap($args) { + +- $c = new $args['class']; ++ $c = new $args['class'](null,null); + return (@isset($args['ValueMap']) ? $c->ValueMap : $c->NameMap); + } + +@@ -3697,7 +3697,7 @@ class vboxconnector { + $hds = array(); + $delete = $machine->unregister('DetachAllReturnHardDisksOnly'); + foreach($delete as $hd) { +- $hds[] = $this->vbox->openMedium($hd->location,'HardDisk')->handle; ++ $hds[] = $this->vbox->openMedium($hd->location,'HardDisk',null,null)->handle; + } + + /* @var $progress IProgress */ +@@ -3772,7 +3772,7 @@ class vboxconnector { + $args['name'] = $_SESSION['user'] . '_' . $args['name']; + + /* Check if file exists */ +- $filename = $this->vbox->composeMachineFilename($args['name'],($this->settings->phpVboxGroups ? '' : $args['group']),$this->vbox->systemProperties->defaultMachineFolder); ++ $filename = $this->vbox->composeMachineFilename($args['name'],($this->settings->phpVboxGroups ? '' : $args['group']),$this->vbox->systemProperties->defaultMachineFolder,null); + + if($this->remote_fileExists(array('file'=>$filename))) { + return array('exists' => $filename); +@@ -3874,7 +3874,7 @@ class vboxconnector { + + $sc->releaseRemote(); + +- $m = $this->vbox->openMedium($args['disk'],'HardDisk'); ++ $m = $this->vbox->openMedium($args['disk'],'HardDisk',null,null); + + $this->session->machine->attachDevice(trans($HDbusType,'UIMachineSettingsStorage'),0,0,'HardDisk',$m->handle); + +@@ -3941,7 +3941,7 @@ class vboxconnector { + if($at == 'NAT') $nd = $n->NATEngine; /* @var $nd INATEngine */ + else $nd = null; + +- $props = $n->getProperties(); ++ $props = $n->getProperties(null); + $props = implode("\n",array_map(create_function('$a,$b','return "$a=$b";'),$props[1],$props[0])); + + $adapters[] = array( +@@ -4381,7 +4381,7 @@ class vboxconnector { + } + + try { +- $this->session->console->addDiskEncryptionPassword($creds['id'], $creds['password'], (bool)@$args['clearOnSuspend']); ++ $this->session->console->addDiskEncryptionPassword($creds['id'], $creds['password'], (bool)$creds['clearOnSuspend']); + $response['accepted'][] = $creds['id']; + } catch (Exception $e) { + $response['failed'][] = $creds['id']; +@@ -4690,7 +4690,7 @@ class vboxconnector { + $machine->lockMachine($this->session->handle, ((string)$machine->sessionState == 'Unlocked' ? 'Write' : 'Shared')); + + /* @var $progress IProgress */ +- list($progress, $snapshotId) = $this->session->machine->takeSnapshot($args['name'], $args['description']); ++ list($progress, $snapshotId) = $this->session->machine->takeSnapshot($args['name'], $args['description'],null); + + // Does an exception exist? + try { +@@ -4853,7 +4853,7 @@ class vboxconnector { + // Connect to vboxwebsrv + $this->connect(); + +- $m = $this->vbox->openMedium($args['medium'],'HardDisk'); ++ $m = $this->vbox->openMedium($args['medium'],'HardDisk',null,null); + + $retval = $m->checkEncryptionPassword($args['password']); + +@@ -4874,7 +4874,7 @@ class vboxconnector { + // Connect to vboxwebsrv + $this->connect(); + +- $m = $this->vbox->openMedium($args['medium'], 'HardDisk', 'ReadWrite'); ++ $m = $this->vbox->openMedium($args['medium'], 'HardDisk', 'ReadWrite',null); + + /* @var $progress IProgress */ + $progress = $m->changeEncryption($args['old_password'], +@@ -4915,7 +4915,7 @@ class vboxconnector { + // Connect to vboxwebsrv + $this->connect(); + +- $m = $this->vbox->openMedium($args['medium'], 'HardDisk'); ++ $m = $this->vbox->openMedium($args['medium'], 'HardDisk',null,null); + + /* @var $progress IProgress */ + $progress = $m->resize($args['bytes']); +@@ -4953,7 +4953,7 @@ class vboxconnector { + $mid = $target->id; + + /* @var $src IMedium */ +- $src = $this->vbox->openMedium($args['src'], 'HardDisk'); ++ $src = $this->vbox->openMedium($args['src'], 'HardDisk',null,null); + + $type = array(($args['type'] == 'fixed' ? 'Fixed' : 'Standard')); + if($args['split']) $type[] = 'VmdkSplit2G'; +@@ -4991,7 +4991,7 @@ class vboxconnector { + $this->connect(); + + /* @var $m IMedium */ +- $m = $this->vbox->openMedium($args['medium'], 'HardDisk'); ++ $m = $this->vbox->openMedium($args['medium'], 'HardDisk',null,null); + $m->type = $args['type']; + $m->releaseRemote(); + +@@ -5074,7 +5074,7 @@ class vboxconnector { + // Connect to vboxwebsrv + $this->connect(); + +- return $this->vbox->composeMachineFilename($args['name'],($this->settings->phpVboxGroups ? '' : $args['group']),$this->vbox->systemProperties->defaultMachineFolder); ++ return $this->vbox->composeMachineFilename($args['name'],($this->settings->phpVboxGroups ? '' : $args['group']),$this->vbox->systemProperties->defaultMachineFolder,null); + + } + +@@ -5129,7 +5129,7 @@ class vboxconnector { + $this->connect(); + + /* @var $m IMedium */ +- $m = $this->vbox->openMedium($args['medium'],$args['type']); ++ $m = $this->vbox->openMedium($args['medium'],$args['type'],null,null); + $mediumid = $m->id; + + // connected to... +@@ -5211,7 +5211,7 @@ class vboxconnector { + if(!$args['type']) $args['type'] = 'HardDisk'; + + /* @var $m IMedium */ +- $m = $this->vbox->openMedium($args['medium'],$args['type']); ++ $m = $this->vbox->openMedium($args['medium'],$args['type'],null,null); + + if($args['delete'] && @$this->settings->deleteOnRemove && (string)$m->deviceType == 'HardDisk') { + +@@ -5380,7 +5380,7 @@ class vboxconnector { + // Normal medium + } else { + /* @var $med IMedium */ +- $med = $this->vbox->openMedium($args['medium']['location'],$args['medium']['deviceType']); ++ $med = $this->vbox->openMedium($args['medium']['location'],$args['medium']['deviceType'],null,null); + } + } + +@@ -5445,7 +5445,7 @@ class vboxconnector { + } + + // For $fixed value +- $mvenum = new MediumVariant(); ++ $mvenum = new MediumVariant(null,null); + $variant = 0; + + foreach($m->variant as $mv) { Property changes on: head/www/phpvirtualbox/files/patch-endpoints_lib_vboxconnector.php ___________________________________________________________________ Added: fbsd:nokeywords ## -0,0 +1 ## +yes \ No newline at end of property Added: svn:eol-style ## -0,0 +1 ## +native \ No newline at end of property Added: svn:mime-type ## -0,0 +1 ## +text/plain \ No newline at end of property Index: head/www/phpvirtualbox/files/patch-endpoints_lib_vboxweb-5.1.wsdl =================================================================== --- head/www/phpvirtualbox/files/patch-endpoints_lib_vboxweb-5.1.wsdl (nonexistent) +++ head/www/phpvirtualbox/files/patch-endpoints_lib_vboxweb-5.1.wsdl (revision 446746) @@ -0,0 +1,2647 @@ +--- endpoints/lib/vboxweb-5.0.wsdl 2017-07-10 13:31:02 UTC ++++ endpoints/lib/vboxweb-5.1.wsdl +@@ -38,6 +38,7 @@ + v1_13: 15 - + v1_14: 16 - + v1_15: 17 - ++ v1_16: 18 - + Future: 99999 - + --> + +@@ -60,6 +61,7 @@ + + + ++ + + + +@@ -156,13 +158,17 @@ + PAE: 1 - + LongMode: 2 - + TripleFaultReset: 3 - ++ APIC: 4 - ++ X2APIC: 5 - + --> + + + + + + ++ ++ + + + ++ ++ ++ ++ ++ ++ ++ + ++ ++ ++ ++ ++ ++ ++ ++ + + + +@@ -1456,6 +1490,8 @@ + + + ++ ++ + + + +@@ -1522,11 +1558,23 @@ + + + + + ++ ++ ++ ++ ++ ++ ++ ++ + + + + + +@@ -1759,6 +1808,7 @@ + + + ++ + + + + + +@@ -1785,6 +1836,7 @@ + + + ++ + + + +@@ -3738,6 +3792,353 @@ + + + ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ + + + +@@ -3799,6 +4200,21 @@ + + + ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ + + + +@@ -4240,6 +4656,34 @@ + + + ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ + + + +@@ -5614,6 +6058,21 @@ + + + ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ + + + +@@ -6483,6 +6942,62 @@ + + + ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ + + + +@@ -9289,6 +9804,38 @@ + + + ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ + + + +@@ -14496,7 +15043,158 @@ + + + ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ + ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ + + + +@@ -14703,6 +15401,21 @@ + + + ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ + + + +@@ -15963,6 +16676,21 @@ + + + ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ + + + +@@ -16652,6 +17380,36 @@ + + + ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ + + + +@@ -17006,6 +17764,37 @@ + + + ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ + + + +@@ -21951,6 +22740,172 @@ + + ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ +@@ -21982,6 +22937,13 @@ + + + ++ ++ ++ ++ ++ ++ ++ + + + +@@ -22193,6 +23155,19 @@ + + + ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ + + + +@@ -22846,6 +23821,13 @@ + + + ++ ++ ++ ++ ++ ++ ++ + + + +@@ -23250,6 +24232,32 @@ + + + ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ + + + +@@ -24539,6 +25547,20 @@ + + + ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ + ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ + + + +@@ -27117,6 +28214,13 @@ + + + ++ ++ ++ ++ ++ ++ ++ + ++ ++ ++ ++ ++ ++ ++ + + + +@@ -28048,6 +29159,20 @@ + + + ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ + ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ +@@ -31259,6 +32403,149 @@ + + ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ +@@ -31286,6 +32573,12 @@ + + + ++ ++ ++ ++ ++ ++ + + + +@@ -31475,6 +32768,18 @@ + + + ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ + + + +@@ -32072,6 +33377,12 @@ + + + ++ ++ ++ ++ ++ ++ + + + +@@ -32438,6 +33749,30 @@ + + + ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ + + + +@@ -33548,6 +34883,18 @@ + + + ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ + ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ + + + +@@ -35799,6 +37211,12 @@ + + + ++ ++ ++ ++ ++ ++ + ++ ++ ++ ++ ++ ++ + + + +@@ -36633,6 +38057,18 @@ + + + ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ + ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ +@@ -40544,6 +41997,356 @@ + + ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ +@@ -40607,6 +42410,21 @@ + + + ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ + + + +@@ -41057,6 +42875,36 @@ + + + ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ + + + +@@ -42527,6 +44375,21 @@ + + + ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ + + + +@@ -43442,6 +45305,66 @@ + + + ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ + + + +@@ -46172,6 +48095,36 @@ + + + ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ + ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ + + + +@@ -51555,6 +53663,21 @@ + + + ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ + ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ + + + +@@ -53586,6 +55724,36 @@ + + + ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ + ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ Property changes on: head/www/phpvirtualbox/files/patch-endpoints_lib_vboxweb-5.1.wsdl ___________________________________________________________________ Added: fbsd:nokeywords ## -0,0 +1 ## +yes \ No newline at end of property Added: svn:eol-style ## -0,0 +1 ## +native \ No newline at end of property Added: svn:mime-type ## -0,0 +1 ## +text/plain \ No newline at end of property Index: head/www/phpvirtualbox/files/patch-endpoints_lib_vboxwebService-5.1.wsdl =================================================================== --- head/www/phpvirtualbox/files/patch-endpoints_lib_vboxwebService-5.1.wsdl (nonexistent) +++ head/www/phpvirtualbox/files/patch-endpoints_lib_vboxwebService-5.1.wsdl (revision 446746) @@ -0,0 +1,11 @@ +--- endpoints/lib/vboxwebService-5.0.wsdl 2017-07-10 13:31:02 UTC ++++ endpoints/lib/vboxwebService-5.1.wsdl +@@ -5,7 +5,7 @@ + Generator: src/VBox/Main/webservice/websrv-wsdl-service.xsl + --> + +- ++ + + + Property changes on: head/www/phpvirtualbox/files/patch-endpoints_lib_vboxwebService-5.1.wsdl ___________________________________________________________________ Added: fbsd:nokeywords ## -0,0 +1 ## +yes \ No newline at end of property Added: svn:eol-style ## -0,0 +1 ## +native \ No newline at end of property Added: svn:mime-type ## -0,0 +1 ## +text/plain \ No newline at end of property Index: head/www/phpvirtualbox/files/patch-panes_mediumEncryptionPasswords.html =================================================================== --- head/www/phpvirtualbox/files/patch-panes_mediumEncryptionPasswords.html (nonexistent) +++ head/www/phpvirtualbox/files/patch-panes_mediumEncryptionPasswords.html (revision 446746) @@ -0,0 +1,41 @@ +--- panes/mediumEncryptionPasswords.html.orig 2017-07-27 16:54:58 UTC ++++ panes/mediumEncryptionPasswords.html +@@ -15,6 +15,7 @@ + Status + ID + Password ++ Clear on suspend + + + +@@ -37,9 +38,12 @@ function vboxMediumEncryptionPasswordAdd + .append($('') + .append( + valid ? '*****' : +- $('').attr({'type':'password','style':'width:95%'}).addClass('vboxText') ++ $('').attr({'type':'password','style':'width:90%'}).addClass('vboxText') + ) + ) ++ .append($('') ++ .append($('').attr({'type':'checkbox', 'checked':'checked'})) ++ ) + .appendTo($('#vboxMediumEncryptionPasswordList')) + } + +@@ -55,7 +59,8 @@ function vboxMediumEncryptionPasswordsGe + continue; + encryptionPWs.push({ + 'id': $(rowlist[i]).data('vboxEncryptionId'), +- 'password': $(rowlist[i]).find('input').first().val() ++ 'password': $(rowlist[i]).find('input[type="password"]').first().val(), ++ 'clearOnSuspend': $(rowlist[i]).find('input[type="checkbox"]').first().is(':checked') ? '1' : '0' + }); + + } +@@ -75,4 +80,4 @@ function vboxMediumEncryptionPasswordsVa + }); + return valid; + } +- +\ No newline at end of file ++ Property changes on: head/www/phpvirtualbox/files/patch-panes_mediumEncryptionPasswords.html ___________________________________________________________________ Added: fbsd:nokeywords ## -0,0 +1 ## +yes \ No newline at end of property Added: svn:eol-style ## -0,0 +1 ## +native \ No newline at end of property Added: svn:mime-type ## -0,0 +1 ## +text/plain \ No newline at end of property Index: head/www/phpvirtualbox/pkg-plist =================================================================== --- head/www/phpvirtualbox/pkg-plist (revision 446745) +++ head/www/phpvirtualbox/pkg-plist (revision 446746) @@ -1,573 +1,574 @@ @group www @owner www %%WWWDIR%%/CHANGELOG.txt +%%WWWDIR%%/Dockerfile %%WWWDIR%%/GPLv3.txt %%WWWDIR%%/LICENSE.txt -%%WWWDIR%%/Dockerfile %%WWWDIR%%/README.md @sample %%ETCDIR%%/config.php.sample %%WWWDIR%%/css/jquery-ui.css %%WWWDIR%%/css/jquery.projectPlugins.css %%WWWDIR%%/css/layout.css %%WWWDIR%%/css/tipped.css %%WWWDIR%%/docker-compose.yml %%WWWDIR%%/endpoints/api.php %%WWWDIR%%/endpoints/config.js %%WWWDIR%%/endpoints/index.html %%WWWDIR%%/endpoints/jqueryFileTree.php %%WWWDIR%%/endpoints/language.php %%WWWDIR%%/endpoints/lib/auth/ActiveDirectory.php %%WWWDIR%%/endpoints/lib/auth/Builtin.php %%WWWDIR%%/endpoints/lib/auth/LDAP.php +%%WWWDIR%%/endpoints/lib/auth/MySQL.php %%WWWDIR%%/endpoints/lib/auth/OpenMediaVault.php %%WWWDIR%%/endpoints/lib/auth/WebAuth.php %%WWWDIR%%/endpoints/lib/auth/index.html %%WWWDIR%%/endpoints/lib/authinterface.php %%WWWDIR%%/endpoints/lib/config.php %%WWWDIR%%/endpoints/lib/index.html %%WWWDIR%%/endpoints/lib/language.php %%WWWDIR%%/endpoints/lib/utils.php %%WWWDIR%%/endpoints/lib/vboxServiceWrappers.php %%WWWDIR%%/endpoints/lib/vboxconnector.php -%%WWWDIR%%/endpoints/lib/vboxweb-5.0.wsdl -%%WWWDIR%%/endpoints/lib/vboxwebService-5.0.wsdl +%%WWWDIR%%/endpoints/lib/vboxweb-5.1.wsdl +%%WWWDIR%%/endpoints/lib/vboxwebService-5.1.wsdl %%WWWDIR%%/endpoints/rdp.php %%WWWDIR%%/endpoints/screen.php %%WWWDIR%%/images/30white.png %%WWWDIR%%/images/50px-Question_icon.svg.png %%WWWDIR%%/images/50px-Warning_icon.svg.png %%WWWDIR%%/images/arrow_grad_dn.png %%WWWDIR%%/images/arrow_grad_left.png %%WWWDIR%%/images/arrow_grad_right.png %%WWWDIR%%/images/arrow_grad_up.png %%WWWDIR%%/images/arrow_white_dn.png %%WWWDIR%%/images/arrow_white_left.png %%WWWDIR%%/images/arrow_white_right.png %%WWWDIR%%/images/arrow_white_up.png %%WWWDIR%%/images/donate.gif %%WWWDIR%%/images/downArrow.png %%WWWDIR%%/images/header_grad.png %%WWWDIR%%/images/jquery-ui/ui-bg_flat_0_aaaaaa_40x100.png %%WWWDIR%%/images/jquery-ui/ui-bg_flat_75_ffffff_40x100.png %%WWWDIR%%/images/jquery-ui/ui-bg_glass_55_fbf9ee_1x400.png %%WWWDIR%%/images/jquery-ui/ui-bg_glass_65_ffffff_1x400.png %%WWWDIR%%/images/jquery-ui/ui-bg_glass_75_dadada_1x400.png %%WWWDIR%%/images/jquery-ui/ui-bg_glass_75_e6e6e6_1x400.png %%WWWDIR%%/images/jquery-ui/ui-bg_glass_95_fef1ec_1x400.png %%WWWDIR%%/images/jquery-ui/ui-bg_highlight-soft_75_cccccc_1x100.png %%WWWDIR%%/images/jquery-ui/ui-icons_222222_256x240.png %%WWWDIR%%/images/jquery-ui/ui-icons_2e83ff_256x240.png %%WWWDIR%%/images/jquery-ui/ui-icons_454545_256x240.png %%WWWDIR%%/images/jquery-ui/ui-icons_888888_256x240.png %%WWWDIR%%/images/jquery-ui/ui-icons_cd0a0a_256x240.png %%WWWDIR%%/images/jqueryFileTree/directory.png %%WWWDIR%%/images/jqueryFileTree/file.png %%WWWDIR%%/images/jqueryFileTree/folder_open.png %%WWWDIR%%/images/jqueryFileTree/spinner.gif %%WWWDIR%%/images/monitor_bl.png %%WWWDIR%%/images/monitor_bottom.png %%WWWDIR%%/images/monitor_br.png %%WWWDIR%%/images/monitor_glossy.png %%WWWDIR%%/images/monitor_left.png %%WWWDIR%%/images/monitor_right.png %%WWWDIR%%/images/monitor_tl.png %%WWWDIR%%/images/monitor_top.png %%WWWDIR%%/images/monitor_tr.png %%WWWDIR%%/images/rightArrow.png %%WWWDIR%%/images/spinner.gif %%WWWDIR%%/images/treeview-default-line.gif %%WWWDIR%%/images/treeview-default.gif %%WWWDIR%%/images/upArrow.png %%WWWDIR%%/images/vbox/OSE/VirtualBox.icns %%WWWDIR%%/images/vbox/OSE/VirtualBox_16px.png %%WWWDIR%%/images/vbox/OSE/VirtualBox_20px.png %%WWWDIR%%/images/vbox/OSE/VirtualBox_32px.png %%WWWDIR%%/images/vbox/OSE/VirtualBox_40px.png %%WWWDIR%%/images/vbox/OSE/VirtualBox_48px.png %%WWWDIR%%/images/vbox/OSE/VirtualBox_64px.png %%WWWDIR%%/images/vbox/OSE/VirtualBox_cube_42px.png %%WWWDIR%%/images/vbox/OSE/VirtualBox_win.ico %%WWWDIR%%/images/vbox/OSE/about.png %%WWWDIR%%/images/vbox/OSE/about_16px.png %%WWWDIR%%/images/vbox/acpi_16px.png %%WWWDIR%%/images/vbox/acpi_disabled_16px.png %%WWWDIR%%/images/vbox/add_host_iface_16px.png %%WWWDIR%%/images/vbox/add_host_iface_disabled_16px.png %%WWWDIR%%/images/vbox/arrow_down_10px.png %%WWWDIR%%/images/vbox/arrow_left_10px.png %%WWWDIR%%/images/vbox/arrow_right_10px.png %%WWWDIR%%/images/vbox/arrow_up_10px.png %%WWWDIR%%/images/vbox/attachment_16px.png %%WWWDIR%%/images/vbox/attachment_add_16px.png %%WWWDIR%%/images/vbox/attachment_add_disabled_16px.png %%WWWDIR%%/images/vbox/attachment_disabled_16px.png %%WWWDIR%%/images/vbox/attachment_remove_16px.png %%WWWDIR%%/images/vbox/attachment_remove_disabled_16px.png %%WWWDIR%%/images/vbox/bgnd_sel_2.jpg %%WWWDIR%%/images/vbox/blank.gif %%WWWDIR%%/images/vbox/cd_16px.png %%WWWDIR%%/images/vbox/cd_32px.png %%WWWDIR%%/images/vbox/cd_add_16px.png %%WWWDIR%%/images/vbox/cd_add_disabled_16px.png %%WWWDIR%%/images/vbox/cd_disabled_16px.png %%WWWDIR%%/images/vbox/cd_disabled_32px.png %%WWWDIR%%/images/vbox/cd_unmount_16px.png %%WWWDIR%%/images/vbox/cd_unmount_dis_16px.png %%WWWDIR%%/images/vbox/cd_unmount_disabled_16px.png %%WWWDIR%%/images/vbox/chipset_16px.png %%WWWDIR%%/images/vbox/chipset_disabled_16px.png %%WWWDIR%%/images/vbox/close_16px.png %%WWWDIR%%/images/vbox/controller_add_16px.png %%WWWDIR%%/images/vbox/controller_add_disabled_16px.png %%WWWDIR%%/images/vbox/controller_remove_16px.png %%WWWDIR%%/images/vbox/controller_remove_disabled_16px.png %%WWWDIR%%/images/vbox/cpu_16px.png %%WWWDIR%%/images/vbox/description_16px.png %%WWWDIR%%/images/vbox/description_disabled_16px.png %%WWWDIR%%/images/vbox/description_edit_16px.png %%WWWDIR%%/images/vbox/description_edit_disabled_16px.png %%WWWDIR%%/images/vbox/discard_cur_state_16px.png %%WWWDIR%%/images/vbox/discard_cur_state_22px.png %%WWWDIR%%/images/vbox/discard_cur_state_dis_16px.png %%WWWDIR%%/images/vbox/discard_cur_state_dis_22px.png %%WWWDIR%%/images/vbox/discard_cur_state_snapshot_16px.png %%WWWDIR%%/images/vbox/discard_cur_state_snapshot_22px.png %%WWWDIR%%/images/vbox/discard_cur_state_snapshot_dis_16px.png %%WWWDIR%%/images/vbox/discard_cur_state_snapshot_dis_22px.png %%WWWDIR%%/images/vbox/diskimage_16px.png %%WWWDIR%%/images/vbox/exit_16px.png %%WWWDIR%%/images/vbox/expanding_collapsing_16px.png %%WWWDIR%%/images/vbox/export_16px.png %%WWWDIR%%/images/vbox/fd_16px.png %%WWWDIR%%/images/vbox/fd_32px.png %%WWWDIR%%/images/vbox/fd_add_16px.png %%WWWDIR%%/images/vbox/fd_add_disabled_16px.png %%WWWDIR%%/images/vbox/fd_disabled_16px.png %%WWWDIR%%/images/vbox/fd_disabled_32px.png %%WWWDIR%%/images/vbox/fd_unmount_16px.png %%WWWDIR%%/images/vbox/fd_unmount_dis_16px.png %%WWWDIR%%/images/vbox/floppy_16px.png %%WWWDIR%%/images/vbox/floppy_add_16px.png %%WWWDIR%%/images/vbox/floppy_add_disabled_16px.png %%WWWDIR%%/images/vbox/floppy_collapse_16px.png %%WWWDIR%%/images/vbox/floppy_expand_16px.png %%WWWDIR%%/images/vbox/fullscreen_16px.png %%WWWDIR%%/images/vbox/global_settings_16px.png %%WWWDIR%%/images/vbox/global_settings_disabled_16px.png %%WWWDIR%%/images/vbox/group_abstract_16px.png %%WWWDIR%%/images/vbox/guesttools_16px.png %%WWWDIR%%/images/vbox/guesttools_disabled_16px.png %%WWWDIR%%/images/vbox/hd_16px.png %%WWWDIR%%/images/vbox/hd_32px.png %%WWWDIR%%/images/vbox/hd_add_16px.png %%WWWDIR%%/images/vbox/hd_add_22px.png %%WWWDIR%%/images/vbox/hd_add_disabled_16px.png %%WWWDIR%%/images/vbox/hd_add_disabled_22px.png %%WWWDIR%%/images/vbox/hd_disabled_16px.png %%WWWDIR%%/images/vbox/hd_disabled_32px.png %%WWWDIR%%/images/vbox/hd_new_16px.png %%WWWDIR%%/images/vbox/hd_new_22px.png %%WWWDIR%%/images/vbox/hd_new_disabled_16px.png %%WWWDIR%%/images/vbox/hd_new_disabled_22px.png %%WWWDIR%%/images/vbox/hd_release_16px.png %%WWWDIR%%/images/vbox/hd_release_22px.png %%WWWDIR%%/images/vbox/hd_release_disabled_16px.png %%WWWDIR%%/images/vbox/hd_release_disabled_22px.png %%WWWDIR%%/images/vbox/hd_remove_16px.png %%WWWDIR%%/images/vbox/hd_remove_22px.png %%WWWDIR%%/images/vbox/hd_remove_disabled_16px.png %%WWWDIR%%/images/vbox/hd_remove_disabled_22px.png %%WWWDIR%%/images/vbox/help_16px.png %%WWWDIR%%/images/vbox/ide_16px.png %%WWWDIR%%/images/vbox/ide_add_16px.png %%WWWDIR%%/images/vbox/ide_add_disabled_16px.png %%WWWDIR%%/images/vbox/ide_collapse_16px.png %%WWWDIR%%/images/vbox/ide_expand_16px.png %%WWWDIR%%/images/vbox/import_16px.png %%WWWDIR%%/images/vbox/list_movedown_16px.png %%WWWDIR%%/images/vbox/list_movedown_disabled_16px.png %%WWWDIR%%/images/vbox/list_moveup_16px.png %%WWWDIR%%/images/vbox/list_moveup_disabled_16px.png %%WWWDIR%%/images/vbox/machine_16px.png %%WWWDIR%%/images/vbox/machine_32px.png %%WWWDIR%%/images/vbox/machine_abstract_16px.png %%WWWDIR%%/images/vbox/machine_disabled_16px.png %%WWWDIR%%/images/vbox/machine_disabled_32px.png %%WWWDIR%%/images/vbox/menuArrow.gif %%WWWDIR%%/images/vbox/menuArrow_w.gif %%WWWDIR%%/images/vbox/name_16px.png %%WWWDIR%%/images/vbox/node.gif %%WWWDIR%%/images/vbox/nw_16px.png %%WWWDIR%%/images/vbox/nw_32px.png %%WWWDIR%%/images/vbox/nw_disabled_16px.png %%WWWDIR%%/images/vbox/nw_disabled_32px.png %%WWWDIR%%/images/vbox/os_archlinux.png %%WWWDIR%%/images/vbox/os_archlinux_64.png %%WWWDIR%%/images/vbox/os_debian.png %%WWWDIR%%/images/vbox/os_debian_64.png %%WWWDIR%%/images/vbox/os_dos.png %%WWWDIR%%/images/vbox/os_fedora.png %%WWWDIR%%/images/vbox/os_fedora_64.png %%WWWDIR%%/images/vbox/os_freebsd.png %%WWWDIR%%/images/vbox/os_freebsd_64.png %%WWWDIR%%/images/vbox/os_gentoo.png %%WWWDIR%%/images/vbox/os_gentoo_64.png %%WWWDIR%%/images/vbox/os_jrockitve.png %%WWWDIR%%/images/vbox/os_l4.png %%WWWDIR%%/images/vbox/os_linux.png %%WWWDIR%%/images/vbox/os_linux22.png %%WWWDIR%%/images/vbox/os_linux24.png %%WWWDIR%%/images/vbox/os_linux24_64.png %%WWWDIR%%/images/vbox/os_linux26.png %%WWWDIR%%/images/vbox/os_linux26_64.png %%WWWDIR%%/images/vbox/os_linux_other.png %%WWWDIR%%/images/vbox/os_macosx.png %%WWWDIR%%/images/vbox/os_macosx_64.png %%WWWDIR%%/images/vbox/os_mandriva.png %%WWWDIR%%/images/vbox/os_mandriva_64.png %%WWWDIR%%/images/vbox/os_netbsd.png %%WWWDIR%%/images/vbox/os_netbsd_64.png %%WWWDIR%%/images/vbox/os_netware.png %%WWWDIR%%/images/vbox/os_openbsd.png %%WWWDIR%%/images/vbox/os_openbsd_64.png %%WWWDIR%%/images/vbox/os_opensuse.png %%WWWDIR%%/images/vbox/os_opensuse_64.png %%WWWDIR%%/images/vbox/os_oracle.png %%WWWDIR%%/images/vbox/os_oracle_64.png %%WWWDIR%%/images/vbox/os_oraclesolaris.png %%WWWDIR%%/images/vbox/os_oraclesolaris_64.png %%WWWDIR%%/images/vbox/os_os2_other.png %%WWWDIR%%/images/vbox/os_os2ecs.png %%WWWDIR%%/images/vbox/os_os2warp3.png %%WWWDIR%%/images/vbox/os_os2warp4.png %%WWWDIR%%/images/vbox/os_os2warp45.png %%WWWDIR%%/images/vbox/os_other.png %%WWWDIR%%/images/vbox/os_other_64.png %%WWWDIR%%/images/vbox/os_qnx.png %%WWWDIR%%/images/vbox/os_redhat.png %%WWWDIR%%/images/vbox/os_redhat_64.png %%WWWDIR%%/images/vbox/os_solaris.png %%WWWDIR%%/images/vbox/os_solaris_64.png %%WWWDIR%%/images/vbox/os_turbolinux.png %%WWWDIR%%/images/vbox/os_turbolinux_64.png %%WWWDIR%%/images/vbox/os_type_16px.png %%WWWDIR%%/images/vbox/os_ubuntu.png %%WWWDIR%%/images/vbox/os_ubuntu_64.png %%WWWDIR%%/images/vbox/os_virtualbox.png %%WWWDIR%%/images/vbox/os_win10.png %%WWWDIR%%/images/vbox/os_win10_64.png %%WWWDIR%%/images/vbox/os_win2k.png %%WWWDIR%%/images/vbox/os_win2k12_64.png %%WWWDIR%%/images/vbox/os_win2k3.png %%WWWDIR%%/images/vbox/os_win2k3_64.png %%WWWDIR%%/images/vbox/os_win2k8.png %%WWWDIR%%/images/vbox/os_win2k8_64.png %%WWWDIR%%/images/vbox/os_win31.png %%WWWDIR%%/images/vbox/os_win7.png %%WWWDIR%%/images/vbox/os_win7_64.png %%WWWDIR%%/images/vbox/os_win8.png %%WWWDIR%%/images/vbox/os_win81.png %%WWWDIR%%/images/vbox/os_win81_64.png %%WWWDIR%%/images/vbox/os_win8_64.png %%WWWDIR%%/images/vbox/os_win95.png %%WWWDIR%%/images/vbox/os_win98.png %%WWWDIR%%/images/vbox/os_win_other.png %%WWWDIR%%/images/vbox/os_winme.png %%WWWDIR%%/images/vbox/os_winnt4.png %%WWWDIR%%/images/vbox/os_winvista.png %%WWWDIR%%/images/vbox/os_winvista_64.png %%WWWDIR%%/images/vbox/os_winxp.png %%WWWDIR%%/images/vbox/os_winxp_64.png %%WWWDIR%%/images/vbox/os_xandros.png %%WWWDIR%%/images/vbox/os_xandros_64.png %%WWWDIR%%/images/vbox/parallel_port_16px.png %%WWWDIR%%/images/vbox/preview_empty_228x168px.png %%WWWDIR%%/images/vbox/preview_full_228x168px.png %%WWWDIR%%/images/vbox/progress_clone_90px.png %%WWWDIR%%/images/vbox/progress_delete_90px.png %%WWWDIR%%/images/vbox/progress_export_90px.png %%WWWDIR%%/images/vbox/progress_import_90px.png %%WWWDIR%%/images/vbox/progress_install_guest_additions_90px.png %%WWWDIR%%/images/vbox/progress_media_create_90px.png %%WWWDIR%%/images/vbox/progress_media_delete_90px.png %%WWWDIR%%/images/vbox/progress_poweroff_90px.png %%WWWDIR%%/images/vbox/progress_snapshot_create_90px.png %%WWWDIR%%/images/vbox/progress_snapshot_discard_90px.png %%WWWDIR%%/images/vbox/progress_snapshot_restore_90px.png %%WWWDIR%%/images/vbox/progress_start_90px.png %%WWWDIR%%/images/vbox/progress_state_restore_90px.png %%WWWDIR%%/images/vbox/progress_state_save_90px.png %%WWWDIR%%/images/vbox/ram_16px.png %%WWWDIR%%/images/vbox/refresh_16px.png %%WWWDIR%%/images/vbox/refresh_22px.png %%WWWDIR%%/images/vbox/refresh_32px.png %%WWWDIR%%/images/vbox/refresh_disabled_16px.png %%WWWDIR%%/images/vbox/refresh_disabled_22px.png %%WWWDIR%%/images/vbox/refresh_disabled_32px.png %%WWWDIR%%/images/vbox/register_16px.png %%WWWDIR%%/images/vbox/remove_host_iface_16px.png %%WWWDIR%%/images/vbox/remove_host_iface_disabled_16px.png %%WWWDIR%%/images/vbox/sata_16px.png %%WWWDIR%%/images/vbox/sata_add_16px.png %%WWWDIR%%/images/vbox/sata_add_disabled_16px.png %%WWWDIR%%/images/vbox/sata_collapse_16px.png %%WWWDIR%%/images/vbox/sata_expand_16px.png %%WWWDIR%%/images/vbox/scsi_16px.png %%WWWDIR%%/images/vbox/scsi_add_16px.png %%WWWDIR%%/images/vbox/scsi_add_disabled_16px.png %%WWWDIR%%/images/vbox/scsi_collapse_16px.png %%WWWDIR%%/images/vbox/scsi_expand_16px.png %%WWWDIR%%/images/vbox/select_file_16px.png %%WWWDIR%%/images/vbox/select_file_disabled_16px.png %%WWWDIR%%/images/vbox/serial_port_16px.png %%WWWDIR%%/images/vbox/serial_port_disabled_16px.png %%WWWDIR%%/images/vbox/sf_16px.png %%WWWDIR%%/images/vbox/sf_add_16px.png %%WWWDIR%%/images/vbox/sf_add_disabled_16px.png %%WWWDIR%%/images/vbox/sf_disabled_16px.png %%WWWDIR%%/images/vbox/sf_edit_16px.png %%WWWDIR%%/images/vbox/sf_edit_disabled_16px.png %%WWWDIR%%/images/vbox/sf_remove_16px.png %%WWWDIR%%/images/vbox/sf_remove_disabled_16px.png %%WWWDIR%%/images/vbox/sf_settings_16px.png %%WWWDIR%%/images/vbox/sf_settings_disabled_16px.png %%WWWDIR%%/images/vbox/site_16px.png %%WWWDIR%%/images/vbox/site_32px.png %%WWWDIR%%/images/vbox/snapshot_delete_16px.png %%WWWDIR%%/images/vbox/snapshot_delete_22px.png %%WWWDIR%%/images/vbox/snapshot_delete_disabled_16px.png %%WWWDIR%%/images/vbox/snapshot_delete_disabled_22px.png %%WWWDIR%%/images/vbox/snapshot_offline_16px.png %%WWWDIR%%/images/vbox/snapshot_online_16px.png %%WWWDIR%%/images/vbox/snapshot_restore_16px.png %%WWWDIR%%/images/vbox/snapshot_restore_22px.png %%WWWDIR%%/images/vbox/snapshot_restore_disabled_16px.png %%WWWDIR%%/images/vbox/snapshot_restore_disabled_22px.png %%WWWDIR%%/images/vbox/snapshot_show_details_16px.png %%WWWDIR%%/images/vbox/snapshot_show_details_22px.png %%WWWDIR%%/images/vbox/snapshot_show_details_disabled_16px.png %%WWWDIR%%/images/vbox/snapshot_show_details_disabled_22px.png %%WWWDIR%%/images/vbox/snapshot_take_16px.png %%WWWDIR%%/images/vbox/snapshot_take_22px.png %%WWWDIR%%/images/vbox/snapshot_take_disabled_16px.png %%WWWDIR%%/images/vbox/snapshot_take_disabled_22px.png %%WWWDIR%%/images/vbox/sort_16px.png %%WWWDIR%%/images/vbox/sort_disabled_16px.png %%WWWDIR%%/images/vbox/sound_16px.png %%WWWDIR%%/images/vbox/sound_disabled_16px.png %%WWWDIR%%/images/vbox/state_aborted_16px.png %%WWWDIR%%/images/vbox/state_discarding_16px.png %%WWWDIR%%/images/vbox/state_paused_16px.png %%WWWDIR%%/images/vbox/state_powered_off_16px.png %%WWWDIR%%/images/vbox/state_restoring_16px.png %%WWWDIR%%/images/vbox/state_running_16px.png %%WWWDIR%%/images/vbox/state_saved_16px.png %%WWWDIR%%/images/vbox/state_saving_16px.png %%WWWDIR%%/images/vbox/state_stuck_16px.png %%WWWDIR%%/images/vbox/status_check_16px.png %%WWWDIR%%/images/vbox/status_error_16px.png %%WWWDIR%%/images/vbox/usb_16px.png %%WWWDIR%%/images/vbox/usb_add_16px.png %%WWWDIR%%/images/vbox/usb_add_disabled_16px.png %%WWWDIR%%/images/vbox/usb_collapse_16px.png %%WWWDIR%%/images/vbox/usb_disabled_16px.png %%WWWDIR%%/images/vbox/usb_expand_16px.png %%WWWDIR%%/images/vbox/usb_filter_edit_16px.png %%WWWDIR%%/images/vbox/usb_filter_edit_disabled_16px.png %%WWWDIR%%/images/vbox/usb_movedown_16px.png %%WWWDIR%%/images/vbox/usb_movedown_disabled_16px.png %%WWWDIR%%/images/vbox/usb_moveup_16px.png %%WWWDIR%%/images/vbox/usb_moveup_disabled_16px.png %%WWWDIR%%/images/vbox/usb_new_16px.png %%WWWDIR%%/images/vbox/usb_new_disabled_16px.png %%WWWDIR%%/images/vbox/usb_remove_16px.png %%WWWDIR%%/images/vbox/usb_remove_disabled_16px.png %%WWWDIR%%/images/vbox/usb_unavailable_16px.png %%WWWDIR%%/images/vbox/usb_unavailable_disabled_16px.png %%WWWDIR%%/images/vbox/vdm_add_16px.png %%WWWDIR%%/images/vbox/vdm_add_22px.png %%WWWDIR%%/images/vbox/vdm_add_disabled_16px.png %%WWWDIR%%/images/vbox/vdm_add_disabled_22px.png %%WWWDIR%%/images/vbox/vdm_new_16px.png %%WWWDIR%%/images/vbox/vdm_new_22px.png %%WWWDIR%%/images/vbox/vdm_new_disabled_16px.png %%WWWDIR%%/images/vbox/vdm_new_disabled_22px.png %%WWWDIR%%/images/vbox/vdm_release_16px.png %%WWWDIR%%/images/vbox/vdm_release_22px.png %%WWWDIR%%/images/vbox/vdm_release_disabled_16px.png %%WWWDIR%%/images/vbox/vdm_release_disabled_22px.png %%WWWDIR%%/images/vbox/vdm_remove_16px.png %%WWWDIR%%/images/vbox/vdm_remove_22px.png %%WWWDIR%%/images/vbox/vdm_remove_disabled_16px.png %%WWWDIR%%/images/vbox/vdm_remove_disabled_22px.png %%WWWDIR%%/images/vbox/video_capture_16px.png %%WWWDIR%%/images/vbox/video_capture_disabled_16px.png %%WWWDIR%%/images/vbox/video_capture_on_16px.png %%WWWDIR%%/images/vbox/video_capture_on_disabled_16px.png %%WWWDIR%%/images/vbox/video_capture_settings_16px.png %%WWWDIR%%/images/vbox/virtualbox-hdd.png %%WWWDIR%%/images/vbox/virtualbox-ova.png %%WWWDIR%%/images/vbox/virtualbox-ovf.png %%WWWDIR%%/images/vbox/virtualbox-vbox.png %%WWWDIR%%/images/vbox/virtualbox-vdi.png %%WWWDIR%%/images/vbox/virtualbox-vhd.png %%WWWDIR%%/images/vbox/virtualbox-vmdk.png %%WWWDIR%%/images/vbox/vm_add_16px.png %%WWWDIR%%/images/vbox/vm_clone_16px.png %%WWWDIR%%/images/vbox/vm_clone_22px.png %%WWWDIR%%/images/vbox/vm_clone_disabled_16px.png %%WWWDIR%%/images/vbox/vm_clone_disabled_22px.png %%WWWDIR%%/images/vbox/vm_delete_16px.png %%WWWDIR%%/images/vbox/vm_delete_disabled_16px.png %%WWWDIR%%/images/vbox/vm_discard_16px.png %%WWWDIR%%/images/vbox/vm_discard_32px.png %%WWWDIR%%/images/vbox/vm_discard_disabled_16px.png %%WWWDIR%%/images/vbox/vm_discard_disabled_32px.png %%WWWDIR%%/images/vbox/vm_group_create_16px.png %%WWWDIR%%/images/vbox/vm_group_create_disabled_16px.png %%WWWDIR%%/images/vbox/vm_group_name_16px.png %%WWWDIR%%/images/vbox/vm_group_name_disabled_16px.png %%WWWDIR%%/images/vbox/vm_group_remove_16px.png %%WWWDIR%%/images/vbox/vm_group_remove_disabled_16px.png %%WWWDIR%%/images/vbox/vm_new_16px.png %%WWWDIR%%/images/vbox/vm_new_32px.png %%WWWDIR%%/images/vbox/vm_new_disabled_32px.png %%WWWDIR%%/images/vbox/vm_open_filemanager_16px.png %%WWWDIR%%/images/vbox/vm_open_filemanager_disabled_16px.png %%WWWDIR%%/images/vbox/vm_pause_16px.png %%WWWDIR%%/images/vbox/vm_pause_disabled_16px.png %%WWWDIR%%/images/vbox/vm_pause_on_16px.png %%WWWDIR%%/images/vbox/vm_pause_on_disabled_16px.png %%WWWDIR%%/images/vbox/vm_poweroff_16px.png %%WWWDIR%%/images/vbox/vm_poweroff_32px.png %%WWWDIR%%/images/vbox/vm_poweroff_disabled_16px.png %%WWWDIR%%/images/vbox/vm_poweroff_disabled_32px.png %%WWWDIR%%/images/vbox/vm_reset_16px.png %%WWWDIR%%/images/vbox/vm_reset_disabled_16px.png %%WWWDIR%%/images/vbox/vm_save_state_16px.png %%WWWDIR%%/images/vbox/vm_save_state_disabled_16px.png %%WWWDIR%%/images/vbox/vm_settings_16px.png %%WWWDIR%%/images/vbox/vm_settings_32px.png %%WWWDIR%%/images/vbox/vm_settings_disabled_16px.png %%WWWDIR%%/images/vbox/vm_settings_disabled_32px.png %%WWWDIR%%/images/vbox/vm_show_logs_16px.png %%WWWDIR%%/images/vbox/vm_show_logs_disabled_16px.png %%WWWDIR%%/images/vbox/vm_shutdown_16px.png %%WWWDIR%%/images/vbox/vm_shutdown_disabled_16px.png %%WWWDIR%%/images/vbox/vm_start_16px.png %%WWWDIR%%/images/vbox/vm_start_32px.png %%WWWDIR%%/images/vbox/vm_start_disabled_16px.png %%WWWDIR%%/images/vbox/vm_start_disabled_32px.png %%WWWDIR%%/images/vbox/vmw_clone_bg.png %%WWWDIR%%/images/vbox/vmw_first_run_bg.png %%WWWDIR%%/images/vbox/vmw_new_harddisk_bg.png %%WWWDIR%%/images/vbox/vmw_new_welcome_bg.png %%WWWDIR%%/images/vbox/vmw_ovf_export_bg.png %%WWWDIR%%/images/vbox/vmw_ovf_import_bg.png %%WWWDIR%%/images/vbox/vrdp_16px.png %%WWWDIR%%/images/vbox/vrdp_32px.png %%WWWDIR%%/images/vbox/vrdp_disabled_16px.png %%WWWDIR%%/images/vbox/vrdp_disabled_32px.png %%WWWDIR%%/images/vbox/vrdp_on_16px.png %%WWWDIR%%/images/vbox/vrdp_on_disabled_16px.png %%WWWDIR%%/images/vbox/vtx_amdv_16px.png %%WWWDIR%%/images/vbox/vtx_amdv_disabled_16px.png %%WWWDIR%%/images/vbox/welcome.png %%WWWDIR%%/images/wizard_bg.png %%WWWDIR%%/index.html %%WWWDIR%%/js/canvasimages.js %%WWWDIR%%/js/chooser.js %%WWWDIR%%/js/datamediator.js %%WWWDIR%%/js/dialogs.js %%WWWDIR%%/js/eventlistener.js %%WWWDIR%%/js/jquery-1.11.2.min.js %%WWWDIR%%/js/jquery-ui-1.11.4.min.js %%WWWDIR%%/js/jquery.jec-1.3.1.js %%WWWDIR%%/js/jquery.projectPlugins.js %%WWWDIR%%/js/jquery.scrollTo-min.js %%WWWDIR%%/js/jquery.tipped-2.1b.min.js %%WWWDIR%%/js/phpvirtualbox.js %%WWWDIR%%/js/utils.js %%WWWDIR%%/languages/de.xml %%WWWDIR%%/languages/en.xml %%WWWDIR%%/languages/es.xml %%WWWDIR%%/languages/fr.xml %%WWWDIR%%/languages/it.xml %%WWWDIR%%/languages/ja.xml %%WWWDIR%%/languages/languages.txt %%WWWDIR%%/languages/nl.xml %%WWWDIR%%/languages/pl.xml %%WWWDIR%%/languages/pt_br.xml %%WWWDIR%%/languages/ro.xml %%WWWDIR%%/languages/ru.xml %%WWWDIR%%/languages/source/de.dat %%WWWDIR%%/languages/source/en.dat %%WWWDIR%%/languages/source/es.dat %%WWWDIR%%/languages/source/fr.dat %%WWWDIR%%/languages/source/it.dat %%WWWDIR%%/languages/source/ja.dat %%WWWDIR%%/languages/source/nl.dat %%WWWDIR%%/languages/source/parse_vbox_lang.php %%WWWDIR%%/languages/source/pl.dat %%WWWDIR%%/languages/source/pt_br.dat %%WWWDIR%%/languages/source/ro.dat %%WWWDIR%%/languages/source/ru.dat %%WWWDIR%%/languages/source/zh_cn.dat %%WWWDIR%%/languages/source/zh_tw.dat %%WWWDIR%%/languages/zh_cn.xml %%WWWDIR%%/languages/zh_tw.xml %%WWWDIR%%/panes/about.html %%WWWDIR%%/panes/chooser.html %%WWWDIR%%/panes/guestNetAdapters.html %%WWWDIR%%/panes/login.html %%WWWDIR%%/panes/mediumEncryptionPasswords.html %%WWWDIR%%/panes/settingsAudio.html %%WWWDIR%%/panes/settingsDisplay.html %%WWWDIR%%/panes/settingsGeneral.html %%WWWDIR%%/panes/settingsGlobalGeneral.html %%WWWDIR%%/panes/settingsGlobalLanguage.html %%WWWDIR%%/panes/settingsGlobalNetwork.html %%WWWDIR%%/panes/settingsGlobalNetworkNATPortForwarding.html %%WWWDIR%%/panes/settingsGlobalUsers.html %%WWWDIR%%/panes/settingsNetwork.html %%WWWDIR%%/panes/settingsParallelPorts.html %%WWWDIR%%/panes/settingsPortForwarding.html %%WWWDIR%%/panes/settingsSerialPorts.html %%WWWDIR%%/panes/settingsSharedFolders.html %%WWWDIR%%/panes/settingsStorage.html %%WWWDIR%%/panes/settingsSystem.html %%WWWDIR%%/panes/settingsUSB.html %%WWWDIR%%/panes/tabVMConsole.html %%WWWDIR%%/panes/tabVMConsoleRDP.html %%WWWDIR%%/panes/tabVMConsoleVNC.html %%WWWDIR%%/panes/tabVMDetails.html %%WWWDIR%%/panes/tabVMSnapshots.html %%WWWDIR%%/panes/tabs.html %%WWWDIR%%/panes/toolbar.html %%WWWDIR%%/panes/topmenu.html %%WWWDIR%%/panes/userEdit.html %%WWWDIR%%/panes/vmlogs.html %%WWWDIR%%/panes/vmm.html %%WWWDIR%%/panes/vmmISCSI.html %%WWWDIR%%/panes/vmmModify.html %%WWWDIR%%/panes/wizardCloneVM.html %%WWWDIR%%/panes/wizardCloneVMAdvanced.html %%WWWDIR%%/panes/wizardCopyHD.html %%WWWDIR%%/panes/wizardCopyHDAdvanced.html %%WWWDIR%%/panes/wizardExportAppliance.html %%WWWDIR%%/panes/wizardExportApplianceAdvanced.html %%WWWDIR%%/panes/wizardFirstRun.html %%WWWDIR%%/panes/wizardImportAppliance.html %%WWWDIR%%/panes/wizardImportApplianceAdvanced.html %%WWWDIR%%/panes/wizardNewHD.html %%WWWDIR%%/panes/wizardNewHDAdvanced.html %%WWWDIR%%/panes/wizardNewVM.html %%WWWDIR%%/panes/wizardNewVMAdvanced.html %%WWWDIR%%/rdpweb/RDPClientUI.swf %%WWWDIR%%/rdpweb/license_3rd.txt %%WWWDIR%%/rdpweb/swfobject.js %%WWWDIR%%/rdpweb/webclient.js %%WWWDIR%%/rdpweb/webclient3.html %%WWWDIR%%/recovery.php-disabled %%WWWDIR%%/tightvnc/VncViewer.jar %%WWWDIR%%/vboxinit