Show More
@@ -432,37 +432,37 b' def tagged(repo, subset, x):' | |||
|
432 | 432 | return [r for r in subset if r in s] |
|
433 | 433 | |
|
434 | 434 | symbols = { |
|
435 | "adds": adds, | |
|
436 | "all": getall, | |
|
435 | 437 | "ancestor": ancestor, |
|
436 | 438 | "ancestors": ancestors, |
|
437 | "descendants": descendants, | |
|
438 | "follow": follow, | |
|
439 | "merge": merge, | |
|
440 | "reverse": reverse, | |
|
441 | "sort": sort, | |
|
439 | "author": author, | |
|
442 | 440 | "branch": branch, |
|
441 | "children": children, | |
|
442 | "closed": closed, | |
|
443 | "contains": contains, | |
|
444 | "date": date, | |
|
445 | "descendants": descendants, | |
|
446 | "file": hasfile, | |
|
447 | "follow": follow, | |
|
448 | "grep": grep, | |
|
449 | "head": head, | |
|
450 | "heads": heads, | |
|
443 | 451 | "keyword": keyword, |
|
444 | "author": author, | |
|
445 | "user": author, | |
|
446 |
" |
|
|
447 | "grep": grep, | |
|
452 | "limit": limit, | |
|
453 | "max": maxrev, | |
|
454 | "merge": merge, | |
|
455 | "modifies": modifies, | |
|
456 | "outgoing": outgoing, | |
|
448 | 457 | "p1": p1, |
|
449 | 458 | "p2": p2, |
|
450 | 459 | "parents": parents, |
|
451 | "children": children, | |
|
452 | "max": maxrev, | |
|
453 | "limit": limit, | |
|
454 | "file": hasfile, | |
|
455 | "contains": contains, | |
|
456 | "heads": heads, | |
|
460 | "removes": removes, | |
|
461 | "reverse": reverse, | |
|
457 | 462 | "roots": roots, |
|
458 | "all": getall, | |
|
459 | "closed": closed, | |
|
460 | "head": head, | |
|
461 | "modifies": modifies, | |
|
462 | "adds": adds, | |
|
463 | "removes": removes, | |
|
464 | "outgoing": outgoing, | |
|
463 | "sort": sort, | |
|
465 | 464 | "tagged": tagged, |
|
465 | "user": author, | |
|
466 | 466 | } |
|
467 | 467 | |
|
468 | 468 | methods = { |
General Comments 0
You need to be logged in to leave comments.
Login now