Вы не можете выбрать более 25 тем Темы должны начинаться с буквы или цифры, могут содержать дефисы(-) и должны содержать не более 35 символов.

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798
  1. <!--
  2. General Global Settings / Preferences
  3. Copyright (C) 2010-2015 Ian Moore (imoore76 at yahoo dot com)
  4. $Id: settingsGlobalGeneral.html 595 2015-04-17 09:50:36Z imoore76 $
  5. -->
  6. <table style='width: 100%' class='vboxVertical'>
  7. <tr style='vertical-align: middle'>
  8. <th><span class='translate'>Default Machine Folder:</span></th>
  9. <td>
  10. <table class="vboxInvisible" style='width: 100%'>
  11. <tr style='vertical-align: top'>
  12. <td style="width: auto; white-space: nowrap;" class="vboxFileFolderInput">
  13. <input type='text' class='vboxText' name='vboxSettingsDefaultMachineFolder' />
  14. <input type="button" class="vboxImgButton" style="background-image: url(images/vbox/select_file_16px.png)"
  15. onClick="vboxSettingsBrowseMachineFolder(this)" />
  16. </td>
  17. </tr>
  18. </table>
  19. </td>
  20. </tr>
  21. <tr><td colspan='2'><hr style='width: 100%' class='vboxSeparatorLine'/></td></tr>
  22. <tr style='vertical-align: middle'>
  23. <th><span class='translate'>VRDP Authentication Library:</span></th>
  24. <td>
  25. <table class="vboxInvisible" style='width: 100%'>
  26. <tr style='vertical-align: top'>
  27. <td style="width: auto; white-space: nowrap;" class="vboxFileFolderInput">
  28. <input type='text' class='vboxText' name='vboxSettingsVRDEAuthLibrary' />
  29. <input type="button" class="vboxImgButton" style="background-image: url(images/vbox/select_file_16px.png)"
  30. onClick="vboxSettingsBrowseVRDPAuthLibrary(this)" />
  31. </td>
  32. </tr>
  33. </table>
  34. </td>
  35. </tr>
  36. <tr style='vertical-align: middle' id='vboxAutostartConfigPropsGeneral'>
  37. <th><span class='translate'>Auto-start DB Path:</span></th>
  38. <td>
  39. <input type='text' class='vboxText' name='vboxAutostartConfigDBPath' />
  40. </td>
  41. </tr>
  42. </table>
  43. <script type='text/javascript'>
  44. /* Set Defaults */
  45. document.frmVboxSettings.vboxSettingsDefaultMachineFolder.value = $('#vboxSettingsDialog').data('vboxSystemProperties').defaultMachineFolder;
  46. document.frmVboxSettings.vboxSettingsVRDEAuthLibrary.value = $('#vboxSettingsDialog').data('vboxSystemProperties').VRDEAuthLibrary;
  47. // Autostart config path
  48. if($('#vboxPane').data('vboxConfig').vboxAutostartConfig) {
  49. document.frmVboxSettings.vboxAutostartConfigDBPath.value = $('#vboxSettingsDialog').data('vboxSystemProperties').autostartDatabasePath;
  50. } else {
  51. $('#vboxAutostartConfigPropsGeneral').hide();
  52. }
  53. /* Browsers */
  54. function vboxSettingsBrowseMachineFolder(btn) {
  55. var def = $(btn).siblings('input').first();
  56. vboxFileBrowser($(def).val(),function(f){
  57. if(f) $(def).val(f);
  58. },true,trans('Default Machine Folder:','UIGlobalSettingsGeneral').replace(':',''));
  59. }
  60. function vboxSettingsBrowseVRDPAuthLibrary(btn) {
  61. var def = $(btn).siblings('input').first();
  62. vboxFileBrowser($(def).val(),function(f){
  63. if(f) $(def).val(f);
  64. },false,trans('VRDP Authentication Library:','UIGlobalSettingsGeneral').replace(':',''));
  65. }
  66. /*
  67. *
  68. * Update Data onSave()
  69. *
  70. */
  71. $('#vboxSettingsDialog').on('save',function(){
  72. $('#vboxSettingsDialog').data('vboxSystemProperties').defaultMachineFolder = document.frmVboxSettings.vboxSettingsDefaultMachineFolder.value;
  73. $('#vboxSettingsDialog').data('vboxSystemProperties').VRDEAuthLibrary = document.frmVboxSettings.vboxSettingsVRDEAuthLibrary.value;
  74. // Autostart config path
  75. if($('#vboxPane').data('vboxConfig').vboxAutostartConfig) {
  76. $('#vboxSettingsDialog').data('vboxSystemProperties').autostartDatabasePath = document.frmVboxSettings.vboxAutostartConfigDBPath.value;
  77. }
  78. });
  79. </script>