Changeset 1057
- Timestamp:
- Jun 23, 2018, 3:37:46 AM (7 years ago)
- Location:
- trunk/guitools/evfsgui
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/guitools/evfsgui
-
Property svn:ignore
set to
*.bak
*.BAK
*.exe
*.EXE
*.hlp
*.HLP
*.msg
*.MSG
*.RES
__out
-
Property svn:ignore
set to
-
trunk/guitools/evfsgui/evfsgui.vrp
r1048 r1057 6 6 ClassFile: VRSPLITB.DLL 7 7 MacroPath: VRM:U:\Develop\Samba\trunk\guitools\evfsgui 8 EXEPath: 8 EXEPath: G:\an_svn\arcamapper\trunk\arcamap.exe 9 9 RunParameters: 10 10 RunDirectory: U:\Develop\Samba\trunk\guitools\evfsgui -
trunk/guitools/evfsgui/evfsgui.vrx
r1048 r1057 310 310 ok = VRMethod("CN_CONDET", "SetFieldAttr", cd.ntlmv1FH , "Title","NTLMv1 support") 311 311 ok = VRMethod("CN_CONDET", "SetFieldAttr", cd.encryptionFH , "Title","Encryption support") 312 312 313 313 /* SMBTree columns */ 314 314 WorkgroupFH= VRMethod( "CN_smbtree", "AddField", "String", "Workgroup" ) … … 1424 1424 1425 1425 app_name_msg = NLVGetMessage( 0 ) 1426 IF app_name_msg == '' | WORD( app_name_msg, 1 ) == '[Missing' THEN 1426 IF app_name_msg == '' | WORD( app_name_msg, 1 ) == '[Missing' THEN 1427 1427 app_name_msg = 'EVFSGUI EVFSGUI' 1428 1428 … … 1578 1578 /*:VRX CB_client_lanman_auth_Click 1579 1579 */ 1580 CB_client_lanman_auth_Click: 1580 CB_client_lanman_auth_Click: 1581 1581 advanced.!smbconfchanged = 1 1582 1582 return … … 2947 2947 2948 2948 hlpmin = VRGet("PB_SMBTREE_REFRESH", "Left") + VRGet("PB_SMBTREE_REFRESH","Width") + marginx2 2949 hlppos = rcnr_width - marginx2 - VRGet("PB_SMBTREE_HELP","Width") + 24 2949 hlppos = rcnr_width - marginx2 - VRGet("PB_SMBTREE_HELP","Width") + 24 2950 2950 IF hlppos < hlpmin THEN hlppos = hlpmin 2951 2951 … … 3288 3288 */ 3289 3289 Menu_File_Autostart_Deactivate_Click: 3290 ok = SysDestroyObject("< 'options.!appname_short'_AUTOSTART>")3290 ok = SysDestroyObject("<"options.!appname_short"_AUTOSTART>") 3291 3291 IF ok == 1 THEN do 3292 3292 Text = NLVGetMessage( 79 ) … … 3833 3833 cd.lastrh = VRMethod("CN_CONDET","AddRecord") 3834 3834 PARSE VAR userdata p_mpoint ';' p_mpidx ';' . 3835 3835 3836 3836 p_mpoint = strip(p_mpoint,'T','\')||'\' 3837 3837 p_rw = word(resource, words(resource)) 3838 3838 3839 3839 /* Workaround for truncated resource string */ 3840 3840 if length(p_rw) > 1 then do … … 3847 3847 /* this should be done unconditionally if the resource string is never truncated */ 3848 3848 else resource = left(resource,length(resource)-length(p_rw)) 3849 3849 3850 3850 call ParseResParmString 3851 3851 3852 3852 if p_master = "" then p_master = "WORKGROUP" 3853 3853 if p_mtype = "" then p_mtype = "1" 3854 3854 if p_loglevel = "" then p_loglevel = "0" 3855 3855 if p_memlen = "" then p_memlen = "2" 3856 3856 3857 3857 /* Also works around for a truncated resource string! */ 3858 3858 if p_easupport= "" | p_easupport= " " then p_easupport = strip(options.!easupport) 3859 3859 3860 3860 if p_password <> "" & p_spassword = "" then do 3861 3861 p_spassword = c2x(p_password) 3862 3862 p_password = "" 3863 3863 end 3864 3864 3865 3865 ok = VRMethod("CN_CONDET", "SetFieldData", cd.lastrh, cd.mpointFH, p_mpoint, cd.mpidxfh, p_mpidx, cd.workgrpFH , p_workgroup, cd.serverfh, p_server, cd.sharefh, p_share, cd.userfh, p_user) 3866 3866 ok = VRMethod("CN_CONDET", "SetFieldData", cd.lastrh, cd.passwordfh, p_password, cd.spasswordfh, p_spassword, cd.masterfh, p_master, cd.mtypefh, p_mtype) … … 3869 3869 ok = VRMethod("CN_CONDET", "SetFieldData", cd.lastrh, cd.statusfh, icons.!active) /* Active */ 3870 3870 ok = VRMethod("CN_CONDET", "SetRecordAttr", cd.lastrh, "Icon", icons.!active) /* Active */ 3871 3871 3872 3872 hashstr = p_mpoint' 'translate(p_workgroup)' 'translate(p_server)' 'translate(p_share)' 'p_user' 'p_spassword' 'p_easupport' 'p_rw 3873 3873 3874 3874 md5 = rexx_md5(hashstr) 3875 3875 3876 3876 ok = VRMethod("CN_CONDET", "SetFieldData", cd.lastrh, cd.hashfh,md5) 3877 3877 3878 3878 SELECT 3879 3879 WHEN p_share == '' & p_server \= '' THEN DO /* all shares on server */ … … 3902 3902 userData = "UNKNOWN" 3903 3903 end 3904 end 3904 end 3905 3905 if left(word(resource,1),5) <> "SMBFS" then do 3906 3906 end … … 3932 3932 PARSE VAR resource . ';NTLMV1SUPPORT=' p_ntlmv1support ';' . 3933 3933 PARSE VAR resource . ';ENCRYPTIONSUPPORT=' p_encryptionsupport ' ' 3934 3934 3935 3935 return 3936 3936 /*:VRX PB_ABOUT_CLOSE_Click … … 4843 4843 CALL VRSet 'CB_TRAC', 'Set', options.!tracmark 4844 4844 4845 ok = VRSet("DT_About","Caption", Program' (c) 2007-201 7Alexander Taylor for Arca Noae '||'0D0A'x||'and Herwig Bauernfeind for bww bitwise works GmbH.')4845 ok = VRSet("DT_About","Caption", Program' (c) 2007-2018 Alexander Taylor for Arca Noae '||'0D0A'x||'and Herwig Bauernfeind for bww bitwise works GmbH.') 4846 4846 4847 4847 About.DscFH = VRMethod( "CN_ABOUT", "AddField", "String", "Component" ) … … 5479 5479 */ 5480 5480 SW_SMBCONF_Init: 5481 5481 5482 5482 /* Buttons */ 5483 5483 call NLVSetText "PB_SMBCONF_APPLY", "Caption", 122
Note:
See TracChangeset
for help on using the changeset viewer.