Re: [PATCH] gitk i18n: Added Bulgarian translation (304t)

2014-01-21 Thread Paul Mackerras
On Wed, Jan 15, 2014 at 01:27:29PM +0200, al_sho...@yahoo.com wrote: From: Alexander Shopov a...@kambanaria.org Signed-off-by: Alexander Shopov a...@kambanaria.org Thanks, applied. Paul. -- To unsubscribe from this list: send the line unsubscribe git in the body of a message to

Re: [PATCH] gitk: Comply with XDG base directory specification

2014-01-21 Thread Paul Mackerras
On Fri, Dec 13, 2013 at 07:46:36PM +, Astril Hayato wrote: Write the gitk config data to $XDG_CONFIG_HOME/git/gitk ($HOME/.config/git/gitk by default) in line with the XDG specification. This makes it consistent with git which also follows the spec. If $HOME/.gitk already exists use

Re: [PATCH] gitk: fix mistype

2014-01-21 Thread Paul Mackerras
On Sat, Jan 18, 2014 at 02:58:51PM +0200, Max Kirillov wrote: Signed-off-by: Max Kirillov m...@max630.net Thanks, applied. Paul. -- To unsubscribe from this list: send the line unsubscribe git in the body of a message to majord...@vger.kernel.org More majordomo info at

Re: [PATCH] gitk: chmod +x po2msg

2014-01-21 Thread Paul Mackerras
On Mon, Dec 02, 2013 at 11:12:43AM -0800, Junio C Hamano wrote: From: Jonathan Nieder jrnie...@gmail.com Date: Mon, 25 Nov 2013 13:00:10 -0800 The Makefile only runs it using tclsh, but because the fallback po2msg script has the usual tcl preamble starting with #!/bin/sh it can also be run

Re: [PATCHv2] gitk: Replace next and prev buttons with down and up arrows.

2014-01-22 Thread Paul Mackerras
On Tue, Jan 21, 2014 at 10:33:02AM -0500, Marc Branchaud wrote: On 13-12-18 11:04 AM, Marc Branchaud wrote: Users often find that next and prev do the opposite of what they expect. For example, next moves to the next match down the list, but that is almost always backwards in time.

Re: [PATCH v2] gitk: Comply with XDG base directory specification

2014-01-22 Thread Paul Mackerras
On Tue, Jan 21, 2014 at 07:10:16PM +, Astril Hayato wrote: Write the gitk config data to $XDG_CONFIG_HOME/git/gitk ($HOME/.config/git/gitk by default) in line with the XDG specification. This makes it consistent with git which also follows the spec. If $HOME/.gitk already exists use

Re: [PATCHv2] gitk: Replace next and prev buttons with down and up arrows.

2014-01-23 Thread Paul Mackerras
On Wed, Jan 22, 2014 at 12:18:27PM -0800, Junio C Hamano wrote: Is this a good time for me to pull from you? I see these on your 'master' branch. 8f86339 gitk: Comply with XDG base directory specification 786f15c gitk: Replace next and prev buttons with down and up arrows

Re: [PATCH v2 1/3] gitk refactor: remove boilerplate for configuration variables

2014-10-30 Thread Paul Mackerras
On Sun, Sep 14, 2014 at 11:35:57PM +0300, Max Kirillov wrote: Signed-off-by: Max Kirillov m...@max630.net This is a nice simplification, applied, thanks. Paul. -- To unsubscribe from this list: send the line unsubscribe git in the body of a message to majord...@vger.kernel.org More majordomo

Re: [PATCH v2 2/3] gitk: write only changed configuration variables

2014-10-30 Thread Paul Mackerras
On Sun, Sep 14, 2014 at 11:35:58PM +0300, Max Kirillov wrote: When gitk contains some changed parameter, and there is existing instance of gitk where the parameter is still old, it is reverted to that old value when the instance exits. Instead, store a parameter in config only it is has been

Re: [PATCH gitk 0/4] gitk support for git log -L

2013-08-18 Thread Paul Mackerras
Hi Thomas, On Wed, Jul 31, 2013 at 03:17:41PM +0200, Thomas Rast wrote: Jens Lehmann jens.lehm...@web.de writes: Am 29.07.2013 21:37, schrieb Thomas Rast: Thomas Rast tr...@inf.ethz.ch writes: Thomas Rast tr...@inf.ethz.ch writes: Now that git log -L has hit master, I figure it's

Re: [PATCH] gitk: Rename 'tagcontents' to 'cached_tagcontent'

2012-09-12 Thread Paul Mackerras
On Wed, Sep 12, 2012 at 02:25:28AM -0700, Junio C Hamano wrote: Junio C Hamano gits...@pobox.com writes: I've applied these two, on top of Paul's master branch at git://ozlabs.org/~paulus/gitk.git and tentatively queued in 'pu', but I would prefer to see it eyeballed by and

Re: [PATCH] gitk: Synchronize highlighting in file view when scrolling diff

2012-09-18 Thread Paul Mackerras
On Tue, Sep 18, 2012 at 07:57:54AM +0200, Stefan Haller wrote: Whenever the diff pane scrolls, highlight the corresponding file in the file list on the right. For a large commit with many files and long per-file diffs, this makes it easier to keep track of what you're looking at. I like this

