##// END OF EJS Templates
convert/svn: report path discovery progress...
Patrick Mezard -
r11137:94afe7bc default
parent child Browse files
Show More
@@ -610,7 +610,9 b' class svn_source(converter_source):'
610 self.module = new_module
610 self.module = new_module
611 self.reparent(self.module)
611 self.reparent(self.module)
612
612
613 for path, ent in paths:
613 for i, (path, ent) in enumerate(paths):
614 self.ui.progress(_('scanning paths'), i, item=path,
615 total=len(paths))
614 entrypath = self.getrelpath(path)
616 entrypath = self.getrelpath(path)
615
617
616 kind = self._checkpath(entrypath, revnum)
618 kind = self._checkpath(entrypath, revnum)
@@ -689,6 +691,7 b' class svn_source(converter_source):'
689 copytopath = self.getrelpath(copytopath)
691 copytopath = self.getrelpath(copytopath)
690 copies[self.recode(copytopath)] = self.recode(childpath)
692 copies[self.recode(copytopath)] = self.recode(childpath)
691
693
694 self.ui.progress(_('scanning paths'), None)
692 changed.update(removed)
695 changed.update(removed)
693 return (list(changed), removed, copies)
696 return (list(changed), removed, copies)
694
697
@@ -95,15 +95,22 b' retrieving file [======================='
95 retrieving file [========================================================>] 5/5
95 retrieving file [========================================================>] 5/5
96
96
97 converting [==============> ] 1/4
97 converting [==============> ] 1/4
98 scanning paths [ ] 0/1
99
98 retrieving file [========================================================>] 1/1
100 retrieving file [========================================================>] 1/1
99
101
100 converting [==============================> ] 2/4
102 converting [==============================> ] 2/4
103 scanning paths [ ] 0/2
104 scanning paths [============================> ] 1/2
105
101 retrieving file [=============> ] 1/4
106 retrieving file [=============> ] 1/4
102 retrieving file [===========================> ] 2/4
107 retrieving file [===========================> ] 2/4
103 retrieving file [=========================================> ] 3/4
108 retrieving file [=========================================> ] 3/4
104 retrieving file [========================================================>] 4/4
109 retrieving file [========================================================>] 4/4
105
110
106 converting [=============================================> ] 3/4
111 converting [=============================================> ] 3/4
112 scanning paths [ ] 0/1
113
107 retrieving file [========================================================>] 1/1
114 retrieving file [========================================================>] 1/1
108
115
109 initializing destination hg-progress repository
116 initializing destination hg-progress repository
General Comments 0
You need to be logged in to leave comments. Login now