Changeset 3480
- Timestamp:
- Feb 28, 2019, 7:26:17 PM (6 years ago)
- Location:
- trunk/src/netlabs/macros
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
TabularUnified trunk/src/netlabs/macros/edit.e ¶
r3475 r3480 94 94 if pos( '://', StrippedFileSpec) > 0 then 95 95 call LoadUrl( StrippedFileSpec, Options) 96 return 96 -- Don't execute the rest of PreLoadFile and Edit -> LoadFile 97 stop 97 98 endif 98 99 … … 147 148 filestoloadmax = filestoload 148 149 150 rc = 0 149 151 return 150 152 … … 558 560 -- Preload the file 559 561 call PreLoadFile( FileSpec, Options) 560 -- No break from here to get the rc from LoadFile 562 if rc then 563 dprintf( 'rc from PreLoadFile( FileSpec) = 'rc) 564 -- Don't process LoadFile when LoadUrl returned rc <> 0 565 iterate 566 endif 561 567 562 568 -- Load the file … … 565 571 566 572 if edit_rc then 573 dprintf( sayerrortext( edit_rc)': 'FileSpec) 567 574 sayerror sayerrortext( edit_rc)': 'FileSpec 568 575 NumErrors = NumErrors + 1 -
TabularUnified trunk/src/netlabs/macros/tools.e ¶
r3479 r3480 110 110 111 111 -- Refer to defined config key 112 if wordpos( ToolBaseName, 'md5sum md5suml md5') then112 if wordpos( ToolBaseName, 'md5sum md5suml md5') then 113 113 ToolBaseName = 'md5' 114 114 endif … … 260 260 GethWndC( APP_HANDLE) || 261 261 Text) with Button 2 NewValue \0 262 NewValue = strip( NewValue)262 NewValue = strip( NewValue) 263 263 if Button = \1 then 264 264 --'buffer_command' put_in_buffer( 'Grep' NewValue) … … 359 359 'edit' OutFile 360 360 editrc = rc 361 if rc = -282 then -- sayerror( 'New file')361 if rc = -282 then -- sayerror( 'New file') 362 362 'xcom quit' 363 363 rc = editrc … … 372 372 .filename = translate( LongName, '!!!!!', '*\/:?') 373 373 -- This won't work, because file doesn't exist on disk: 374 --call delete_ea( '.LONGNAME')374 --call delete_ea( '.LONGNAME') 375 375 --'add_ea .LONGNAME' LongName 376 376 --NepmdWriteStringEa( .filename, '.LONGNAME', LongName) 377 377 378 378 if .last > 0 then 379 next = textline( 1)379 next = textline( 1) 380 380 else 381 381 next = '' … … 425 425 Params = '"'fn'"' 426 426 427 /* -- TODO -- LOCAL ONLY -------------------------------- 427 428 RootDir = NepmdScanEnv( 'NEPMD_ROOTDIR') 428 429 rc1 = rc … … 431 432 endif 432 433 NetlabsDir = RootDir'\netlabs' 434 */ 435 SrcDir = 'g:\dev\netlabs\nepmd\trunk\src' 436 NetlabsDir = SrcDir'\netlabs' 433 437 434 438 UserDir = NepmdScanEnv( 'NEPMD_USERDIR') … … 628 632 -- Check result 629 633 Button = asc( leftstr( Result, 1)) 630 EOS = pos( \0, Result, 2) -- CHR( 0) signifies End Of String634 EOS = pos( \0, Result, 2) -- CHR( 0) signifies End Of String 631 635 Selected = substr( Result, 2, EOS - 2) 632 636 if Button = 1 then -- Open in App … … 634 638 elseif Button = 2 then -- Download and Save 635 639 call SaveUrl( Url) 636 if rc <> 0 then 637 sayerror 'Error on downloading URL, rc = 'rc 638 endif 640 -- No error checking required, because on error of wget, the rest 641 -- is not executed anymore 639 642 elseif Button = 3 then -- Download and Edit 640 643 'Edit' Url 641 if rc <> 0 then 642 sayerror 'Error on downloading URL, rc = 'rc 643 endif 644 -- No error checking required, because on error of wget, the rest 645 -- of Edit -> LoadFile is not executed anymore 644 646 else -- Return 645 647 'PostMe OpenUrlDlg' Url … … 705 707 'u='FileSpec, 't='TmpFile, 'o='Options, 'l='LogFile) 706 708 707 rc = 0708 709 Cmd 710 -- Can't get rc from the called command: 711 -- rc from Cmd is rc from the Os2 command that opens a command prompt 712 -- window, not the rc from the command that Os2 executes. 709 713 return 710 714 … … 823 827 'u='FileSpec, 't='TmpFile, 'l='LogFile) 824 828 825 rc = 0826 829 Cmd 830 -- Can't get rc from the called command: 831 -- rc from Cmd is rc from the Os2 command that opens a command prompt 832 -- window, not the rc from the command that Os2 executes. 827 833 return 828 834 … … 1092 1098 -- Parse button number and selected list item string 1093 1099 Button = asc( leftstr( ret, 1)) 1094 EOS = pos( \0, ret, 2) -- CHR( 0) signifies End Of String1100 EOS = pos( \0, ret, 2) -- CHR( 0) signifies End Of String 1095 1101 Select = substr( ret, 2, EOS - 2) 1096 1102 … … 1186 1192 'Throw away changes to file on disk?', 1187 1193 MB_OKCANCEL + MB_WARNING + MB_DEFBUTTON1 + MB_MOVEABLE) <> MBID_OK then 1188 return -293 -- sayerror( "has been modified")1194 return -293 -- sayerror( "has been modified") 1189 1195 else 1190 1196 .modify = 0 … … 1207 1213 endif 1208 1214 1209 Args = arg( 1)1215 Args = arg( 1) 1210 1216 if Args = '' then 1211 1217 'CommandLine uconv 'DefaultOptions -- recursive call … … 1268 1274 'Throw away changes to file on disk?', 1269 1275 MB_OKCANCEL + MB_WARNING + MB_DEFBUTTON1 + MB_MOVEABLE) <> MBID_OK then 1270 return -293 -- sayerror( "has been modified")1276 return -293 -- sayerror( "has been modified") 1271 1277 else 1272 1278 .modify = 0 … … 1288 1294 endif 1289 1295 1290 Args = arg( 1)1296 Args = arg( 1) 1291 1297 if Args = '' then 1292 1298 'CommandLine recode 'DefaultOptions -- recursive call … … 1356 1362 1357 1363 'xcom e 'Md5Log1 1358 next = textline( 1)1364 next = textline( 1) 1359 1365 parse value next with '=' md51 -- Bob Eager's md5.exe 1360 1366 if md51 = '' then … … 1365 1371 'xcom q' 1366 1372 'xcom e 'Md5Log2 1367 next = textline( 1)1373 next = textline( 1) 1368 1374 parse value next with '=' md52 -- Bob Eager's md5.exe 1369 1375 if md52 = '' then
Note:
See TracChangeset
for help on using the changeset viewer.