Added inspector tabs to show working copy contents in inspector
authorJan Vrany <jan.vrany@fit.cvut.cz>
Thu, 18 Jun 2015 06:12:09 +0100
changeset 556 4a087ba803b7
parent 550 c5e8328a47f0
child 557 8a655137b34b
Added inspector tabs to show working copy contents in inspector to HGRepository, HGPackageWorkingCopy and HGWorkingCopyFile.
mercurial/HGPackageWorkingCopy.st
mercurial/HGRepository.st
mercurial/HGWorkingCopyFile.st
--- a/mercurial/HGPackageWorkingCopy.st	Thu Jun 11 22:47:57 2015 +0100
+++ b/mercurial/HGPackageWorkingCopy.st	Thu Jun 18 06:12:09 2015 +0100
@@ -153,6 +153,16 @@
     "Modified: / 12-03-2015 / 03:01:07 / Jan Vrany <jan.vrany@fit.cvut.cz>"
 ! !
 
+!HGPackageWorkingCopy methodsFor:'inspecting'!
+
+inspector2TabContentsView
+    <inspector2Tab>
+
+    ^ wcroot inspector2TabContentsView
+
+    "Created: / 12-06-2015 / 10:35:32 / Jan Vrany <jan.vrany@fit.cvut.cz>"
+! !
+
 !HGPackageWorkingCopy methodsFor:'private'!
 
 commited
--- a/mercurial/HGRepository.st	Thu Jun 11 22:47:57 2015 +0100
+++ b/mercurial/HGRepository.st	Thu Jun 18 06:12:09 2015 +0100
@@ -536,6 +536,16 @@
     "Modified: / 24-03-2014 / 12:42:06 / Jan Vrany <jan.vrany@fit.cvut.cz>"
 ! !
 
+!HGRepository methodsFor:'inspecting'!
+
+inspector2TabContentsView
+    <inspector2Tab>
+
+    ^ wc inspector2TabContentsView
+
+    "Created: / 12-06-2015 / 10:36:23 / Jan Vrany <jan.vrany@fit.cvut.cz>"
+! !
+
 !HGRepository methodsFor:'operations'!
 
 cloneTo: aStringOrFilename
--- a/mercurial/HGWorkingCopyFile.st	Thu Jun 11 22:47:57 2015 +0100
+++ b/mercurial/HGWorkingCopyFile.st	Thu Jun 18 06:12:09 2015 +0100
@@ -259,6 +259,14 @@
 
     "Created: / 04-02-2012 / 17:14:08 / Jan Vrany <jan.vrany@fit.cvut.cz>"
     "Modified: / 14-12-2012 / 15:48:38 / Jan Vrany <jan.vrany@fit.cvut.cz>"
+!
+
+inspector2TabContentsView
+    <inspector2Tab>   
+
+    ^ filename inspector2TabContentsView
+
+    "Created: / 12-06-2015 / 10:35:23 / Jan Vrany <jan.vrany@fit.cvut.cz>"
 ! !
 
 !HGWorkingCopyFile methodsFor:'instance creation'!