Changeset 316
- Timestamp:
- Aug 18, 2009, 10:30:31 AM (16 years ago)
- Location:
- branches/guitools-2.0
- Files:
-
- 25 added
- 8 deleted
- 9 edited
Legend:
- Unmodified
- Added
- Removed
-
TabularUnified branches/guitools-2.0/evfsgui/changes ¶
r315 r316 1 1 Version 2 (Next) project: 2 2 Already done: 3 - Add browsing code from smbmon 4 - Add d'n'd support for file shares 5 - Add connection wizard dialogs 6 - Add main menu bar 7 - Add new advanced settings 8 - Add possibility to have the "old" 1.x look and feel (default for now) 9 - Add possibility to completely resize the main window (not yet complete) 3 - Added: Browsing code from smbmon 4 - Added: D'n'd support for file shares 5 - Added: Connection wizard dialogs 6 - Added: main menu bar 7 - Added: New advanced settings 8 - Added: "Old" 1.x look and feel (default for now) 9 - Added: Main window is resizable 10 - Added: Splitbar between panels 11 - Added: Create rudimentary %ETC%\samba\smb.conf 12 - Fixed: CltInit uses smbclient.exe instead of smbd.exe to find Samba binaries 13 - Fixed: Message queue during resize isn't cleared (no flashing during resize) 14 - Fixed: Missing NLV aware strings 10 15 ToDo: 11 16 - CltInit requires resync with SambaInit 12 - Debug on/off option doesn't work correctly 13 - Message queue during resize isn't cleared (flashing display during resize) 17 - Connection details page (required for new profile code) 18 - Debug on/off option is badly implemented (rework required) 19 - Advanced dialog should be split into connection options and global options 14 20 - smbtree error messages are ignored (requires more code from smbmon) 15 21 - Connecting to IPC$ still possible 16 22 - printer share detection is flaky 17 23 - error checking 18 - some string not NLV aware19 24 - rebuild required utilities with libc063 (instead of libc064x) 20 25 -
TabularUnified branches/guitools-2.0/evfsgui/evfsgui.RC ¶
r315 r316 1 1 ICON 1 sambaclient.ico 2 2 ICON 2 conf_setup.ico 3 BITMAP 11 Throb1.bmp 4 BITMAP 12 Throb2.bmp 5 BITMAP 13 Throb3.bmp 6 BITMAP 14 Throb4.bmp 7 BITMAP 15 Throb5.bmp 8 BITMAP 16 Throb6.bmp 9 BITMAP 17 Throb7.bmp 10 BITMAP 18 Throb8.bmp 3 BITMAP 11 eBall_01.bmp 4 BITMAP 12 eBall_02.bmp 5 BITMAP 13 eBall_03.bmp 6 BITMAP 14 eBall_04.bmp 7 BITMAP 15 eBall_05.bmp 8 BITMAP 16 eBall_06.bmp 9 BITMAP 17 eBall_07.bmp 10 BITMAP 18 eBall_08.bmp 11 BITMAP 19 eBall_09.bmp 12 BITMAP 20 eBall_10.bmp 13 BITMAP 21 eBall_11.bmp 14 BITMAP 22 eBall_12.bmp 15 BITMAP 23 eBall_13.bmp 16 BITMAP 24 eBall_14.bmp 17 BITMAP 25 eBall_15.bmp 18 BITMAP 26 eBall_16.bmp 19 BITMAP 27 eBall_17.bmp 20 BITMAP 28 eBall_18.bmp 21 BITMAP 29 eBall_19.bmp 22 BITMAP 30 eBall_20.bmp 23 BITMAP 31 eBall_21.bmp 24 BITMAP 32 eBall_22.bmp 25 BITMAP 33 eBall_23.bmp 26 BITMAP 34 eBall_24.bmp 27 BITMAP 35 eBall_25.bmp -
TabularUnified branches/guitools-2.0/evfsgui/evfsgui.VRP ¶
r315 r316 1 1 VX-REXX OS/2 V2.14 Build B3 2 2 VRX: evfsgui.VRX 3 VXOFile: VRSPLIT 3 4 MacroPath: VRM: U:\Develop\Samba\guitools-2.0\smbclgui 4 5 EXEPath: … … 6 7 RunDirectory: 7 8 VRXWindow: __VREMainWindow,1,530,2457,879,4071 8 VRXWindow: __VRESectionListWindow,1,337,11708,1 0323,36869 VRXWindow: __VREToolsWindow,1,518,530, 7496,16639 VRXWindow: __VRESectionListWindow,1,337,11708,11623,3686 10 VRXWindow: __VREToolsWindow,1,518,530,6993,1669 10 11 VRXWindow: __VREWindListWindow,1,482,7661,2650,3150 11 12 UserFile: 1 12 13 UserWindow: Main,1 14 UserWindow: SW_ADVANCED,1 -
TabularUnified branches/guitools-2.0/evfsgui/evfsgui.VRX ¶
r315 r316 104 104 return 105 105 106 /*:VRX _CreateSmbConf 107 */ 108 _CreateSmbConf: 109 IF options.!debug == 1 THEN SAY time()' '||"_CreateSmbConf started" 110 call lineout samba.!smbconf, '# Samba config file created using EVFSGUI ver. 'word(VRGet("Main","Hinttext"),2) 111 call lineout samba.!smbconf, '# from 'value("USER",,'OS2ENVIRONMENT')'@'value("HOSTNAME",,'OS2ENVIRONMENT') 112 call lineout samba.!smbconf, '# Date: 'date()' 'time() 113 call lineout samba.!smbconf, '[global]' 114 if settings.!network <> '' then do 115 call lineout samba.!smbconf, '09'x||'workgroup = 'settings.!network 116 end 117 else do 118 call lineout samba.!smbconf, '09'x||'workgroup = WORKGROUP' 119 end 120 call lineout samba.!smbconf, '09'x||'log level = 0' 121 ok = stream(samba.!smbconf,'c','close') 122 IF options.!debug == 1 THEN SAY time()' '||"_CreateSmbConf done" 123 return 124 106 125 /*:VRX _GUIInit 107 126 */ … … 111 130 /* Setup SmbTree View */ 112 131 ok = VRset("GB_SMBTREE","Painting", 0) 113 FWidth = 48132 FWidth = 32 114 133 115 134 call Main_Resize 116 117 /* ok = VRSet("GB_SMBTREE", "Top", FWidth)118 ok = VRSet("GB_SMBTREE", "Left", VRGet("GB_CURRENT","Width") + FWidth + 24)119 ok = VRset("GB_SMBTREE", "Height", VRGet("GB_CURRENT","Height"))120 ok = VRset("GB_SMBTREE", "Width", VRGet("Main","Width")- 2963-FWidth*2)121 122 ok = VRset("GB_SMBTREE3","Top", FWidth)123 ok = VRset("GB_SMBTREE3","Left", FWidth)124 ok = VRset("GB_SMBTREE3","Height", 245 )125 ok = VRset("GB_SMBTREE3","Width", VRGet("GB_SMBTREE","Width") -(FWidth*2))126 127 ok = VRset("DT_SMBTREE", "Top", 8)128 ok = VRset("DT_SMBTREE", "Left", 8)129 ok = VRset("DT_SMBTREE", "Width", VRGet("GB_SMBTREE3","Width") - 24)130 131 ok = VRset("GB_SMBTREE2","Left", FWidth)132 ok = VRset("GB_SMBTREE2","Top", 245 + FWidth*2)133 ok = VRset("GB_SMBTREE2","Width", VRGet("GB_SMBTREE","Width")-FWidth*2)134 ok = VRset("GB_SMBTREE2","Height", VRGet("GB_SMBTREE","Height")-FWidth*4-400-245)135 136 ok = VRset("CN_SMBTREE", "Top", FWidth)137 ok = VRset("CN_SMBTREE", "Left", FWidth)138 ok = VRset("CN_SMBTREE", "Width", VRGet("GB_SMBTREE2","Width") -(FWidth*2))139 ok = VRset("CN_SMBTREE", "Height", VRGet("GB_SMBTREE2","Height")-(FWidth*2))140 141 ok = VRset("PB_CONNECT", "Left", FWidth)142 ok = VRset("PB_CONNECT", "Top", VRGet("GB_SMBTREE","Height")- 400-FWidth-12)143 ok = VRset("PB_REFRESH", "Left", FWidth*2 +1313 - 12)144 ok = VRset("PB_REFRESH", "Top", VRGet("GB_SMBTREE","Height")- 400-FWidth-12)145 146 ok = VRset("PICT_THROBBER", "Top", VRGet("CN_SMBTREE","Height")%2+200)147 ok = VRset("PICT_THROBBER", "Left", VRGet("CN_SMBTREE","Width")%2)148 ok = VRset("DT_SMBTREE","Width", VRGet("GB_SMBTREE","Width")-144)149 ok = VRset("GB_SMBTREE","Painting", 1) */150 135 return 151 136 … … 716 701 /*:VRX LoadSettings 717 702 */ 718 LoadSettings: PROCEDURE EXPOSE settings. options. fs. advanced. 703 LoadSettings: PROCEDURE EXPOSE settings. options. fs. advanced. samba. 719 704 IF options.!debug == 1 THEN SAY time()' '||'LoadSettings started' 720 705 … … 739 724 IF settings.!y == '' THEN settings.!y = -1 740 725 726 settings.!h = VRGetIni('Settings', 'H', settings.!ini, 'NoClose') 727 settings.!w = VRGetIni('Settings', 'W', settings.!ini, 'NoClose') 728 IF settings.!h == '' THEN settings.!h = -1 729 IF settings.!w == '' THEN settings.!w = -1 730 731 settings.!s = VRGetIni('Settings', 'S', settings.!ini, 'NoClose') 732 IF settings.!s == '' THEN settings.!s = -1 733 741 734 /* Herwig B. */ 742 735 settings.!curbcolor = VRGetIni('Settings', 'TitleBarBackground', settings.!ini, 'NoClose') … … 757 750 settings.!network = VRGetIni('Settings', 'Network', settings.!ini, 'NoClose') 758 751 IF settings.!network == '' THEN settings.!network = '' 759 /* Herwig B. */ 752 say "Loadsettings" samba.!smbconf 753 if \VRFileExists( samba.!smbconf ) then call _CreateSmbConf 760 754 761 755 /* Load font settings. … … 773 767 774 768 advanced.!debug = VRGetIni('Settings', 'Debug', settings.!ini) 775 IF advanced.!debug == '' THEN advanced.!debug = 0 769 IF advanced.!debug == '' THEN advanced.!debug = 1 /* change this later */ 770 771 /* This is a hack and should be reworked! - using several variables for debug is bad! */ 772 options.!debug = advanced.!debug 773 IF options.!debug <> 1 THEN ok = VRRedirectStdIO("OFF") 776 774 777 775 /* Apply the settings 778 776 */ 779 /* Herwig B. */780 777 ok = VRSet("EF_NETWORK","Value", settings.!network) 781 778 ok = VRSet("DT_CURRENT","BACKCOLOR", settings.!curbcolor ) … … 788 785 ok = VRSet("Menu_View_Buttons","Checked", settings.!buttonson) 789 786 ok = VRset("GB_Buttons","Visible", settings.!buttonson) 790 options.!buttondelta = 500 * settings.!buttonson787 options.!buttondelta = 440 * settings.!buttonson 791 788 792 789 ok = VRSet("Menu_View_Dialog","Checked", settings.!dialogon) … … 802 799 if advanced.!debug == 1 then ok = VRRedirectStdio("ON") 803 800 804 /* Herwig B. */ 805 806 IF ( settings.!x >= 0 ) & ( settings.!y >= 0 ) THEN DO 807 CALL VRSet VRWindow(), 'Left', settings.!x 808 CALL VRSet VRWindow(), 'Top', settings.!y 801 IF ( settings.!x >= 0 ) & ( settings.!y >= 0 ) & ( settings.!l >= 0 ) & ( settings.!w >= 0 ) & ( settings.!s >= 0 ) THEN DO 802 CALL VRSet VRWindow(), 'Left', settings.!x 803 CALL VRSet VRWindow(), 'Top', settings.!y 804 CALL VRSet VRWindow(), 'Height', settings.!h 805 CALL VRSet VRWindow(), 'Width', settings.!w 806 CALL VRSet "SPLIT_MAIN", 'Left', settings.!s 809 807 END 810 808 ELSE … … 885 883 if datatype(options.!buttondelta) = 'CHAR' then return 886 884 885 IF options.!debug == 1 THEN SAY time()' '||"Main_Resize started" 887 886 ok = VRset("Main","Painting", 0) 888 887 888 /* Button bar */ 889 ok = VRSet("GB_BUTTONS", "Top", VRGet("GB_CURRENT","Height")+ FWidth * 2) 890 ok = VRSet("GB_BUTTONS", "Left", VRGet("Main","Width") -VRGet("GB_Buttons","Width") - FWidth) 891 892 /* Current Panel */ 889 893 ok = VRSet("GB_CURRENT","Top", FWidth) 890 894 ok = VRSet("GB_CURRENT","Left", FWidth-24) 891 ok = VRSet("GB_CURRENT","Width", 2976-FWidth*2)892 ok = VRSet("GB_CURRENT","Height", VRGet("Main","Height") -988 - options.!buttondelta)895 ok = VRSet("GB_CURRENT","Width", VRGet("SPLIT_Main","Left")-FWidth+24) /* 2976-FWidth*2) */ 896 ok = VRSet("GB_CURRENT","Height", VRGet("Main","Height") -920 -FWidth -options.!buttondelta) /* 988 */ 893 897 894 898 ok = VRset("GB_CURRENT3","Top", FWidth) … … 913 917 ok = VRset("PB_DETACH", "Left", FWidth) 914 918 ok = VRset("PB_DETACH", "Top", VRGet("GB_CURRENT","Height")- 400-FWidth-12) 915 ok = VRset("PB_UNMOUNT", "Left", VRGet("GB_CURRENT","WIdth") -1313-FWidth) 919 ok = VRset("PB_DETACH", "Width", min((VRGet("GB_CURRENT","Width")-FWidth*3)%2, 1313)) 920 ok = VRset("PB_UNMOUNT", "Left", VRGet("GB_CURRENT","Width") -VRGet("PB_DETACH","Width")-FWidth) 916 921 ok = VRset("PB_UNMOUNT", "Top", VRGet("GB_CURRENT","Height")- 400-FWidth-12) 922 ok = VRset("PB_UNMOUNT", "Width", min((VRGet("GB_CURRENT","Width")-FWidth*3)%2, 1313)) 917 923 918 924 /* SMBTree stuff */ 919 925 ok = VRSet("GB_SMBTREE", "Top", FWidth) 920 ok = VRSet("GB_SMBTREE", "Left", VRGet(" GB_CURRENT","Width") + FWidth + 24)926 ok = VRSet("GB_SMBTREE", "Left", VRGet("SPLIT_Main","Left")+60) 921 927 ok = VRset("GB_SMBTREE", "Height", VRGet("GB_CURRENT","Height")) 922 ok = VRset("GB_SMBTREE", "Width", VRGet("Main","Width")- 2963-FWidth*2)928 ok = VRset("GB_SMBTREE", "Width", VRGet("Main","Width")-VRGet("SPLIT_Main","Left")-60-FWidth*2-32) 923 929 924 930 ok = VRset("GB_SMBTREE3","Top", FWidth) … … 946 952 ok = VRset("PB_REFRESH", "Top", VRGet("GB_SMBTREE","Height")- 400-FWidth-12) 947 953 948 ok = VRset("PICT_THROBBER", "Top", VRGet("CN_SMBTREE","Height")%2+ 200)949 ok = VRset("PICT_THROBBER", "Left", VRGet("CN_SMBTREE","Width")%2 )954 ok = VRset("PICT_THROBBER", "Top", VRGet("CN_SMBTREE","Height")%2+100) 955 ok = VRset("PICT_THROBBER", "Left", VRGet("CN_SMBTREE","Width")%2-200) 950 956 951 957 /* Dialog stuff */ 952 958 ok = VRSet("GB_DIALOG", "Top", FWidth) 953 ok = VRSet("GB_DIALOG", "Left", VRGet(" GB_CURRENT","Width") + FWidth + 24)959 ok = VRSet("GB_DIALOG", "Left", VRGet("SPLIT_Main","Left")+60) 954 960 ok = VRset("GB_DIALOG", "Height", VRGet("GB_CURRENT","Height")) 955 ok = VRset("GB_DIALOG", "Width", VRGet("Main","Width")- 2963-FWidth*2)961 ok = VRset("GB_DIALOG", "Width", VRGet("Main","Width")-VRGet("SPLIT_Main","Left")-60-FWidth*2-32) 956 962 957 963 ok = VRset("GB_DIALOG3","Top", FWidth) … … 981 987 ok = VRset("GB_MPOINT","Width", VRGet("GB_DIALOG","Width")-FWidth*2) 982 988 983 ok = VRSet("GB_BUTTONS", "Top", VRGet("Main","Height")-1350) 989 ok = VRset("SPLIT_Main","Top", FWidth) 990 ok = VRset("SPLIT_Main","Height", VRGet("GB_CURRENT","Height")) 991 984 992 ok = VRset("Main","Painting", 1) 993 994 /* check and empty event queue, trash spurious resize events */ 995 EventString = '' 996 TrashedResize = 0 997 998 do until EventString = 'nop' 999 EventString = VREvent('N') 1000 if EventString <> 'nop' then do 1001 if EventString = 'CALL Main_Resize' then TrashedResize = 1 1002 else interpret eventString 1003 end 1004 end 1005 if TrashedResize then CALL Main_Resize 1006 IF options.!debug == 1 THEN SAY time()' '||"Main_Resize done" 985 1007 return 986 1008 /*:VRX Menu_Context_ChangeView_Click … … 1089 1111 ok = VRSet("GB_Buttons","Visible", 1) 1090 1112 ok = VRSet("Menu_View_Buttons","Checked",1) 1091 options.!buttondelta = 5001113 options.!buttondelta = 440 1092 1114 settings.!buttonson = 1 1093 1115 end 1094 ok = VRSet("Main","Height", VRGet("GB_CURRENT", "Height") + 1000 +options.!buttondelta)1116 ok = VRSet("Main","Height", VRGet("GB_CURRENT", "Height") +920 +FWidth +options.!buttondelta) 1095 1117 return 1096 1118 … … 2090 2112 SaveSettings: PROCEDURE EXPOSE settings. options. fs. advanced. 2091 2113 IF options.!debug == 1 THEN SAY time()' '||"SaveSettings started" 2092 /* Herwig B. */ 2114 2093 2115 settings.!network = VRGet("EF_NETWORK","Value") 2094 2116 CALL VRSetIni 'Settings', 'Network', settings.!network, settings.!ini, 'NoClose' 2095 /* Herwig B. */2096 2117 2097 2118 font = VRGet('CN_CURRENT', 'Font') … … 2118 2139 CALL VRSetIni 'Settings', 'BrowseAuth', advanced.!browseauth, settings.!ini, 'NoClose' 2119 2140 CALL VRSetIni 'Settings', 'BrowseImme', advanced.!browseimme, settings.!ini, 'NoClose' 2120 CALL VRSetIni 'Settings', 'Debug' , advanced.!debuy , settings.!ini, 'NoClose' 2121 2122 left = VRGet( VRWindow(), 'Left') 2123 top = VRGet( VRWindow(), 'Top') 2124 2125 CALL VRSetIni 'Settings', 'X', left, settings.!ini, 'NoClose' 2126 CALL VRSetIni 'Settings', 'Y', top, settings.!ini 2141 CALL VRSetIni 'Settings', 'Debug' , advanced.!debug , settings.!ini, 'NoClose' 2142 2143 /* Save position and size */ 2144 settings.!l = VRGet("Main", 'Left' ) 2145 settings.!t = VRGet("Main", 'Top' ) 2146 settings.!h = VRGet("Main", 'Height') 2147 settings.!w = VRGet("Main", 'Width' ) 2148 settings.!s = VRGet("SPLIT_Main", 'Left' ) 2149 2150 CALL VRSetIni 'Settings', 'X', settings.!l, settings.!ini, 'NoClose' 2151 CALL VRSetIni 'Settings', 'Y', settings.!t, settings.!ini, 'NoClose' 2152 CALL VRSetIni 'Settings', 'H', settings.!h, settings.!ini, 'NoClose' 2153 CALL VRSetIni 'Settings', 'W', settings.!w, settings.!ini, 'NoClose' 2154 CALL VRSetIni 'Settings', 'S', settings.!s, settings.!ini 2155 2127 2156 IF options.!debug == 1 THEN SAY time()' '||"SaveSettings done" 2128 2157 RETURN 2158 2159 /*:VRX SPLIT_Main_Move 2160 */ 2161 SPLIT_Main_Move: 2162 ok = VRset("Main", "Painting", 0) 2163 NewPos = VRInfo("Left") 2164 OldPos = VRGet("SPLIT_Main","Left") 2165 ok = VRSet("SPLIT_Main","Left", NewPos) 2166 ok = VRset("GB_SMBTREE","Left",NewPos+60) 2167 call Main_Resize 2168 ok = VRset("Main", "Painting", 1) 2169 return 2129 2170 2130 2171 /*:VRX StemsInit … … 2193 2234 CALL NLVSetText 'SW_ADVANCED', 'Caption', 40 2194 2235 CALL NLVSetText 'GB_MEM', 'Caption', 41 2195 CALL NLVSetText ' DT_SMBSIZE','Caption', 422236 CALL NLVSetText 'CB_DEBUG', 'Caption', 42 2196 2237 CALL NLVSetText 'GB_MISC', 'Caption', 43 2197 2238 CALL NLVSetText 'CB_EAS', 'Caption', 44 … … 2375 2416 parse var pIdx '#' pidx 2376 2417 pidx = pidx + 1 2377 if pidx = 19then pidx = 112418 if pidx = 36 then pidx = 11 2378 2419 ok = VRSet("Pict_Throbber","PicturePath","#"pidx) 2379 2420 return -
TabularUnified branches/guitools-2.0/evfsgui/evfsi_de.mkm ¶
r315 r316 46 46 EVG0040I: Erweiterte Verbindungsoptionen 47 47 EVG0041I: Gemeinsamer Speicher pro Verbindung 48 EVG0042I: Anzahl von 64 kB Blcken:48 EVG0042I: Debug 49 49 EVG0043I: Verbindungsoptionen 50 50 EVG0044I: Erweiterte Attribute untersttzen -
TabularUnified branches/guitools-2.0/evfsgui/evfsi_en.mkm ¶
r315 r316 46 46 EVG0040I: Advanced Mount Options 47 47 EVG0041I: Shared memory to allocate per connection 48 EVG0042I: No. of 64 kB blocks:48 EVG0042I: Debug 49 49 EVG0043I: Optional connection settings 50 50 EVG0044I: Support extended attributes -
TabularUnified branches/guitools-2.0/evfsgui/evfsi_fr.mkm ¶
r315 r316 49 49 EVG0041I: Mmoire partage 50 50 allouer par connexion 51 EVG0042I: Nb de blocs de 64 ko :51 EVG0042I: Debug 52 52 EVG0043I: Divers 53 53 EVG0044I: Support des attributs tendus -
TabularUnified branches/guitools-2.0/shared/cltinit.vrs ¶
r315 r316 40 40 say ' Changing into "'directory(samba.!tools)'"' 41 41 42 /* smb d.exe */42 /* smbclient.exe */ 43 43 samba.!smbclientexe = "" 44 44 if samba.!smbclientexe = "" then do /* in current directory? */ 45 45 call charout , " Are binaries in current directory? " 46 ok = SysFileTree('.\smb d.exe', exist.,'FO')46 ok = SysFileTree('.\smbclient.exe', exist.,'FO') 47 47 say exist.0' (1 = Yes, 0 = No)' 48 48 if exist.0 = 1 then samba.!smbclientexe = exist.1 … … 50 50 if samba.!smbclientexe = "" then do /* in parent directory? */ 51 51 call charout , " Are binaries in parent directory? " 52 ok = SysFileTree('..\smb d.exe', exist.,'FO')52 ok = SysFileTree('..\smbclient.exe', exist.,'FO') 53 53 say exist.0' (1 = Yes, 0 = No)' 54 54 if exist.0 = 1 then samba.!smbclientexe = exist.1 … … 56 56 if samba.!smbclientexe = "" then do /* in ..\BIN directory? */ 57 57 call charout , " Are binaries in ..\BIN directory? " 58 ok = SysFileTree('..\bin\smb d.exe', exist.,'FO')58 ok = SysFileTree('..\bin\smbclient.exe', exist.,'FO') 59 59 say exist.0' (1 = Yes, 0 = No)' 60 60 if exist.0 = 1 then samba.!smbclientexe = exist.1 … … 62 62 if samba.!smbclientexe = "" then do /* in SMB_EXE ? */ 63 63 call charout , " Are binaries in SMB_EXE path? " 64 samba.!smbclientexe = SysSearchPath("SMB_EXE"," SMBD.EXE")64 samba.!smbclientexe = SysSearchPath("SMB_EXE","smbclient.EXE") 65 65 if samba.!smbclientexe = "" then say "No."; else say "Yes." 66 66 end 67 67 if samba.!smbclientexe = "" then do /* in PATH ? */ 68 68 call charout , " Are binaries in PATH? " 69 samba.!smbclientexe = SysSearchPath("PATH"," SMBD.EXE")69 samba.!smbclientexe = SysSearchPath("PATH","smbclient.EXE") 70 70 if samba.!smbclientexe = "" then say "No."; else say "Yes." 71 71 end 72 72 73 if samba.!smbclientexe = "" then call _ErrorBinaryNotFound " could not find smb d.exe!"73 if samba.!smbclientexe = "" then call _ErrorBinaryNotFound " could not find smbclient.exe!" 74 74 75 75 samba.!bin = VRParseFileName(samba.!smbclientexe,'DP') … … 99 99 samba.!smbspoolexe = samba.!bin'\smbspool.exe' 100 100 if \VRFileExists(samba.!smbspoolexe) then call _ErrorBinaryNotFound " could not find smbspool.exe!" 101 IF options.!debug == 1 THEN say ' smbspool.exe = "'samba.!smbspoolexe'"'101 IF options.!debug == 1 THEN say ' smbspool.exe = "'samba.!smbspoolexe'"' 102 102 103 103 /* smb.conf */
Note:
See TracChangeset
for help on using the changeset viewer.