Re: [PATCH v3] gitk: Synchronize highlighting in file view when scrolling diff

2012-09-23 Thread Paul Mackerras
On Wed, Sep 19, 2012 at 08:17:27PM +0200, Stefan Haller wrote: Here's one way how to address your concern. When pressing the search button it will highlight the file that contains the current search hit; if you then scroll from there though, the normal mechanism kicks in again and might

Re: [PATCH 0/2] gitk: Better highlighting of search results

2012-09-23 Thread Paul Mackerras
On Sat, Sep 22, 2012 at 09:40:23AM +0200, Stefan Haller wrote: Here's something that has been bugging me for a long time: when using the incremental search feature, it's hard to tell what happens when clicking the Search button (or type Ctrl-S) repeatedly. It does have the concept of a current

Re: [PATCH] gitk: Work around empty back and forward images when buttons are disabled

2012-09-23 Thread Paul Mackerras
On Sat, Sep 22, 2012 at 09:46:48AM +0200, Stefan Haller wrote: On Mac, the back and forward buttons show an empty rectange instead of a grayed-out arrow when they are disabled. The reason is a Tk bug on Mac that causes disabled images not to draw correctly (not to draw at all, that is); see

Re: [PATCH] gitk: refresh the index before running diff-files

2012-09-29 Thread Paul Mackerras
On Fri, Sep 28, 2012 at 04:50:54PM -0400, Jeff King wrote: +proc refresh_index {} { +global need_index_refresh +if { $need_index_refresh } { + exec sh -c git update-index --refresh /dev/null 21 || true + set need_index_refresh false +} +} Unfortunately this will wait

Re: [PATCH v2 0/2] Re: gitk: can't reload commits with new key binding

2012-10-21 Thread Paul Mackerras
On Tue, Oct 02, 2012 at 11:04:43AM -0400, Andrew Wong wrote: Refactored the code for binding modified function keys as Junio suggested. Andrew Wong (2): gitk: Refactor code for binding modified function keys gitk: Use bindshiftfunctionkey to bind Shift-F5 gitk | 10 +++--- 1

Re: [BUG] gitk: clicking on a connecting line produces can't read cflist_top

2012-10-21 Thread Paul Mackerras
On Thu, Oct 04, 2012 at 10:50:15PM +0200, Stefan Haller wrote: Sorry, I didn't realize that there is a display mode where the list of files is empty, not even showing a Comments entry. Here's a patch that fixes it, plus another patch that is only related in so far as the bug that it fixes

Re: [PATCH] gitk: Fix crash when not using themed widgets

2012-10-21 Thread Paul Mackerras
On Sun, Oct 07, 2012 at 11:21:14PM +0200, Marcus Karlsson wrote: When configured not to use themed widgets gitk may crash on launch with a message that says that the image bm-left disabled bm-left-gray doesn't exist. This happens when the left and right arrow buttons are created. The crash

Re: [PATCH] gitk: Update Swedish translation (296t)

2012-10-21 Thread Paul Mackerras
On Wed, Oct 03, 2012 at 08:22:17AM +0100, Peter Krefting wrote: This patch updates the Swedish translation for gitk. To avoid the UTF-8 encoding of the file to be mangled by my email software, the patch is attached gzip'ed. -- \\// Peter - http://www.softwolves.pp.se/ Thanks, applied.

Re: [PATCH] gitk: read and write a repository specific configuration file

2012-12-09 Thread Paul Mackerras
On Sun, Dec 09, 2012 at 01:18:08AM -0800, Junio C Hamano wrote: Łukasz Stelmach stl...@poczta.fm writes: Enable gitk read and write repository specific configuration file: .git/k if the file exists. To make gitk use the local file simply create one, e.g. with the touch(1) command.

Re: [RFC/PATCH] gitk: Visualize a merge commit with a right-click in gitk

2012-12-30 Thread Paul Mackerras
On Sat, Dec 29, 2012 at 07:16:16PM -0500, Jason Holden wrote: When first doing a merge in git-gui, the Visualize Merge button is quite helpful to visualize the changes due to a merge. But once the merge is complete, there's not a similarly convenient way to recreate that merge view in gitk.

Re: [PATCH] gitk: Replaced green with #00FF00.

2012-12-31 Thread Paul Mackerras
On Thu, Dec 27, 2012 at 09:27:37AM -0800, Junio C Hamano wrote: Peter Hofmann git-...@uninformativ.de writes: Subject: Re: [PATCH] gitk: Replaced green with #00FF00. gitk looks pretty awkward with Tk 8.6. green is simply too dark now because it has changed from #00FF00 to #008000.

Re: Bug in latest gitk - can't click lines connecting commits

2013-01-01 Thread Paul Mackerras
On Tue, Jan 01, 2013 at 06:54:23PM +0100, Stefan Haller wrote: Jason Holden jason.k.holden.sw...@gmail.com wrote: I was testing some patches against the latest gitk, and noticed that when I click the mouse on the lines that connect the commits in the history graph, I get an error popup

