Changeset 344
- Timestamp:
- Oct 30, 2009, 12:44:24 PM (16 years ago)
- Location:
- branches/guitools-1.0/install
- Files:
-
- 9 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/guitools-1.0/install/changes
r304 r344 1 Version 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) 7 Version 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!) 1 12 Version 0.9.1 14-07-2009 2 13 +Added: Check free space on TMPDIR … … 12 23 *Changed: Integrate groupmapinst.cmd 13 24 Version 0.8.9 13-06-2009 14 *Changed: Header in smb.conf is similar to the one15 SWAT writes25 *Changed: Header in smb.conf is similar now to the 26 one SWAT writes 16 27 Version 0.8.8 26-05-2009 17 28 +Added: Charset detection, configuration and -
branches/guitools-1.0/install/sscc.vrp
r333 r344 3 3 MacroPath: VRM:U:\Develop\Samba\guitools-1.0\install 4 4 EXEPath: 5 RunParameters: /install5 RunParameters: 6 6 RunDirectory: E:\Dev\REXX\VXREXX\Projects\Samba\install 7 7 VRXWindow: __VREMainWindow,1,2180,4481,891,7263 8 8 VRXWindow: __VRESectionListWindow,1,3011,12286,8974,3144 9 VRXWindow: __VREToolsWindow,1,3211,10648,698 6,16619 VRXWindow: __VREToolsWindow,1,3211,10648,6989,1659 10 10 VRXWindow: __VREWindListWindow,1,385,12286,2650,3150 11 11 UserFile: 1 12 12 UserWindow: Main,1 13 UserWindow: GB_Global_1,1 13 14 UserWindow: Installer,1 -
branches/guitools-1.0/install/sscc.vrx
r333 r344 280 280 ok = VRSet("DT_SmbConfTree","BACKCOLOR", settings.!curbcolor ) 281 281 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 287 282 288 283 ok = VRSet("EF_Binaries_Version","value",samba.!version) … … 298 293 299 294 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) 300 298 301 299 if _ChkTempFreeSpace() < 262144 then do … … 348 346 CALL NLVSetText 'Menu_Options_SimpleMode', 'Caption', 28 349 347 CALL NLVSetText 'Menu_Options_ExportMode', 'Caption', 29 348 CALL NLVSetText 'Menu_Options_MiniIcons', 'Caption', 74 350 349 CALL NLVSetText 'Menu_Help_smbconf', 'Caption', 30 351 350 CALL NLVSetText 'Menu_Help_About', 'Caption', 31 … … 397 396 else ok = VRREdirectStdIO("OFF") 398 397 399 options.!builddir = VRGetIni( "Options", "BuildDir", OurINI )398 options.!builddir = VRGetIni( "Options", "BuildDir", OurINI, 'NoClose') 400 399 if options.!builddir = "" then options.!builddir = "" 400 401 advanced.!bigicons = VRGetIni( "Options", "BigIcons", OurINI) 402 if advanced.!bigicons = "" then advanced.!bigicons = 0 401 403 402 404 /* Initialize several variables */ … … 416 418 CreatePDC = 0 /* only for installermode */ 417 419 418 advanced.!bigicons = 0 420 419 421 420 422 FWidth = 32 421 423 422 IF options.!builddir== 1 THEN say '_INIRead() done'424 IF advanced.!bigicons == 1 THEN say '_INIRead() done' 423 425 return 424 426 … … 431 433 ok = VRSetIni( "Pos", "Height", VRGet("Main","Height"), OurINI, 'NoClose') 432 434 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) 434 437 return 435 438 … … 458 461 parse var hostsline IP FQDN Alias 459 462 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 461 467 end 462 468 … … 1047 1053 call lineout smbconf, Indent||'comment = Samba Server for eCS (OS/2)' 1048 1054 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 1049 1060 CurCP = SysQueryProcessCodePage() 1050 1061 if CurCP <> "850" then do 1051 call lineout smbconf, Indent||'unix charset = IBM-'CurCP1052 call lineout smbconf, Indent||'display charset = IBM-'CurCP1053 call lineout smbconf, Indent||'dos charset = IBM-'CurCP1062 Msg.Text = NLVGetMessage(117) 1063 Msg.Type = "W" 1064 call _ShowMsg 1054 1065 end 1055 1066 if UseTDBsam = 1 then do … … 2257 2268 ok = VRSet("GB_Global", "Width", VRGet("GB_Shares", "Width")) 2258 2269 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. 2278 2294 2279 2295 Top = VRGet("Main","Top") -
branches/guitools-1.0/install/sscc_de.mkm
r333 r344 79 79 SSC0072I: Die Leute hinter Samba Server fr eComStation (OS/2) 80 80 SSC0073I: Aktuelle Konfiguration 81 SSC0074 ?:81 SSC0074I: Kleine Symbole 82 82 SSC0075?: 83 83 SSC0076?: … … 123 123 SSC0115I: Keine Benutzer fr SWAT in %1 gefunden! 124 124 SSC0116I: Zuwenig freier Platz auf "%1"! 125 SSC0117I: Achtung! System luft nicht auf Codepage 850, bitte Zeichenbersetzung berprfen! -
branches/guitools-1.0/install/sscc_en.mkm
r333 r344 79 79 SSC0072I: Samba Server for eComStation is brought to you by 80 80 SSC0073I: Current configuration 81 SSC0074 ?:81 SSC0074I: Small icons 82 82 SSC0075?: 83 83 SSC0076?: … … 123 123 SSC0115I: No users for SWAT defined in "%1"! 124 124 SSC0116I: Free space low on "%1"! 125 SSC0117I: Warning! System is not using codepage 850, please check whether character translation really works! -
branches/guitools-1.0/install/sscc_es.mkm
r333 r344 79 79 SSC0072I: Servidor Samba para eComStation proporcionado por 80 80 SSC0073I: Configuraci¢n actual 81 SSC0074 ?:81 SSC0074I: Iconos peque€os 82 82 SSC0075?: 83 83 SSC0076?: … … 119 119 SSC0111I: Decirle a Samba que recargue todas sus configuraciones 120 120 SSC0112I: Guardar todos los cambios en el archivo de configuraci¢n 121 SSC0113?: 122 SSC0114I: Por favor, cerca de este programa en oder para completar la instalaci¢n! 123 SSC0115I: No hay usuarios para SWAT se define en "% 1"! 124 SSC0116I: Espacio libre de bajo en "% 1"! 125 SSC0117I: 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 85 85 SSC0072I: Serveur Samba pour eComStation vous est propos par 86 86 SSC0073I: Configuration actuelle 87 SSC0074 ?:87 SSC0074I: Icnes ~miniatures 88 88 SSC0075?: 89 89 SSC0076?: … … 131 131 SSC0115I: Pas pour les utilisateurs SWAT dfinis dans "%1" ! 132 132 SSC0116I: D'espace libre sur "%1" est faible ! 133 SSC0117I: Attention! Systme n'utilise pas codepage 850, s'il vous plat vrifier si la traduction de caractres fonctionne vraiment! -
branches/guitools-1.0/install/sscc_sv.mkm
r333 r344 75 75 SSC0068I: Byt namn p Samba-utdelning 76 76 SSC0069I: Du br nu starta om Samba! 77 SSC0070 ?:78 SSC0071 ?:79 SSC0072 ?:77 SSC0070I: Kan inte ta bort vergende TDB filer s lnge Samba r igng! 78 SSC0071I: vergende bort TDB filer egentligen? 79 SSC0072I: Mnniskorna bakom Samba Server fr eComStation (OS/2) 80 80 SSC0073I: Aktuella konfigurationen 81 SSC0074 ?:81 SSC0074I: Sm ikoner 82 82 SSC0075?: 83 83 SSC0076?: … … 123 123 SSC0115I: Inga anvndare av SWAT definieras i "%1"! 124 124 SSC0116I: Fritt utrymme p "%1" r lg! 125 SSC0117I: Varning! Systemet inte anvnder codepage 850, vnligen kontrollera om karaktr versttning verkligen fungerar!
Note:
See TracChangeset
for help on using the changeset viewer.