# HG changeset patch # User Jan Vrany # Date 1317467110 -7200 # Node ID c258e10fedc3c2fb3e6d630780911c7c83c94f4c # Parent ce9b03981a90f80838f78dc0909f23f9b342d370 checkin to get version methods correct diff -r ce9b03981a90 -r c258e10fedc3 SVN__WorkingCopyBrowser.st --- a/SVN__WorkingCopyBrowser.st Sat Oct 01 13:04:57 2011 +0200 +++ b/SVN__WorkingCopyBrowser.st Sat Oct 01 13:05:10 2011 +0200 @@ -359,17 +359,17 @@ text1 := (wc containerReadStreamFor: entry path) contents asString. text2 := wc branch cat: entry path. (Tools::TextDiffTool new) - versionALabel: 'Working copy'; - versionBLabel: ('r %1' bindWith: rev printString); - versionA: text1 versionB: text2; + labelA: 'Working copy'; + labelB: ('r %1' bindWith: rev printString); + textA: text1; textB: text2; title:('%1: Diffbetween working copy and rev. %2 ' bindWith: entry path with: rev printString); open ] "Created: / 09-10-2008 / 20:14:24 / Jan Vrany " "Modified: / 09-08-2009 / 14:14:21 / Jan Vrany " - "Modified: / 07-07-2011 / 21:49:28 / Jan Vrany " "Modified: / 07-07-2011 / 23:09:09 / jv" + "Modified: / 01-09-2011 / 12:15:09 / Jan Vrany " ! ! !WorkingCopyBrowser methodsFor:'private'! @@ -388,6 +388,10 @@ !WorkingCopyBrowser class methodsFor:'documentation'! +version + ^ '$Header$' +! + version_SVN - ^ '§Id: SVN__WorkingCopyBrowser.st 354 2011-07-07 22:28:54Z vranyj1 §' + ^ '§Id: SVN__WorkingCopyBrowser.st 367 2011-09-01 11:32:31Z vranyj1 §' ! !