Changeset 3480


Ignore:
Timestamp:
Feb 28, 2019, 7:26:17 PM (6 years ago)
Author:
Andreas Schnellbacher
Message:
  • LoadUrl, EditUrl: Removed error checking after wget failed. The call of Cmd always returns the rc from opening the command prompt window, not that of the called wget. quietshell could be used instead, but that runs hidden and would require error checking.
  • Added stop of further Edit processing after recognition of a URL and calling LoadUrl. The stop in PreLoadFile stops then also Edit.
Location:
trunk/src/netlabs/macros
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • TabularUnified trunk/src/netlabs/macros/edit.e

    r3475 r3480  
    9494   if pos( '://', StrippedFileSpec) > 0 then
    9595      call LoadUrl( StrippedFileSpec, Options)
    96       return
     96      -- Don't execute the rest of PreLoadFile and Edit -> LoadFile
     97      stop
    9798   endif
    9899
     
    147148   filestoloadmax = filestoload
    148149
     150   rc = 0
    149151   return
    150152
     
    558560            -- Preload the file
    559561            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
    561567
    562568            -- Load the file
     
    565571
    566572            if edit_rc then
     573               dprintf( sayerrortext( edit_rc)': 'FileSpec)
    567574               sayerror sayerrortext( edit_rc)': 'FileSpec
    568575               NumErrors = NumErrors + 1
  • TabularUnified trunk/src/netlabs/macros/tools.e

    r3479 r3480  
    110110
    111111      -- Refer to defined config key
    112       if wordpos( ToolBaseName,'md5sum md5suml md5') then
     112      if wordpos( ToolBaseName, 'md5sum md5suml md5') then
    113113         ToolBaseName = 'md5'
    114114      endif
     
    260260                         GethWndC( APP_HANDLE) ||
    261261                         Text) with Button 2 NewValue \0
    262    NewValue = strip(NewValue)
     262   NewValue = strip( NewValue)
    263263   if Button = \1 then
    264264      --'buffer_command' put_in_buffer( 'Grep' NewValue)
     
    359359      'edit' OutFile
    360360      editrc = rc
    361       if rc = -282 then  -- sayerror('New file')
     361      if rc = -282 then  -- sayerror( 'New file')
    362362         'xcom quit'
    363363         rc = editrc
     
    372372      .filename = translate( LongName, '!!!!!', '*\/:?')
    373373      -- This won't work, because file doesn't exist on disk:
    374       --call delete_ea('.LONGNAME')
     374      --call delete_ea( '.LONGNAME')
    375375      --'add_ea .LONGNAME' LongName
    376376      --NepmdWriteStringEa( .filename, '.LONGNAME', LongName)
    377377
    378378      if .last > 0 then
    379          next = textline(1)
     379         next = textline( 1)
    380380      else
    381381         next = ''
     
    425425   Params = '"'fn'"'
    426426
     427/*                                            -- TODO -- LOCAL ONLY --------------------------------
    427428   RootDir = NepmdScanEnv( 'NEPMD_ROOTDIR')
    428429   rc1 = rc
     
    431432   endif
    432433   NetlabsDir = RootDir'\netlabs'
     434*/
     435   SrcDir  = 'g:\dev\netlabs\nepmd\trunk\src'
     436   NetlabsDir = SrcDir'\netlabs'
    433437
    434438   UserDir = NepmdScanEnv( 'NEPMD_USERDIR')
     
    628632   -- Check result
    629633   Button = asc( leftstr( Result, 1))
    630    EOS = pos( \0, Result, 2)        -- CHR(0) signifies End Of String
     634   EOS = pos( \0, Result, 2)        -- CHR( 0) signifies End Of String
    631635   Selected = substr( Result, 2, EOS - 2)
    632636   if Button = 1 then      -- Open in App
     
    634638   elseif Button = 2 then  -- Download and Save
    635639      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
    639642   elseif Button = 3 then  -- Download and Edit
    640643      '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
    644646   else                    -- Return
    645647      'PostMe OpenUrlDlg' Url
     
    705707      'u='FileSpec, 't='TmpFile, 'o='Options, 'l='LogFile)
    706708
    707    rc = 0
    708709   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.
    709713   return
    710714
     
    823827      'u='FileSpec, 't='TmpFile, 'l='LogFile)
    824828
    825    rc = 0
    826829   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.
    827833   return
    828834
     
    10921098   -- Parse button number and selected list item string
    10931099   Button = asc( leftstr( ret, 1))
    1094    EOS = pos( \0, ret, 2)        -- CHR(0) signifies End Of String
     1100   EOS = pos( \0, ret, 2)        -- CHR( 0) signifies End Of String
    10951101   Select = substr( ret, 2, EOS - 2)
    10961102
     
    11861192                           'Throw away changes to file on disk?',
    11871193                           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")
    11891195         else
    11901196            .modify = 0
     
    12071213      endif
    12081214
    1209       Args = arg(1)
     1215      Args = arg( 1)
    12101216      if Args = '' then
    12111217         'CommandLine uconv 'DefaultOptions  -- recursive call
     
    12681274                           'Throw away changes to file on disk?',
    12691275                           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")
    12711277         else
    12721278            .modify = 0
     
    12881294      endif
    12891295
    1290       Args = arg(1)
     1296      Args = arg( 1)
    12911297      if Args = '' then
    12921298         'CommandLine recode 'DefaultOptions  -- recursive call
     
    13561362
    13571363      'xcom e 'Md5Log1
    1358       next = textline(1)
     1364      next = textline( 1)
    13591365      parse value next with '=' md51   -- Bob Eager's md5.exe
    13601366      if md51 = '' then
     
    13651371      'xcom q'
    13661372      'xcom e 'Md5Log2
    1367       next = textline(1)
     1373      next = textline( 1)
    13681374      parse value next with '=' md52   -- Bob Eager's md5.exe
    13691375      if md52 = '' then
Note: See TracChangeset for help on using the changeset viewer.