Changeset 404 for branches


Ignore:
Timestamp:
Feb 8, 2010, 7:50:36 PM (16 years ago)
Author:
Herwig Bauernfeind
Message:

GUI-Tools: Added EVFSGUI 2.0.3

Location:
branches/guitools-2.0
Files:
5 edited

Legend:

Unmodified
Added
Removed
  • branches/guitools-2.0/evfsgui/changes

    r394 r404  
    99- Eventually support on-the-fly browsing of directories/files in EVFSGUI
    1010
     11Version 2.0.3 2010-01-29
     12- Changed: In the 1.5.0 GA version of the plugin the MEMLEN, LOGFILE and
     13           LOGLEVEL tokens are removed in order to address the problem with
     14           EVFSRxGetMount() return strings - several changes in EVFSGUI were
     15           required to address this change in the plugin.
     16NOTE: This changes makes older profile files, both .ndc and .evp incompatible.
     17      EVFSGUI can read old profiles, but only saves new profiles. The Netdrive
     18      GUI does not have such a feature. Older profiles may easily be migrated
     19      by editing with a text editor and removing the MEMLEN, LOGLEVEL and
     20      LOGFILE tokens from the resource strings manually.
     21           
    1122Version 2.0.2 2010-01-25
    1223- Changed: Remove Win95/98/IBM Peer length limits from smbtree.vrs.
  • branches/guitools-2.0/evfsgui/evfsgui.VRP

    r393 r404  
    11VX-REXX OS/2 V2.14 Build B3
    22VRX: evfsgui.VRX
    3 VXOFile: VRSPLIT
    4 MacroPath: VRM:U:\Develop\Samba\guitools-2.0\evfsgui
    5 EXEPath:
    6 RunParameters:
    7 RunDirectory: U:\Develop\Samba\guitools-2.0\evfsgui
    8 VRXWindow: __VREMainWindow,1,976,48,891,7757
    9 VRXWindow: __VRESectionListWindow,1,434,10937,11491,4445
    10 VRXWindow: __VREToolsWindow,0,2012,6215,6992,1669
    11 UserFile: 1
    12 UserWindow: Main,1
  • branches/guitools-2.0/evfsgui/evfsgui.VRX

    r393 r404  
    21082108    IF options.!master     \= '' THEN src = src';MASTER='options.!master
    21092109    IF options.!mastertype \= '' THEN src = src';MASTERTYPE='options.!mastertype
    2110     IF options.!memlen     \= '' THEN src = src';MEMLEN='options.!memlen
     2110/*  IF options.!memlen     \= '' THEN src = src';MEMLEN='options.!memlen
    21112111    IF options.!logfile    \= '' THEN src = src';LOGFILE='options.!logfile
    2112     IF options.!loglevel   \= '' THEN src = src';LOGLEVEL='options.!loglevel
     2112    IF options.!loglevel   \= '' THEN src = src';LOGLEVEL='options.!loglevel */
    21132113    IF options.!easupport  \= '' THEN src = src';EASUPPORT='options.!easupport
    21142114
     
    24882488        resdata = resdata||';MASTER='||VRMethod("CN_CONDET","GetFieldData", records.i, cd.masterfh)
    24892489        resdata = resdata||';MASTERTYPE='||VRMethod("CN_CONDET","GetFieldData", records.i, cd.mtypefh)
    2490         resdata = resdata||';MEMLEN='||VRMethod("CN_CONDET","GetFieldData", records.i, cd.memlenfh)
     2490/*      resdata = resdata||';MEMLEN='||VRMethod("CN_CONDET","GetFieldData", records.i, cd.memlenfh)
    24912491        resdata = resdata||';LOGFILE='||VRMethod("CN_CONDET","GetFieldData", records.i, cd.logfilefh)
    2492         resdata = resdata||';LOGLEVEL='||VRMethod("CN_CONDET","GetFieldData", records.i, cd.loglevelfh)
     2492        resdata = resdata||';LOGLEVEL='||VRMethod("CN_CONDET","GetFieldData", records.i, cd.loglevelfh) */
    24932493        resdata = resdata||';EASUPPORT='||VRMethod("CN_CONDET","GetFieldData", records.i, cd.easupportfh)
    24942494        resdata = resdata||' '||VRMethod("CN_CONDET","GetFieldData", records.i, cd.rwfh)
     
    27002700        PARSE VAR resource . 'MASTER=' master ';' .
    27012701        PARSE VAR resource . 'MASTERTYPE=' mtype ';' .
    2702         PARSE VAR resource . 'MEMLEN=' memlen ';' .
     2702/*      PARSE VAR resource . 'MEMLEN=' memlen ';' .
    27032703        PARSE VAR resource . 'LOGFILE=' logfile ';'.
    2704         PARSE VAR resource . 'LOGLEVEL=' loglevel ';' .
     2704        PARSE VAR resource . 'LOGLEVEL=' loglevel ';' . */
    27052705        PARSE VAR resource . 'EASUPPORT=' easupport .
    27062706
  • branches/guitools-2.0/shared/cltinit.vrs

    r349 r404  
    101101    IF options.!debug == 1 THEN say '  smbspool.exe   = "'samba.!smbspoolexe'"'
    102102
     103    /* rpcclient.exe */
     104    samba.!rpcclientexe = samba.!bin'\rpcclient.exe'
     105    if \VRFileExists(samba.!rpcclientexe) then call _ErrorBinaryNotFound " could not find rpcclient.exe!"
     106    IF options.!debug == 1 THEN say '  rpcclient.exe  = "'samba.!rpcclientexe'"'
     107
    103108    /* smb.conf */
    104109    samba.!smbconf = ETC'\samba\smb.conf'
     
    120125    IF options.!debug == 1 THEN say '  samba.!error   = "'samba.!error'"'
    121126    samba.!msg   = SysTempFileName(TempDir'smb_msg.???')
    122     IF options.!debug == 1 THEN say '  samba.!msg     = "'samba.!error'"'
     127    IF options.!debug == 1 THEN say '  samba.!msg     = "'samba.!msg'"'
    123128    /* Use of this file is deprecated */
    124129    ErrorFile  = Tempdir'smbutil.error'
Note: See TracChangeset for help on using the changeset viewer.