PatchLines (Stringlist function)

From m204wiki
Revision as of 21:33, 18 January 2011 by Wiccan (talk | contribs) (1 revision)
Jump to navigation Jump to search

Apply patch Stringlist to a base Stringlist (Stringlist class)


This method uses Unix-style .diff output to update text lines that are stored in a Stringlist.

PatchLines applies a given patch file (converted to a Stringlist) to a base file (also a Stringlist), and it returns a Stringlist that is the base file updated by the differences contained in the patch file. PatchLines has the same functionality as the Patch (Stringlist function), but its syntax is slightly different: it reverses the method object and principal argument of Patch. In PatchLines, the patch file Stringlist is the method object and the base file Stringlist is the principal method argument; in Patch the base file Stringlist is the method object and the patch file Stringlist is a method argument. Both PatchLines and Patch support only a line-oriented patch. For usage notes and an example, see the Patch (Stringlist function) description. For working with character-oriented .diff output, use the PatchString (Stringlist function).

The PatchLines method is available as of Sirius Mods Version 7.2.

Syntax

%updList = sl:PatchLines( baseList, [Options= string])

Syntax terms

%updList A Stringlist object that reproduces the original updated file, that is, baseList updated by the sl updates.
sl A Stringlist object that contains the patch file (one line per sl item).
baseList A Stringlist object that contains the original base file, each line stored as a baseList item.
Options This optional argument (name required) is the string value ErrRet, which may be specified in uppercase or lowercase. If you specify Options='ErrRet', Patch method errors return a null %updList Stringlist and no error message instead of canceling the request. If you do not specify Options='ErrRet' and a method error occurs, you receive an error message and the run is cancelled.