Mercurial > public > mercurial-scm > hg
comparison mercurial/localrepo.py @ 6210:942287cb1f57
Removed trailing spaces from everything except test output
author | Thomas Arendsen Hein <thomas@intevation.de> |
---|---|
date | Fri, 07 Mar 2008 00:24:36 +0100 |
parents | 305d4450036a |
children | f89fd07fc51d |
comparison
equal
deleted
inserted
replaced
6209:4e8cd15240bf | 6210:942287cb1f57 |
---|---|
515 for pat, cmd in self.ui.configitems(filter): | 515 for pat, cmd in self.ui.configitems(filter): |
516 mf = util.matcher(self.root, "", [pat], [], [])[1] | 516 mf = util.matcher(self.root, "", [pat], [], [])[1] |
517 fn = None | 517 fn = None |
518 params = cmd | 518 params = cmd |
519 for name, filterfn in self._datafilters.iteritems(): | 519 for name, filterfn in self._datafilters.iteritems(): |
520 if cmd.startswith(name): | 520 if cmd.startswith(name): |
521 fn = filterfn | 521 fn = filterfn |
522 params = cmd[len(name):].lstrip() | 522 params = cmd[len(name):].lstrip() |
523 break | 523 break |
524 if not fn: | 524 if not fn: |
525 fn = lambda s, c, **kwargs: util.filter(s, c) | 525 fn = lambda s, c, **kwargs: util.filter(s, c) |
1583 manifest nodes need to be included for the changeset to be complete | 1583 manifest nodes need to be included for the changeset to be complete |
1584 is non-trivial. | 1584 is non-trivial. |
1585 | 1585 |
1586 Another wrinkle is doing the reverse, figuring out which changeset in | 1586 Another wrinkle is doing the reverse, figuring out which changeset in |
1587 the changegroup a particular filenode or manifestnode belongs to. | 1587 the changegroup a particular filenode or manifestnode belongs to. |
1588 | 1588 |
1589 The caller can specify some nodes that must be included in the | 1589 The caller can specify some nodes that must be included in the |
1590 changegroup using the extranodes argument. It should be a dict | 1590 changegroup using the extranodes argument. It should be a dict |
1591 where the keys are the filenames (or 1 for the manifest), and the | 1591 where the keys are the filenames (or 1 for the manifest), and the |
1592 values are lists of (node, linknode) tuples, where node is a wanted | 1592 values are lists of (node, linknode) tuples, where node is a wanted |
1593 node and linknode is the changelog node that should be transmitted as | 1593 node and linknode is the changelog node that should be transmitted as |