##// END OF EJS Templates
Merge with crew-stable
Patrick Mezard -
r11196:573bef78 merge default
parent child Browse files
Show More
@@ -439,8 +439,9 b' class svn_source(converter_source):'
439 439 pendings = []
440 440 tagspath = self.tags
441 441 start = svn.ra.get_latest_revnum(self.ra)
442 stream = self._getlog([self.tags], start, self.startrev)
442 443 try:
443 for entry in self._getlog([self.tags], start, self.startrev):
444 for entry in stream:
444 445 origpaths, revnum, author, date, message = entry
445 446 copies = [(e.copyfrom_path, e.copyfrom_rev, p) for p, e
446 447 in origpaths.iteritems() if e.copyfrom_path]
@@ -509,9 +510,8 b' class svn_source(converter_source):'
509 510 pass
510 511 pendings = remainings
511 512 tagspath = srctagspath
512
513 except SubversionException:
514 self.ui.note(_('no tags found at revision %d\n') % start)
513 finally:
514 stream.close()
515 515 return tags
516 516
517 517 def converted(self, rev, destrev):
@@ -1,6 +1,6 b''
1 1 SVN-fs-dump-format-version: 2
2 2
3 UUID: 3c3c228a-b3dd-467c-a766-896f4b7cd0af
3 UUID: 644ede6c-2b81-4367-9dc8-d786514f2cde
4 4
5 5 Revision-number: 0
6 6 Prop-content-length: 56
@@ -9,7 +9,7 b' Content-length: 56'
9 9 K 8
10 10 svn:date
11 11 V 27
12 2009-06-21T12:38:53.023457Z
12 2010-05-19T20:16:07.429098Z
13 13 PROPS-END
14 14
15 15 Revision-number: 1
@@ -27,7 +27,7 b' pmezard'
27 27 K 8
28 28 svn:date
29 29 V 27
30 2009-06-21T12:38:53.111986Z
30 2010-05-19T20:16:07.461283Z
31 31 PROPS-END
32 32
33 33 Node-path: branches
@@ -39,15 +39,6 b' Content-length: 10'
39 39 PROPS-END
40 40
41 41
42 Node-path: tags
43 Node-kind: dir
44 Node-action: add
45 Prop-content-length: 10
46 Content-length: 10
47
48 PROPS-END
49
50
51 42 Node-path: trunk
52 43 Node-kind: dir
53 44 Node-action: add
@@ -72,7 +63,7 b' pmezard'
72 63 K 8
73 64 svn:date
74 65 V 27
75 2009-06-21T12:38:54.182594Z
66 2010-05-19T20:16:08.121436Z
76 67 PROPS-END
77 68
78 69 Node-path: branches/notinbranch
@@ -164,7 +155,7 b' pmezard'
164 155 K 8
165 156 svn:date
166 157 V 27
167 2009-06-21T12:38:57.166484Z
158 2010-05-19T20:16:11.113124Z
168 159 PROPS-END
169 160
170 161 Node-path: branches/old
@@ -197,7 +188,7 b' pmezard'
197 188 K 8
198 189 svn:date
199 190 V 27
200 2009-06-21T12:38:59.084420Z
191 2010-05-19T20:16:13.060877Z
201 192 PROPS-END
202 193
203 194 Node-path: trunk/a
@@ -227,7 +218,7 b' pmezard'
227 218 K 8
228 219 svn:date
229 220 V 27
230 2009-06-21T12:39:00.093201Z
221 2010-05-19T20:16:14.066212Z
231 222 PROPS-END
232 223
233 224 Node-path: branches/old/b
@@ -257,7 +248,7 b' pmezard'
257 248 K 8
258 249 svn:date
259 250 V 27
260 2009-06-21T12:39:02.078633Z
251 2010-05-19T20:16:16.069449Z
261 252 PROPS-END
262 253
263 254 Node-path: branches/old/c
@@ -295,7 +286,7 b' pmezard'
295 286 K 8
296 287 svn:date
297 288 V 27
298 2009-06-21T12:39:03.065537Z
289 2010-05-19T20:16:17.070868Z
299 290 PROPS-END
300 291
301 292 Node-path: branches/old/b
@@ -326,7 +317,7 b' pmezard'
326 317 K 8
327 318 svn:date
328 319 V 27
329 2009-06-21T12:39:06.070275Z
320 2010-05-19T20:16:20.063098Z
330 321 PROPS-END
331 322
332 323 Node-path: branches/old2
@@ -355,7 +346,7 b' pmezard'
355 346 K 8
356 347 svn:date
357 348 V 27
358 2009-06-21T12:39:08.082539Z
349 2010-05-19T20:16:22.062931Z
359 350 PROPS-END
360 351
361 352 Node-path: branches/old
@@ -384,7 +375,7 b' pmezard'
384 375 K 8
385 376 svn:date
386 377 V 27
387 2009-06-21T12:39:09.073290Z
378 2010-05-19T20:16:23.075562Z
388 379 PROPS-END
389 380
390 381 Node-path: trunk/a
@@ -413,7 +404,7 b' pmezard'
413 404 K 8
414 405 svn:date
415 406 V 27
416 2009-06-21T12:39:11.070264Z
407 2010-05-19T20:16:25.107655Z
417 408 PROPS-END
418 409
419 410 Node-path: branches/old3
@@ -10,7 +10,6 b' mkdir project-orig'
10 10 cd project-orig
11 11 mkdir trunk
12 12 mkdir branches
13 mkdir tags
14 13 cd ..
15 14
16 15 svnadmin create svn-repo
General Comments 0
You need to be logged in to leave comments. Login now