# HG changeset patch # User Claus Gittinger # Date 1479488841 -3600 # Node ID c250ea56603aef0aed785f0d21f0d8723a6bc163 # Parent 21c8c73bed156113b3a777bac7b79f4cafcc7ea1 #REFACTORING by cg class: HGSourceCodeManager changed: #revisionLogOf:fromRevision:toRevision:numberOfRevisions:fileName:directory:module: diff -r 21c8c73bed15 -r c250ea56603a mercurial/HGSourceCodeManager.st --- a/mercurial/HGSourceCodeManager.st Fri Nov 18 11:58:13 2016 +0100 +++ b/mercurial/HGSourceCodeManager.st Fri Nov 18 18:07:21 2016 +0100 @@ -270,7 +270,7 @@ The returned information is a structure (IdentityDictionary) filled with: - #container -> the RCS/CVS container file name + #container -> the file name again #cvsRoot -> the CVS root (repository) #filename -> the actual source file name #newestRevision -> the revisionString of the newest revision @@ -292,7 +292,6 @@ #author -> who checked that revision into the repository #date -> when was it checked in #state -> the RCS state - #numberOfChangedLines -> the number of changed line w.r.t the previous #logMessage -> the checkIn log message revisions are ordered newest first @@ -348,7 +347,6 @@ entry at:#author put: rev author."/ -> who checked that revision into the repository entry at:#date put: rev timestamp printString."/ -> when was it checked in entry at:#state put: 'Exp'. "/ -> the RCS state - entry at:#numberOfChangedLines put: 'N/A'. "/ -> the number of changed line w.r.t the previous entry at:#logMessage put: rev message."/ -> the checkIn log message. log add: entry.