Re: [PATCH] gitk tag delete/rename support

2013-01-01 Thread Paul Mackerras
On Sun, Nov 25, 2012 at 08:05:45PM +0100, Leon KUKOVEC wrote: Right clicking on a tag pops up a menu, which allows tag to be renamed or deleted. Nice idea, but I am concerned that renaming a tag that refers to a tag object will turn it into a lightweight tag, which would be surprising for

Re: [PATCH] gitk: add a checkbox to control the visibility of tags

2013-01-01 Thread Paul Mackerras
On Sat, Dec 01, 2012 at 06:16:25PM -0800, Junio C Hamano wrote: Łukasz Stelmach stl...@poczta.fm writes: Enable hiding of tags displayed in the tree as yellow labels. If a repository is used together with a system like Gerrit there may be quite a lot of tags used to control building and

Re: Bug in latest gitk - can't click lines connecting commits

2013-01-23 Thread Paul Mackerras
On Tue, Jan 22, 2013 at 09:28:23AM -0800, Junio C Hamano wrote: I notice that I have a handful of commits that I haven't pulled from your repository, and the last commit on your 'master' is about 20 days old. Is it safe for me to pull these now? Yes, please pull them now. Regards, Paul. --

[PATCH] trivial argument parsing patches

2005-04-15 Thread Paul Mackerras
-diff -s x doesn't (and ignores the extra argument). Signed-off-by: Paul Mackerras [EMAIL PROTECTED] rev-tree.c: 7bf9e9a92f528485360f374239809714ce7a19f5 --- rev-tree.c +++ rev-tree.c 2005-04-15 21:17:16.0 +1000 @@ -189,8 +189,8 @@ char *arg = argv[i

naive question

2005-04-19 Thread Paul Mackerras
Is there a way to check out a tree without changing the mtime of any files that you have already checked out and which are the same as the version you are checking out? It seems that checkout-cache -a doesn't overwrite any existing files, and checkout-cache -f -a overwrites all files and gives

[PATCH] optimized SHA1 for powerpc

2005-04-21 Thread Paul Mackerras
. + * + * Copyright (C) 2005 Paul Mackerras [EMAIL PROTECTED] + * + * This version assumes we are running on a big-endian machine. + * It calls an external sha1_core() to process blocks of 64 bytes. + */ +#include stdio.h +#include string.h +#include sha1.h + +extern void sha1_core(uint32_t *hash

Re: Mozilla SHA1 implementation

