Changeset 344


Ignore:
Timestamp:
Oct 30, 2009, 12:44:24 PM (16 years ago)
Author:
Herwig Bauernfeind
Message:

GUI-Tools: SSCC 0.9.3, SmbUsers 0.9.5, SmbMon 0.9.26,

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

Legend:

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

    r304 r344  
     1Version 0.9.3 06-10-2009
     2                         +Added: Warning about codepage use on non IBM-850
     3                                 systems
     4                         *Changed: Make sure the server uses IBM-850/UTF-8 as
     5                                   default codepage (even makes sense on
     6                                   non IBM-850/UTF-8 systems)
     7Version 0.9.2 22-09-2009
     8                         +Added: Optionally use big icons
     9                         *Changed: Visual appearance like EVFSGUI 2.0
     10                         !Fixed: Several missing strings in swedish
     11                                 language file (Google translation!)
    112Version 0.9.1 14-07-2009
    213                         +Added: Check free space on TMPDIR
     
    1223                         *Changed: Integrate groupmapinst.cmd
    1324Version 0.8.9 13-06-2009
    14                          *Changed: Header in smb.conf is similar to the one
    15                                    SWAT writes
     25                         *Changed: Header in smb.conf is similar now to the
     26                                   one SWAT writes
    1627Version 0.8.8 26-05-2009
    1728                         +Added: Charset detection, configuration and
  • branches/guitools-1.0/install/sscc.vrp

    r333 r344  
    33MacroPath: VRM:U:\Develop\Samba\guitools-1.0\install
    44EXEPath:
    5 RunParameters: /install
     5RunParameters:
    66RunDirectory: E:\Dev\REXX\VXREXX\Projects\Samba\install
    77VRXWindow: __VREMainWindow,1,2180,4481,891,7263
    88VRXWindow: __VRESectionListWindow,1,3011,12286,8974,3144
    9 VRXWindow: __VREToolsWindow,1,3211,10648,6986,1661
     9VRXWindow: __VREToolsWindow,1,3211,10648,6989,1659
    1010VRXWindow: __VREWindListWindow,1,385,12286,2650,3150
    1111UserFile: 1
    1212UserWindow: Main,1
     13UserWindow: GB_Global_1,1
    1314UserWindow: Installer,1
  • branches/guitools-1.0/install/sscc.vrx

    r333 r344  
    280280    ok = VRSet("DT_SmbConfTree","BACKCOLOR", settings.!curbcolor )
    281281    ok = VRSet("DT_SmbConfTree","FORECOLOR", settings.!curfcolor )
    282 /*  ok = VRSet("DT_DIALOG","BACKCOLOR",  settings.!curbcolor )
    283     ok = VRSet("DT_DIALOG","FORECOLOR",  settings.!curfcolor )
    284     ok = VRSet("DT_SMBTREE","BACKCOLOR", settings.!curbcolor )
    285     ok = VRSet("DT_SMBTREE","FORECOLOR", settings.!curfcolor ) */
    286 
    287282
    288283    ok = VRSet("EF_Binaries_Version","value",samba.!version)
     
    298293
    299294    ok = VRSet("Menu_File_Import_IBMPeer", "Enabled", lsshareiniexists * ibmlaniniexists )
     295
     296    ok = VRSet("Menu_Options_MiniIcons","Checked", \advanced.!bigicons)
     297    ok = VRset("CN_smbconf","MiniIcons", \advanced.!bigicons)
    300298
    301299    if _ChkTempFreeSpace() < 262144 then do
     
    348346    CALL NLVSetText 'Menu_Options_SimpleMode',   'Caption', 28
    349347    CALL NLVSetText 'Menu_Options_ExportMode',   'Caption', 29
     348    CALL NLVSetText 'Menu_Options_MiniIcons',    'Caption', 74
    350349    CALL NLVSetText 'Menu_Help_smbconf',         'Caption', 30
    351350    CALL NLVSetText 'Menu_Help_About',           'Caption', 31
     
    397396                      else ok = VRREdirectStdIO("OFF")
    398397
    399     options.!builddir = VRGetIni( "Options", "BuildDir", OurINI)
     398    options.!builddir = VRGetIni( "Options", "BuildDir", OurINI, 'NoClose')
    400399    if options.!builddir = "" then options.!builddir = ""
     400
     401    advanced.!bigicons = VRGetIni( "Options", "BigIcons", OurINI)
     402    if advanced.!bigicons = "" then advanced.!bigicons = 0
    401403
    402404    /* Initialize several variables */
     
    416418    CreatePDC = 0   /* only for installermode */
    417419
    418     advanced.!bigicons = 0
     420
    419421
    420422    FWidth = 32
    421423
    422     IF options.!builddir == 1 THEN say '_INIRead() done'
     424    IF advanced.!bigicons == 1 THEN say '_INIRead() done'
    423425return
    424426
     
    431433    ok = VRSetIni( "Pos",     "Height",   VRGet("Main","Height"),      OurINI, 'NoClose')
    432434    ok = VRSetIni( "Options", "BuildDir", options.!builddir,           OurINI, 'NoClose')
    433     ok = VRSetIni( "Options", "Debug",    options.!debug,              OurINI)
     435    ok = VRSetIni( "Options", "Debug",    options.!debug,              OurINI, 'NoClose')
     436    ok = VRSetIni( "Options", "BigIcons", \VRGet("Menu_Options_MiniIcons","Checked"),OurINI)
    434437return
    435438
     
    458461        parse var hostsline IP FQDN Alias
    459462        parse var FQDN hostname'.'domain
    460         if IP <> '127.0.0.1' then say left(IP, 25)||hostname
     463        if IP <> '127.0.0.1' then do
     464            say left(IP, 25)||hostname
     465            call lineout lmhosts, left(IP, 25)||hostname
     466        end
    461467    end
    462468
     
    10471053        call lineout smbconf, Indent||'comment = Samba Server for eCS (OS/2)'
    10481054    end
     1055
     1056    call lineout smbconf, Indent||'dos charset = IBM-850'
     1057    call lineout smbconf, Indent||'display charset = IBM-850'
     1058    call lineout smbconf, Indent||'unix charset = IBM-850'
     1059
    10491060    CurCP = SysQueryProcessCodePage()
    10501061    if CurCP <> "850" then do
    1051         call lineout smbconf, Indent||'unix charset = IBM-'CurCP
    1052         call lineout smbconf, Indent||'display charset = IBM-'CurCP
    1053         call lineout smbconf, Indent||'dos charset = IBM-'CurCP
     1062        Msg.Text = NLVGetMessage(117)
     1063        Msg.Type = "W"
     1064        call _ShowMsg
    10541065    end
    10551066    if UseTDBsam = 1 then do
     
    22572268    ok = VRSet("GB_Global", "Width",  VRGet("GB_Shares",     "Width"))
    22582269
    2259     ok = VRSet("PB_Create", "Left",   VRGet("GB_SmbConfTree","width")+FWidth*2)
    2260     ok = VRSet("PB_Create", "Top",    VRGet("GB_SmbConfTree","height")+FWidth*2)
    2261     ok = VRSet("PB_Create", "Width",  VRGet("GB_Shares",     "width")/4 -FWidth)
    2262 
    2263     ok = VRSet("PB_Reload", "Left",   VRGet("GB_SmbConfTree","width")-VRGet("PB_Create", "Width")+FWidth)
    2264     ok = VRSet("PB_Reload", "Top",    VRGet("GB_SmbConfTree","height")+FWidth*2)
    2265     ok = VRSet("PB_Reload", "Width",  VRGet("GB_Shares",     "width")/4 -FWidth)
    2266 
    2267     ok = VRSet("PB_Undo",   "Left",   VRGet("PB_Create",     "Left")+VRGet("PB_Create", "Width")+FWidth)
    2268     ok = VRSet("PB_Undo",   "Top",    VRGet("GB_SmbConfTree","height")+FWidth*2)
    2269     ok = VRSet("PB_Undo",   "Width",  VRGet("GB_Shares",     "width")/4 -FWidth)
    2270 
    2271     ok = VRSet("PB_Cancel", "Left",   VRGet("PB_Create",     "Left")+VRGet("PB_Create", "Width")*2+FWidth*2)
    2272     ok = VRSet("PB_Cancel", "Top",    VRGet("GB_SmbConfTree","height")+FWidth*2)
    2273     ok = VRSet("PB_Cancel", "Width",  VRGet("GB_Shares",     "Width")/4 -FWidth)
    2274 
    2275     ok = VRSet("PB_Help",   "Left",   VRGet("PB_Create",     "Left")+VRGet("PB_Create", "Width")*3+FWidth*3)
    2276     ok = VRSet("PB_Help",   "Top",    VRGet("GB_SmbConfTree","height")+FWidth*2)
    2277     ok = VRSet("PB_Help",   "Width",  VRGet("GB_Shares",     "Width")/4 -FWidth)
     2270    Button.Top   = VRGet("GB_SmbConfTree","height")+FWidth*2
     2271    Button.Left  = VRGet("GB_Shares","Left")
     2272    Button.Width = VRGet("PB_Create","Width")
     2273
     2274    ok = VRSet("PB_Create", "Top",    Button.Top)
     2275    ok = VRSet("PB_Create", "Left",   Button.Left)
     2276
     2277    ok = VRSet("PB_Reload", "Top",    Button.Top)
     2278    ok = VRSet("PB_Reload", "Left",   Button.Left-2*FWidth-Button.Width)
     2279    ok = VRSet("PB_Reload", "Width",  Button.Width)
     2280
     2281    ok = VRSet("PB_Undo",   "Top",    Button.Top)
     2282    ok = VRSet("PB_Undo",   "Left",   Button.Left+2*FWidth+Button.Width)
     2283    ok = VRSet("PB_Undo",   "Width",  Button.Width)
     2284
     2285    ok = VRSet("PB_Cancel", "Top",    Button.Top)
     2286    ok = VRSet("PB_Cancel", "Left",   Button.Left+4*FWidth+Button.Width*2)
     2287    ok = VRSet("PB_Cancel", "Width",  Button.Width)
     2288
     2289    ok = VRSet("PB_Help",   "Top",    Button.Top)
     2290    ok = VRSet("PB_Help",   "Left",   Button.Left+6*FWidth+Button.Width*3)
     2291    ok = VRSet("PB_Help",   "Width",  Button.Width)
     2292
     2293    drop Button.
    22782294
    22792295    Top    = VRGet("Main","Top")
  • branches/guitools-1.0/install/sscc_de.mkm

    r333 r344  
    7979SSC0072I: Die Leute hinter Samba Server fr eComStation (OS/2)
    8080SSC0073I: Aktuelle Konfiguration
    81 SSC0074?:
     81SSC0074I: Kleine Symbole
    8282SSC0075?:
    8383SSC0076?:
     
    123123SSC0115I: Keine Benutzer fr SWAT in %1 gefunden!
    124124SSC0116I: Zuwenig freier Platz auf "%1"!
     125SSC0117I: Achtung! System l„uft nicht auf Codepage 850, bitte Zeichenbersetzung berprfen!
  • branches/guitools-1.0/install/sscc_en.mkm

    r333 r344  
    7979SSC0072I: Samba Server for eComStation is brought to you by
    8080SSC0073I: Current configuration
    81 SSC0074?:
     81SSC0074I: Small icons
    8282SSC0075?:
    8383SSC0076?:
     
    123123SSC0115I: No users for SWAT defined in "%1"!
    124124SSC0116I: Free space low on "%1"!
     125SSC0117I: Warning! System is not using codepage 850, please check whether character translation really works!
  • branches/guitools-1.0/install/sscc_es.mkm

    r333 r344  
    7979SSC0072I: Servidor Samba para eComStation proporcionado por
    8080SSC0073I: Configuraci¢n actual
    81 SSC0074?:
     81SSC0074I: Iconos peque€os
    8282SSC0075?:
    8383SSC0076?:
     
    119119SSC0111I: Decirle a Samba que recargue todas sus configuraciones
    120120SSC0112I: Guardar todos los cambios en el archivo de configuraci¢n
     121SSC0113?:
     122SSC0114I: Por favor, cerca de este programa en oder para completar la instalaci¢n!
     123SSC0115I: No hay usuarios para SWAT se define en "% 1"!
     124SSC0116I: Espacio libre de bajo en "% 1"!
     125SSC0117I: ­Advertencia! El sistema no utiliza p gina de c¢digos 850, compruebe si la traducci¢n de caracteres realmente funciona!
  • branches/guitools-1.0/install/sscc_fr.mkm

    r333 r344  
    8585SSC0072I: Serveur Samba pour eComStation vous est propos‚ par
    8686SSC0073I: Configuration actuelle
    87 SSC0074?:
     87SSC0074I: Ic“nes ~miniatures
    8888SSC0075?:
    8989SSC0076?:
     
    131131SSC0115I: Pas pour les utilisateurs SWAT d‚finis dans "%1" !
    132132SSC0116I: D'espace libre sur "%1" est faible !
     133SSC0117I: Attention! SystŠme n'utilise pas codepage 850, s'il vous plaŒt v‚rifier si la traduction de caractŠres fonctionne vraiment!
  • branches/guitools-1.0/install/sscc_sv.mkm

    r333 r344  
    7575SSC0068I: Byt namn p† Samba-utdelning
    7676SSC0069I: Du b”r nu starta om Samba!
    77 SSC0070?:
    78 SSC0071?:
    79 SSC0072?:
     77SSC0070I: Kan inte ta bort ”verg†ende TDB filer s† l„nge Samba „r ig†ng!
     78SSC0071I: ™verg†ende bort TDB filer egentligen?
     79SSC0072I: M„nniskorna bakom Samba Server f”r eComStation (OS/2)
    8080SSC0073I: Aktuella konfigurationen
    81 SSC0074?:
     81SSC0074I: Sm† ikoner
    8282SSC0075?:
    8383SSC0076?:
     
    123123SSC0115I: Inga anv„ndare av SWAT definieras i "%1"!
    124124SSC0116I: Fritt utrymme p† "%1" „r l†g!
     125SSC0117I: Varning! Systemet inte anv„nder codepage 850, v„nligen kontrollera om karakt„r ”vers„ttning verkligen fungerar!
Note: See TracChangeset for help on using the changeset viewer.