Changeset 316


Ignore:
Timestamp:
Aug 18, 2009, 10:30:31 AM (16 years ago)
Author:
Herwig Bauernfeind
Message:

GUI-Tools: More work on EVFSGUI V.next

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  
    11Version 2 (Next) project:
    22Already 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
    1015ToDo:
    1116- 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
    1420- smbtree error messages are ignored (requires more code from smbmon)
    1521- Connecting to IPC$ still possible
    1622- printer share detection is flaky
    1723- error checking
    18 - some string not NLV aware
    1924- rebuild required utilities with libc063 (instead of libc064x)
    2025
  • TabularUnified branches/guitools-2.0/evfsgui/evfsgui.RC

    r315 r316  
    11ICON 1  sambaclient.ico
    22ICON 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
     3BITMAP 11  eBall_01.bmp
     4BITMAP 12  eBall_02.bmp
     5BITMAP 13  eBall_03.bmp
     6BITMAP 14  eBall_04.bmp
     7BITMAP 15  eBall_05.bmp
     8BITMAP 16  eBall_06.bmp
     9BITMAP 17  eBall_07.bmp
     10BITMAP 18  eBall_08.bmp
     11BITMAP 19  eBall_09.bmp
     12BITMAP 20  eBall_10.bmp
     13BITMAP 21  eBall_11.bmp
     14BITMAP 22  eBall_12.bmp
     15BITMAP 23  eBall_13.bmp
     16BITMAP 24  eBall_14.bmp
     17BITMAP 25  eBall_15.bmp
     18BITMAP 26  eBall_16.bmp
     19BITMAP 27  eBall_17.bmp
     20BITMAP 28  eBall_18.bmp
     21BITMAP 29  eBall_19.bmp
     22BITMAP 30  eBall_20.bmp
     23BITMAP 31  eBall_21.bmp
     24BITMAP 32  eBall_22.bmp
     25BITMAP 33  eBall_23.bmp
     26BITMAP 34  eBall_24.bmp
     27BITMAP 35  eBall_25.bmp
  • TabularUnified branches/guitools-2.0/evfsgui/evfsgui.VRP

    r315 r316  
    11VX-REXX OS/2 V2.14 Build B3
    22VRX: evfsgui.VRX
     3VXOFile: VRSPLIT
    34MacroPath: VRM: U:\Develop\Samba\guitools-2.0\smbclgui
    45EXEPath:
     
    67RunDirectory:
    78VRXWindow: __VREMainWindow,1,530,2457,879,4071
    8 VRXWindow: __VRESectionListWindow,1,337,11708,10323,3686
    9 VRXWindow: __VREToolsWindow,1,518,530,7496,1663
     9VRXWindow: __VRESectionListWindow,1,337,11708,11623,3686
     10VRXWindow: __VREToolsWindow,1,518,530,6993,1669
    1011VRXWindow: __VREWindListWindow,1,482,7661,2650,3150
    1112UserFile: 1
    1213UserWindow: Main,1
     14UserWindow: SW_ADVANCED,1
  • TabularUnified branches/guitools-2.0/evfsgui/evfsgui.VRX

    r315 r316  
    104104return
    105105
     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"
     123return
     124
    106125/*:VRX         _GUIInit
    107126*/
     
    111130    /* Setup SmbTree View */
    112131    ok = VRset("GB_SMBTREE","Painting", 0)
    113     FWidth = 48
     132    FWidth = 32
    114133
    115134    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) */
    150135return
    151136
     
    716701/*:VRX         LoadSettings
    717702*/
    718 LoadSettings: PROCEDURE EXPOSE settings. options. fs. advanced.
     703LoadSettings: PROCEDURE EXPOSE settings. options. fs. advanced. samba.
    719704    IF options.!debug == 1 THEN SAY time()' '||'LoadSettings started'
    720705
     
    739724        IF settings.!y == '' THEN settings.!y = -1
    740725
     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
    741734        /* Herwig B. */
    742735        settings.!curbcolor = VRGetIni('Settings', 'TitleBarBackground', settings.!ini, 'NoClose')
     
    757750        settings.!network = VRGetIni('Settings', 'Network', settings.!ini, 'NoClose')
    758751        IF settings.!network == '' THEN settings.!network = ''
    759         /* Herwig B. */
     752say "Loadsettings" samba.!smbconf
     753        if \VRFileExists( samba.!smbconf ) then call _CreateSmbConf       
    760754
    761755        /* Load font settings.
     
    773767
    774768        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")
    776774
    777775        /* Apply the settings
    778776         */
    779         /* Herwig B. */
    780777        ok = VRSet("EF_NETWORK","Value", settings.!network)
    781778        ok = VRSet("DT_CURRENT","BACKCOLOR", settings.!curbcolor )
     
    788785        ok = VRSet("Menu_View_Buttons","Checked", settings.!buttonson)
    789786        ok = VRset("GB_Buttons","Visible", settings.!buttonson)
    790         options.!buttondelta = 500 * settings.!buttonson
     787        options.!buttondelta = 440 * settings.!buttonson
    791788
    792789        ok = VRSet("Menu_View_Dialog","Checked", settings.!dialogon)
     
    802799        if advanced.!debug == 1 then ok = VRRedirectStdio("ON")
    803800
    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
    809807        END
    810808        ELSE
     
    885883    if datatype(options.!buttondelta) = 'CHAR' then return
    886884
     885    IF options.!debug == 1 THEN SAY time()' '||"Main_Resize started"
    887886    ok = VRset("Main","Painting", 0)
    888887
     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 */
    889893    ok = VRSet("GB_CURRENT","Top",    FWidth)
    890894    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 */
    893897
    894898    ok = VRset("GB_CURRENT3","Top",     FWidth)
     
    913917    ok = VRset("PB_DETACH",  "Left",   FWidth)
    914918    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)
    916921    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))
    917923
    918924    /* SMBTree stuff */
    919925    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)
    921927    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)
    923929
    924930    ok = VRset("GB_SMBTREE3","Top",     FWidth)
     
    946952    ok = VRset("PB_REFRESH", "Top",    VRGet("GB_SMBTREE","Height")- 400-FWidth-12)
    947953
    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)
    950956
    951957    /* Dialog stuff */
    952958    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)
    954960    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)
    956962
    957963    ok = VRset("GB_DIALOG3","Top",     FWidth)
     
    981987    ok = VRset("GB_MPOINT","Width",  VRGet("GB_DIALOG","Width")-FWidth*2)
    982988
    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
    984992    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"
    9851007return
    9861008/*:VRX         Menu_Context_ChangeView_Click
     
    10891111        ok = VRSet("GB_Buttons","Visible", 1)
    10901112        ok = VRSet("Menu_View_Buttons","Checked",1)
    1091         options.!buttondelta = 500
     1113        options.!buttondelta = 440
    10921114        settings.!buttonson = 1
    10931115    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)
    10951117return
    10961118
     
    20902112SaveSettings: PROCEDURE EXPOSE settings. options. fs. advanced.
    20912113    IF options.!debug == 1 THEN SAY time()' '||"SaveSettings started"
    2092     /* Herwig B. */
     2114
    20932115    settings.!network = VRGet("EF_NETWORK","Value")
    20942116    CALL VRSetIni 'Settings', 'Network', settings.!network, settings.!ini, 'NoClose'
    2095     /* Herwig B. */
    20962117
    20972118    font = VRGet('CN_CURRENT', 'Font')
     
    21182139    CALL VRSetIni 'Settings', 'BrowseAuth', advanced.!browseauth, settings.!ini, 'NoClose'
    21192140    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
    21272156    IF options.!debug == 1 THEN SAY time()' '||"SaveSettings done"
    21282157RETURN
     2158
     2159/*:VRX         SPLIT_Main_Move
     2160*/
     2161SPLIT_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)
     2169return
    21292170
    21302171/*:VRX         StemsInit
     
    21932234    CALL NLVSetText 'SW_ADVANCED',  'Caption', 40
    21942235    CALL NLVSetText 'GB_MEM',       'Caption', 41
    2195     CALL NLVSetText 'DT_SMBSIZE',   'Caption', 42
     2236    CALL NLVSetText 'CB_DEBUG',     'Caption', 42
    21962237    CALL NLVSetText 'GB_MISC',      'Caption', 43
    21972238    CALL NLVSetText 'CB_EAS',       'Caption', 44
     
    23752416    parse var pIdx '#' pidx
    23762417    pidx = pidx + 1
    2377     if pidx = 19 then pidx = 11
     2418    if pidx = 36 then pidx = 11
    23782419    ok = VRSet("Pict_Throbber","PicturePath","#"pidx)
    23792420return
  • TabularUnified branches/guitools-2.0/evfsgui/evfsi_de.mkm

    r315 r316  
    4646EVG0040I: Erweiterte Verbindungsoptionen
    4747EVG0041I: Gemeinsamer Speicher pro Verbindung
    48 EVG0042I: Anzahl von 64 kB Bl”cken:
     48EVG0042I: Debug
    4949EVG0043I: Verbindungsoptionen
    5050EVG0044I: Erweiterte Attribute untersttzen
  • TabularUnified branches/guitools-2.0/evfsgui/evfsi_en.mkm

    r315 r316  
    4646EVG0040I: Advanced Mount Options
    4747EVG0041I: Shared memory to allocate per connection
    48 EVG0042I: No. of 64 kB blocks:
     48EVG0042I: Debug
    4949EVG0043I: Optional connection settings
    5050EVG0044I: Support extended attributes
  • TabularUnified branches/guitools-2.0/evfsgui/evfsi_fr.mkm

    r315 r316  
    4949EVG0041I: M‚moire partag‚e
    5050 allouer par connexion
    51 EVG0042I: Nb de blocs de 64 ko :
     51EVG0042I: Debug
    5252EVG0043I: Divers
    5353EVG0044I: Support des attributs ‚tendus
  • TabularUnified branches/guitools-2.0/shared/cltinit.vrs

    r315 r316  
    4040    say '  Changing into "'directory(samba.!tools)'"'
    4141
    42     /* smbd.exe */
     42    /* smbclient.exe */
    4343    samba.!smbclientexe = ""
    4444    if samba.!smbclientexe = "" then do /* in current directory? */
    4545        call charout , "  Are binaries in current directory? "
    46         ok = SysFileTree('.\smbd.exe', exist.,'FO')
     46        ok = SysFileTree('.\smbclient.exe', exist.,'FO')
    4747        say exist.0' (1 = Yes, 0 = No)'
    4848        if exist.0 = 1 then samba.!smbclientexe = exist.1
     
    5050    if samba.!smbclientexe = "" then do /* in parent directory? */
    5151        call charout , "  Are binaries in parent directory? "
    52         ok = SysFileTree('..\smbd.exe', exist.,'FO')
     52        ok = SysFileTree('..\smbclient.exe', exist.,'FO')
    5353        say exist.0' (1 = Yes, 0 = No)'
    5454        if exist.0 = 1 then samba.!smbclientexe = exist.1
     
    5656    if samba.!smbclientexe = "" then do /* in ..\BIN directory? */
    5757        call charout , "  Are binaries in ..\BIN directory? "
    58         ok = SysFileTree('..\bin\smbd.exe', exist.,'FO')
     58        ok = SysFileTree('..\bin\smbclient.exe', exist.,'FO')
    5959        say exist.0' (1 = Yes, 0 = No)'
    6060        if exist.0 = 1 then samba.!smbclientexe = exist.1
     
    6262    if samba.!smbclientexe = "" then do /* in SMB_EXE ? */
    6363        call charout , "  Are binaries in SMB_EXE path? "
    64         samba.!smbclientexe = SysSearchPath("SMB_EXE","SMBD.EXE")
     64        samba.!smbclientexe = SysSearchPath("SMB_EXE","smbclient.EXE")
    6565        if samba.!smbclientexe = "" then say "No."; else say "Yes."
    6666    end
    6767    if samba.!smbclientexe = "" then do /* in PATH ? */
    6868        call charout , "  Are binaries in PATH? "
    69         samba.!smbclientexe = SysSearchPath("PATH","SMBD.EXE")
     69        samba.!smbclientexe = SysSearchPath("PATH","smbclient.EXE")
    7070        if samba.!smbclientexe = "" then say "No."; else say "Yes."
    7171    end
    7272
    73     if samba.!smbclientexe = "" then call _ErrorBinaryNotFound " could not find smbd.exe!"
     73    if samba.!smbclientexe = "" then call _ErrorBinaryNotFound " could not find smbclient.exe!"
    7474
    7575    samba.!bin = VRParseFileName(samba.!smbclientexe,'DP')
     
    9999    samba.!smbspoolexe = samba.!bin'\smbspool.exe'
    100100    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'"'
    102102
    103103    /* smb.conf */
Note: See TracChangeset for help on using the changeset viewer.