2005-04-22 Thread Paul Mackerras
cd .. ; tar czvf dircache.tar.gz dir-cache diff -urN git.orig/ppc/sha1.c git/ppc/sha1.c --- /dev/null 2005-04-04 12:56:19.0 +1000 +++ git/ppc/sha1.c 2005-04-22 16:29:19.0 +1000 @@ -0,0 +1,72 @@ +/* + * SHA-1 implementation. + * + * Copyright (C) 2005 Paul Mackerras

Re: Mozilla SHA1 implementation

2005-04-22 Thread Paul Mackerras
Linus Torvalds writes: Interestingly, the Mozilla SHA1 code is about twice as fast as the openssl code on my G5, and judging by the disassembly, it's because it's much simpler. I think the openssl people have unrolled all the loops totally, which tends to be a disaster on any half-way modern

Re: Shipping gitk as part of core git.

2005-07-31 Thread Paul Mackerras
Junio C Hamano writes: It appears that gitk gets wider test coverage only after it is pulled into git.git repository. I think it would be a good idea for me to pull from you often. Yes, I agree. I'm happy to send you an email when I have committed changes to gitk if that will help.

Re: gitk SHA link hovers

2005-08-07 Thread Paul Mackerras
Linus Torvalds writes: This makes the cursor change when you hover over a SHA1 link with the new hypertext gitk commit ID linking feature. I committed something based on this but with extra stuff to make the cursor changes work with the change from the normal cursor to the watch cursor and

Re: gitk hyperlinks

2005-08-07 Thread Paul Mackerras
Junio C Hamano writes: I did, and will push it out shortly, but I think you need this patch. To make later merges from you easier, I will not put this in my master branch. I have committed this plus the hand cursor for the links plus a small change to make gitk display commit messages

Re: gitk with hyperspace support

2005-08-17 Thread Paul Mackerras
Junio C Hamano writes: The new output looks a lot less cluttering and I like it very much, but it is confusing to me on one count. I clicked one arrowhead pointing downward, expecting that the pane would jump scroll to show the counterpart arrowhead, and was dissapointed OK, you're the

Re: [PATCH] Teach parse_commit_buffer about grafting.

2005-08-17 Thread Paul Mackerras
Junio C Hamano writes: My Tcl/Tk is really rusty, and I do not like this patch, but here is my stab at teaching the code that reads commit objects how to use grafts as well. I added support for grafts to gitk just yesterday, and it should be on kernel.org by now. I also committed the changes

Re: [PATCH] Teach parse_commit_buffer about grafting.

2005-08-18 Thread Paul Mackerras
Linus Torvalds writes: Paul, I hate to tell you about yet another flag to git-rev-list, but did you realize that in addition to all the other magic flags, there's a flag called --parents? Cool. I didn't realize that. The current version uses it now. Umm. git-rev-list really does

Re: please pull ppc64-2.6.git

2005-08-29 Thread Paul Mackerras
Linus Torvalds writes: echo /pub/scm/linux/kernel/git/torvalds/linux-2.6/objects objects/info/alternates Did that (s/linux-2.6/linux-2.6.git/ actually...) What can one put in the alternates file? Just an absolute path, or does a relative path or a URL work too? or similar. That

Re: gitk with hyperspace support

2005-08-29 Thread Paul Mackerras
Junio C Hamano writes: The new output looks a lot less cluttering and I like it very much, but it is confusing to me on one count. I clicked one arrowhead pointing downward, expecting that the pane would jump scroll to show the counterpart arrowhead, and was dissapointed that it did not

Re: [PATCH] gitk: Move hard-coded colors to .gitk

2013-04-01 Thread Paul Mackerras
On Wed, Mar 27, 2013 at 02:40:51PM +0100, Gauthier Östervall wrote: Colors that are changeable in Preferences gave no sufficient control, putting colors in the config file allows for easier configuration and sharing of color schemes. win32: Make the default foreground color that of window

Re: [Patch] gitk: added a file history browser

2013-04-01 Thread Paul Mackerras
On Wed, Feb 20, 2013 at 12:14:20AM +0100, Dirk wrote: Hi, I added a file history browser for a single file in the gitk. I use git log with the option --follow. This option is useful for the user switch from cvs to git. He misses a history from only one file and the function Highlight

Re: [PATCH] gitk: Display the date of a tag in a human friendly way.

2013-04-01 Thread Paul Mackerras
On Sun, Feb 03, 2013 at 06:37:42PM +, Anand Kumria wrote: Hi Pau, I've not been able to find the canonical location of your gitk repository. I've tried kernel.org, samba.org and ozlabs.org; none of them to have it - nor does any amount of google searching I do reveal the location. I

Re: [PATCH] gitk: workaround Tcl/Tk Cmd-TAB behavior on OSX

2013-04-19 Thread Paul Mackerras
On Thu, Apr 11, 2013 at 01:02:48AM +0600, Tair Sabirgaliev wrote: On OSX Tcl/Tk application windows are created behind all the applications down the stack of windows. This is very annoying, because once a gitk window appears, it's the downmost window and switching to it is pain. The patch

Re: [PATCH] gitk: add support for -G'regex' pickaxe variant

2013-05-10 Thread Paul Mackerras
On Tue, May 07, 2013 at 01:17:18PM -0400, Martin Langhoff wrote: I just did git rebase origin/master for the umpteenth time, which reminded me this nice patch is still pending. ping? I thought I had replied to this patch; maybe I only thought about it. Given that we already have a selector

Re: [PATCH] gitk: add support for -G'regex' pickaxe variant

2013-05-11 Thread Paul Mackerras
On Fri, May 10, 2013 at 11:13:22PM -0700, Jonathan Nieder wrote: Paul Mackerras wrote: I thought I had replied to this patch; maybe I only thought about it. Given that we already have a selector to choose between exact and regexp matching, it seems more natural to use that rather than

Re: [PATCH] gitk: Add menu item for reverting commits

2013-05-11 Thread Paul Mackerras
On Sat, Apr 27, 2013 at 04:36:13PM +0200, Knut Franke wrote: Sometimes it's helpful (at least psychologically) to have this feature easily accessible. Code borrows heavily from cherrypick. Signed-off-by: Knut Franke knut.fra...@gmx.de Thanks, applied, after undoing the linewrapping (done by

Re: [PATCH] gitk: simplify file filtering

2013-05-11 Thread Paul Mackerras
On Sat, Apr 27, 2013 at 05:01:39PM -0500, Felipe Contreras wrote: git diff is perfectly able to do this with '-- files', no need for manual filtering. Signed-off-by: Felipe Contreras felipe.contre...@gmail.com Thanks, applied, with the commit message expanded to say that this makes

Re: [PATCH] gitk: simplify file filtering

2013-05-12 Thread Paul Mackerras
On Sun, May 12, 2013 at 03:54:14PM -0700, Junio C Hamano wrote: Paul Mackerras pau...@samba.org writes: On Sat, Apr 27, 2013 at 05:01:39PM -0500, Felipe Contreras wrote: git diff is perfectly able to do this with '-- files', no need for manual filtering. Signed-off-by: Felipe

Re: [PATCH] gitk: simplify file filtering

2013-05-13 Thread Paul Mackerras
On Sun, May 12, 2013 at 03:54:14PM -0700, Junio C Hamano wrote: Thanks; is this the last one for this cycle and is your usual branch ready to be pulled? It is now; please pull from the usual place, git://ozlabs.org/~paulus/gitk.git. Thanks, Paul. -- To unsubscribe from this list: send the

Re: [PATCH] gitk: simplify file filtering

2013-05-13 Thread Paul Mackerras
On Mon, May 13, 2013 at 10:58:49AM +0200, Stefan Haller wrote: Would you also consider Tair Sabirgaliev's v2 patch for not launching gitk in the background on Mac? This fixes a very serious usability problem. http://permalink.gmane.org/gmane.comp.version-control.git/43 Yes, I put it

Re: [PATCH v2] gitk: Add a horizontal scrollbar for commit history

2013-10-31 Thread Paul Mackerras
that if there are more than 3 tags or they would take up more than a quarter of the width of the pane, we instead display a single tag icon with a legend inside it like 4 tags If the user clicks on the tag icon, gitk then displays all the tags in the diff display pane. Signed-off-by: Paul Mackerras

Re: [PATCH v3 gitk 0/5] gitk -L

2013-12-01 Thread Paul Mackerras
On Sat, Nov 16, 2013 at 06:37:39PM +0100, Thomas Rast wrote: These patches implement 'gitk -L'. They are exactly the same as the gitk patches from v2 at http://thread.gmane.org/gmane.comp.version-control.git/227151/focus=236903 except that they apply to the gitk-git tree at

Re: [PATCH v2] gitk: make pointer selection visible in highlighted lines

2013-12-01 Thread Paul Mackerras
On Thu, Nov 28, 2013 at 11:20:18PM +0200, Max Kirillov wrote: Custom tags have higher priority than `sel`, and when they define their own background, it makes selection invisible. Especially inconvenient for `filesep` (to select filenames), but also affects other tags. Use `tag raise` to fix

Re: [PATCH] gitk: Allow displaying time zones from author and commit timestamps

2014-06-14 Thread Paul Mackerras
On Mon, May 12, 2014 at 07:25:58AM -0400, Anders Kaseorg wrote: Now gitk can be configured to display author and commit dates in their original timezone, by putting %z into datetimeformat in ~/.gitk. Signed-off-by: Anders Kaseorg ande...@mit.edu Thanks, applied. Paul. -- To unsubscribe from

Re: [PATCH] gitk: show staged submodules regardless of ignore config

2014-06-14 Thread Paul Mackerras
On Fri, Jun 06, 2014 at 02:08:29PM -0700, Junio C Hamano wrote: From: Jens Lehmann jens.lehm...@web.de Date: Tue, 8 Apr 2014 21:36:08 +0200 Currently setting submodule.name.ignore and/or diff.ignoreSubmodules to all suppresses all output of submodule changes for gitk. This is really

Re: [PATCH] gitk: switch to patch mode when searching for line origin

2014-06-14 Thread Paul Mackerras
On Sat, Apr 05, 2014 at 11:38:50PM +0300, Max Kirillov wrote: If the Show origin of this line is started from tree mode, it still shows the result in tree mode, which I suppose not what user expects to see. Thanks, applied. Paul. -- To unsubscribe from this list: send the line unsubscribe git

Re: [PATCH] gitk: replace SHA1 entry field on keyboard paste

2014-06-14 Thread Paul Mackerras
On Thu, Mar 20, 2014 at 01:58:51AM -0700, Ilya Bobyr wrote: We already replace old SHA with the clipboard content for the mouse paste event. It seems reasonable to do the same when pasting from keyboard. Signed-off-by: Ilya Bobyr ilya.bo...@gmail.com Thanks, applied. Paul. -- To

Re: [PATCH] gitk: honor TMPDIR when viewing external diffs

2014-06-14 Thread Paul Mackerras
On Fri, Jun 13, 2014 at 02:13:37PM -0700, David Aguilar wrote: gitk fails to show diffs when browsing a read-only repository. This is due to gitk's assumption that the current directory is always writable. Teach gitk to honor either the GITK_TMPDIR or TMPDIR environment variables. This

Re: [PATCH] gitk: catch mkdtemp errors

2014-06-27 Thread Paul Mackerras
On Wed, Jun 18, 2014 at 07:53:14PM -0700, David Aguilar wrote: 105b5d3fbb1c00bb0aeaf9d3e0fbe26a7b1993fc introduced a dependency on mkdtemp, which is not available on Windows. Use the original temporary directory behavior when mkdtemp fails. This makes the code use mkdtemp when available and

Re: [PATCH] gitk: catch mkdtemp errors

2014-06-27 Thread Paul Mackerras
On Thu, Jun 26, 2014 at 01:47:36PM -0700, Junio C Hamano wrote: David Aguilar dav...@gmail.com writes: 105b5d3fbb1c00bb0aeaf9d3e0fbe26a7b1993fc introduced a dependency on mkdtemp, which is not available on Windows. Use the original temporary directory behavior when mkdtemp fails. This

Re: [PATCH v2] l10n: gitk/ca.po: add Catalan translation

2015-03-21 Thread Paul Mackerras
On Sun, Feb 01, 2015 at 10:53:32PM -0700, Alex Henrie wrote: Signed-off-by: Alex Henrie alexhenri...@gmail.com Thanks, applied. Paul. -- To unsubscribe from this list: send the line unsubscribe git in the body of a message to majord...@vger.kernel.org More majordomo info at

Re: [PATCH 1/1] gitk: po/ru.po russian translation typo fixed

2015-03-21 Thread Paul Mackerras
On Fri, Nov 14, 2014 at 05:05:28PM +0600, 0xAX wrote: Signed-off-by: 0xAX kuleshovm...@gmail.com --- po/ru.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) Thanks, applied. Paul. -- To unsubscribe from this list: send the line unsubscribe git in the body of a message to

Re: [PATCH] gitk: Remove tcl-format flag from a message that shouldn't have it

2015-03-21 Thread Paul Mackerras
On Mon, Feb 09, 2015 at 01:55:23PM -0800, Junio C Hamano wrote: Alex Henrie alexhenri...@gmail.com writes: This is just a friendly reminder that this patch has been sitting in the mailing list archives for a couple of weeks, and it has not yet been accepted or commented on. I think

Re: [PATCH] gitk: Enable mouse horizontal scrolling in diff pane

2015-03-21 Thread Paul Mackerras
On Sat, Nov 15, 2014 at 03:05:06PM +0100, Gabriele Mazzotta wrote: Currently it's required to hold Shift and scroll up and down to move horizontally. Listen to Button-6 and Button-7 events too to make horizontal scrolling handier with touchpads and some mice. Signed-off-by: Gabriele Mazzotta

Re: [PATCH v5 0/3] gitk: save only changed configuration on exit

2015-03-21 Thread Paul Mackerras
On Wed, Mar 04, 2015 at 05:58:15AM +0200, Max Kirillov wrote: The changes: * remove unused views_modified_names assignment * use if {[catch...] to check saving error * split error reporting from busy wait The busy wait parameters are unchanged, mostly because I did not have time yet to

Re: [PATCH] gitk: pass --invert-grep option down to git log

2015-03-21 Thread Paul Mackerras
On Sun, Feb 15, 2015 at 11:29:10PM -0800, Junio C Hamano wrote: From: Christoph Junghans ott...@gentoo.org Date: Mon, 12 Jan 2015 18:33:32 -0700 git log --grep=string shows only commits with messages that match the given string, but sometimes it is useful to be able to show only commits

Re: A good time to pull from your gitk tree?

2015-03-24 Thread Paul Mackerras
On Mon, Mar 23, 2015 at 12:03:37PM -0700, Junio C Hamano wrote: Is it a good time for me to pull from you, or do you recommend me to wait for a bit, expecting more? We'll go in the pre-release freeze soon-ish, so I thought I should ping. Now is a good time to pull from the usual place,

Re: [PATCH v4 2/2] gitk: synchronize config write

2015-03-01 Thread Paul Mackerras
On Mon, Nov 10, 2014 at 12:20:02AM +0200, Max Kirillov wrote: If several gitk instances are closed simultaneously, safestuff procedure can run at the same time, resulting in a conflict which may cause losing of some of the instance's changes, failing the saving operation or even corrupting the

Re: [PATCH v4 1/2] gitk: write only changed configuration variables

2015-03-01 Thread Paul Mackerras
On Mon, Nov 10, 2014 at 12:20:01AM +0200, Max Kirillov wrote: When gitk contains some changed parameter, and there is existing instance of gitk where the parameter is still old, it is reverted to that old value when the instance exits. Instead, store a parameter in config only it is has been

Re: gitk won't show notes?

2015-04-11 Thread Paul Mackerras
On Wed, Apr 08, 2015 at 01:51:40PM +0200, Michael J Gruber wrote: Phillip Susi venit, vidit, dixit 07.04.2015 19:08: On 4/7/2015 10:13 AM, Michael J Gruber wrote: Seriously: gitk knows F5 and Shift-F5 for refresh, and I think the latter is the thorougher refreshment. Neither one makes

Re: [PATCH] gitk: Remove mc parameter from proc show_error

2015-04-05 Thread Paul Mackerras
On Thu, Apr 02, 2015 at 03:05:35PM -0600, Alex Henrie wrote: This partially reverts commit 8d849957d81fc0480a52570d66cc3c2a688ecb1b. ... and brings back the bug that 8d849957d81f solves, as far as I can see. If that's not the case then you need to explain that in the patch description. Paul.

Re: [PATCH 1/2] gitk: Rearrange window title to be more conventional.

2015-04-05 Thread Paul Mackerras
On Mon, Mar 23, 2015 at 10:18:16AM -0400, Marc Branchaud wrote: Signed-off-by: Marc Branchaud marcn...@xiplink.com Thanks, applied. Paul. -- To unsubscribe from this list: send the line unsubscribe git in the body of a message to majord...@vger.kernel.org More majordomo info at

Re: [RFC PATCH 2/2] gitk: Show the rev(s) the user specified on the command line in the window title.

2015-04-05 Thread Paul Mackerras
On Tue, Jan 06, 2015 at 12:52:00PM -0500, Marc Branchaud wrote: Signed-off-by: Marc Branchaud marcn...@xiplink.com --- I often open multiple gitk windows in the same working directory to examine other branches or refs in the repo. This change allows me to distinguish which window is

Re: [PATCH] gitk: Fix bad English grammar Matches none Commit Info

2015-04-05 Thread Paul Mackerras
On Thu, Apr 02, 2015 at 03:05:06PM -0600, Alex Henrie wrote: Signed-off-by: Alex Henrie alexhenri...@gmail.com --- gitk | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gitk b/gitk index 9a2daf3..30fcd30 100755 --- a/gitk +++ b/gitk @@ -4066,7 +4066,7 @@ set

Re: [PATCH] gitk: sv.po: Update Swedish translation (305t0f0u)

2015-04-05 Thread Paul Mackerras
On Fri, Mar 27, 2015 at 10:34:25AM +0100, Peter Krefting wrote: Please find attached (for text encoding reasons) an update to the Swedish translation for gitk. Thanks, applied. Paul. -- To unsubscribe from this list: send the line unsubscribe git in the body of a message to

Re: gitk drawing bug

2015-04-05 Thread Paul Mackerras
On Fri, Apr 03, 2015 at 09:28:00PM -0400, Martin d'Anjou wrote: On 15-04-03 07:05 PM, Alex Henrie wrote: 2015-02-18 12:27 GMT-07:00 Martin d'Anjou martin.danjo...@gmail.com: It appears I have uncovered inconsistent behaviour in gitk. Looks like a bug. I have a picture here:

Re: [PATCH] gitk: Alter the ordering for the Tags and heads view

2015-08-12 Thread Paul Mackerras
On Tue, Jun 02, 2015 at 07:11:10AM -0400, Michael Rappazzo wrote: In the Tags and heads view, the list of refs is globally sorted. The list of local refs (heads) is separated by the remote refs. This change re-orders the view toi be: local refs, remote refs tracked by local refs, remote refs,

Re: [PATCH] gitk: Update Bulgarian translation (307t)

2015-08-13 Thread Paul Mackerras
On Sun, Jun 28, 2015 at 11:28:13PM +0300, a...@kambanaria.org wrote: From: Alexander Shopov a...@kambanaria.org Signed-off-by: Alexander Shopov a...@kambanaria.org --- po/bg.po | 19 --- 1 file changed, 8 insertions(+), 11 deletions(-) Thanks, applied. Paul. -- To

Re: [PATCH v4] gitk: Add a Copy commit summary command

2015-08-13 Thread Paul Mackerras
On Sat, Jul 18, 2015 at 01:15:39PM +0200, Beat Bolli wrote: When referring to earlier commits in commit messages or other text, one of the established formats is abbrev-sha (summary, author-date) Add a Copy commit summary command to the context menu that puts this text for the

Re: [PATCH v2] gitk: Add a Copy commit summary command

2015-07-17 Thread Paul Mackerras
On Thu, Jul 16, 2015 at 05:29:25PM +0200, Beat Bolli wrote: When referring to earlier commits in commit messages or other text, one of the established formats is abbrev-sha (summary, author-date) Add a Copy commit summary command to the context menu that puts this text for the

Re: [PATCH v2] gitk: Add a Copy commit summary command

2015-07-18 Thread Paul Mackerras
On Fri, Jul 17, 2015 at 08:30:24AM -0700, Junio C Hamano wrote: Paul Mackerras pau...@samba.org writes: We have an item in the preferences menu to control the SHA1 length that is automatically selected when going to a new commit. It's stored in the variable $autosellen. That seems like

Re: [PATCH v4] gitk: Add a Copy commit summary command

2015-07-21 Thread Paul Mackerras
On Tue, Jul 21, 2015 at 12:19:23PM +0200, Beat Bolli wrote: Guys, can I get a Yea or Nay for this patch? Does it go in via Paul's gitk repo or directly through Junio? I'll put it in. It goes into my repo and from there into Junio's. I'm on vacation and travelling this week, so please be

Re: [PATCH] gitk: l10n: Update Catalan translation

2015-10-30 Thread Paul Mackerras
On Mon, Oct 05, 2015 at 10:26:12PM -0600, Alex Henrie wrote: > The gitk included in git 2.6.0 crashes if run from a Catalan locale. > I'm hoping that a translation update will fix this. > > Signed-off-by: Alex Henrie Should actually be fixed by a patch from Beat Bolli

Re: [PATCH] gitk: add missing accelerators

2015-10-30 Thread Paul Mackerras
quot; were left > without the ampersand. > > Add the missing ampersand characters to unbreak our international > users. > > Signed-off-by: Beat Bolli <dev+...@drbeat.li> > Cc: Paul Mackerras <pau...@samba.org> Thanks, applied. Paul. -- To unsubscribe from this

Re: [PATCH 0/4] gitk crash fix and locale updates

2015-10-30 Thread Paul Mackerras
On Tue, Oct 20, 2015 at 02:33:00PM +0200, Takashi Iwai wrote: > Hi, > > the recent change in gitk to support the menu accelerator broke the > invocation with --all option in non-English locales. Also, the whole > menu translations are gone by this, too. This patchset tries to > address these

Re: [gmane.comp.version-control.git] [PATCH 0/4] gitk crash fix and locale updates

2015-10-30 Thread Paul Mackerras
On Mon, Oct 26, 2015 at 05:16:20PM -0700, Junio C Hamano wrote: > Ping. What do you think of these? It appears that quite a many > people are getting bitten by the issues this series addresses. Yes, sorry about that. I have applied a patch from Beat Bolli fixing the basic issue, since his

Re: [PATCH] gitk: accelerators for the main menu

2015-09-13 Thread Paul Mackerras
On Wed, Sep 09, 2015 at 03:20:53PM +0200, Giuseppe Bilotta wrote: > This allows fast, keyboard-only usage of the menu (e.g. Alt+V, N to open a > new view). > > Signed-off-by: Giuseppe Bilotta Thanks, applied. Paul. -- To unsubscribe from this list: send the line

Re: [PATCH, RESEND] gitk: adjust the menu line numbers to compensate for the new entry

2015-09-13 Thread Paul Mackerras
be > adjusted when their text or state is changed. > > Signed-off-by: Beat Bolli <dev+...@drbeat.li> > Cc: Paul Mackerras <pau...@samba.org> Thanks, applied. Paul. -- To unsubscribe from this list: send the line "unsubscribe git" in the body of a me

Re: [PATCH 1/2] gitk: match ttk fonts to gitk fonts

2015-12-18 Thread Paul Mackerras
On Tue, Dec 08, 2015 at 08:05:50AM +0100, Giuseppe Bilotta wrote: > The fonts set in setoptions aren't consistently picked up by ttk, who > uses its own predefined fonts. This is noticeable when switching > between using and not using ttk with custom fonts or in HiDPI settings > (where the default

Re: [PATCH v3] gitk: add -C commandline parameter to change path

2015-12-18 Thread Paul Mackerras
On Mon, Nov 09, 2015 at 01:45:22PM +0200, Juha-Pekka Heikkila wrote: > This patch adds -C (change working directory) parameter to > gitk. With this parameter, instead of need to cd to directory > with .git folder, one can point the correct folder from > commandline. > > Signed-off-by: Juha-Pekka

Re: [PATCH] gitk: sv.po: Update Swedish translation (311t)

2015-12-18 Thread Paul Mackerras
Thanks, applied. Paul. -- To unsubscribe from this list: send the line "unsubscribe git" in the body of a message to majord...@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html

Re: [RFPR] updates for 2.7?

2015-12-18 Thread Paul Mackerras
On Tue, Dec 15, 2015 at 03:09:44PM -0800, Junio C Hamano wrote: > Git 2.7-rc1 has just been tagged, and the remainder of the year will > be for the stabilization, fixes to brown-paper-bag bugs, reverts of > regressions, etc., but I haven't seen updates to the various > subsystems you guys maintain

Re: [Q] updates to gitk, git-gui and git-svn for 2.8?

2016-03-19 Thread Paul Mackerras
Hi Junio, > If there are pending updates for the upcoming release, please let me > know and tell me what to pull. Please pull from my gitk repository. Thanks, Paul. The following changes since commit 0de75aafb66b22a04e6c90c0baf15dca11bddb3c: Merge branch 'ja.po' of

Re: [PATCH] gitk: update German translation

2016-03-19 Thread Paul Mackerras
Thanks, applied. Paul. -- To unsubscribe from this list: send the line "unsubscribe git" in the body of a message to majord...@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html

Re: [PATCH] gitk: Update Bulgarian translation (311t)

2016-03-19 Thread Paul Mackerras
Thanks, applied. Paul. -- To unsubscribe from this list: send the line "unsubscribe git" in the body of a message to majord...@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html

Re: [PATCH v2 1/2] gitk: alter the ordering for the "Tags and heads" view

2016-03-19 Thread Paul Mackerras
On Fri, Mar 18, 2016 at 02:51:36PM -0400, Michael Rappazzo wrote: > In the "Tags and heads" view, the list of refs is globally sorted. > Because of this, the list of local refs (heads) can be interrupted by the > list of remote refs. This change re-orders the view to be: local refs, > remote refs

Re: [PATCH v2 2/2] gitk: add an option to enable sorting the "Tags and heads" view by ref type

2016-03-19 Thread Paul Mackerras
On Fri, Mar 18, 2016 at 02:51:37PM -0400, Michael Rappazzo wrote: > Signed-off-by: Michael Rappazzo This looks to me like the kind of thing that could have a checkbox in the Preferences window and get saved on disk along with other preferences, rather than only being

Re: [PATCH 1/2] gitk: Add a 'rename' option to the branch context menu

2016-03-19 Thread Paul Mackerras
On Fri, Jan 15, 2016 at 10:38:49PM +0100, Rogier Goossens wrote: > > Signed-off-by: Rogier Goossens This is a nice idea; I just have some comments about the Tcl here: > @@ -9756,15 +9831,19 @@ proc headmenu {x y id head} { > stopfinding > set headmenuid $id

Re: [PATCH] gitk: Follow themed bgcolor in help dialogs

2016-03-19 Thread Paul Mackerras
On Thu, Feb 04, 2016 at 03:32:19AM +0100, Guillermo S. Romero wrote: > Make Help > About & Key bindings dialogs readable if theme > has changed font color to something incompatible with white. > > Signed-off-by: Guillermo S. Romero Thanks, applied. Paul. -- To

  1   2   >