mercurial/stx_libscm_mercurial.st
changeset 103 04731ef44417
parent 100 7e2196730455
child 105 25e8ff9d2a31
--- a/mercurial/stx_libscm_mercurial.st	Fri Nov 23 23:13:22 2012 +0000
+++ b/mercurial/stx_libscm_mercurial.st	Tue Nov 27 18:02:09 2012 +0000
@@ -60,7 +60,7 @@
         #'stx_libscm_mercurial'
         HGBranch
         HGWorkingCopy
-        HGNodeId
+        HGChangesetId
         HGStatus
         HGError
         HGCommandError
@@ -80,6 +80,8 @@
         HGRevisionInfo
         HGRevisionAnnotation
     )
+
+    "Modified: / 27-11-2012 / 17:49:46 / Jan Vrany <jan.vrany@fit.cvut.cz>"
 !
 
 extensionMethodNames
@@ -87,10 +89,10 @@
      Entries are 2-element array literals, consisting of class-name and selector."
 
     ^ #(
-        ByteArray asHGNodeId
-        Integer asHGNodeId
-        Object asHGNodeId
-        String asHGNodeId
+        ByteArray asHGChangesetId
+        Integer asHGChangesetId
+        Object asHGChangesetId
+        String asHGChangesetId
         UserPreferences hgCommand
         UserPreferences hgCommand:
         Object asHGRevision
@@ -98,6 +100,8 @@
         'ProjectDefinition class' hgBinaryRevision
         'ProjectDefinition class' hgLogicalRevision
     )
+
+    "Modified: / 27-11-2012 / 17:49:03 / Jan Vrany <jan.vrany@fit.cvut.cz>"
 ! !
 
 !stx_libscm_mercurial class methodsFor:'description - project information'!