Tue Jun 20 12:05:21 PDT 2006  Brendan Cully <[EMAIL PROTECTED]>
  * [hg] always use repository-specific UI when repository is available

Tue Jun 20 12:07:39 PDT 2006  Brendan Cully <[EMAIL PROTECTED]>
  * [hg] wrapper for commands.*
  
  _hgCommand makes it easier to call commands.* functions, and
  ensures they will always have their options dictionary set
  correctly.
-----BEGIN PGP SIGNED MESSAGE-----
Hash: SHA1


New patches:

[[hg] always use repository-specific UI when repository is available
Brendan Cully <[EMAIL PROTECTED]>**20060620190521] {
hunk ./vcpx/hg.py 181
+            # Pick up repository-specific UI settings.
+            self._ui = self._hg.ui
}

[[hg] wrapper for commands.*
Brendan Cully <[EMAIL PROTECTED]>**20060620190739
 
 _hgCommand makes it easier to call commands.* functions, and
 ensures they will always have their options dictionary set
 correctly.
] {
hunk ./vcpx/hg.py 71
- -        opts = self._defaultOpts('pull')
hunk ./vcpx/hg.py 72
- -        commands.pull(repo.ui, repo, "default", **opts)
+        self._hgCommand('pull', 'default')
hunk ./vcpx/hg.py 261
- -        opts = self._defaultOpts('tag')
hunk ./vcpx/hg.py 282
- -        commands.tag(repo.ui, repo, tag, **opts)
+        self._hgCommand('tag', tag)
hunk ./vcpx/hg.py 289
+    def _hgCommand(self, cmd, *args, **opts):
+        import os
+
+        allopts = self._defaultOpts(cmd)
+        allopts.update(opts)
+        cmd = getattr(commands, cmd)
+        cmd(self._ui, self._hg, *args, **allopts)
+
hunk ./vcpx/hg.py 378
- -        commands.add(self._ui, self._hg, self.basedir)
+        self._hgCommand('add', self.basedir)
}

Context:

[Possible fix for #56: detect branch name at bootstrap
[EMAIL PROTECTED] 
[Use normalized path for comparing with paths from bzrlib
[EMAIL PROTECTED]
 This is the patch attached to ticket #59, thank you luks.
] 
[M-x whitespace-cleanup
[EMAIL PROTECTED] 
[Remove useless imports noticed by pyflakes
[EMAIL PROTECTED] 
[Catch ConfigParser exceptions
[EMAIL PROTECTED] 
[Use the new SF.NET nomenclature to reach the CVS repositories
[EMAIL PROTECTED] 
[Make changeset-threshold a cvs parameter
Yann Dirson <[EMAIL PROTECTED]>**20060606072820] 
[Compare the revision with branch only when following a branch
[EMAIL PROTECTED] 
[Revisited generation of commit entries
[EMAIL PROTECTED]
 Consider added names first, and add the old name in the abstract method.
 This should fix #39 where parent dirs are committed after child, either
 in very large svn commit or coming from CVS.
] 
[Add fake events at the end of the loop
[EMAIL PROTECTED] 
[TAG Version 0.9.23
[EMAIL PROTECTED] 
Patch bundle hash:
1f30bc1256857fd9e38efb306441b7b81357dda0
-----BEGIN PGP SIGNATURE-----
Version: GnuPG v1.4.2.2 (GNU/Linux)

iD8DBQFEmEf3IigsijWFMDIRAgydAKCnkLCZDPKyFVdQMFK2qddUwPHNUACg/DMW
42JxbQ7O0LwxP+X922IcScI=
=wsFQ
-----END PGP SIGNATURE-----
_______________________________________________
Tailor mailing list
[email protected]
http://lists.zooko.com/mailman/listinfo/tailor

Reply via email to