Changeset 580


Ignore:
Timestamp:
Jun 25, 2011, 7:20:41 PM (14 years ago)
Author:
Herwig Bauernfeind
Message:

GUI-Tools: SSCC: Try to really fix Ticket #146

Location:
branches/guitools-1.0/install
Files:
4 edited

Legend:

Unmodified
Added
Removed
  • branches/guitools-1.0/install/changes

    r574 r580  
     1Version 1.0.2 25-06-2011
     2                         !Fixed: Do not trash smb.conf on Samba 3.3.x under
     3                                 all possible conditions (Ticket #146).
    14Version 1.0.1 13-06-2011
    25                         +Added: Workgroup/Domain can set during installation
    36                         *Changed: Internal names of objects
     7                         !Fixed: Do not trash smb.conf on Samba 3.3.x when
     8                                 switching from expert mode to simple mode.
    49Version 1.0.0 13-03-2010
    510                         +Added: Use a more wizard-like style instead of
     
    1621                         !Fixed: Initiate notebook page load earlier (no more
    1722                                 crashes in certain situations)
    18                          !Fixed: Do not crash on almost empty smb.conf (created
    19                                  by a client installation
     23                         !Fixed: Do not crash on almost empty smb.conf
     24                                 (created by a client installation)
    2025                         !Fixed: Bug in NLV.VRS 2.0
    2126Version 0.9.5 06-03-2010
  • branches/guitools-1.0/install/sscc.vrp

    r574 r580  
    77VRXWindow: __VREMainWindow,1,1987,5059,891,7263
    88VRXWindow: __VRESectionListWindow,1,3071,10551,8974,4890
    9 VRXWindow: __VREToolsWindow,1,1590,337,6483,1667
    10 VRXWindow: __VREWindListWindow,1,422,10551,2650,3150
     9VRXWindow: __VREToolsWindow,1,1590,337,6489,1659
     10VRXWindow: __VREWindListWindow,1,458,12190,2650,3150
    1111UserFile: 1
    1212UserWindow: Main,1
    13 UserWindow: Installer,1
  • branches/guitools-1.0/install/sscc.vrx

    r574 r580  
    978978/*:VRX         _SmbConfCommitChanges
    979979*/
    980 _SmbConfCommitChanges:
     980_SmbConfCommitChanges:
     981    IF options.!debug == 1 THEN say '_SmbConfCommitChanges() started'   
     982 
    981983    src = TempDir'smb.conf'
     984    if stream(src,'c','query size') = 0 then do
     985        ok = VRCopyFile(smbconf,src)
     986    end
     987    'pause'
     988    say src' 'stream(src,'c','query size')
     989    'pause'
    982990    trg = smbconf
     991    say trg
    983992    ok = SysFileDelete(smbconf)
    984993    call lineout trg, '# Samba config file created using SSCC ver. 'word(VRGet("Main","Hinttext"),2)
     
    9991008    ok = stream(src,'c','close')
    10001009    ok = SysFileDelete(src)
     1010    IF options.!debug == 1 THEN say '_SmbConfCommitChanges() done'   
    10011011return
    10021012
     
    27262736*/
    27272737PB_Cancel_Click:
    2728     call PB_Save_Click
     2738    IF options.!debug == 1 THEN say 'PB_Cancel_Click() started'   
     2739    if VRGet("PB_Save","Enabled") then call PB_Save_Click
    27292740    call Quit
     2741    IF options.!debug == 1 THEN say 'PB_Cancel_Click() done'   
    27302742return
    27312743
     
    28532865*/
    28542866PB_Save_Click:
     2867    IF options.!debug == 1 THEN say 'PB_Save_Click() started'
    28552868    if ValueChanged then do
    28562869        if CurSection <> "" then do
     
    28602873        end
    28612874    end
     2875    IF options.!debug == 1 THEN say 'PB_Save_Click() done'
    28622876return
    28632877
     
    29182932*/
    29192933Quit:
     2934    IF options.!debug == 1 THEN say "Quit() start"
     2935
    29202936    if VRGet("Main","WindowState") = "Maximized"|,
    29212937       VRGet("Main","WindowState") = "Minimized" then ok = VRMethod("Main", "Restore")
     
    29312947    ok = SysFileDelete(smboutput)
    29322948
     2949    IF options.!debug == 1 THEN say "Quit() done"
    29332950    /* ok = VRRedirectStdio('OFF') */
    29342951    window = VRWindow()
Note: See TracChangeset for help on using the changeset viewer.