##// END OF EJS Templates
scm: mercurial: override entry and scm_entries (#14361)...
Toshi MARUYAMA -
r12484:eb1866036935
parent child
Show More
@@ -71,6 +71,15 class Repository::Mercurial < Repository
71 super(cs, cs_to, ' ')
71 super(cs, cs_to, ' ')
72 end
72 end
73
73
74 def entry(path=nil, identifier=nil)
75 scm.entry(path, identifier)
76 end
77
78 def scm_entries(path=nil, identifier=nil)
79 scm.entries(path, identifier)
80 end
81 protected :scm_entries
82
74 # Finds and returns a revision with a number or the beginning of a hash
83 # Finds and returns a revision with a number or the beginning of a hash
75 def find_changeset_by_name(name)
84 def find_changeset_by_name(name)
76 return nil if name.blank?
85 return nil if name.blank?
General Comments 0
You need to be logged in to leave comments. Login now