Compare commits

...

97 Commits

Author SHA1 Message Date
00e9de72c8 git-gui 0.13
Signed-off-by: Pat Thoyts <patthoyts@users.sourceforge.net>
2010-09-14 22:42:37 +01:00
2473543caa git-gui: avoid mis-encoding the copyright message on Windows.
On Windows the tcl script file will use the system encoding and attempting
to convert the copyright mis-encodes the string. Instead, keep the message
as ASCII and substitute in the correct unicode character when running.

Signed-off-by: Pat Thoyts <patthoyts@users.sourceforge.net>
2010-09-13 20:41:42 +01:00
421a31e22d git-gui: Update Swedish translation (521t).
Signed-off-by: Peter Krefting <peter@softwolves.pp.se>
Signed-off-by: Pat Thoyts <patthoyts@users.sourceforge.net>
2010-09-13 19:25:55 +01:00
aef0b48ef0 git-gui: ensure correct application termination in git-gui--askpass
With Tk 8.5 the askpass utility can hang waiting for the wish shell
implicit event loop to exit. This patch uses an explicit event loop
to ensure correct application termination.

Reported-by: Anders Kaseorg <andersk@mit.edu>
Tested-by: Jonathan Nieder <jrnieder@gmail.com>
Signed-off-by: Pat Thoyts <patthoyts@users.sourceforge.net>
2010-08-18 23:19:24 +01:00
d5257fb3c1 git-gui: handle textconv filter on Windows and in development
When developing/testing we run git-gui.sh directly and the makefile
configured variables are not properly set. Configure the new shellpath
accessor to handle this case.

On Windows we may not find the shell so in this case revert to simply
executing the filter command without the shell intermediate.

Signed-off-by: Pat Thoyts <patthoyts@users.sourceforge.net>
2010-08-12 21:37:32 +01:00
62f9a632c8 git-gui: use shell to launch textconv filter in "blame"
The textconv filters may include multiple arguments and may make use
of unix shell features. To maintain compatibility with 'git blame'
ensure these commands are passed through bash.

Reported-by: Kirill Smelkov <kirr@landau.phys.spbu.ru>
Signed-off-by: Matthieu Moy <Matthieu.Moy@imag.fr>
Signed-off-by: Pat Thoyts <patthoyts@users.sourceforge.net>
2010-08-12 21:35:09 +01:00
780777720a git-gui: display error launching blame as a message box.
This does not appear to Windows users and can follow the form of the fatal
error messages near the top of the script file.

Signed-off-by: Pat Thoyts <patthoyts@users.sourceforge.net>
2010-08-08 00:07:43 +01:00
ea47503d4d git-gui: Make usage statement visible on Windows.
On Windows stdout and stderr are not connected to anything so the usage
statement is never shown to the user when an error is made with a command
line like 'git gui browser'. Use a messagebox on windows.

Signed-off-by: Pat Thoyts <patthoyts@users.sourceforge.net>
2010-08-08 00:07:01 +01:00
2810a58dba git-gui: fix size and position of window panes on startup
The themed panedwindow needs to have the sash position set after the
widget has been mapped therefore apply this setting in the Map event
binding. To avoid visible redraws as the application is constructed
the main window should be withdrawn until all the widgets have been added

Signed-off-by: Pat Thoyts <patthoyts@users.sourceforge.net>
2010-08-02 13:42:45 +01:00
9cb268c426 git-gui: mc cannot be used before msgcat has been loaded
If someone attempts to use an older version that Tk 8.4 the error was
masked by the lack of a mc command.

Signed-off-by: Pat Thoyts <patthoyts@users.sourceforge.net>
2010-08-02 12:13:05 +01:00
1fbaccad4d git-gui: use textconv filter for diff and blame
Create a checkbox "Use Textconv For Diffs and Blame" in git-gui options.
If checked and if the driver for the concerned file exists, git-gui calls diff
and blame with --textconv option

Signed-off-by: Clément Poulain <clement.poulain@ensimag.imag.fr>
Signed-off-by: Diane Gasselin <diane.gasselin@ensimag.imag.fr>
Signed-off-by: Axel Bonnet <axel.bonnet@ensimag.imag.fr>
Signed-off-by: Matthieu Moy <Matthieu.Moy@imag.fr>
Signed-off-by: Pat Thoyts <patthoyts@users.sourceforge.net>
2010-07-30 10:05:27 +01:00
85123549f0 git-gui: Avoid using the <<Copy>> binding as a menu accelerator on win32
On Windows the Control-C binding is used to copy and is mapped to the Tk
virtual event <<Copy>>. In the initial git-gui dialog this is also bound
as an accelerator for the Clone menu item. The effect is that both bindings
run, copying the text but resetting the clone page or switching to the clone
page when the user tries to copy text from one of the entry fields.
This patch avoids this by using Control-L instead for Windows only.

Signed-off-by: Pat Thoyts <patthoyts@users.sourceforge.net>
2010-07-30 10:05:27 +01:00
fc17e5e5bd git-gui: fix shortcut creation on cygwin
When the user tried to create a desktop icon with git gui on cygwin
wscript was complaining about an unknown option and displaying the
non-native path as such.

Signed-off-by: Heiko Voigt <hvoigt@hvoigt.net>
Signed-off-by: Johannes Schindelin <johannes.schindelin@gmx.de>
Signed-off-by: Pat Thoyts <patthoyts@users.sourceforge.net>
2010-07-30 10:05:26 +01:00
4c79adc5c0 git-gui: fix PATH environment for mingw development environment
When creating a desktop shortcut from the gui the shortcut directly
starts wish with the git-gui script. In the msysgit development
environment some dll's reside in the mingw/bin directory which causes
that git can not start because libiconv2.dll is not found.

When using such a link the error is even more cryptic stating:
"child killed: unknown signal"

Signed-off-by: Heiko Voigt <hvoigt@hvoigt.net>
Signed-off-by: Johannes Schindelin <johannes.schindelin@gmx.de>
Signed-off-by: Pat Thoyts <patthoyts@users.sourceforge.net>
2010-07-30 09:57:26 +01:00
a197b1e89a git-gui: fix usage of _gitworktree when creating shortcut for windows
This fixes msysGit issue 425.

Signed-off-by: Heiko Voigt <heiko.voigt@mahr.de>
Signed-off-by: Johannes Schindelin <johannes.schindelin@gmx.de>
Signed-off-by: Pat Thoyts <patthoyts@users.sourceforge.net>
2010-07-30 09:57:26 +01:00
2e0cda658e git-gui: fix "Explore Working Copy" for Windows again
It has already been fixed in commit 454efb47 (git-gui (Win): make
"Explore Working Copy" more robust, 2009-04-01), but has been broken in
commit 21985a11 (git-gui: handle non-standard worktree locations,
2010-01-23) by accidentally replacing too much with a new variable.

The problem can be reproduced when starting git-gui from within a
subdirectory. The solution is to convert the path name, explorer.exe is
invoked with, to a platform native name.

Signed-off-by: Markus Heidelberg <markus.heidelberg@web.de>
Signed-off-by: Pat Thoyts <patthoyts@users.sourceforge.net>
2010-07-30 09:57:26 +01:00
b963d11827 git-gui: fix usage of themed widgets variable
There was one forgotten global so NS was not visible to the method
which resulted in an error.

Signed-off-by: Heiko Voigt <hvoigt@hvoigt.net>
2010-07-10 23:41:54 +01:00
13a3d637b2 git-gui: Handle failure of core.worktree to identify the working directory.
Commit 21985a11 'git-gui: handle non-standard worktree locations' attempts
to use either GIT_WORK_TREE or core.worktree to set the _gitworktree
variable but these may not be set which leads to a failure to launch
gitk to review history. Use _gitdir to set the location for a standard
git layout where the parent of the .git directory is the working tree.

Signed-off-by: Pat Thoyts <patthoyts@users.sourceforge.net>
2010-07-10 23:40:59 +01:00
2a9edd0305 Merge branch 'maint'
* maint:
  git-gui: check whether systems nice command works or disable it
2010-02-08 07:57:37 -08:00
9c898a18ea git-gui: check whether systems nice command works or disable it
This fixes issue 394 from msysgit. It seems that the Gnuwin32 project
provides a nice command but it returns a "not implemented" error. To
help users we now try to execute once and disable it in case it fails.

Signed-off-by: Heiko Voigt <hvoigt@hvoigt.net>
Signed-off-by: Shawn O. Pearce <spearce@spearce.org>
2010-02-08 07:56:55 -08:00
89d61592bd git-gui: update french translation
Signed-off-by: Emmanuel Trillaud <etrillaud@gmail.com>
Signed-off-by: Shawn O. Pearce <spearce@spearce.org>
2010-02-02 07:34:04 -08:00
5bf46841c0 git-gui: update Japanese translation
Update ja.po to match 2010-01-26 version of pot file.

Signed-off-by: しらいし ななこ <nanako3@lavabit.com>
Signed-off-by: Shawn O. Pearce <spearce@spearce.org>
2010-02-02 06:59:06 -08:00
e1a3f28b14 Merge branch 'maint'
* maint:
  git-gui: fix shortcut for menu "Commit/Revert Changes"
2010-01-29 07:58:56 -08:00
d6db1bbe11 git-gui: fix shortcut for menu "Commit/Revert Changes"
The shortcut was not properly recognized previously.

Signed-off-by: Heiko Voigt <heiko.voigt@mahr.de>
Signed-off-by: Shawn O. Pearce <spearce@spearce.org>
2010-01-29 07:58:52 -08:00
831cc7ebb4 git-gui: Quote git path when starting another gui in a submodule
In do_git_gui the path of the git executable has to be put into a
list, otherwise calling it will fail when when spaces are present
in its path.

Reported-by: Heiko Voigt <hvoigt@hvoigt.net>
Signed-off-by: Jens Lehmann <Jens.Lehmann@web.de>
Signed-off-by: Shawn O. Pearce <spearce@spearce.org>
2010-01-28 15:44:41 -08:00
cbdaf567c9 git-gui: update Italian translation
Signed-off-by: Michele Ballabio <barra_cuda@katamail.com>
Signed-off-by: Shawn O. Pearce <spearce@spearce.org>
2010-01-28 07:18:29 -08:00
fe9c06b7c9 git-gui: Update Swedish translation (520t0f0u)
Signed-off-by: Peter Krefting <peter@softwolves.pp.se>
Signed-off-by: Shawn O. Pearce <spearce@spearce.org>
2010-01-28 07:17:47 -08:00
c80d7be5e1 git-gui: use themed tk widgets with Tk 8.5
This patch enables the use of themed Tk widgets with Tk 8.5 and above.
These make a significant difference on Windows in making the
application appear native. On Windows and MacOSX ttk defaults to the
native look as much as possible. On X11 the user may select a theme
using the TkTheme XRDB resource class by adding an line to the
.Xresources file. The set of installed theme names is available using
the Tk command 'ttk::themes'. The default on X11 is similar to the current
un-themed style - a kind of thin bordered motif look.

A new git config variable 'gui.usettk' may be set to disable this if
the user prefers the classic Tk look. Using Tk 8.4 will also avoid the
use of themed widgets as these are only available since 8.5.

Some support is included for Tk 8.6 features (themed spinbox and native
font chooser for MacOSX and Windows).

Signed-off-by: Pat Thoyts <patthoyts@users.sourceforge.net>
Signed-off-by: Shawn O. Pearce <spearce@spearce.org>
2010-01-27 17:13:52 -08:00
ab2d3b0d7d git-gui: Update German translation (12 new or changed strings).
Signed-off-by: Shawn O. Pearce <spearce@spearce.org>
2010-01-27 17:13:47 -08:00
60eb4f1bd0 git-gui: Update translation template
Signed-off-by: Shawn O. Pearce <spearce@spearce.org>
2010-01-26 15:47:45 -08:00
73b3446b82 git-gui: Remove unused icon file_parttick
This icon hasn't been used in git gui.  I think it dates back to
the original set of icons I took from Paul Mackerras' prototype
that I turned into git gui.

Signed-off-by: Shawn O. Pearce <spearce@spearce.org>
2010-01-25 07:33:41 -08:00
0602de48f7 git-gui: use different icon for new and modified files in the index
This allows to quickly differentiate between new and modified files
in the index without selecting the file and looking at the diff.

Signed-off-by: Peter Oberndorfer <kumbayo84@arcor.de>
Signed-off-by: Shawn O. Pearce <spearce@spearce.org>
2010-01-25 07:31:38 -08:00
a9fa11fe5b git-gui: set GIT_DIR and GIT_WORK_TREE after setup
Rather than juggling with the env var GIT_DIR around the invocation of
gitk, set it and GIT_WORK_TREE after finishing setup, ensuring that any
external tool works with the setup we're running with.

This also allows us to remove a couple of conditionals when running gitk
or git gui in a submodule, as we know that the variables are present and
have to be unset and reset before and after the invocation.

Signed-off-by: Giuseppe Bilotta <giuseppe.bilotta@gmail.com>
Signed-off-by: Shawn O. Pearce <spearce@spearce.org>
2010-01-23 16:02:16 -08:00
3748b03d92 git-gui: update shortcut tools to use _gitworktree
Signed-off-by: Giuseppe Bilotta <giuseppe.bilotta@gmail.com>
Signed-off-by: Shawn O. Pearce <spearce@spearce.org>
2010-01-23 15:15:55 -08:00
29e5573d1e git-gui: handle bare repos correctly
Refactor checking for a bare repository into its own proc, that relies
on git rev-parse --is-bare-repository if possible. For older versions of
git we fall back to a logic such that the repository is considered bare
if:
 * either the core.bare setting is true
 * or the worktree is not set and the directory name ends with .git
The error message for the case of an unhandled bare repository is also
updated to reflect the fact that the problem is not the funny name but
the bareness.

The new refactored proc is also used to disable the menu entry to
explore the working copy, and to skip changing to the worktree before
the gitk invocation.

Signed-off-by: Giuseppe Bilotta <giuseppe.bilotta@gmail.com>
Signed-off-by: Shawn O. Pearce <spearce@spearce.org>
2010-01-23 15:14:21 -08:00
21985a1136 git-gui: handle non-standard worktree locations
Don't rely on the git worktree being the updir of the gitdir, since it
might not be. Instead, define (and use) a new _gitworktree global
variable, setting it to $GIT_WORK_TREE if present, falling back to
core.worktree if defined, and finally to whatever we guess the correct
worktree is. Getting core.worktree requires the config from the alleged
git dir _gitdir to be loaded early.

Supporting non-standard worktree locations also breaks the git-gui
assumption (made when calling gitk) that the worktree was the dirname of
$_gitdir and that, by consequence, the git dir could be set to the tail
of $_gitdir once we changed to the worktree root directory. Therefore,
we need to export a GIT_DIR environment variable set to the full,
normalized path of $_gitdir instead. We also skip changing to the worktree
directory if it's empty (i.e. if we're working on a bare repository).

Signed-off-by: Giuseppe Bilotta <giuseppe.bilotta@gmail.com>
Signed-off-by: Shawn O. Pearce <spearce@spearce.org>
2010-01-23 15:14:21 -08:00
ff07c3b621 git-gui: Support applying a range of changes at once
Multiple lines can be selected in the diff viewer and applied all
at once, rather than selecting "Stage Line For Commit" on each
individual line.

Signed-off-by: Jeff Epler <jepler@unpythonic.net>
Signed-off-by: Shawn O. Pearce <spearce@spearce.org>
2010-01-23 15:14:15 -08:00
25476c63e7 git-gui: Add a special diff popup menu for submodules
To make it easier for users to deal with submodules, a special diff
popup menu has been added for submodules. The "Show Less Context"
and "Show More Context" entries have been removed, as they don't make
any sense for a submodule summary. Four new entries are added to the
top of the popup menu to gain access to more detailed information
about the changes in a submodule than the plain summary does offer.

These are:
- "Visualize These Changes In The Submodule"
  starts gitk showing the selected commit range

- "Visualize These Changes In The Submodule"
  starts gitk showing the whole submodule history of the current branch

- "Visualize All Branch History In The Submodule"
  starts gitk --all in the submodule

- "Start git gui In The Submodule"
  guess what :-)

Signed-off-by: Jens Lehmann <Jens.Lehmann@web.de>
Signed-off-by: Shawn O. Pearce <spearce@spearce.org>
2010-01-23 15:14:15 -08:00
a9ae14a1c5 git-gui: Use git diff --submodule when available
Doing so is much faster and gives the same output.
Here are some numbers:

  $ time git submodule summary
  real	0m0.219s
  user	0m0.050s
  sys	0m0.111s

  $ time git diff --submodule
  real	0m0.012s
  user	0m0.003s
  sys	0m0.009s

Signed-off-by: Jens Lehmann <Jens.Lehmann@web.de>
Signed-off-by: Shawn O. Pearce <spearce@spearce.org>
2010-01-23 15:14:15 -08:00
87cd09f43e git-gui: work from the .git dir
When git-gui is run from a .git dir, _gitdir would be set to "." by
rev-parse, something that confuses the worktree detection.

Fix by expanding the value of _gitdir to pwd in this special case.

Signed-off-by: Giuseppe Bilotta <giuseppe.bilotta@gmail.com>
Signed-off-by: Shawn O. Pearce <spearce@spearce.org>
2010-01-23 15:14:04 -08:00
390425bdef git-gui: Fix applying a line when all following lines are deletions
If a diff looked like:

 @@
  context
 -del1
 -del2

and you wanted to stage the deletion 'del1', the generated patch
wouldn't apply because it was missing the line 'del2' converted to
context, but this line was counted in the @@-line

Signed-off-by: Jeff Epler <jepler@unpythonic.net>
Signed-off-by: Shawn O. Pearce <spearce@spearce.org>
2010-01-23 15:00:09 -08:00
7ec2b69f1a git-gui: Correct file_states when unstaging partly staged entry
When unstaging a partly staged file or submodule, the file_states
list was not updated properly (unless unstaged linewise). Its
index_info part did not contain the former head_info as it should
have but kept its old value.

This seems not to have had any bad effects but diminishes the value
of the file_states list for future enhancements.

Signed-off-by: Jens Lehmann <Jens.Lehmann@web.de>
Signed-off-by: Shawn O. Pearce <spearce@spearce.org>
2010-01-23 14:46:13 -08:00
e27d106ec4 git-gui: Fix gitk for branch whose name matches local file
When trying to run gitk on a branch name whose name matches a local
file, it will toss an error saying that the name is ambiguous. Adding
a pair of dashes will make gitk parse the options to the left of
it as branch names. Since wish eats the first pair of dashes we
throw at it, we need to add a second one to ensure they get through.

Signed-off-by: Peter Krefting <peter@softwolves.pp.se>
Signed-off-by: Shawn O. Pearce <spearce@spearce.org>
2010-01-23 14:46:12 -08:00
3c6a287027 git-gui: Keep repo_config(gui.recentrepos) and .gitconfig in sync
When the number of recent repo's gets to ten there can be a
situation where an item is removed from the .gitconfig file via
a call to git config --unset, but the internal representation of
that file (repo_config(gui.recentrepo)) is not updated.  Then a
subsequent attempt to remove an item from the list fails because
git-gui attempts to call --unset on a value that has already
been removed.  This leads to duplicates in the .gitconfig file,
which then also cause errors if the git-gui tries to --unset them
(rather than using --unset-all. --unset-all is not used because it
is not expected that duplicates should ever be allowed to exist.)

When loading the list of recent repositories (proc _get_recentrepos)
if a repo in the list is not considered a valid git reposoitory
then we should go ahead and remove it so it doesn't take up a slot
in the list (since we limit to 10 items). This will prevent a bunch
of invalid entries in the list (which are not shown) from making
valid entries dissapear off the list even when there are less than
ten valid entries.

See: http://code.google.com/p/msysgit/issues/detail?id=362
Signed-off-by: Shawn O. Pearce <spearce@spearce.org>
2010-01-23 14:46:12 -08:00
ea888f84bd git-gui: handle really long error messages in updateindex.
As reported to msysGit (bug #340) it is possible to get some very
long error messages when updating the index. The use of a label to
display this prevents scrolling the output. This patch replaces the
label with a scrollable text widget configured to look like a label.

Signed-off-by: Pat Thoyts <patthoyts@users.sourceforge.net>
Signed-off-by: Shawn O. Pearce <spearce@spearce.org>
2010-01-23 14:22:28 -08:00
b677c66e29 git-gui: Add hotkeys for "Unstage from commit" and "Revert changes"
Signed-off-by: Vitaly _Vi Shukela <public_vi@tut.by>
Signed-off-by: Shawn O. Pearce <spearce@spearce.org>
2010-01-06 18:21:11 -08:00
54350a2bb4 git-gui: Makefile: consolidate .FORCE-* targets
Providing multiple targets to force a rebuild is unnecessary
complication.

Avoid using a name that could conflict with future special
targets in GNU make (a leading period followed by uppercase
letters).

Cc: Junio C Hamano <gitster@pobox.com>
Signed-off-by: Jonathan Nieder <jrnieder@gmail.com>
Signed-off-by: Shawn O. Pearce <spearce@spearce.org>
2010-01-06 18:20:01 -08:00
60204ddb99 git-gui: suppress RenderBadPicture X error caused by Tk bug
Due to a bug in Tk, git-gui almost always (unless git-gui is closed
right after starting) produces an X window error message on exit,
something like:

X Error of failed request:  RenderBadPicture (invalid Picture parameter)
  Major opcode of failed request:  150 (RENDER)
  Minor opcode of failed request:  7 (RenderFreePicture)
  Picture id in failed request: 0x3a000dc
  Serial number of failed request:  1965
  Current serial number in output stream:  1980

Respective Tk bug report is here:

http://sourceforge.net/tracker/?func=detail&atid=112997&aid=1821174&group_id=12997

This bug is triggered only when the send command is blocked via
rename send {} . The following patch re-enables send just before
quiting git-gui to suppress the error.

Signed-off-by: Jindrich Makovicka <makovick@gmail.com>
Signed-off-by: Shawn O. Pearce <spearce@spearce.org>
2009-12-07 07:39:58 -08:00
10852086d4 git-gui: Increase blame viewer usability on MacOS.
On MacOS raising a window causes the focus to be transferred
to it -- although it may actually be a bug in the Tcl/Tk port.
When this happens with the blame viewer tooltips, it makes
the interface less usable, because Entry and Leave handlers
on the text view cause the tip to disappear once the mouse
is moved even 1 pixel.

This commit makes the code raise the main window on MacOS
when Tk 8.5 is used. This version seems to properly support
wm transient by making the tip stay on top of the master,
so reraising the master does not cause it to disappear. Thus
the only remaining sign of problems is slight UI flicker
when focus is momentarily transferred to the tip and back.

Signed-off-by: Alexander Gavrilov <angavrilov@gmail.com>
Signed-off-by: Shawn O. Pearce <spearce@spearce.org>
2009-12-05 14:26:59 -08:00
88520cadf9 git-gui: search 4 directories to improve statistic of gc hint
On Windows, git-gui suggests running the garbage collector if it finds
1 or more files in .git/objects/42 (as opposed to 8 files on other
platforms). The probability of that happening if the repo contains
about 100 loose objects is 32%. The probability for the same to happen
when searching 4 directories is only 8%, which is bit more reasonable.

Also remove $objects_limit from the message, because we already know
that we are above (or close to) that limit. Telling the user about
that number does not really give him any useful information.

The following octave script shows the probability for at least m*q
objects to be found in q subdirectories of .git/objects if n is the
total number of objects.

q = 4;
m = [1 2 8];
n = 0:10:2000;

P = zeros(length(n), length(m));
for k = 1:length(n)
        P(k, :) = 1-binocdf(q*m-1, n(k), q/(256-q));
end
plot(n, P);

n \ q   1       4
50      18%     1%
100     32%     8%
200     54%     39%
500     86%     96%

Signed-off-by: Clemens Buchacher <drizzd@aon.at>
Signed-off-by: Shawn O. Pearce <spearce@spearce.org>
2009-12-05 13:48:03 -08:00
c0d153295c git gui: make current branch default in "remote delete branch" merge check
We already do the same when locally deleting a branch.

Signed-off-by: Heiko Voigt <hvoigt@hvoigt.net>
Signed-off-by: Shawn O. Pearce <spearce@spearce.org>
2009-12-05 13:17:51 -08:00
acb9108c19 git-gui: adjust the minimum height of diff pane for shorter screen height
When the main window is maximized, if the screen height is shorter (e.g.
Netbook screen 1024x600), both the partial commit pane and the status bar
are hidden. The diff pane is resizable, so that it can use less vertical
height, allowing the overall window to be shorter and still display both
the entire commit pane and status bar.

Signed-off-by: Vietor Liu <vietor@vxwo.org>
Signed-off-by: Shawn O. Pearce <spearce@spearce.org>
2009-10-27 11:25:59 -07:00
cd846aa183 git-gui: fix use of uninitialized variable
This fixes a bug introduced by the "display summary when showing diff of a
submodule" patch. It lead to a "no such variable" error when opening the
diff context menu while no diff was shown.

Signed-off-by: Jens Lehmann <Jens.Lehmann@web.de>
Signed-off-by: Shawn O. Pearce <spearce@spearce.org>
2009-09-25 16:42:00 -07:00
ed7b603381 git-gui: store wm state and fix wm geometry
I often close git gui window when it is maximized, and when I reopen
it next time the it would usually become out of place (e.g. a huge
window with a top-left corner somewhere close to the center of the
screen). Fix it by storing and restoring wm state in config, as well
as setting wm state to normal before retrieving wm geometry info.

Signed-off-by: Alexey Borzenkov <snaury@gmail.com>
Signed-off-by: Shawn O. Pearce <spearce@spearce.org>
2009-09-12 11:35:29 -07:00
118d938812 git-gui: Ensure submodule path is quoted properly
When quoting an arbitrary user string in Tcl, its better to use
[list ...] than to use {...}, in case the user string has spaces
or { embedded within it.

Signed-off-by: Shawn O. Pearce <spearce@spearce.org>
2009-08-26 17:42:50 -07:00
af413de47b git-gui: fix diff for partially staged submodule changes
When a submodule commit had already been staged and another commit had
been checked out inside the submodule, the diff always displayed the
submodule commit log messages between the last supermodule commit and
the working tree, totally ignoring the commit in the index.

Signed-off-by: Jens Lehmann <Jens.Lehmann@web.de>
Signed-off-by: Shawn O. Pearce <spearce@spearce.org>
2009-08-26 17:35:16 -07:00
b350e460da git-gui: Update russian translation
Signed-off-by: Alex Riesen <raa.lkml@gmail.com>
Signed-off-by: Shawn O. Pearce <spearce@spearce.org>
2009-08-12 08:34:37 -07:00
dd6451f9c7 git-gui: Limit display to a maximum number of files
When there is a large number of new or modified files,
"display_all_files" takes a long time, and git-gui appears to hang.

This change limits the number of files that are displayed.  This
limit can be set as gui.maxfilesdisplayed, and is 5000 by default.

A warning is shown the first time the list of files is truncated
in this GUI session.  Subsequent truncations are not mentioned to
the user.

Signed-off-by: Dan Zwell <dzwell@zwell.net>
Signed-off-by: Shawn O. Pearce <spearce@spearce.org>
2009-08-12 07:41:52 -07:00
2112be7650 git-gui: remove warning when deleting correctly merged remote branch
If the user wants to delete a remote branch and selects the correct
"merged into" we should not warn that "Recovering deleted branches is
difficult". For local branches we do the same already.

Signed-off-by: Heiko Voigt <hvoigt@hvoigt.net>
Signed-off-by: Shawn O. Pearce <spearce@spearce.org>
2009-08-10 08:47:34 -07:00
2ee94d141e git-gui: Added Greek translation & glossary
Signed-off-by: Shawn O. Pearce <spearce@spearce.org>
2009-08-10 08:43:07 -07:00
246295bdeb git-gui: display summary when showing diff of a submodule
As it is hard to say what changed in a submodule by looking at the hashes,
let's show the colored submodule summary instead.

Signed-off-by: Jens Lehmann <Jens.Lehmann@web.de>
Signed-off-by: Shawn O. Pearce <spearce@spearce.org>
2009-08-10 08:30:26 -07:00
a91be3fcbe git-gui: Fixes for Mac OS X TkAqua
- detect more Tk.framework variants
- fix apple menu setup, use native preferences menu item
- don't set menu font

Signed-off-by: Daniel A. Steffen <das@users.sourceforge.net>
Signed-off-by: Shawn O. Pearce <spearce@spearce.org>
2009-05-01 15:04:52 -07:00
c736b4c83b git-gui: Update Russian translation
Also, the previous translations of the words 'tag' and 'merge' were
changed. Added translation of the 'Tool' submenu.

Thanks go to Alexander Gavrilov and Dmitry Potapov for proofreading
and suggestions.

Signed-off-by: Alex Riesen <raa.lkml@gmail.com>
Signed-off-by: Shawn O. Pearce <spearce@spearce.org>
2009-04-29 08:37:23 -07:00
b4c813bc71 git-gui: run post-checkout hook after clone
git-gui is using "git-read-tree -u" when cloning which doesn't
invoke the post-checkout hook as a plain git-clone would.
So git-gui must call the hook itself.

Signed-off-by: Jens Lehmann <Jens.Lehmann@web.de>
Signed-off-by: Shawn O. Pearce <spearce@spearce.org>
2009-04-08 07:42:54 -07:00
4339d5109c Merge branch 'maint'
* maint:
  git-gui: Ensure consistent usage of mergetool.keepBackup
  git-gui: fix use of undeclared variable diff_empty_count
2009-04-08 07:41:13 -07:00
fb25092a88 git-gui: Ensure consistent usage of mergetool.keepBackup
In several places merge.keepBackup is used i.s.o.
mergetool.keepBackup. This patch makes it all
consistent.

Signed-off-by: Ferry Huberts <ferry.huberts@pelagic.nl>
Signed-off-by: Shawn O. Pearce <spearce@spearce.org>
2009-04-08 07:40:58 -07:00
8052e788b5 git-gui: fix use of undeclared variable diff_empty_count
Commit 584fa9cc introduced the global variable diff_empty_count, which
is used in diff.tcl. This variable wasn't declared anywhere which
resulted in an ugly error message box instead of the intended
informative message.

Signed-off-by: Joerg Bornemann <joerg.bornemann@web.de>
Signed-off-by: Shawn O. Pearce <spearce@spearce.org>
2009-04-08 07:38:11 -07:00
b01d432604 git-gui (Win): make starting via "Git GUI Here" on .git/ possible
This works around git-gui's error message

    Cannot use funny .git directory: .

when started from the .git/ directory, which is useful in repositories
without any directories for the right click.

Now git-gui can be started via Windows Explorer shell extension (Git GUI
Here) from the .git/ directory.

Signed-off-by: Markus Heidelberg <markus.heidelberg@web.de>
Signed-off-by: Shawn O. Pearce <spearce@spearce.org>
2009-04-05 13:06:24 -07:00
454efb47b6 git-gui (Win): make "Explore Working Copy" more robust
Starting the Explorer from the git-gui menu "Explore Working Copy"
didn't work, when git-gui was started via Windows Explorer shell
extension (Git GUI Here) from a directory within the project.
The Explorer raised an error message like this:

    Path "C:/somedir/worktree" is not available or not a directory

It worked when started from the project directory itself, because then
the path argument for the Explorer was just '.' (current directory)
without any problematic forward slashes.

To make it work, convert the path given as argument to explorer.exe to
its native format with backslashes.

Signed-off-by: Markus Heidelberg <markus.heidelberg@web.de>
Signed-off-by: Shawn O. Pearce <spearce@spearce.org>
2009-04-05 13:05:29 -07:00
c9498339a4 git-gui: run post-checkout hook on checkout
git-gui is using "git-read-tree -u" for checkout which doesn't
invoke the post-checkout hook as a plain git-checkout would.
So git-gui must call the hook itself.

Signed-off-by: Jens Lehmann <Jens.Lehmann@web.de>
Signed-off-by: Shawn O. Pearce <spearce@spearce.org>
2009-04-05 12:58:26 -07:00
f0d4eec99f git-gui: When calling post-commit hook wrong variable was cleared.
Before calling the post-commit hook, the variable "pc_err" is cleared
while later only "pch_error" is used. "pch_error$cmt_id" only appeared in
"upvar"-Statements (which were changed to "global") and was removed.

Signed-off-by: Jens Lehmann <Jens.Lehmann@web.de>
Signed-off-by: Shawn O. Pearce <spearce@spearce.org>
2009-04-05 12:45:40 -07:00
3eb5682b0b git-gui: use git --html-path to get the location of installed HTML docs
Previously a hardcoded path $GIT_EXEC_PATH/../Documentation/ was used to
search for the documentation, when the user has asked for it via menu
"Help -> Online Documentation".
This didn't work for the default directory structure.

To find the path reliably, use the new git command line option, which
returns the correct path.

If the output of `git --html-path` is empty because git is not found or
the option is not yet supported in the installed git, the documentation
from kernel.org is launched. There is no additional guessing of the
right location of the installed docs.

Signed-off-by: Markus Heidelberg <markus.heidelberg@web.de>
Signed-off-by: Shawn O. Pearce <spearce@spearce.org>
2009-04-05 12:29:10 -07:00
122ee54420 Merge branch 'maint'
* maint:
  git-gui: fix deleting from the context menu with empty selection
2009-03-30 07:09:28 -07:00
bf516ecaac git-gui: fix deleting from the context menu with empty selection
An "Application Error" was raised when trying to delete text from the
commit message field when no text was selected.

Signed-off-by: Markus Heidelberg <markus.heidelberg@web.de>
Signed-off-by: Shawn O. Pearce <spearce@spearce.org>
2009-03-30 07:06:37 -07:00
966d0778db git-gui: minor spelling fix and string factorisation.
Properly spell "successful" and slightly rewrite a couple of strings
that actually say the same thing in order to reduce translation work.

Update .pot and .po files accordingly since no new translation is
required.

Signed-off-by: Shawn O. Pearce <spearce@spearce.org>
2009-03-24 16:17:30 -07:00
b59f091d80 git-gui: various French translation fixes
Mostly grammar, spelling and typography fixes, but also a few wording
enhancements here and there.

Signed-off-by: Sam Hocevar <sam@zoy.org>
Acked-by: Christian Couder <chriscool@tuxfamily.org>
Signed-off-by: Shawn O. Pearce <spearce@spearce.org>
2009-03-24 16:16:42 -07:00
b0d644b658 Merge branch 'maint' 2009-03-20 14:44:48 -07:00
e27430e777 git-gui: Fix merge conflict display error when filename contains spaces
When a merge conflict occurs in a file with spaces in the filename,
git-gui showed wrongly "LOCAL: deleted".

Signed-off-by: Jens Lehmann <Jens.Lehmann@web.de>
Signed-off-by: Shawn O. Pearce <spearce@spearce.org>
2009-03-20 14:44:28 -07:00
73fea17364 Merge branch 'maint'
* maint:
  git-gui: don't hide the Browse button when resizing the repo chooser
2009-03-16 20:01:27 -07:00
379f84b8d1 git-gui: don't hide the Browse button when resizing the repo chooser
Rather shrink the input field for "Create New Repository" and "Open
Existing Repository" as it's already done for "Clone Existing
Repository".

Signed-off-by: Markus Heidelberg <markus.heidelberg@web.de>
Signed-off-by: Shawn O. Pearce <spearce@spearce.org>
2009-03-16 19:57:48 -07:00
880fa117f1 Append ampersand to "Target" of lnk files created by do_cygwin_shortcut
The git-gui menu item "Repository | Create Desktop Icon" creates a
shortcut (.lnk file) on the Windows desktop.  The purpose of the
created shortcut is to make it easy for a user to launch git-gui
for a particular repo in the future.

A Windows user would expect to see git gui launch when they click
the shortcut; they would not expect (nor want) to see a cmd window
open and remain open in the background.

msysGit avoids opening a command window altogether when it's Git GUI
shortcut is used.  Ideally, git on cygwin would also have shortcuts
that simply open the GUI, but as a first step, this change allows
the shell window to politely disappear after starting git gui as a
background process.

Signed-off-by: Phil Lawrence <prlawrence@gmail.com>
Signed-off-by: Shawn O. Pearce <spearce@spearce.org>
2009-03-09 16:21:17 -07:00
764369c5ea git-gui: Support more git version notations.
Recently the msysgit repository has got a '1.6.1-msysgit1'
tag, which, when used to build the git version, is not
handled gracefully by the git-gui version code.

This patch changes the regular expressions to fix it, and
removes the hardcoded 'rc' string. Now git-gui can accept
a version tail like '.foo123.GIT.bar.456.7.g89ab'

Signed-off-by: Alexander Gavrilov <angavrilov@gmail.com>
Signed-off-by: Shawn O. Pearce <spearce@spearce.org>
2009-02-08 11:50:58 -08:00
584fa9ccf4 git-gui: Avoid an infinite rescan loop in handle_empty_diff.
If the index update machinery and git diff happen to disagree
on whether a particular file is modified, it may cause git-gui
to enter an infinite index rescan loop, where an empty diff
starts a rescan, which finds the same set of files modified,
and tries to display the diff for the first one, which happens
to be the empty one. A current example of a possible disagreement
point is the autocrlf filter.

This patch breaks the loop by using a global counter to track
the auto-rescans. The variable is reset whenever a non-empty
diff is displayed.

Another suggested approach, which is based on giving the
--exit-code argument to git diff, cannot be used, because
diff-files seems to trust the timestamps in the index, and
returns a non-zero code even if the file is actually
unchanged, which essentially defeats the purpose of the
auto-rescan logic.

Signed-off-by: Alexander Gavrilov <angavrilov@gmail.com>
Signed-off-by: Shawn O. Pearce <spearce@spearce.org>
2009-02-08 11:50:11 -08:00
06569cd5be git-gui: Fix post-commit status with subject in non-locale encoding
As pointed out in msysgit bug #181, when a non-locale encoding is
used for commits, post-commit status messages display the subject
incorrectly.  It happens because the file handle is not properly
configured before the subject is read back.

This patch fixes it by factoring out the code that is used to setup
the output handle into a separate function, and calling it from
the reading code.

Signed-off-by: Alexander Gavrilov <angavrilov@gmail.com>
Acked-by: Robin Rosenberg <robin.rosenberg@gmail.com>
Signed-off-by: Shawn O. Pearce <spearce@spearce.org>
2009-02-01 14:56:54 -08:00
e612120d23 git-gui 0.12
Signed-off-by: Shawn O. Pearce <spearce@spearce.org>
2008-12-17 20:15:17 -08:00
d4d1351b96 git-gui: Get rid of the last remnants of GIT_CONFIG_LOCAL
In dc871831(Only use GIT_CONFIG in "git config", not other programs),
GIT_CONFIG_LOCAL was rested in peace, in favor of not reading
/etc/gitconfig and $HOME/.gitconfig at all when GIT_CONFIG is set.

Signed-off-by: Johannes Schindelin <johannes.schindelin@gmx.de>
Signed-off-by: Shawn O. Pearce <spearce@spearce.org>
2008-12-17 07:50:55 -08:00
b8dc2f5c94 git-gui: Update Hungarian translation for 0.12
Signed-off-by: Miklos Vajna <vmiklos@frugalware.org>
Signed-off-by: Shawn O. Pearce <spearce@spearce.org>
2008-12-10 11:44:03 -08:00
93b6d7c191 git-gui: Fixed typos in Swedish translation.
Signed-off-by: Peter Krefting <peter@softwolves.pp.se>
Signed-off-by: Shawn O. Pearce <spearce@spearce.org>
2008-12-10 11:43:15 -08:00
7f64a661d2 git-gui: Updated Swedish translation (515t0f0u).
Signed-off-by: Peter Krefting <peter@softwolves.pp.se>
Signed-off-by: Shawn O. Pearce <spearce@spearce.org>
2008-12-09 07:35:01 -08:00
64bcf58541 git gui: update Italian translation
Signed-off-by: Michele Ballabio <barra_cuda@katamail.com>
Signed-off-by: Shawn O. Pearce <spearce@spearce.org>
2008-12-09 07:20:08 -08:00
e882c6e3e7 git-gui: Update Japanese translation for 0.12
Adds translation for one new message string.

Signed-off-by: Nanako Shiraishi <nanako3@lavabit.com>
Signed-off-by: Shawn O. Pearce <spearce@spearce.org>
2008-12-09 07:11:20 -08:00
9c996d0c24 git-gui: Starting translation for Norwegian
This file have been used locally for some time, and is near
completion. Will put an effort into completing it later on,
or just leave it as an excercise for other Norwegians.

Signed-off-by: Fredrik Skolmli <fredrik@frsk.net>
Signed-off-by: Shawn O. Pearce <spearce@spearce.org>
2008-12-08 09:32:11 -08:00
07bba555d4 git-gui: Update German (completed) translation.
Signed-off-by: Christian Stimming <stimming@tuhh.de>
Signed-off-by: Shawn O. Pearce <spearce@spearce.org>
2008-12-08 08:49:56 -08:00
8a33356085 git-gui: Update po template to include 'Mirroring %s' message
A late addition to the message library.

Signed-off-by: Shawn O. Pearce <spearce@spearce.org>
2008-12-08 08:33:05 -08:00
3ac31e4451 git-gui: Fix commit encoding handling.
Commits without an encoding header are supposed to
be encoded in utf8. While this apparently hasn't always
been the case, currently it is the active convention, so
it is better to follow it; otherwise people who have to
use commitEncoding on their machines are unable to read
utf-8 commits made by others.

I also think that it is preferrable to display the warning
about an unsupported value of commitEncoding more prominently,
because this condition may lead to surprising behavior and,
eventually, to loss of data.

Signed-off-by: Alexander Gavrilov <angavrilov@gmail.com>
Signed-off-by: Shawn O. Pearce <spearce@spearce.org>
2008-12-08 08:33:05 -08:00
95e706b5ec git-gui: Fix handling of relative paths in blame.
Currently using '..' or '.' in the file path for gui blame
causes it to break, because the path is passed inside the
SHA:PATH spec to cat-file, which apparently does not understand
such items. As a result, cat-file returns nothing, and the
viewer crashes because of an "index out of range" error.

This commit adds a simple function that normalizes such paths.
I choose not to use [file normalize], because it uses some data
from the file system, e.g. dereferences symlinks, and creates
an absolute path, while blame may be used to inspect historical
information that bears no relation to the current filesystem state.

Signed-off-by: Alexander Gavrilov <angavrilov@gmail.com>
Signed-off-by: Shawn O. Pearce <spearce@spearce.org>
2008-12-08 08:33:05 -08:00
861c68e3b6 git-gui: Teach start_push_anywhere_action{} to notice when remote is a mirror.
When the destination repository is a mirror, this function goofed by still
passing a refspec to git-push. Now it notices that the remote is a mirror
and holds the refspec.

Signed-off-by: Mark Burton <markb@ordern.com>
Signed-off-by: Shawn O. Pearce <spearce@spearce.org>
2008-12-02 07:20:19 -08:00
49 changed files with 10164 additions and 3787 deletions

View File

@ -1,7 +1,7 @@
#!/bin/sh #!/bin/sh
GVF=GIT-VERSION-FILE GVF=GIT-VERSION-FILE
DEF_VER=0.11.GITGUI DEF_VER=0.13.GITGUI
LF=' LF='
' '

View File

@ -7,7 +7,7 @@ all::
# TCL_PATH must be vaild for this to work. # TCL_PATH must be vaild for this to work.
# #
GIT-VERSION-FILE: .FORCE-GIT-VERSION-FILE GIT-VERSION-FILE: FORCE
@$(SHELL_PATH) ./GIT-VERSION-GEN @$(SHELL_PATH) ./GIT-VERSION-GEN
-include GIT-VERSION-FILE -include GIT-VERSION-FILE
@ -105,8 +105,11 @@ endif
ifeq ($(uname_S),Darwin) ifeq ($(uname_S),Darwin)
TKFRAMEWORK = /Library/Frameworks/Tk.framework/Resources/Wish.app TKFRAMEWORK = /Library/Frameworks/Tk.framework/Resources/Wish.app
ifeq ($(shell expr "$(uname_R)" : '9\.'),2) ifeq ($(shell echo "$(uname_R)" | awk -F. '{if ($$1 >= 9) print "y"}')_$(shell test -d $(TKFRAMEWORK) || echo n),y_n)
TKFRAMEWORK = /System/Library/Frameworks/Tk.framework/Resources/Wish\ Shell.app TKFRAMEWORK = /System/Library/Frameworks/Tk.framework/Resources/Wish.app
ifeq ($(shell test -d $(TKFRAMEWORK) || echo n),n)
TKFRAMEWORK = /System/Library/Frameworks/Tk.framework/Resources/Wish\ Shell.app
endif
endif endif
TKEXECUTABLE = $(shell basename "$(TKFRAMEWORK)" .app) TKEXECUTABLE = $(shell basename "$(TKFRAMEWORK)" .app)
endif endif
@ -212,6 +215,7 @@ endif
$(GITGUI_MAIN): git-gui.sh GIT-VERSION-FILE GIT-GUI-VARS $(GITGUI_MAIN): git-gui.sh GIT-VERSION-FILE GIT-GUI-VARS
$(QUIET_GEN)rm -f $@ $@+ && \ $(QUIET_GEN)rm -f $@ $@+ && \
sed -e '1s|#!.*/sh|#!$(SHELL_PATH_SQ)|' \ sed -e '1s|#!.*/sh|#!$(SHELL_PATH_SQ)|' \
-e 's|@@SHELL_PATH@@|$(SHELL_PATH_SQ)|' \
-e '1,30s|^ argv0=$$0| argv0=$(GITGUI_SCRIPT)|' \ -e '1,30s|^ argv0=$$0| argv0=$(GITGUI_SCRIPT)|' \
-e '1,30s|^ exec wish | exec '\''$(TCLTK_PATH_SED)'\'' |' \ -e '1,30s|^ exec wish | exec '\''$(TCLTK_PATH_SED)'\'' |' \
-e 's/@@GITGUI_VERSION@@/$(GITGUI_VERSION)/g' \ -e 's/@@GITGUI_VERSION@@/$(GITGUI_VERSION)/g' \
@ -267,7 +271,7 @@ TRACK_VARS = \
GITGUI_MACOSXAPP=$(GITGUI_MACOSXAPP) \ GITGUI_MACOSXAPP=$(GITGUI_MACOSXAPP) \
#end TRACK_VARS #end TRACK_VARS
GIT-GUI-VARS: .FORCE-GIT-GUI-VARS GIT-GUI-VARS: FORCE
@VARS='$(TRACK_VARS)'; \ @VARS='$(TRACK_VARS)'; \
if test x"$$VARS" != x"`cat $@ 2>/dev/null`" ; then \ if test x"$$VARS" != x"`cat $@ 2>/dev/null`" ; then \
echo 1>&2 " * new locations or Tcl/Tk interpreter"; \ echo 1>&2 " * new locations or Tcl/Tk interpreter"; \
@ -337,5 +341,4 @@ ifdef GITGUI_WINDOWS_WRAPPER
endif endif
.PHONY: all install uninstall dist-version clean .PHONY: all install uninstall dist-version clean
.PHONY: .FORCE-GIT-VERSION-FILE .PHONY: FORCE
.PHONY: .FORCE-GIT-GUI-VARS

View File

@ -5,6 +5,8 @@ exec wish "$0" -- "$@"
# This is a trivial implementation of an SSH_ASKPASS handler. # This is a trivial implementation of an SSH_ASKPASS handler.
# Git-gui uses this script if none are already configured. # Git-gui uses this script if none are already configured.
package require Tk
set answer {} set answer {}
set yesno 0 set yesno 0
set rc 255 set rc 255
@ -30,16 +32,20 @@ if {!$yesno} {
frame .b frame .b
button .b.ok -text OK -command finish button .b.ok -text OK -command finish
button .b.cancel -text Cancel -command {destroy .} button .b.cancel -text Cancel -command cancel
pack .b.ok -side left -expand 1 pack .b.ok -side left -expand 1
pack .b.cancel -side right -expand 1 pack .b.cancel -side right -expand 1
pack .b -side bottom -fill x -padx 10 -pady 10 pack .b -side bottom -fill x -padx 10 -pady 10
bind . <Visibility> {focus -force .e} bind . <Visibility> {focus -force .e}
bind . <Key-Return> finish bind . <Key-Return> [list .b.ok invoke]
bind . <Key-Escape> {destroy .} bind . <Key-Escape> [list .b.cancel invoke]
bind . <Destroy> {exit $rc} bind . <Destroy> {set rc $rc}
proc cancel {} {
set ::rc 255
}
proc finish {} { proc finish {} {
if {$::yesno} { if {$::yesno} {
@ -50,10 +56,11 @@ proc finish {} {
} }
} }
set ::rc 0
puts $::answer puts $::answer
destroy . set ::rc 0
} }
wm title . "OpenSSH" wm title . "OpenSSH"
tk::PlaceWindow . tk::PlaceWindow .
vwait rc
exit $rc

File diff suppressed because it is too large Load Diff

View File

@ -4,31 +4,26 @@
proc do_about {} { proc do_about {} {
global appvers copyright oguilib global appvers copyright oguilib
global tcl_patchLevel tk_patchLevel global tcl_patchLevel tk_patchLevel
global ui_comm_spell global ui_comm_spell NS use_ttk
set w .about_dialog set w .about_dialog
toplevel $w Dialog $w
wm geometry $w "+[winfo rootx .]+[winfo rooty .]" wm geometry $w "+[winfo rootx .]+[winfo rooty .]"
pack [git_logo $w.git_logo] -side left -fill y -padx 10 -pady 10 pack [git_logo $w.git_logo] -side left -fill y -padx 10 -pady 10
label $w.header -text [mc "About %s" [appname]] \ ${NS}::label $w.header -text [mc "About %s" [appname]] \
-font font_uibold -font font_uibold -anchor center
pack $w.header -side top -fill x pack $w.header -side top -fill x
frame $w.buttons ${NS}::frame $w.buttons
button $w.buttons.close -text {Close} \ ${NS}::button $w.buttons.close -text {Close} \
-default active \ -default active \
-command [list destroy $w] -command [list destroy $w]
pack $w.buttons.close -side right pack $w.buttons.close -side right
pack $w.buttons -side bottom -fill x -pady 10 -padx 10 pack $w.buttons -side bottom -fill x -pady 10 -padx 10
label $w.desc \ paddedlabel $w.desc \
-text "[mc "git-gui - a graphical user interface for Git."]\n$copyright" \ -text "[mc "git-gui - a graphical user interface for Git."]\n$copyright"
-padx 5 -pady 5 \
-justify left \
-anchor w \
-borderwidth 1 \
-relief solid
pack $w.desc -side top -fill x -padx 5 -pady 5 pack $w.desc -side top -fill x -padx 5 -pady 5
set v {} set v {}
@ -52,22 +47,10 @@ proc do_about {} {
append d "git exec dir: [gitexec]\n" append d "git exec dir: [gitexec]\n"
append d "git-gui lib: $oguilib" append d "git-gui lib: $oguilib"
label $w.vers \ paddedlabel $w.vers -text $v
-text $v \
-padx 5 -pady 5 \
-justify left \
-anchor w \
-borderwidth 1 \
-relief solid
pack $w.vers -side top -fill x -padx 5 -pady 5 pack $w.vers -side top -fill x -padx 5 -pady 5
label $w.dirs \ paddedlabel $w.dirs -text $d
-text $d \
-padx 5 -pady 5 \
-justify left \
-anchor w \
-borderwidth 1 \
-relief solid
pack $w.dirs -side top -fill x -padx 5 -pady 5 pack $w.dirs -side top -fill x -padx 5 -pady 5
menu $w.ctxm -tearoff 0 menu $w.ctxm -tearoff 0

View File

@ -61,7 +61,7 @@ field tooltip_timer {} ; # Current timer event for our tooltip
field tooltip_commit {} ; # Commit(s) in tooltip field tooltip_commit {} ; # Commit(s) in tooltip
constructor new {i_commit i_path i_jump} { constructor new {i_commit i_path i_jump} {
global cursor_ptr M1B M1T have_tk85 global cursor_ptr M1B M1T have_tk85 use_ttk NS
variable active_color variable active_color
variable group_colors variable group_colors
@ -73,15 +73,15 @@ constructor new {i_commit i_path i_jump} {
set font_w [font measure font_diff "0"] set font_w [font measure font_diff "0"]
frame $w.header -background gold gold_frame $w.header
label $w.header.commit_l \ tlabel $w.header.commit_l \
-text [mc "Commit:"] \ -text [mc "Commit:"] \
-background gold \ -background gold \
-foreground black \ -foreground black \
-anchor w \ -anchor w \
-justify left -justify left
set w_back $w.header.commit_b set w_back $w.header.commit_b
label $w_back \ tlabel $w_back \
-image ::blame::img_back_arrow \ -image ::blame::img_back_arrow \
-borderwidth 0 \ -borderwidth 0 \
-relief flat \ -relief flat \
@ -94,20 +94,20 @@ constructor new {i_commit i_path i_jump} {
[cb _history_menu] [cb _history_menu]
} }
" "
label $w.header.commit \ tlabel $w.header.commit \
-textvariable @commit \ -textvariable @commit \
-background gold \ -background gold \
-foreground black \ -foreground black \
-anchor w \ -anchor w \
-justify left -justify left
label $w.header.path_l \ tlabel $w.header.path_l \
-text [mc "File:"] \ -text [mc "File:"] \
-background gold \ -background gold \
-foreground black \ -foreground black \
-anchor w \ -anchor w \
-justify left -justify left
set w_path $w.header.path set w_path $w.header.path
label $w_path \ tlabel $w_path \
-background gold \ -background gold \
-foreground black \ -foreground black \
-anchor w \ -anchor w \
@ -209,10 +209,10 @@ constructor new {i_commit i_path i_jump} {
set w_columns [list $w_amov $w_asim $w_line $w_file] set w_columns [list $w_amov $w_asim $w_line $w_file]
scrollbar $w.file_pane.out.sbx \ ${NS}::scrollbar $w.file_pane.out.sbx \
-orient h \ -orient h \
-command [list $w_file xview] -command [list $w_file xview]
scrollbar $w.file_pane.out.sby \ ${NS}::scrollbar $w.file_pane.out.sby \
-orient v \ -orient v \
-command [list scrollbar2many $w_columns yview] -command [list scrollbar2many $w_columns yview]
eval grid $w_columns $w.file_pane.out.sby -sticky nsew eval grid $w_columns $w.file_pane.out.sby -sticky nsew
@ -254,10 +254,10 @@ constructor new {i_commit i_path i_jump} {
-background $active_color \ -background $active_color \
-font font_ui -font font_ui
$w_cviewer tag raise sel $w_cviewer tag raise sel
scrollbar $w.file_pane.cm.sbx \ ${NS}::scrollbar $w.file_pane.cm.sbx \
-orient h \ -orient h \
-command [list $w_cviewer xview] -command [list $w_cviewer xview]
scrollbar $w.file_pane.cm.sby \ ${NS}::scrollbar $w.file_pane.cm.sby \
-orient v \ -orient v \
-command [list $w_cviewer yview] -command [list $w_cviewer yview]
pack $w.file_pane.cm.sby -side right -fill y pack $w.file_pane.cm.sby -side right -fill y
@ -449,11 +449,35 @@ method _load {jump} {
$status show [mc "Reading %s..." "$commit:[escape_path $path]"] $status show [mc "Reading %s..." "$commit:[escape_path $path]"]
$w_path conf -text [escape_path $path] $w_path conf -text [escape_path $path]
set do_textconv 0
if {![is_config_false gui.textconv] && [git-version >= 1.7.2]} {
set filter [gitattr $path diff set]
set textconv [get_config [join [list diff $filter textconv] .]]
if {$filter ne {set} && $textconv ne {}} {
set do_textconv 1
}
}
if {$commit eq {}} { if {$commit eq {}} {
set fd [open $path r] if {$do_textconv ne 0} {
# Run textconv with sh -c "..." to allow it to
# contain command + arguments. On windows, just
# call the filter command.
if {![file executable [shellpath]]} {
set fd [open |[linsert $textconv end $path] r]
} else {
set fd [open |[list [shellpath] -c "$textconv \"\$0\"" $path] r]
}
} else {
set fd [open $path r]
}
fconfigure $fd -eofchar {} fconfigure $fd -eofchar {}
} else { } else {
set fd [git_read cat-file blob "$commit:$path"] if {$do_textconv ne 0} {
set fd [git_read cat-file --textconv "$commit:$path"]
} else {
set fd [git_read cat-file blob "$commit:$path"]
}
} }
fconfigure $fd \ fconfigure $fd \
-blocking 0 \ -blocking 0 \
@ -940,9 +964,8 @@ method _showcommit {cur_w lno} {
catch { catch {
set fd [git_read cat-file commit $cmit] set fd [git_read cat-file commit $cmit]
fconfigure $fd -encoding binary -translation lf fconfigure $fd -encoding binary -translation lf
if {[catch {set enc $repo_config(i18n.commitencoding)}]} { # By default commits are assumed to be in utf-8
set enc utf-8 set enc utf-8
}
while {[gets $fd line] > 0} { while {[gets $fd line] > 0} {
if {[string match {encoding *} $line]} { if {[string match {encoding *} $line]} {
set enc [string tolower [string range $line 9 end]] set enc [string tolower [string range $line 9 end]]
@ -1246,6 +1269,18 @@ method _open_tooltip {cur_w} {
$tooltip_t conf -state disabled $tooltip_t conf -state disabled
_position_tooltip $this _position_tooltip $this
# On MacOS raising a window causes it to acquire focus.
# Tk 8.5 on MacOS seems to properly support wm transient,
# so we can safely counter the effect there.
if {$::have_tk85 && [is_MacOSX]} {
update
if {$w eq {}} {
raise .
} else {
raise $w
}
}
} }
method _position_tooltip {} { method _position_tooltip {} {
@ -1269,7 +1304,9 @@ method _position_tooltip {} {
append g $pos_y append g $pos_y
wm geometry $tooltip_wm $g wm geometry $tooltip_wm $g
raise $tooltip_wm if {![is_MacOSX]} {
raise $tooltip_wm
}
} }
method _hide_tooltip {} { method _hide_tooltip {} {

View File

@ -10,21 +10,24 @@ field opt_fetch 1; # refetch tracking branch if used?
field opt_detach 0; # force a detached head case? field opt_detach 0; # force a detached head case?
constructor dialog {} { constructor dialog {} {
make_toplevel top w global use_ttk NS
make_dialog top w
wm withdraw $w
wm title $top [append "[appname] ([reponame]): " [mc "Checkout Branch"]] wm title $top [append "[appname] ([reponame]): " [mc "Checkout Branch"]]
if {$top ne {.}} { if {$top ne {.}} {
wm geometry $top "+[winfo rootx .]+[winfo rooty .]" wm geometry $top "+[winfo rootx .]+[winfo rooty .]"
} }
label $w.header -text [mc "Checkout Branch"] -font font_uibold ${NS}::label $w.header -text [mc "Checkout Branch"] \
-font font_uibold -anchor center
pack $w.header -side top -fill x pack $w.header -side top -fill x
frame $w.buttons ${NS}::frame $w.buttons
button $w.buttons.create -text [mc Checkout] \ ${NS}::button $w.buttons.create -text [mc Checkout] \
-default active \ -default active \
-command [cb _checkout] -command [cb _checkout]
pack $w.buttons.create -side right pack $w.buttons.create -side right
button $w.buttons.cancel -text [mc Cancel] \ ${NS}::button $w.buttons.cancel -text [mc Cancel] \
-command [list destroy $w] -command [list destroy $w]
pack $w.buttons.cancel -side right -padx 5 pack $w.buttons.cancel -side right -padx 5
pack $w.buttons -side bottom -fill x -pady 10 -padx 10 pack $w.buttons -side bottom -fill x -pady 10 -padx 10
@ -33,14 +36,14 @@ constructor dialog {} {
$w_rev bind_listbox <Double-Button-1> [cb _checkout] $w_rev bind_listbox <Double-Button-1> [cb _checkout]
pack $w.rev -anchor nw -fill both -expand 1 -pady 5 -padx 5 pack $w.rev -anchor nw -fill both -expand 1 -pady 5 -padx 5
labelframe $w.options -text [mc Options] ${NS}::labelframe $w.options -text [mc Options]
checkbutton $w.options.fetch \ ${NS}::checkbutton $w.options.fetch \
-text [mc "Fetch Tracking Branch"] \ -text [mc "Fetch Tracking Branch"] \
-variable @opt_fetch -variable @opt_fetch
pack $w.options.fetch -anchor nw pack $w.options.fetch -anchor nw
checkbutton $w.options.detach \ ${NS}::checkbutton $w.options.detach \
-text [mc "Detach From Local Branch"] \ -text [mc "Detach From Local Branch"] \
-variable @opt_detach -variable @opt_detach
pack $w.options.detach -anchor nw pack $w.options.detach -anchor nw
@ -50,6 +53,7 @@ constructor dialog {} {
bind $w <Visibility> [cb _visible] bind $w <Visibility> [cb _visible]
bind $w <Key-Escape> [list destroy $w] bind $w <Key-Escape> [list destroy $w]
bind $w <Key-Return> [cb _checkout]\;break bind $w <Key-Return> [cb _checkout]\;break
wm deiconify $w
tkwait window $w tkwait window $w
} }

View File

@ -16,48 +16,48 @@ field opt_fetch 1; # refetch tracking branch if used?
field reset_ok 0; # did the user agree to reset? field reset_ok 0; # did the user agree to reset?
constructor dialog {} { constructor dialog {} {
global repo_config global repo_config use_ttk NS
make_toplevel top w make_dialog top w
wm withdraw $w
wm title $top [append "[appname] ([reponame]): " [mc "Create Branch"]] wm title $top [append "[appname] ([reponame]): " [mc "Create Branch"]]
if {$top ne {.}} { if {$top ne {.}} {
wm geometry $top "+[winfo rootx .]+[winfo rooty .]" wm geometry $top "+[winfo rootx .]+[winfo rooty .]"
} }
label $w.header -text [mc "Create New Branch"] -font font_uibold ${NS}::label $w.header -text [mc "Create New Branch"] \
-font font_uibold -anchor center
pack $w.header -side top -fill x pack $w.header -side top -fill x
frame $w.buttons ${NS}::frame $w.buttons
button $w.buttons.create -text [mc Create] \ ${NS}::button $w.buttons.create -text [mc Create] \
-default active \ -default active \
-command [cb _create] -command [cb _create]
pack $w.buttons.create -side right pack $w.buttons.create -side right
button $w.buttons.cancel -text [mc Cancel] \ ${NS}::button $w.buttons.cancel -text [mc Cancel] \
-command [list destroy $w] -command [list destroy $w]
pack $w.buttons.cancel -side right -padx 5 pack $w.buttons.cancel -side right -padx 5
pack $w.buttons -side bottom -fill x -pady 10 -padx 10 pack $w.buttons -side bottom -fill x -pady 10 -padx 10
labelframe $w.desc -text [mc "Branch Name"] ${NS}::labelframe $w.desc -text [mc "Branch Name"]
radiobutton $w.desc.name_r \ ${NS}::radiobutton $w.desc.name_r \
-anchor w \
-text [mc "Name:"] \ -text [mc "Name:"] \
-value user \ -value user \
-variable @name_type -variable @name_type
if {!$use_ttk} {$w.desc.name_r configure -anchor w}
set w_name $w.desc.name_t set w_name $w.desc.name_t
entry $w_name \ ${NS}::entry $w_name \
-borderwidth 1 \
-relief sunken \
-width 40 \ -width 40 \
-textvariable @name \ -textvariable @name \
-validate key \ -validate key \
-validatecommand [cb _validate %d %S] -validatecommand [cb _validate %d %S]
grid $w.desc.name_r $w_name -sticky we -padx {0 5} grid $w.desc.name_r $w_name -sticky we -padx {0 5}
radiobutton $w.desc.match_r \ ${NS}::radiobutton $w.desc.match_r \
-anchor w \
-text [mc "Match Tracking Branch Name"] \ -text [mc "Match Tracking Branch Name"] \
-value match \ -value match \
-variable @name_type -variable @name_type
if {!$use_ttk} {$w.desc.match_r configure -anchor w}
grid $w.desc.match_r -sticky we -padx {0 5} -columnspan 2 grid $w.desc.match_r -sticky we -padx {0 5} -columnspan 2
grid columnconfigure $w.desc 1 -weight 1 grid columnconfigure $w.desc 1 -weight 1
@ -66,34 +66,34 @@ constructor dialog {} {
set w_rev [::choose_rev::new $w.rev [mc "Starting Revision"]] set w_rev [::choose_rev::new $w.rev [mc "Starting Revision"]]
pack $w.rev -anchor nw -fill both -expand 1 -pady 5 -padx 5 pack $w.rev -anchor nw -fill both -expand 1 -pady 5 -padx 5
labelframe $w.options -text [mc Options] ${NS}::labelframe $w.options -text [mc Options]
frame $w.options.merge ${NS}::frame $w.options.merge
label $w.options.merge.l -text [mc "Update Existing Branch:"] ${NS}::label $w.options.merge.l -text [mc "Update Existing Branch:"]
pack $w.options.merge.l -side left pack $w.options.merge.l -side left
radiobutton $w.options.merge.no \ ${NS}::radiobutton $w.options.merge.no \
-text [mc No] \ -text [mc No] \
-value none \ -value none \
-variable @opt_merge -variable @opt_merge
pack $w.options.merge.no -side left pack $w.options.merge.no -side left
radiobutton $w.options.merge.ff \ ${NS}::radiobutton $w.options.merge.ff \
-text [mc "Fast Forward Only"] \ -text [mc "Fast Forward Only"] \
-value ff \ -value ff \
-variable @opt_merge -variable @opt_merge
pack $w.options.merge.ff -side left pack $w.options.merge.ff -side left
radiobutton $w.options.merge.reset \ ${NS}::radiobutton $w.options.merge.reset \
-text [mc Reset] \ -text [mc Reset] \
-value reset \ -value reset \
-variable @opt_merge -variable @opt_merge
pack $w.options.merge.reset -side left pack $w.options.merge.reset -side left
pack $w.options.merge -anchor nw pack $w.options.merge -anchor nw
checkbutton $w.options.fetch \ ${NS}::checkbutton $w.options.fetch \
-text [mc "Fetch Tracking Branch"] \ -text [mc "Fetch Tracking Branch"] \
-variable @opt_fetch -variable @opt_fetch
pack $w.options.fetch -anchor nw pack $w.options.fetch -anchor nw
checkbutton $w.options.checkout \ ${NS}::checkbutton $w.options.checkout \
-text [mc "Checkout After Creation"] \ -text [mc "Checkout After Creation"] \
-variable @opt_checkout -variable @opt_checkout
pack $w.options.checkout -anchor nw pack $w.options.checkout -anchor nw
@ -109,6 +109,7 @@ constructor dialog {} {
bind $w <Visibility> [cb _visible] bind $w <Visibility> [cb _visible]
bind $w <Key-Escape> [list destroy $w] bind $w <Key-Escape> [list destroy $w]
bind $w <Key-Return> [cb _create]\;break bind $w <Key-Return> [cb _create]\;break
wm deiconify $w
tkwait window $w tkwait window $w
} }

View File

@ -9,41 +9,40 @@ field w_check ; # revision picker for merge test
field w_delete ; # delete button field w_delete ; # delete button
constructor dialog {} { constructor dialog {} {
global current_branch global current_branch use_ttk NS
make_toplevel top w make_dialog top w
wm withdraw $w
wm title $top [append "[appname] ([reponame]): " [mc "Delete Branch"]] wm title $top [append "[appname] ([reponame]): " [mc "Delete Branch"]]
if {$top ne {.}} { if {$top ne {.}} {
wm geometry $top "+[winfo rootx .]+[winfo rooty .]" wm geometry $top "+[winfo rootx .]+[winfo rooty .]"
} }
label $w.header -text [mc "Delete Local Branch"] -font font_uibold ${NS}::label $w.header -text [mc "Delete Local Branch"] \
-font font_uibold -anchor center
pack $w.header -side top -fill x pack $w.header -side top -fill x
frame $w.buttons ${NS}::frame $w.buttons
set w_delete $w.buttons.delete set w_delete $w.buttons.delete
button $w_delete \ ${NS}::button $w_delete \
-text [mc Delete] \ -text [mc Delete] \
-default active \ -default active \
-state disabled \ -state disabled \
-command [cb _delete] -command [cb _delete]
pack $w_delete -side right pack $w_delete -side right
button $w.buttons.cancel \ ${NS}::button $w.buttons.cancel \
-text [mc Cancel] \ -text [mc Cancel] \
-command [list destroy $w] -command [list destroy $w]
pack $w.buttons.cancel -side right -padx 5 pack $w.buttons.cancel -side right -padx 5
pack $w.buttons -side bottom -fill x -pady 10 -padx 10 pack $w.buttons -side bottom -fill x -pady 10 -padx 10
labelframe $w.list -text [mc "Local Branches"] ${NS}::labelframe $w.list -text [mc "Local Branches"]
set w_heads $w.list.l set w_heads $w.list.l
listbox $w_heads \ slistbox $w_heads \
-height 10 \ -height 10 \
-width 70 \ -width 70 \
-selectmode extended \ -selectmode extended \
-exportselection false \ -exportselection false
-yscrollcommand [list $w.list.sby set]
scrollbar $w.list.sby -command [list $w.list.l yview]
pack $w.list.sby -side right -fill y
pack $w.list.l -side left -fill both -expand 1 pack $w.list.l -side left -fill both -expand 1
pack $w.list -fill both -expand 1 -pady 5 -padx 5 pack $w.list -fill both -expand 1 -pady 5 -padx 5
@ -51,7 +50,7 @@ constructor dialog {} {
$w.check \ $w.check \
[mc "Delete Only If Merged Into"] \ [mc "Delete Only If Merged Into"] \
] ]
$w_check none [mc "Always (Do not perform merge test.)"] $w_check none [mc "Always (Do not perform merge checks)"]
pack $w.check -anchor nw -fill x -pady 5 -padx 5 pack $w.check -anchor nw -fill x -pady 5 -padx 5
foreach h [load_all_heads] { foreach h [load_all_heads] {
@ -67,6 +66,7 @@ constructor dialog {} {
" "
bind $w <Key-Escape> [list destroy $w] bind $w <Key-Escape> [list destroy $w]
bind $w <Key-Return> [cb _delete]\;break bind $w <Key-Return> [cb _delete]\;break
wm deiconify $w
tkwait window $w tkwait window $w
} }
@ -112,7 +112,7 @@ method _delete {} {
} }
if {$to_delete eq {}} return if {$to_delete eq {}} return
if {$check_cmt eq {}} { if {$check_cmt eq {}} {
set msg [mc "Recovering deleted branches is difficult. \n\n Delete the selected branches?"] set msg [mc "Recovering deleted branches is difficult.\n\nDelete the selected branches?"]
if {[tk_messageBox \ if {[tk_messageBox \
-icon warning \ -icon warning \
-type yesno \ -type yesno \

View File

@ -8,9 +8,10 @@ field oldname
field newname field newname
constructor dialog {} { constructor dialog {} {
global current_branch global current_branch use_ttk NS
make_toplevel top w make_dialog top w
wm withdraw $w
wm title $top [append "[appname] ([reponame]): " [mc "Rename Branch"]] wm title $top [append "[appname] ([reponame]): " [mc "Rename Branch"]]
if {$top ne {.}} { if {$top ne {.}} {
wm geometry $top "+[winfo rootx .]+[winfo rooty .]" wm geometry $top "+[winfo rootx .]+[winfo rooty .]"
@ -19,27 +20,31 @@ constructor dialog {} {
set oldname $current_branch set oldname $current_branch
set newname [get_config gui.newbranchtemplate] set newname [get_config gui.newbranchtemplate]
label $w.header -text [mc "Rename Branch"] -font font_uibold ${NS}::label $w.header -text [mc "Rename Branch"]\
-font font_uibold -anchor center
pack $w.header -side top -fill x pack $w.header -side top -fill x
frame $w.buttons ${NS}::frame $w.buttons
button $w.buttons.rename -text [mc Rename] \ ${NS}::button $w.buttons.rename -text [mc Rename] \
-default active \ -default active \
-command [cb _rename] -command [cb _rename]
pack $w.buttons.rename -side right pack $w.buttons.rename -side right
button $w.buttons.cancel -text [mc Cancel] \ ${NS}::button $w.buttons.cancel -text [mc Cancel] \
-command [list destroy $w] -command [list destroy $w]
pack $w.buttons.cancel -side right -padx 5 pack $w.buttons.cancel -side right -padx 5
pack $w.buttons -side bottom -fill x -pady 10 -padx 10 pack $w.buttons -side bottom -fill x -pady 10 -padx 10
frame $w.rename ${NS}::frame $w.rename
label $w.rename.oldname_l -text [mc "Branch:"] ${NS}::label $w.rename.oldname_l -text [mc "Branch:"]
eval tk_optionMenu $w.rename.oldname_m @oldname [load_all_heads] if {$use_ttk} {
ttk::combobox $w.rename.oldname_m -textvariable @oldname \
-values [load_all_heads] -state readonly
} else {
eval tk_optionMenu $w.rename.oldname_m @oldname [load_all_heads]
}
label $w.rename.newname_l -text [mc "New Name:"] ${NS}::label $w.rename.newname_l -text [mc "New Name:"]
entry $w.rename.newname_t \ ${NS}::entry $w.rename.newname_t \
-borderwidth 1 \
-relief sunken \
-width 40 \ -width 40 \
-textvariable @newname \ -textvariable @newname \
-validate key \ -validate key \
@ -60,6 +65,7 @@ constructor dialog {} {
$w.rename.newname_t icursor end $w.rename.newname_t icursor end
focus $w.rename.newname_t focus $w.rename.newname_t
" "
wm deiconify $w
tkwait window $w tkwait window $w
} }

View File

@ -21,23 +21,23 @@ field browser_busy 1
field ls_buf {}; # Buffered record output from ls-tree field ls_buf {}; # Buffered record output from ls-tree
constructor new {commit {path {}}} { constructor new {commit {path {}}} {
global cursor_ptr M1B global cursor_ptr M1B use_ttk NS
make_toplevel top w make_dialog top w
wm withdraw $top
wm title $top [append "[appname] ([reponame]): " [mc "File Browser"]] wm title $top [append "[appname] ([reponame]): " [mc "File Browser"]]
set browser_commit $commit set browser_commit $commit
set browser_path $browser_commit:$path set browser_path $browser_commit:$path
label $w.path \ ${NS}::label $w.path \
-textvariable @browser_path \ -textvariable @browser_path \
-anchor w \ -anchor w \
-justify left \ -justify left \
-borderwidth 1 \
-relief sunken \
-font font_uibold -font font_uibold
if {!$use_ttk} { $w.path configure -borderwidth 1 -relief sunken}
pack $w.path -anchor w -side top -fill x pack $w.path -anchor w -side top -fill x
frame $w.list ${NS}::frame $w.list
set w_list $w.list.l set w_list $w.list.l
text $w_list -background white -foreground black \ text $w_list -background white -foreground black \
-borderwidth 0 \ -borderwidth 0 \
@ -49,19 +49,18 @@ constructor new {commit {path {}}} {
-xscrollcommand [list $w.list.sbx set] \ -xscrollcommand [list $w.list.sbx set] \
-yscrollcommand [list $w.list.sby set] -yscrollcommand [list $w.list.sby set]
rmsel_tag $w_list rmsel_tag $w_list
scrollbar $w.list.sbx -orient h -command [list $w_list xview] ${NS}::scrollbar $w.list.sbx -orient h -command [list $w_list xview]
scrollbar $w.list.sby -orient v -command [list $w_list yview] ${NS}::scrollbar $w.list.sby -orient v -command [list $w_list yview]
pack $w.list.sbx -side bottom -fill x pack $w.list.sbx -side bottom -fill x
pack $w.list.sby -side right -fill y pack $w.list.sby -side right -fill y
pack $w_list -side left -fill both -expand 1 pack $w_list -side left -fill both -expand 1
pack $w.list -side top -fill both -expand 1 pack $w.list -side top -fill both -expand 1
label $w.status \ ${NS}::label $w.status \
-textvariable @browser_status \ -textvariable @browser_status \
-anchor w \ -anchor w \
-justify left \ -justify left
-borderwidth 1 \ if {!$use_ttk} { $w.status configure -borderwidth 1 -relief sunken}
-relief sunken
pack $w.status -anchor w -side bottom -fill x pack $w.status -anchor w -side bottom -fill x
bind $w_list <Button-1> "[cb _click 0 @%x,%y];break" bind $w_list <Button-1> "[cb _click 0 @%x,%y];break"
@ -78,6 +77,7 @@ constructor new {commit {path {}}} {
bind $w_list <Right> break bind $w_list <Right> break
bind $w_list <Visibility> [list focus $w_list] bind $w_list <Visibility> [list focus $w_list]
wm deiconify $top
set w $w_list set w $w_list
if {$path ne {}} { if {$path ne {}} {
_ls $this $browser_commit:$path $path _ls $this $browser_commit:$path $path
@ -263,23 +263,27 @@ field w ; # widget path
field w_rev ; # mega-widget to pick the initial revision field w_rev ; # mega-widget to pick the initial revision
constructor dialog {} { constructor dialog {} {
make_toplevel top w global use_ttk NS
make_dialog top w
wm withdraw $top
wm title $top [append "[appname] ([reponame]): " [mc "Browse Branch Files"]] wm title $top [append "[appname] ([reponame]): " [mc "Browse Branch Files"]]
if {$top ne {.}} { if {$top ne {.}} {
wm geometry $top "+[winfo rootx .]+[winfo rooty .]" wm geometry $top "+[winfo rootx .]+[winfo rooty .]"
wm transient $top .
} }
label $w.header \ ${NS}::label $w.header \
-text [mc "Browse Branch Files"] \ -text [mc "Browse Branch Files"] \
-font font_uibold -font font_uibold \
-anchor center
pack $w.header -side top -fill x pack $w.header -side top -fill x
frame $w.buttons ${NS}::frame $w.buttons
button $w.buttons.browse -text [mc Browse] \ ${NS}::button $w.buttons.browse -text [mc Browse] \
-default active \ -default active \
-command [cb _open] -command [cb _open]
pack $w.buttons.browse -side right pack $w.buttons.browse -side right
button $w.buttons.cancel -text [mc Cancel] \ ${NS}::button $w.buttons.cancel -text [mc Cancel] \
-command [list destroy $w] -command [list destroy $w]
pack $w.buttons.cancel -side right -padx 5 pack $w.buttons.cancel -side right -padx 5
pack $w.buttons -side bottom -fill x -pady 10 -padx 10 pack $w.buttons -side bottom -fill x -pady 10 -padx 10
@ -291,6 +295,7 @@ constructor dialog {} {
bind $w <Visibility> [cb _visible] bind $w <Visibility> [cb _visible]
bind $w <Key-Escape> [list destroy $w] bind $w <Key-Escape> [list destroy $w]
bind $w <Key-Return> [cb _open]\;break bind $w <Key-Return> [cb _open]\;break
wm deiconify $top
tkwait window $w tkwait window $w
} }

View File

@ -9,6 +9,7 @@ field w_cons {}; # embedded console window object
field new_expr ; # expression the user saw/thinks this is field new_expr ; # expression the user saw/thinks this is
field new_hash ; # commit SHA-1 we are switching to field new_hash ; # commit SHA-1 we are switching to
field new_ref ; # ref we are updating/creating field new_ref ; # ref we are updating/creating
field old_hash ; # commit SHA-1 that was checked out when we started
field parent_w .; # window that started us field parent_w .; # window that started us
field merge_type none; # type of merge to apply to existing branch field merge_type none; # type of merge to apply to existing branch
@ -280,11 +281,11 @@ method _start_checkout {} {
# -- Our in memory state should match the repository. # -- Our in memory state should match the repository.
# #
repository_state curType curHEAD curMERGE_HEAD repository_state curType old_hash curMERGE_HEAD
if {[string match amend* $commit_type] if {[string match amend* $commit_type]
&& $curType eq {normal} && $curType eq {normal}
&& $curHEAD eq $HEAD} { && $old_hash eq $HEAD} {
} elseif {$commit_type ne $curType || $HEAD ne $curHEAD} { } elseif {$commit_type ne $curType || $HEAD ne $old_hash} {
info_popup [mc "Last scanned state does not match repository state. info_popup [mc "Last scanned state does not match repository state.
Another Git program has modified this repository since the last scan. A rescan must be performed before the current branch can be changed. Another Git program has modified this repository since the last scan. A rescan must be performed before the current branch can be changed.
@ -297,7 +298,7 @@ The rescan will be automatically started now.
return return
} }
if {$curHEAD eq $new_hash} { if {$old_hash eq $new_hash} {
_after_readtree $this _after_readtree $this
} elseif {[is_config_true gui.trustmtime]} { } elseif {[is_config_true gui.trustmtime]} {
_readtree $this _readtree $this
@ -453,13 +454,47 @@ method _after_readtree {} {
If you wanted to be on a branch, create one now starting from 'This Detached Checkout'."] If you wanted to be on a branch, create one now starting from 'This Detached Checkout'."]
} }
# -- Run the post-checkout hook.
#
set fd_ph [githook_read post-checkout $old_hash $new_hash 1]
if {$fd_ph ne {}} {
global pch_error
set pch_error {}
fconfigure $fd_ph -blocking 0 -translation binary -eofchar {}
fileevent $fd_ph readable [cb _postcheckout_wait $fd_ph]
} else {
_update_repo_state $this
}
}
method _postcheckout_wait {fd_ph} {
global pch_error
append pch_error [read $fd_ph]
fconfigure $fd_ph -blocking 1
if {[eof $fd_ph]} {
if {[catch {close $fd_ph}]} {
hook_failed_popup post-checkout $pch_error 0
}
unset pch_error
_update_repo_state $this
return
}
fconfigure $fd_ph -blocking 0
}
method _update_repo_state {} {
# -- Update our repository state. If we were previously in # -- Update our repository state. If we were previously in
# amend mode we need to toss the current buffer and do a # amend mode we need to toss the current buffer and do a
# full rescan to update our file lists. If we weren't in # full rescan to update our file lists. If we weren't in
# amend mode our file lists are accurate and we can avoid # amend mode our file lists are accurate and we can avoid
# the rescan. # the rescan.
# #
global selected_commit_type commit_type HEAD MERGE_HEAD PARENT
global ui_comm
unlock_index unlock_index
set name [_name $this]
set selected_commit_type new set selected_commit_type new
if {[string match amend* $commit_type]} { if {[string match amend* $commit_type]} {
$ui_comm delete 0.0 end $ui_comm delete 0.0 end

View File

@ -17,6 +17,7 @@ variable all_families [list] ; # All fonts known to Tk
constructor pick {path title a_family a_size} { constructor pick {path title a_family a_size} {
variable all_families variable all_families
global use_ttk NS
set v_family $a_family set v_family $a_family
set v_size $a_size set v_size $a_size
@ -27,29 +28,30 @@ constructor pick {path title a_family a_size} {
set f_family $pv_family set f_family $pv_family
set f_size $pv_size set f_size $pv_size
make_toplevel top w make_dialog top w
wm withdraw $top
wm title $top "[appname] ([reponame]): $title" wm title $top "[appname] ([reponame]): $title"
wm geometry $top "+[winfo rootx $path]+[winfo rooty $path]" wm geometry $top "+[winfo rootx $path]+[winfo rooty $path]"
label $w.header -text $title -font font_uibold ${NS}::label $w.header -text $title -font font_uibold -anchor center
pack $w.header -side top -fill x pack $w.header -side top -fill x
frame $w.buttons ${NS}::frame $w.buttons
button $w.buttons.select \ ${NS}::button $w.buttons.select \
-text [mc Select] \ -text [mc Select] \
-default active \ -default active \
-command [cb _select] -command [cb _select]
button $w.buttons.cancel \ ${NS}::button $w.buttons.cancel \
-text [mc Cancel] \ -text [mc Cancel] \
-command [list destroy $w] -command [list destroy $w]
pack $w.buttons.select -side right pack $w.buttons.select -side right
pack $w.buttons.cancel -side right -padx 5 pack $w.buttons.cancel -side right -padx 5
pack $w.buttons -side bottom -fill x -pady 10 -padx 10 pack $w.buttons -side bottom -fill x -pady 10 -padx 10
frame $w.inner ${NS}::frame $w.inner
frame $w.inner.family ${NS}::frame $w.inner.family
label $w.inner.family.l \ ${NS}::label $w.inner.family.l \
-text [mc "Font Family"] \ -text [mc "Font Family"] \
-anchor w -anchor w
set w_family $w.inner.family.v set w_family $w.inner.family.v
@ -64,16 +66,16 @@ constructor pick {path title a_family a_size} {
-height 10 \ -height 10 \
-yscrollcommand [list $w.inner.family.sby set] -yscrollcommand [list $w.inner.family.sby set]
rmsel_tag $w_family rmsel_tag $w_family
scrollbar $w.inner.family.sby -command [list $w_family yview] ${NS}::scrollbar $w.inner.family.sby -command [list $w_family yview]
pack $w.inner.family.l -side top -fill x pack $w.inner.family.l -side top -fill x
pack $w.inner.family.sby -side right -fill y pack $w.inner.family.sby -side right -fill y
pack $w_family -fill both -expand 1 pack $w_family -fill both -expand 1
frame $w.inner.size ${NS}::frame $w.inner.size
label $w.inner.size.l \ ${NS}::label $w.inner.size.l \
-text [mc "Font Size"] \ -text [mc "Font Size"] \
-anchor w -anchor w
spinbox $w.inner.size.v \ tspinbox $w.inner.size.v \
-textvariable @f_size \ -textvariable @f_size \
-from 2 -to 80 -increment 1 \ -from 2 -to 80 -increment 1 \
-width 3 -width 3
@ -86,8 +88,8 @@ constructor pick {path title a_family a_size} {
grid columnconfigure $w.inner 0 -weight 1 grid columnconfigure $w.inner 0 -weight 1
pack $w.inner -fill both -expand 1 -padx 5 -pady 5 pack $w.inner -fill both -expand 1 -padx 5 -pady 5
frame $w.example ${NS}::frame $w.example
label $w.example.l \ ${NS}::label $w.example.l \
-text [mc "Font Example"] \ -text [mc "Font Example"] \
-anchor w -anchor w
set w_example $w.example.t set w_example $w.example.t
@ -129,6 +131,7 @@ constructor pick {path title a_family a_size} {
grab $w grab $w
focus $w focus $w
" "
wm deiconify $w
tkwait window $w tkwait window $w
} }

View File

@ -22,9 +22,9 @@ field readtree_err ; # Error output from read-tree (if any)
field sorted_recent ; # recent repositories (sorted) field sorted_recent ; # recent repositories (sorted)
constructor pick {} { constructor pick {} {
global M1T M1B global M1T M1B use_ttk NS
make_toplevel top w make_dialog top w
wm title $top [mc "Git Gui"] wm title $top [mc "Git Gui"]
if {$top eq {.}} { if {$top eq {.}} {
@ -71,11 +71,11 @@ constructor pick {} {
set w_body $w.body set w_body $w.body
set opts $w_body.options set opts $w_body.options
frame $w_body ${NS}::frame $w_body
text $opts \ text $opts \
-cursor $::cursor_ptr \ -cursor $::cursor_ptr \
-relief flat \ -relief flat \
-background [$w_body cget -background] \ -background [get_bg_color $w_body] \
-wrap none \ -wrap none \
-spacing1 5 \ -spacing1 5 \
-width 50 \ -width 50 \
@ -100,12 +100,17 @@ constructor pick {} {
$opts insert end [mc "Clone Existing Repository"] link_clone $opts insert end [mc "Clone Existing Repository"] link_clone
$opts insert end "\n" $opts insert end "\n"
if {$m_repo ne {}} { if {$m_repo ne {}} {
if {[tk windowingsystem] eq "win32"} {
set key L
} else {
set key C
}
$m_repo add command \ $m_repo add command \
-command [cb _next clone] \ -command [cb _next clone] \
-accelerator $M1T-C \ -accelerator $M1T-$key \
-label [mc "Clone..."] -label [mc "Clone..."]
bind $top <$M1B-c> [cb _next clone] bind $top <$M1B-[string tolower $key]> [cb _next clone]
bind $top <$M1B-C> [cb _next clone] bind $top <$M1B-[string toupper $key]> [cb _next clone]
} }
$opts tag conf link_open -foreground blue -underline 1 $opts tag conf link_open -foreground blue -underline 1
@ -132,15 +137,15 @@ constructor pick {} {
-label [mc "Recent Repositories"] -label [mc "Recent Repositories"]
} }
label $w_body.space ${NS}::label $w_body.space
label $w_body.recentlabel \ ${NS}::label $w_body.recentlabel \
-anchor w \ -anchor w \
-text [mc "Open Recent Repository:"] -text [mc "Open Recent Repository:"]
set w_recentlist $w_body.recentlist set w_recentlist $w_body.recentlist
text $w_recentlist \ text $w_recentlist \
-cursor $::cursor_ptr \ -cursor $::cursor_ptr \
-relief flat \ -relief flat \
-background [$w_body.recentlabel cget -background] \ -background [get_bg_color $w_body.recentlabel] \
-wrap none \ -wrap none \
-width 50 \ -width 50 \
-height 10 -height 10
@ -176,10 +181,10 @@ constructor pick {} {
} }
pack $w_body -fill x -padx 10 -pady 10 pack $w_body -fill x -padx 10 -pady 10
frame $w.buttons ${NS}::frame $w.buttons
set w_next $w.buttons.next set w_next $w.buttons.next
set w_quit $w.buttons.quit set w_quit $w.buttons.quit
button $w_quit \ ${NS}::button $w_quit \
-text [mc "Quit"] \ -text [mc "Quit"] \
-command exit -command exit
pack $w_quit -side right -padx 5 pack $w_quit -side right -padx 5
@ -203,6 +208,7 @@ constructor pick {} {
wm deiconify $top wm deiconify $top
tkwait variable @done tkwait variable @done
grab release $top
if {$top eq {.}} { if {$top eq {.}} {
eval destroy [winfo children $top] eval destroy [winfo children $top]
} }
@ -235,6 +241,8 @@ proc _get_recentrepos {} {
foreach p [get_config gui.recentrepo] { foreach p [get_config gui.recentrepo] {
if {[_is_git [file join $p .git]]} { if {[_is_git [file join $p .git]]} {
lappend recent $p lappend recent $p
} else {
_unset_recentrepo $p
} }
} }
return [lsort $recent] return [lsort $recent]
@ -243,6 +251,7 @@ proc _get_recentrepos {} {
proc _unset_recentrepo {p} { proc _unset_recentrepo {p} {
regsub -all -- {([()\[\]{}\.^$+*?\\])} $p {\\\1} p regsub -all -- {([()\[\]{}\.^$+*?\\])} $p {\\\1} p
git config --global --unset gui.recentrepo "^$p\$" git config --global --unset gui.recentrepo "^$p\$"
load_config 1
} }
proc _append_recentrepos {path} { proc _append_recentrepos {path} {
@ -261,6 +270,7 @@ proc _append_recentrepos {path} {
lappend recent $path lappend recent $path
git config --global --add gui.recentrepo $path git config --global --add gui.recentrepo $path
load_config 1
while {[llength $recent] > 10} { while {[llength $recent] > 10} {
_unset_recentrepo [lindex $recent 0] _unset_recentrepo [lindex $recent 0]
@ -280,9 +290,10 @@ method _open_recent_path {p} {
} }
method _next {action} { method _next {action} {
global NS
destroy $w_body destroy $w_body
if {![winfo exists $w_next]} { if {![winfo exists $w_next]} {
button $w_next -default active ${NS}::button $w_next -default active
pack $w_next -side right -padx 5 -before $w_quit pack $w_next -side right -padx 5 -before $w_quit
} }
_do_$action $this _do_$action $this
@ -371,26 +382,25 @@ proc _objdir {path} {
## Create New Repository ## Create New Repository
method _do_new {} { method _do_new {} {
global use_ttk NS
$w_next conf \ $w_next conf \
-state disabled \ -state disabled \
-command [cb _do_new2] \ -command [cb _do_new2] \
-text [mc "Create"] -text [mc "Create"]
frame $w_body ${NS}::frame $w_body
label $w_body.h \ ${NS}::label $w_body.h \
-font font_uibold \ -font font_uibold -anchor center \
-text [mc "Create New Repository"] -text [mc "Create New Repository"]
pack $w_body.h -side top -fill x -pady 10 pack $w_body.h -side top -fill x -pady 10
pack $w_body -fill x -padx 10 pack $w_body -fill x -padx 10
frame $w_body.where ${NS}::frame $w_body.where
label $w_body.where.l -text [mc "Directory:"] ${NS}::label $w_body.where.l -text [mc "Directory:"]
entry $w_body.where.t \ ${NS}::entry $w_body.where.t \
-textvariable @local_path \ -textvariable @local_path \
-borderwidth 1 \
-relief sunken \
-width 50 -width 50
button $w_body.where.b \ ${NS}::button $w_body.where.b \
-text [mc "Browse"] \ -text [mc "Browse"] \
-command [cb _new_local_path] -command [cb _new_local_path]
set w_localpath $w_body.where.t set w_localpath $w_body.where.t
@ -398,6 +408,8 @@ method _do_new {} {
grid $w_body.where.l $w_body.where.t $w_body.where.b -sticky ew grid $w_body.where.l $w_body.where.t $w_body.where.b -sticky ew
pack $w_body.where -fill x pack $w_body.where -fill x
grid columnconfigure $w_body.where 1 -weight 1
trace add variable @local_path write [cb _write_local_path] trace add variable @local_path write [cb _write_local_path]
bind $w_body.h <Destroy> [list trace remove variable @local_path write [cb _write_local_path]] bind $w_body.h <Destroy> [list trace remove variable @local_path write [cb _write_local_path]]
update update
@ -454,63 +466,57 @@ proc _new_ok {p} {
## Clone Existing Repository ## Clone Existing Repository
method _do_clone {} { method _do_clone {} {
global use_ttk NS
$w_next conf \ $w_next conf \
-state disabled \ -state disabled \
-command [cb _do_clone2] \ -command [cb _do_clone2] \
-text [mc "Clone"] -text [mc "Clone"]
frame $w_body ${NS}::frame $w_body
label $w_body.h \ ${NS}::label $w_body.h \
-font font_uibold \ -font font_uibold -anchor center \
-text [mc "Clone Existing Repository"] -text [mc "Clone Existing Repository"]
pack $w_body.h -side top -fill x -pady 10 pack $w_body.h -side top -fill x -pady 10
pack $w_body -fill x -padx 10 pack $w_body -fill x -padx 10
set args $w_body.args set args $w_body.args
frame $w_body.args ${NS}::frame $w_body.args
pack $args -fill both pack $args -fill both
label $args.origin_l -text [mc "Source Location:"] ${NS}::label $args.origin_l -text [mc "Source Location:"]
entry $args.origin_t \ ${NS}::entry $args.origin_t \
-textvariable @origin_url \ -textvariable @origin_url \
-borderwidth 1 \
-relief sunken \
-width 50 -width 50
button $args.origin_b \ ${NS}::button $args.origin_b \
-text [mc "Browse"] \ -text [mc "Browse"] \
-command [cb _open_origin] -command [cb _open_origin]
grid $args.origin_l $args.origin_t $args.origin_b -sticky ew grid $args.origin_l $args.origin_t $args.origin_b -sticky ew
label $args.where_l -text [mc "Target Directory:"] ${NS}::label $args.where_l -text [mc "Target Directory:"]
entry $args.where_t \ ${NS}::entry $args.where_t \
-textvariable @local_path \ -textvariable @local_path \
-borderwidth 1 \
-relief sunken \
-width 50 -width 50
button $args.where_b \ ${NS}::button $args.where_b \
-text [mc "Browse"] \ -text [mc "Browse"] \
-command [cb _new_local_path] -command [cb _new_local_path]
grid $args.where_l $args.where_t $args.where_b -sticky ew grid $args.where_l $args.where_t $args.where_b -sticky ew
set w_localpath $args.where_t set w_localpath $args.where_t
label $args.type_l -text [mc "Clone Type:"] ${NS}::label $args.type_l -text [mc "Clone Type:"]
frame $args.type_f ${NS}::frame $args.type_f
set w_types [list] set w_types [list]
lappend w_types [radiobutton $args.type_f.hardlink \ lappend w_types [${NS}::radiobutton $args.type_f.hardlink \
-state disabled \ -state disabled \
-anchor w \
-text [mc "Standard (Fast, Semi-Redundant, Hardlinks)"] \ -text [mc "Standard (Fast, Semi-Redundant, Hardlinks)"] \
-variable @clone_type \ -variable @clone_type \
-value hardlink] -value hardlink]
lappend w_types [radiobutton $args.type_f.full \ lappend w_types [${NS}::radiobutton $args.type_f.full \
-state disabled \ -state disabled \
-anchor w \
-text [mc "Full Copy (Slower, Redundant Backup)"] \ -text [mc "Full Copy (Slower, Redundant Backup)"] \
-variable @clone_type \ -variable @clone_type \
-value full] -value full]
lappend w_types [radiobutton $args.type_f.shared \ lappend w_types [${NS}::radiobutton $args.type_f.shared \
-state disabled \ -state disabled \
-anchor w \
-text [mc "Shared (Fastest, Not Recommended, No Backup)"] \ -text [mc "Shared (Fastest, Not Recommended, No Backup)"] \
-variable @clone_type \ -variable @clone_type \
-value shared] -value shared]
@ -964,7 +970,34 @@ method _readtree_wait {fd} {
return return
} }
set done 1 # -- Run the post-checkout hook.
#
set fd_ph [githook_read post-checkout [string repeat 0 40] \
[git rev-parse HEAD] 1]
if {$fd_ph ne {}} {
global pch_error
set pch_error {}
fconfigure $fd_ph -blocking 0 -translation binary -eofchar {}
fileevent $fd_ph readable [cb _postcheckout_wait $fd_ph]
} else {
set done 1
}
}
method _postcheckout_wait {fd_ph} {
global pch_error
append pch_error [read $fd_ph]
fconfigure $fd_ph -blocking 1
if {[eof $fd_ph]} {
if {[catch {close $fd_ph}]} {
hook_failed_popup post-checkout $pch_error 0
}
unset pch_error
set done 1
return
}
fconfigure $fd_ph -blocking 0
} }
###################################################################### ######################################################################
@ -972,32 +1005,33 @@ method _readtree_wait {fd} {
## Open Existing Repository ## Open Existing Repository
method _do_open {} { method _do_open {} {
global NS
$w_next conf \ $w_next conf \
-state disabled \ -state disabled \
-command [cb _do_open2] \ -command [cb _do_open2] \
-text [mc "Open"] -text [mc "Open"]
frame $w_body ${NS}::frame $w_body
label $w_body.h \ ${NS}::label $w_body.h \
-font font_uibold \ -font font_uibold -anchor center \
-text [mc "Open Existing Repository"] -text [mc "Open Existing Repository"]
pack $w_body.h -side top -fill x -pady 10 pack $w_body.h -side top -fill x -pady 10
pack $w_body -fill x -padx 10 pack $w_body -fill x -padx 10
frame $w_body.where ${NS}::frame $w_body.where
label $w_body.where.l -text [mc "Repository:"] ${NS}::label $w_body.where.l -text [mc "Repository:"]
entry $w_body.where.t \ ${NS}::entry $w_body.where.t \
-textvariable @local_path \ -textvariable @local_path \
-borderwidth 1 \
-relief sunken \
-width 50 -width 50
button $w_body.where.b \ ${NS}::button $w_body.where.b \
-text [mc "Browse"] \ -text [mc "Browse"] \
-command [cb _open_local_path] -command [cb _open_local_path]
grid $w_body.where.l $w_body.where.t $w_body.where.b -sticky ew grid $w_body.where.l $w_body.where.t $w_body.where.b -sticky ew
pack $w_body.where -fill x pack $w_body.where -fill x
grid columnconfigure $w_body.where 1 -weight 1
trace add variable @local_path write [cb _write_local_path] trace add variable @local_path write [cb _write_local_path]
bind $w_body.h <Destroy> [list trace remove variable @local_path write [cb _write_local_path]] bind $w_body.h <Destroy> [list trace remove variable @local_path write [cb _write_local_path]]
update update

View File

@ -10,7 +10,7 @@ field w_list ; # list of currently filtered specs
field w_filter ; # filter entry for $w_list field w_filter ; # filter entry for $w_list
field c_expr {}; # current revision expression field c_expr {}; # current revision expression
field filter ; # current filter string field filter ""; # current filter string
field revtype head; # type of revision chosen field revtype head; # type of revision chosen
field cur_specs [list]; # list of specs for $revtype field cur_specs [list]; # list of specs for $revtype
field spec_head ; # list of all head specs field spec_head ; # list of all head specs
@ -32,7 +32,7 @@ proc new_unmerged {path {title {}}} {
} }
constructor _new {path unmerged_only title} { constructor _new {path unmerged_only title} {
global current_branch is_detached global current_branch is_detached use_ttk NS
if {![info exists ::all_remotes]} { if {![info exists ::all_remotes]} {
load_all_remotes load_all_remotes
@ -41,65 +41,65 @@ constructor _new {path unmerged_only title} {
set w $path set w $path
if {$title ne {}} { if {$title ne {}} {
labelframe $w -text $title ${NS}::labelframe $w -text $title
} else { } else {
frame $w ${NS}::frame $w
} }
bind $w <Destroy> [cb _delete %W] bind $w <Destroy> [cb _delete %W]
if {$is_detached} { if {$is_detached} {
radiobutton $w.detachedhead_r \ ${NS}::radiobutton $w.detachedhead_r \
-anchor w \
-text [mc "This Detached Checkout"] \ -text [mc "This Detached Checkout"] \
-value HEAD \ -value HEAD \
-variable @revtype -variable @revtype
if {!$use_ttk} {$w.detachedhead_r configure -anchor w}
grid $w.detachedhead_r -sticky we -padx {0 5} -columnspan 2 grid $w.detachedhead_r -sticky we -padx {0 5} -columnspan 2
} }
radiobutton $w.expr_r \ ${NS}::radiobutton $w.expr_r \
-text [mc "Revision Expression:"] \ -text [mc "Revision Expression:"] \
-value expr \ -value expr \
-variable @revtype -variable @revtype
entry $w.expr_t \ ${NS}::entry $w.expr_t \
-borderwidth 1 \
-relief sunken \
-width 50 \ -width 50 \
-textvariable @c_expr \ -textvariable @c_expr \
-validate key \ -validate key \
-validatecommand [cb _validate %d %S] -validatecommand [cb _validate %d %S]
grid $w.expr_r $w.expr_t -sticky we -padx {0 5} grid $w.expr_r $w.expr_t -sticky we -padx {0 5}
frame $w.types ${NS}::frame $w.types
radiobutton $w.types.head_r \ ${NS}::radiobutton $w.types.head_r \
-text [mc "Local Branch"] \ -text [mc "Local Branch"] \
-value head \ -value head \
-variable @revtype -variable @revtype
pack $w.types.head_r -side left pack $w.types.head_r -side left
radiobutton $w.types.trck_r \ ${NS}::radiobutton $w.types.trck_r \
-text [mc "Tracking Branch"] \ -text [mc "Tracking Branch"] \
-value trck \ -value trck \
-variable @revtype -variable @revtype
pack $w.types.trck_r -side left pack $w.types.trck_r -side left
radiobutton $w.types.tag_r \ ${NS}::radiobutton $w.types.tag_r \
-text [mc "Tag"] \ -text [mc "Tag"] \
-value tag \ -value tag \
-variable @revtype -variable @revtype
pack $w.types.tag_r -side left pack $w.types.tag_r -side left
set w_filter $w.types.filter set w_filter $w.types.filter
entry $w_filter \ ${NS}::entry $w_filter \
-borderwidth 1 \
-relief sunken \
-width 12 \ -width 12 \
-textvariable @filter \ -textvariable @filter \
-validate key \ -validate key \
-validatecommand [cb _filter %P] -validatecommand [cb _filter %P]
pack $w_filter -side right pack $w_filter -side right
pack [label $w.types.filter_icon \ pack [${NS}::label $w.types.filter_icon \
-image ::choose_rev::img_find \ -image ::choose_rev::img_find \
] -side right ] -side right
grid $w.types -sticky we -padx {0 5} -columnspan 2 grid $w.types -sticky we -padx {0 5} -columnspan 2
frame $w.list if {$use_ttk} {
ttk::frame $w.list -style SListbox.TFrame -padding 2
} else {
frame $w.list
}
set w_list $w.list.l set w_list $w.list.l
listbox $w_list \ listbox $w_list \
-font font_diff \ -font font_diff \
@ -109,6 +109,9 @@ constructor _new {path unmerged_only title} {
-exportselection false \ -exportselection false \
-xscrollcommand [cb _sb_set $w.list.sbx h] \ -xscrollcommand [cb _sb_set $w.list.sbx h] \
-yscrollcommand [cb _sb_set $w.list.sby v] -yscrollcommand [cb _sb_set $w.list.sby v]
if {$use_ttk} {
$w_list configure -relief flat -highlightthickness 0 -borderwidth 0
}
pack $w_list -fill both -expand 1 pack $w_list -fill both -expand 1
grid $w.list -sticky nswe -padx {20 5} -columnspan 2 grid $w.list -sticky nswe -padx {20 5} -columnspan 2
bind $w_list <Any-Motion> [cb _show_tooltip @%x,%y] bind $w_list <Any-Motion> [cb _show_tooltip @%x,%y]
@ -235,11 +238,12 @@ constructor _new {path unmerged_only title} {
} }
method none {text} { method none {text} {
global NS use_ttk
if {![winfo exists $w.none_r]} { if {![winfo exists $w.none_r]} {
radiobutton $w.none_r \ ${NS}::radiobutton $w.none_r \
-anchor w \
-value none \ -value none \
-variable @revtype -variable @revtype
if {!$use_ttk} {$w.none_r configure -anchor w}
grid $w.none_r -sticky we -padx {0 5} -columnspan 2 grid $w.none_r -sticky we -padx {0 5} -columnspan 2
} }
$w.none_r configure -text $text $w.none_r configure -text $text
@ -425,6 +429,7 @@ method _delete {current} {
} }
method _sb_set {sb orient first last} { method _sb_set {sb orient first last} {
global NS
set old_focus [focus -lastfor $w] set old_focus [focus -lastfor $w]
if {$first == 0 && $last == 1} { if {$first == 0 && $last == 1} {
@ -440,10 +445,10 @@ method _sb_set {sb orient first last} {
if {![winfo exists $sb]} { if {![winfo exists $sb]} {
if {$orient eq {h}} { if {$orient eq {h}} {
scrollbar $sb -orient h -command [list $w_list xview] ${NS}::scrollbar $sb -orient h -command [list $w_list xview]
pack $sb -fill x -side bottom -before $w_list pack $sb -fill x -side bottom -before $w_list
} else { } else {
scrollbar $sb -orient v -command [list $w_list yview] ${NS}::scrollbar $sb -orient v -command [list $w_list yview]
pack $sb -fill y -side right -before $w_list pack $sb -fill y -side right -before $w_list
} }
if {$old_focus ne {}} { if {$old_focus ne {}} {

View File

@ -134,6 +134,13 @@ proc delete_this {{t {}}} {
if {[namespace exists $t]} {namespace delete $t} if {[namespace exists $t]} {namespace delete $t}
} }
proc make_dialog {t w args} {
upvar $t top $w pfx this this
global use_ttk
uplevel [linsert $args 0 make_toplevel $t $w]
pave_toplevel $pfx
}
proc make_toplevel {t w args} { proc make_toplevel {t w args} {
upvar $t top $w pfx this this upvar $t top $w pfx this this

View File

@ -27,9 +27,8 @@ You are currently in the middle of a merge that has not been fully completed. Y
if {[catch { if {[catch {
set fd [git_read cat-file commit $curHEAD] set fd [git_read cat-file commit $curHEAD]
fconfigure $fd -encoding binary -translation lf fconfigure $fd -encoding binary -translation lf
if {[catch {set enc $repo_config(i18n.commitencoding)}]} { # By default commits are assumed to be in utf-8
set enc utf-8 set enc utf-8
}
while {[gets $fd line] > 0} { while {[gets $fd line] > 0} {
if {[string match {parent *} $line]} { if {[string match {parent *} $line]} {
lappend parents [string range $line 7 end] lappend parents [string range $line 7 end]
@ -116,6 +115,23 @@ proc create_new_commit {} {
rescan ui_ready rescan ui_ready
} }
proc setup_commit_encoding {msg_wt {quiet 0}} {
global repo_config
if {[catch {set enc $repo_config(i18n.commitencoding)}]} {
set enc utf-8
}
set use_enc [tcl_encoding $enc]
if {$use_enc ne {}} {
fconfigure $msg_wt -encoding $use_enc
} else {
if {!$quiet} {
error_popup [mc "warning: Tcl does not support encoding '%s'." $enc]
}
fconfigure $msg_wt -encoding utf-8
}
}
proc commit_tree {} { proc commit_tree {} {
global HEAD commit_type file_states ui_comm repo_config global HEAD commit_type file_states ui_comm repo_config
global pch_error global pch_error
@ -201,16 +217,7 @@ A good commit message has the following format:
set msg_p [gitdir GITGUI_EDITMSG] set msg_p [gitdir GITGUI_EDITMSG]
set msg_wt [open $msg_p w] set msg_wt [open $msg_p w]
fconfigure $msg_wt -translation lf fconfigure $msg_wt -translation lf
if {[catch {set enc $repo_config(i18n.commitencoding)}]} { setup_commit_encoding $msg_wt
set enc utf-8
}
set use_enc [tcl_encoding $enc]
if {$use_enc ne {}} {
fconfigure $msg_wt -encoding $use_enc
} else {
puts stderr [mc "warning: Tcl does not support encoding '%s'." $enc]
fconfigure $msg_wt -encoding utf-8
}
puts $msg_wt $msg puts $msg_wt $msg
close $msg_wt close $msg_wt
@ -363,6 +370,7 @@ A rescan will be automatically started now.
append reflogm " ($commit_type)" append reflogm " ($commit_type)"
} }
set msg_fd [open $msg_p r] set msg_fd [open $msg_p r]
setup_commit_encoding $msg_fd 1
gets $msg_fd subject gets $msg_fd subject
close $msg_fd close $msg_fd
append reflogm {: } $subject append reflogm {: } $subject
@ -399,8 +407,8 @@ A rescan will be automatically started now.
# #
set fd_ph [githook_read post-commit] set fd_ph [githook_read post-commit]
if {$fd_ph ne {}} { if {$fd_ph ne {}} {
upvar #0 pch_error$cmt_id pc_err global pch_error
set pc_err {} set pch_error {}
fconfigure $fd_ph -blocking 0 -translation binary -eofchar {} fconfigure $fd_ph -blocking 0 -translation binary -eofchar {}
fileevent $fd_ph readable \ fileevent $fd_ph readable \
[list commit_postcommit_wait $fd_ph $cmt_id] [list commit_postcommit_wait $fd_ph $cmt_id]
@ -462,7 +470,7 @@ A rescan will be automatically started now.
} }
proc commit_postcommit_wait {fd_ph cmt_id} { proc commit_postcommit_wait {fd_ph cmt_id} {
upvar #0 pch_error$cmt_id pch_error global pch_error
append pch_error [read $fd_ph] append pch_error [read $fd_ph]
fconfigure $fd_ph -blocking 1 fconfigure $fd_ph -blocking 1

View File

@ -27,20 +27,20 @@ constructor embed {path title} {
} }
method _init {} { method _init {} {
global M1B global M1B use_ttk NS
if {$is_toplevel} { if {$is_toplevel} {
make_toplevel top w -autodelete 0 make_dialog top w -autodelete 0
wm title $top "[appname] ([reponame]): $t_short" wm title $top "[appname] ([reponame]): $t_short"
} else { } else {
frame $w ${NS}::frame $w
} }
set console_cr 1.0 set console_cr 1.0
set w_t $w.m.t set w_t $w.m.t
frame $w.m ${NS}::frame $w.m
label $w.m.l1 \ ${NS}::label $w.m.l1 \
-textvariable @t_long \ -textvariable @t_long \
-anchor w \ -anchor w \
-justify left \ -justify left \
@ -78,7 +78,7 @@ method _init {} {
" "
if {$is_toplevel} { if {$is_toplevel} {
button $w.ok -text [mc "Close"] \ ${NS}::button $w.ok -text [mc "Close"] \
-state disabled \ -state disabled \
-command [list destroy $w] -command [list destroy $w]
pack $w.ok -side bottom -anchor e -pady 10 -padx 10 pack $w.ok -side bottom -anchor e -pady 10 -padx 10
@ -206,13 +206,14 @@ method done {ok} {
} }
method _sb_set {sb orient first last} { method _sb_set {sb orient first last} {
global NS
if {![winfo exists $sb]} { if {![winfo exists $sb]} {
if {$first == $last || ($first == 0 && $last == 1)} return if {$first == $last || ($first == 0 && $last == 1)} return
if {$orient eq {h}} { if {$orient eq {h}} {
scrollbar $sb -orient h -command [list $w_t xview] ${NS}::scrollbar $sb -orient h -command [list $w_t xview]
pack $sb -fill x -side bottom -before $w_t pack $sb -fill x -side bottom -before $w_t
} else { } else {
scrollbar $sb -orient v -command [list $w_t yview] ${NS}::scrollbar $sb -orient v -command [list $w_t yview]
pack $sb -fill y -side right -before $w_t pack $sb -fill y -side right -before $w_t
} }
} }

View File

@ -2,6 +2,7 @@
# Copyright (C) 2006, 2007 Shawn Pearce # Copyright (C) 2006, 2007 Shawn Pearce
proc do_stats {} { proc do_stats {} {
global use_ttk NS
set fd [git_read count-objects -v] set fd [git_read count-objects -v]
while {[gets $fd line] > 0} { while {[gets $fd line] > 0} {
if {[regexp {^([^:]+): (\d+)$} $line _ name value]} { if {[regexp {^([^:]+): (\d+)$} $line _ name value]} {
@ -21,24 +22,22 @@ proc do_stats {} {
} }
set w .stats_view set w .stats_view
toplevel $w Dialog $w
wm withdraw $w
wm geometry $w "+[winfo rootx .]+[winfo rooty .]" wm geometry $w "+[winfo rootx .]+[winfo rooty .]"
label $w.header -text [mc "Database Statistics"] ${NS}::frame $w.buttons
pack $w.header -side top -fill x ${NS}::button $w.buttons.close -text [mc Close] \
frame $w.buttons -border 1
button $w.buttons.close -text [mc Close] \
-default active \ -default active \
-command [list destroy $w] -command [list destroy $w]
button $w.buttons.gc -text [mc "Compress Database"] \ ${NS}::button $w.buttons.gc -text [mc "Compress Database"] \
-default normal \ -default normal \
-command "destroy $w;do_gc" -command "destroy $w;do_gc"
pack $w.buttons.close -side right pack $w.buttons.close -side right
pack $w.buttons.gc -side left pack $w.buttons.gc -side left
pack $w.buttons -side bottom -fill x -pady 10 -padx 10 pack $w.buttons -side bottom -fill x -pady 10 -padx 10
frame $w.stat -borderwidth 1 -relief solid ${NS}::labelframe $w.stat -text [mc "Database Statistics"]
foreach s { foreach s {
{count {mc "Number of loose objects"}} {count {mc "Number of loose objects"}}
{size {mc "Disk space used by loose objects"} { KiB}} {size {mc "Disk space used by loose objects"} { KiB}}
@ -55,8 +54,8 @@ proc do_stats {} {
set value "$value[lindex $s 2]" set value "$value[lindex $s 2]"
} }
label $w.stat.l_$name -text "$label:" -anchor w ${NS}::label $w.stat.l_$name -text "$label:" -anchor w
label $w.stat.v_$name -text $value -anchor w ${NS}::label $w.stat.v_$name -text $value -anchor w
grid $w.stat.l_$name $w.stat.v_$name -sticky we -padx {0 5} grid $w.stat.l_$name $w.stat.v_$name -sticky we -padx {0 5}
} }
pack $w.stat -pady 10 -padx 10 pack $w.stat -pady 10 -padx 10
@ -65,6 +64,7 @@ proc do_stats {} {
bind $w <Key-Escape> [list destroy $w] bind $w <Key-Escape> [list destroy $w]
bind $w <Key-Return> [list destroy $w] bind $w <Key-Return> [list destroy $w]
wm title $w [append "[appname] ([reponame]): " [mc "Database Statistics"]] wm title $w [append "[appname] ([reponame]): " [mc "Database Statistics"]]
wm deiconify $w
tkwait window $w tkwait window $w
} }
@ -89,27 +89,26 @@ proc do_fsck_objects {} {
} }
proc hint_gc {} { proc hint_gc {} {
set object_limit 8 set ndirs 1
set limit 8
if {[is_Windows]} { if {[is_Windows]} {
set object_limit 1 set ndirs 4
set limit 1
} }
set objects_current [llength [glob \ set count [llength [glob \
-directory [gitdir objects 42] \
-nocomplain \ -nocomplain \
-tails \
-- \ -- \
*]] [gitdir objects 4\[0-[expr {$ndirs-1}]\]/*]]]
if {$objects_current >= $object_limit} { if {$count >= $limit * $ndirs} {
set objects_current [expr {$objects_current * 250}] set objects_current [expr {$count * 256/$ndirs}]
set object_limit [expr {$object_limit * 250}]
if {[ask_popup \ if {[ask_popup \
[mc "This repository currently has approximately %i loose objects. [mc "This repository currently has approximately %i loose objects.
To maintain optimal performance it is strongly recommended that you compress the database when more than %i loose objects exist. To maintain optimal performance it is strongly recommended that you compress the database.
Compress the database now?" $objects_current $object_limit]] eq yes} { Compress the database now?" $objects_current]] eq yes} {
do_gc do_gc
} }
} }

View File

@ -51,10 +51,15 @@ proc force_diff_encoding {enc} {
proc handle_empty_diff {} { proc handle_empty_diff {} {
global current_diff_path file_states file_lists global current_diff_path file_states file_lists
global diff_empty_count
set path $current_diff_path set path $current_diff_path
set s $file_states($path) set s $file_states($path)
if {[lindex $s 0] ne {_M}} return if {[lindex $s 0] ne {_M} || [has_textconv $path]} return
# Prevent infinite rescan loops
incr diff_empty_count
if {$diff_empty_count > 1} return
info_popup [mc "No differences detected. info_popup [mc "No differences detected.
@ -250,7 +255,7 @@ proc show_other_diff {path w m cont_info} {
proc start_show_diff {cont_info {add_opts {}}} { proc start_show_diff {cont_info {add_opts {}}} {
global file_states file_lists global file_states file_lists
global is_3way_diff diff_active repo_config global is_3way_diff is_submodule_diff diff_active repo_config
global ui_diff ui_index ui_workdir global ui_diff ui_index ui_workdir
global current_diff_path current_diff_side current_diff_header global current_diff_path current_diff_side current_diff_header
@ -260,6 +265,7 @@ proc start_show_diff {cont_info {add_opts {}}} {
set s $file_states($path) set s $file_states($path)
set m [lindex $s 0] set m [lindex $s 0]
set is_3way_diff 0 set is_3way_diff 0
set is_submodule_diff 0
set diff_active 1 set diff_active 1
set current_diff_header {} set current_diff_header {}
@ -274,6 +280,18 @@ proc start_show_diff {cont_info {add_opts {}}} {
lappend cmd diff-files lappend cmd diff-files
} }
} }
if {![is_config_false gui.textconv] && [git-version >= 1.6.1]} {
lappend cmd --textconv
}
if {[string match {160000 *} [lindex $s 2]]
|| [string match {160000 *} [lindex $s 3]]} {
set is_submodule_diff 1
if {[git-version >= "1.6.6"]} {
lappend cmd --submodule
}
}
lappend cmd -p lappend cmd -p
lappend cmd --no-color lappend cmd --no-color
@ -290,6 +308,14 @@ proc start_show_diff {cont_info {add_opts {}}} {
lappend cmd $path lappend cmd $path
} }
if {$is_submodule_diff && [git-version < "1.6.6"]} {
if {$w eq $ui_index} {
set cmd [list submodule summary --cached -- $path]
} else {
set cmd [list submodule summary --files -- $path]
}
}
if {[catch {set fd [eval git_read --nice $cmd]} err]} { if {[catch {set fd [eval git_read --nice $cmd]} err]} {
set diff_active 0 set diff_active 0
unlock_index unlock_index
@ -307,9 +333,10 @@ proc start_show_diff {cont_info {add_opts {}}} {
} }
proc read_diff {fd cont_info} { proc read_diff {fd cont_info} {
global ui_diff diff_active global ui_diff diff_active is_submodule_diff
global is_3way_diff is_conflict_diff current_diff_header global is_3way_diff is_conflict_diff current_diff_header
global current_diff_queue global current_diff_queue
global diff_empty_count
$ui_diff conf -state normal $ui_diff conf -state normal
while {[gets $fd line] >= 0} { while {[gets $fd line] >= 0} {
@ -368,6 +395,25 @@ proc read_diff {fd cont_info} {
set tags {} set tags {}
} }
} }
} elseif {$is_submodule_diff} {
if {$line == ""} continue
if {[regexp {^Submodule } $line]} {
set tags d_@
} elseif {[regexp {^\* } $line]} {
set line [string replace $line 0 1 {Submodule }]
set tags d_@
} else {
set op [string range $line 0 2]
switch -- $op {
{ <} {set tags d_-}
{ >} {set tags d_+}
{ W} {set tags {}}
default {
puts "error: Unhandled submodule diff marker: {$op}"
set tags {}
}
}
}
} else { } else {
set op [string index $line 0] set op [string index $line 0]
switch -- $op { switch -- $op {
@ -415,7 +461,10 @@ proc read_diff {fd cont_info} {
if {[$ui_diff index end] eq {2.0}} { if {[$ui_diff index end] eq {2.0}} {
handle_empty_diff handle_empty_diff
} else {
set diff_empty_count 0
} }
set callback [lindex $cont_info 1] set callback [lindex $cont_info 1]
if {$callback ne {}} { if {$callback ne {}} {
eval $callback eval $callback
@ -496,10 +545,23 @@ proc apply_hunk {x y} {
} }
} }
proc apply_line {x y} { proc apply_range_or_line {x y} {
global current_diff_path current_diff_header current_diff_side global current_diff_path current_diff_header current_diff_side
global ui_diff ui_index file_states global ui_diff ui_index file_states
set selected [$ui_diff tag nextrange sel 0.0]
if {$selected == {}} {
set first [$ui_diff index "@$x,$y"]
set last $first
} else {
set first [lindex $selected 0]
set last [lindex $selected 1]
}
set first_l [$ui_diff index "$first linestart"]
set last_l [$ui_diff index "$last lineend"]
if {$current_diff_path eq {} || $current_diff_header eq {}} return if {$current_diff_path eq {} || $current_diff_header eq {}} return
if {![lock_index apply_hunk]} return if {![lock_index apply_hunk]} return
@ -522,119 +584,147 @@ proc apply_line {x y} {
} }
} }
set the_l [$ui_diff index @$x,$y] set wholepatch {}
# operate only on change lines while {$first_l < $last_l} {
set c1 [$ui_diff get "$the_l linestart"] set i_l [$ui_diff search -backwards -regexp ^@@ $first_l 0.0]
if {$c1 ne {+} && $c1 ne {-}} { if {$i_l eq {}} {
unlock_index # If there's not a @@ above, then the selected range
return # must have come before the first_l @@
} set i_l [$ui_diff search -regexp ^@@ $first_l $last_l]
set sign $c1
set i_l [$ui_diff search -backwards -regexp ^@@ $the_l 0.0]
if {$i_l eq {}} {
unlock_index
return
}
# $i_l is now at the beginning of a line
# pick start line number from hunk header
set hh [$ui_diff get $i_l "$i_l + 1 lines"]
set hh [lindex [split $hh ,] 0]
set hln [lindex [split $hh -] 1]
# There is a special situation to take care of. Consider this hunk:
#
# @@ -10,4 +10,4 @@
# context before
# -old 1
# -old 2
# +new 1
# +new 2
# context after
#
# We used to keep the context lines in the order they appear in the
# hunk. But then it is not possible to correctly stage only
# "-old 1" and "+new 1" - it would result in this staged text:
#
# context before
# old 2
# new 1
# context after
#
# (By symmetry it is not possible to *un*stage "old 2" and "new 2".)
#
# We resolve the problem by introducing an asymmetry, namely, when
# a "+" line is *staged*, it is moved in front of the context lines
# that are generated from the "-" lines that are immediately before
# the "+" block. That is, we construct this patch:
#
# @@ -10,4 +10,5 @@
# context before
# +new 1
# old 1
# old 2
# context after
#
# But we do *not* treat "-" lines that are *un*staged in a special
# way.
#
# With this asymmetry it is possible to stage the change
# "old 1" -> "new 1" directly, and to stage the change
# "old 2" -> "new 2" by first staging the entire hunk and
# then unstaging the change "old 1" -> "new 1".
# This is non-empty if and only if we are _staging_ changes;
# then it accumulates the consecutive "-" lines (after converting
# them to context lines) in order to be moved after the "+" change
# line.
set pre_context {}
set n 0
set i_l [$ui_diff index "$i_l + 1 lines"]
set patch {}
while {[$ui_diff compare $i_l < "end - 1 chars"] &&
[$ui_diff get $i_l "$i_l + 2 chars"] ne {@@}} {
set next_l [$ui_diff index "$i_l + 1 lines"]
set c1 [$ui_diff get $i_l]
if {[$ui_diff compare $i_l <= $the_l] &&
[$ui_diff compare $the_l < $next_l]} {
# the line to stage/unstage
set ln [$ui_diff get $i_l $next_l]
if {$c1 eq {-}} {
set n [expr $n+1]
set patch "$patch$pre_context$ln"
} else {
set patch "$patch$ln$pre_context"
}
set pre_context {}
} elseif {$c1 ne {-} && $c1 ne {+}} {
# context line
set ln [$ui_diff get $i_l $next_l]
set patch "$patch$pre_context$ln"
set n [expr $n+1]
set pre_context {}
} elseif {$c1 eq $to_context} {
# turn change line into context line
set ln [$ui_diff get "$i_l + 1 chars" $next_l]
if {$c1 eq {-}} {
set pre_context "$pre_context $ln"
} else {
set patch "$patch $ln"
}
set n [expr $n+1]
} }
set i_l $next_l if {$i_l eq {}} {
unlock_index
return
}
# $i_l is now at the beginning of a line
# pick start line number from hunk header
set hh [$ui_diff get $i_l "$i_l + 1 lines"]
set hh [lindex [split $hh ,] 0]
set hln [lindex [split $hh -] 1]
# There is a special situation to take care of. Consider this
# hunk:
#
# @@ -10,4 +10,4 @@
# context before
# -old 1
# -old 2
# +new 1
# +new 2
# context after
#
# We used to keep the context lines in the order they appear in
# the hunk. But then it is not possible to correctly stage only
# "-old 1" and "+new 1" - it would result in this staged text:
#
# context before
# old 2
# new 1
# context after
#
# (By symmetry it is not possible to *un*stage "old 2" and "new
# 2".)
#
# We resolve the problem by introducing an asymmetry, namely,
# when a "+" line is *staged*, it is moved in front of the
# context lines that are generated from the "-" lines that are
# immediately before the "+" block. That is, we construct this
# patch:
#
# @@ -10,4 +10,5 @@
# context before
# +new 1
# old 1
# old 2
# context after
#
# But we do *not* treat "-" lines that are *un*staged in a
# special way.
#
# With this asymmetry it is possible to stage the change "old
# 1" -> "new 1" directly, and to stage the change "old 2" ->
# "new 2" by first staging the entire hunk and then unstaging
# the change "old 1" -> "new 1".
#
# Applying multiple lines adds complexity to the special
# situation. The pre_context must be moved after the entire
# first block of consecutive staged "+" lines, so that
# staging both additions gives the following patch:
#
# @@ -10,4 +10,6 @@
# context before
# +new 1
# +new 2
# old 1
# old 2
# context after
# This is non-empty if and only if we are _staging_ changes;
# then it accumulates the consecutive "-" lines (after
# converting them to context lines) in order to be moved after
# "+" change lines.
set pre_context {}
set n 0
set m 0
set i_l [$ui_diff index "$i_l + 1 lines"]
set patch {}
while {[$ui_diff compare $i_l < "end - 1 chars"] &&
[$ui_diff get $i_l "$i_l + 2 chars"] ne {@@}} {
set next_l [$ui_diff index "$i_l + 1 lines"]
set c1 [$ui_diff get $i_l]
if {[$ui_diff compare $first_l <= $i_l] &&
[$ui_diff compare $i_l < $last_l] &&
($c1 eq {-} || $c1 eq {+})} {
# a line to stage/unstage
set ln [$ui_diff get $i_l $next_l]
if {$c1 eq {-}} {
set n [expr $n+1]
set patch "$patch$pre_context$ln"
set pre_context {}
} else {
set m [expr $m+1]
set patch "$patch$ln"
}
} elseif {$c1 ne {-} && $c1 ne {+}} {
# context line
set ln [$ui_diff get $i_l $next_l]
set patch "$patch$pre_context$ln"
set n [expr $n+1]
set m [expr $m+1]
set pre_context {}
} elseif {$c1 eq $to_context} {
# turn change line into context line
set ln [$ui_diff get "$i_l + 1 chars" $next_l]
if {$c1 eq {-}} {
set pre_context "$pre_context $ln"
} else {
set patch "$patch $ln"
}
set n [expr $n+1]
set m [expr $m+1]
} else {
# a change in the opposite direction of
# to_context which is outside the range of
# lines to apply.
set patch "$patch$pre_context"
set pre_context {}
}
set i_l $next_l
}
set patch "$patch$pre_context"
set wholepatch "$wholepatch@@ -$hln,$n +$hln,$m @@\n$patch"
set first_l [$ui_diff index "$next_l + 1 lines"]
} }
set patch "@@ -$hln,$n +$hln,[eval expr $n $sign 1] @@\n$patch"
if {[catch { if {[catch {
set enc [get_path_encoding $current_diff_path] set enc [get_path_encoding $current_diff_path]
set p [eval git_write $apply_cmd] set p [eval git_write $apply_cmd]
fconfigure $p -translation binary -encoding $enc fconfigure $p -translation binary -encoding $enc
puts -nonewline $p $current_diff_header puts -nonewline $p $current_diff_header
puts -nonewline $p $patch puts -nonewline $p $wholepatch
close $p} err]} { close $p} err]} {
error_popup [append $failed_msg "\n\n$err"] error_popup [append $failed_msg "\n\n$err"]
} }

View File

@ -71,11 +71,13 @@ proc ask_popup {msg} {
} }
proc hook_failed_popup {hook msg {is_fatal 1}} { proc hook_failed_popup {hook msg {is_fatal 1}} {
global use_ttk NS
set w .hookfail set w .hookfail
toplevel $w Dialog $w
wm withdraw $w
frame $w.m ${NS}::frame $w.m
label $w.m.l1 -text "$hook hook failed:" \ ${NS}::label $w.m.l1 -text "$hook hook failed:" \
-anchor w \ -anchor w \
-justify left \ -justify left \
-font font_uibold -font font_uibold
@ -87,10 +89,10 @@ proc hook_failed_popup {hook msg {is_fatal 1}} {
-width 80 -height 10 \ -width 80 -height 10 \
-font font_diff \ -font font_diff \
-yscrollcommand [list $w.m.sby set] -yscrollcommand [list $w.m.sby set]
scrollbar $w.m.sby -command [list $w.m.t yview] ${NS}::scrollbar $w.m.sby -command [list $w.m.t yview]
pack $w.m.l1 -side top -fill x pack $w.m.l1 -side top -fill x
if {$is_fatal} { if {$is_fatal} {
label $w.m.l2 \ ${NS}::label $w.m.l2 \
-text [mc "You must correct the above errors before committing."] \ -text [mc "You must correct the above errors before committing."] \
-anchor w \ -anchor w \
-justify left \ -justify left \
@ -104,7 +106,7 @@ proc hook_failed_popup {hook msg {is_fatal 1}} {
$w.m.t insert 1.0 $msg $w.m.t insert 1.0 $msg
$w.m.t conf -state disabled $w.m.t conf -state disabled
button $w.ok -text OK \ ${NS}::button $w.ok -text OK \
-width 15 \ -width 15 \
-command "destroy $w" -command "destroy $w"
pack $w.ok -side bottom -anchor e -pady 10 -padx 10 pack $w.ok -side bottom -anchor e -pady 10 -padx 10
@ -112,5 +114,6 @@ proc hook_failed_popup {hook msg {is_fatal 1}} {
bind $w <Visibility> "grab $w; focus $w" bind $w <Visibility> "grab $w; focus $w"
bind $w <Key-Return> "destroy $w" bind $w <Key-Return> "destroy $w"
wm title $w [strcat "[appname] ([reponame]): " [mc "error"]] wm title $w [strcat "[appname] ([reponame]): " [mc "error"]]
wm deiconify $w
tkwait window $w tkwait window $w
} }

View File

@ -8,36 +8,41 @@ proc _delete_indexlock {} {
} }
proc _close_updateindex {fd after} { proc _close_updateindex {fd after} {
global use_ttk NS
fconfigure $fd -blocking 1 fconfigure $fd -blocking 1
if {[catch {close $fd} err]} { if {[catch {close $fd} err]} {
set w .indexfried set w .indexfried
toplevel $w Dialog $w
wm withdraw $w
wm title $w [strcat "[appname] ([reponame]): " [mc "Index Error"]] wm title $w [strcat "[appname] ([reponame]): " [mc "Index Error"]]
wm geometry $w "+[winfo rootx .]+[winfo rooty .]" wm geometry $w "+[winfo rootx .]+[winfo rooty .]"
pack [label $w.msg \ set s [mc "Updating the Git index failed. A rescan will be automatically started to resynchronize git-gui."]
-justify left \ text $w.msg -yscrollcommand [list $w.vs set] \
-anchor w \ -width [string length $s] -relief flat \
-text [strcat \ -borderwidth 0 -highlightthickness 0 \
[mc "Updating the Git index failed. A rescan will be automatically started to resynchronize git-gui."] \ -background [get_bg_color $w]
"\n\n$err"] \ $w.msg tag configure bold -font font_uibold -justify center
] -anchor w ${NS}::scrollbar $w.vs -command [list $w.msg yview]
$w.msg insert end $s bold \n\n$err {}
$w.msg configure -state disabled
frame $w.buttons ${NS}::button $w.continue \
button $w.buttons.continue \
-text [mc "Continue"] \ -text [mc "Continue"] \
-command [list destroy $w] -command [list destroy $w]
pack $w.buttons.continue -side right -padx 5 ${NS}::button $w.unlock \
button $w.buttons.unlock \
-text [mc "Unlock Index"] \ -text [mc "Unlock Index"] \
-command "destroy $w; _delete_indexlock" -command "destroy $w; _delete_indexlock"
pack $w.buttons.unlock -side right grid $w.msg - $w.vs -sticky news
pack $w.buttons -side bottom -fill x -pady 10 -padx 10 grid $w.unlock $w.continue - -sticky se -padx 2 -pady 2
grid columnconfigure $w 0 -weight 1
grid rowconfigure $w 0 -weight 1
wm protocol $w WM_DELETE_WINDOW update wm protocol $w WM_DELETE_WINDOW update
bind $w.buttons.continue <Visibility> " bind $w.continue <Visibility> "
grab $w grab $w
focus $w.buttons.continue focus %W
" "
wm deiconify $w
tkwait window $w tkwait window $w
$::main_status stop $::main_status stop

View File

@ -139,14 +139,14 @@ method _finish {cons ok} {
constructor dialog {} { constructor dialog {} {
global current_branch global current_branch
global M1B global M1B use_ttk NS
if {![_can_merge $this]} { if {![_can_merge $this]} {
delete_this delete_this
return return
} }
make_toplevel top w make_dialog top w
wm title $top [append "[appname] ([reponame]): " [mc "Merge"]] wm title $top [append "[appname] ([reponame]): " [mc "Merge"]]
if {$top ne {.}} { if {$top ne {.}} {
wm geometry $top "+[winfo rootx .]+[winfo rooty .]" wm geometry $top "+[winfo rootx .]+[winfo rooty .]"
@ -154,21 +154,21 @@ constructor dialog {} {
set _start [cb _start] set _start [cb _start]
label $w.header \ ${NS}::label $w.header \
-text [mc "Merge Into %s" $current_branch] \ -text [mc "Merge Into %s" $current_branch] \
-font font_uibold -font font_uibold
pack $w.header -side top -fill x pack $w.header -side top -fill x
frame $w.buttons ${NS}::frame $w.buttons
button $w.buttons.visualize \ ${NS}::button $w.buttons.visualize \
-text [mc Visualize] \ -text [mc Visualize] \
-command [cb _visualize] -command [cb _visualize]
pack $w.buttons.visualize -side left pack $w.buttons.visualize -side left
button $w.buttons.merge \ ${NS}::button $w.buttons.merge \
-text [mc Merge] \ -text [mc Merge] \
-command $_start -command $_start
pack $w.buttons.merge -side right pack $w.buttons.merge -side right
button $w.buttons.cancel \ ${NS}::button $w.buttons.cancel \
-text [mc "Cancel"] \ -text [mc "Cancel"] \
-command [cb _cancel] -command [cb _cancel]
pack $w.buttons.cancel -side right -padx 5 pack $w.buttons.cancel -side right -padx 5

View File

@ -88,7 +88,7 @@ proc merge_load_stages {path cont} {
set merge_stages(3) {} set merge_stages(3) {}
set merge_stages_buf {} set merge_stages_buf {}
set merge_stages_fd [eval git_read ls-files -u -z -- $path] set merge_stages_fd [eval git_read ls-files -u -z -- {$path}]
fconfigure $merge_stages_fd -blocking 0 -translation binary -encoding binary fconfigure $merge_stages_fd -blocking 0 -translation binary -encoding binary
fileevent $merge_stages_fd readable [list read_merge_stages $merge_stages_fd $cont] fileevent $merge_stages_fd readable [list read_merge_stages $merge_stages_fd $cont]
@ -382,7 +382,7 @@ proc merge_tool_finish {fd} {
delete_temp_files $mtool_tmpfiles delete_temp_files $mtool_tmpfiles
ui_status [mc "Merge tool failed."] ui_status [mc "Merge tool failed."]
} else { } else {
if {[is_config_true merge.keepbackup]} { if {[is_config_true mergetool.keepbackup]} {
file rename -force -- $backup "$mtool_target.orig" file rename -force -- $backup "$mtool_target.orig"
} }

View File

@ -91,7 +91,7 @@ proc save_config {} {
proc do_options {} { proc do_options {} {
global repo_config global_config font_descs global repo_config global_config font_descs
global repo_config_new global_config_new global repo_config_new global_config_new
global ui_comm_spell global ui_comm_spell use_ttk NS
array unset repo_config_new array unset repo_config_new
array unset global_config_new array unset global_config_new
@ -110,26 +110,28 @@ proc do_options {} {
} }
set w .options_editor set w .options_editor
toplevel $w Dialog $w
wm withdraw $w
wm transient $w [winfo parent $w]
wm geometry $w "+[winfo rootx .]+[winfo rooty .]" wm geometry $w "+[winfo rootx .]+[winfo rooty .]"
frame $w.buttons ${NS}::frame $w.buttons
button $w.buttons.restore -text [mc "Restore Defaults"] \ ${NS}::button $w.buttons.restore -text [mc "Restore Defaults"] \
-default normal \ -default normal \
-command do_restore_defaults -command do_restore_defaults
pack $w.buttons.restore -side left pack $w.buttons.restore -side left
button $w.buttons.save -text [mc Save] \ ${NS}::button $w.buttons.save -text [mc Save] \
-default active \ -default active \
-command [list do_save_config $w] -command [list do_save_config $w]
pack $w.buttons.save -side right pack $w.buttons.save -side right
button $w.buttons.cancel -text [mc "Cancel"] \ ${NS}::button $w.buttons.cancel -text [mc "Cancel"] \
-default normal \ -default normal \
-command [list destroy $w] -command [list destroy $w]
pack $w.buttons.cancel -side right -padx 5 pack $w.buttons.cancel -side right -padx 5
pack $w.buttons -side bottom -fill x -pady 10 -padx 10 pack $w.buttons -side bottom -fill x -pady 10 -padx 10
labelframe $w.repo -text [mc "%s Repository" [reponame]] ${NS}::labelframe $w.repo -text [mc "%s Repository" [reponame]]
labelframe $w.global -text [mc "Global (All Repositories)"] ${NS}::labelframe $w.global -text [mc "Global (All Repositories)"]
pack $w.repo -side left -fill both -expand 1 -pady 5 -padx 5 pack $w.repo -side left -fill both -expand 1 -pady 5 -padx 5
pack $w.global -side right -fill both -expand 1 -pady 5 -padx 5 pack $w.global -side right -fill both -expand 1 -pady 5 -padx 5
@ -146,6 +148,7 @@ proc do_options {} {
{b gui.trustmtime {mc "Trust File Modification Timestamps"}} {b gui.trustmtime {mc "Trust File Modification Timestamps"}}
{b gui.pruneduringfetch {mc "Prune Tracking Branches During Fetch"}} {b gui.pruneduringfetch {mc "Prune Tracking Branches During Fetch"}}
{b gui.matchtrackingbranch {mc "Match Tracking Branches"}} {b gui.matchtrackingbranch {mc "Match Tracking Branches"}}
{b gui.textconv {mc "Use Textconv For Diffs and Blames"}}
{b gui.fastcopyblame {mc "Blame Copy Only On Changed Files"}} {b gui.fastcopyblame {mc "Blame Copy Only On Changed Files"}}
{i-20..200 gui.copyblamethreshold {mc "Minimum Letters To Blame Copy On"}} {i-20..200 gui.copyblamethreshold {mc "Minimum Letters To Blame Copy On"}}
{i-0..300 gui.blamehistoryctx {mc "Blame History Context Radius (days)"}} {i-0..300 gui.blamehistoryctx {mc "Blame History Context Radius (days)"}}
@ -161,7 +164,7 @@ proc do_options {} {
foreach f {repo global} { foreach f {repo global} {
switch -glob -- $type { switch -glob -- $type {
b { b {
checkbutton $w.$f.$optid -text $text \ ${NS}::checkbutton $w.$f.$optid -text $text \
-variable ${f}_config_new($name) \ -variable ${f}_config_new($name) \
-onvalue true \ -onvalue true \
-offvalue false -offvalue false
@ -169,10 +172,10 @@ proc do_options {} {
} }
i-* { i-* {
regexp -- {-(\d+)\.\.(\d+)$} $type _junk min max regexp -- {-(\d+)\.\.(\d+)$} $type _junk min max
frame $w.$f.$optid ${NS}::frame $w.$f.$optid
label $w.$f.$optid.l -text "$text:" ${NS}::label $w.$f.$optid.l -text "$text:"
pack $w.$f.$optid.l -side left -anchor w -fill x pack $w.$f.$optid.l -side left -anchor w -fill x
spinbox $w.$f.$optid.v \ tspinbox $w.$f.$optid.v \
-textvariable ${f}_config_new($name) \ -textvariable ${f}_config_new($name) \
-from $min \ -from $min \
-to $max \ -to $max \
@ -184,11 +187,9 @@ proc do_options {} {
} }
c - c -
t { t {
frame $w.$f.$optid ${NS}::frame $w.$f.$optid
label $w.$f.$optid.l -text "$text:" ${NS}::label $w.$f.$optid.l -text "$text:"
entry $w.$f.$optid.v \ ${NS}::entry $w.$f.$optid.v \
-borderwidth 1 \
-relief sunken \
-width 20 \ -width 20 \
-textvariable ${f}_config_new($name) -textvariable ${f}_config_new($name)
pack $w.$f.$optid.l -side left -anchor w pack $w.$f.$optid.l -side left -anchor w
@ -199,7 +200,7 @@ proc do_options {} {
menu $w.$f.$optid.m menu $w.$f.$optid.m
build_encoding_menu $w.$f.$optid.m \ build_encoding_menu $w.$f.$optid.m \
[list set ${f}_config_new($name)] 1 [list set ${f}_config_new($name)] 1
button $w.$f.$optid.b \ ${NS}::button $w.$f.$optid.b \
-text [mc "Change"] \ -text [mc "Change"] \
-command [list popup_btn_menu \ -command [list popup_btn_menu \
$w.$f.$optid.m $w.$f.$optid.b] $w.$f.$optid.m $w.$f.$optid.b]
@ -226,11 +227,17 @@ proc do_options {} {
set ${f}_config_new(gui.spellingdictionary) $value set ${f}_config_new(gui.spellingdictionary) $value
} }
frame $w.$f.$optid ${NS}::frame $w.$f.$optid
label $w.$f.$optid.l -text [mc "Spelling Dictionary:"] ${NS}::label $w.$f.$optid.l -text [mc "Spelling Dictionary:"]
eval tk_optionMenu $w.$f.$optid.v \ if {$use_ttk} {
${f}_config_new(gui.spellingdictionary) \ ttk::combobox $w.$f.$optid.v \
$all_dicts -textvariable ${f}_config_new(gui.spellingdictionary) \
-values $all_dicts -state readonly
} else {
eval tk_optionMenu $w.$f.$optid.v \
${f}_config_new(gui.spellingdictionary) \
$all_dicts
}
pack $w.$f.$optid.l -side left -anchor w -fill x pack $w.$f.$optid.l -side left -anchor w -fill x
pack $w.$f.$optid.v -side right -anchor e -padx 5 pack $w.$f.$optid.v -side right -anchor e -padx 5
pack $w.$f.$optid -side top -anchor w -fill x pack $w.$f.$optid -side top -anchor w -fill x
@ -248,20 +255,20 @@ proc do_options {} {
set global_config_new(gui.$font^^size) \ set global_config_new(gui.$font^^size) \
[font configure $font -size] [font configure $font -size]
frame $w.global.$name ${NS}::frame $w.global.$name
label $w.global.$name.l -text "$text:" ${NS}::label $w.global.$name.l -text "$text:"
button $w.global.$name.b \ ${NS}::button $w.global.$name.b \
-text [mc "Change Font"] \ -text [mc "Change Font"] \
-command [list \ -command [list \
choose_font::pick \ tchoosefont \
$w \ $w \
[mc "Choose %s" $text] \ [mc "Choose %s" $text] \
global_config_new(gui.$font^^family) \ global_config_new(gui.$font^^family) \
global_config_new(gui.$font^^size) \ global_config_new(gui.$font^^size) \
] ]
label $w.global.$name.f -textvariable global_config_new(gui.$font^^family) ${NS}::label $w.global.$name.f -textvariable global_config_new(gui.$font^^family)
label $w.global.$name.s -textvariable global_config_new(gui.$font^^size) ${NS}::label $w.global.$name.s -textvariable global_config_new(gui.$font^^size)
label $w.global.$name.pt -text [mc "pt."] ${NS}::label $w.global.$name.pt -text [mc "pt."]
pack $w.global.$name.l -side left -anchor w pack $w.global.$name.l -side left -anchor w
pack $w.global.$name.b -side right -anchor e pack $w.global.$name.b -side right -anchor e
pack $w.global.$name.pt -side right -anchor w pack $w.global.$name.pt -side right -anchor w
@ -280,6 +287,7 @@ proc do_options {} {
set t [mc "Options"] set t [mc "Options"]
} }
wm title $w "[appname] ([reponame]): $t" wm title $w "[appname] ([reponame]): $t"
wm deiconify $w
tkwait window $w tkwait window $w
} }

View File

@ -13,45 +13,43 @@ field location {}; # location of the remote the user has chosen
field opt_action fetch; # action to do after registering the remote locally field opt_action fetch; # action to do after registering the remote locally
constructor dialog {} { constructor dialog {} {
global repo_config global repo_config use_ttk NS
make_toplevel top w make_dialog top w
wm withdraw $top
wm title $top [append "[appname] ([reponame]): " [mc "Add Remote"]] wm title $top [append "[appname] ([reponame]): " [mc "Add Remote"]]
if {$top ne {.}} { if {$top ne {.}} {
wm geometry $top "+[winfo rootx .]+[winfo rooty .]" wm geometry $top "+[winfo rootx .]+[winfo rooty .]"
} }
label $w.header -text [mc "Add New Remote"] -font font_uibold ${NS}::label $w.header -text [mc "Add New Remote"] \
-font font_uibold -anchor center
pack $w.header -side top -fill x pack $w.header -side top -fill x
frame $w.buttons ${NS}::frame $w.buttons
button $w.buttons.create -text [mc Add] \ ${NS}::button $w.buttons.create -text [mc Add] \
-default active \ -default active \
-command [cb _add] -command [cb _add]
pack $w.buttons.create -side right pack $w.buttons.create -side right
button $w.buttons.cancel -text [mc Cancel] \ ${NS}::button $w.buttons.cancel -text [mc Cancel] \
-command [list destroy $w] -command [list destroy $w]
pack $w.buttons.cancel -side right -padx 5 pack $w.buttons.cancel -side right -padx 5
pack $w.buttons -side bottom -fill x -pady 10 -padx 10 pack $w.buttons -side bottom -fill x -pady 10 -padx 10
labelframe $w.desc -text [mc "Remote Details"] ${NS}::labelframe $w.desc -text [mc "Remote Details"]
label $w.desc.name_l -text [mc "Name:"] ${NS}::label $w.desc.name_l -text [mc "Name:"]
set w_name $w.desc.name_t set w_name $w.desc.name_t
entry $w_name \ ${NS}::entry $w_name \
-borderwidth 1 \
-relief sunken \
-width 40 \ -width 40 \
-textvariable @name \ -textvariable @name \
-validate key \ -validate key \
-validatecommand [cb _validate_name %d %S] -validatecommand [cb _validate_name %d %S]
grid $w.desc.name_l $w_name -sticky we -padx {0 5} grid $w.desc.name_l $w_name -sticky we -padx {0 5}
label $w.desc.loc_l -text [mc "Location:"] ${NS}::label $w.desc.loc_l -text [mc "Location:"]
set w_loc $w.desc.loc_t set w_loc $w.desc.loc_t
entry $w_loc \ ${NS}::entry $w_loc \
-borderwidth 1 \
-relief sunken \
-width 40 \ -width 40 \
-textvariable @location -textvariable @location
grid $w.desc.loc_l $w_loc -sticky we -padx {0 5} grid $w.desc.loc_l $w_loc -sticky we -padx {0 5}
@ -59,21 +57,21 @@ constructor dialog {} {
grid columnconfigure $w.desc 1 -weight 1 grid columnconfigure $w.desc 1 -weight 1
pack $w.desc -anchor nw -fill x -pady 5 -padx 5 pack $w.desc -anchor nw -fill x -pady 5 -padx 5
labelframe $w.action -text [mc "Further Action"] ${NS}::labelframe $w.action -text [mc "Further Action"]
radiobutton $w.action.fetch \ ${NS}::radiobutton $w.action.fetch \
-text [mc "Fetch Immediately"] \ -text [mc "Fetch Immediately"] \
-value fetch \ -value fetch \
-variable @opt_action -variable @opt_action
pack $w.action.fetch -anchor nw pack $w.action.fetch -anchor nw
radiobutton $w.action.push \ ${NS}::radiobutton $w.action.push \
-text [mc "Initialize Remote Repository and Push"] \ -text [mc "Initialize Remote Repository and Push"] \
-value push \ -value push \
-variable @opt_action -variable @opt_action
pack $w.action.push -anchor nw pack $w.action.push -anchor nw
radiobutton $w.action.none \ ${NS}::radiobutton $w.action.none \
-text [mc "Do Nothing Else Now"] \ -text [mc "Do Nothing Else Now"] \
-value none \ -value none \
-variable @opt_action -variable @opt_action
@ -85,6 +83,7 @@ constructor dialog {} {
bind $w <Visibility> [cb _visible] bind $w <Visibility> [cb _visible]
bind $w <Key-Escape> [list destroy $w] bind $w <Key-Escape> [list destroy $w]
bind $w <Key-Return> [cb _add]\;break bind $w <Key-Return> [cb _add]\;break
wm deiconify $top
tkwait window $w tkwait window $w
} }

View File

@ -23,34 +23,40 @@ field full_cache
field cached field cached
constructor dialog {} { constructor dialog {} {
global all_remotes M1B global all_remotes M1B use_ttk NS
make_toplevel top w make_dialog top w
wm title $top [append "[appname] ([reponame]): " [mc "Delete Branch Remotely"]] wm title $top [append "[appname] ([reponame]): " [mc "Delete Branch Remotely"]]
if {$top ne {.}} { if {$top ne {.}} {
wm geometry $top "+[winfo rootx .]+[winfo rooty .]" wm geometry $top "+[winfo rootx .]+[winfo rooty .]"
} }
label $w.header -text [mc "Delete Branch Remotely"] -font font_uibold ${NS}::label $w.header -text [mc "Delete Branch Remotely"] \
-font font_uibold -anchor center
pack $w.header -side top -fill x pack $w.header -side top -fill x
frame $w.buttons ${NS}::frame $w.buttons
button $w.buttons.delete -text [mc Delete] \ ${NS}::button $w.buttons.delete -text [mc Delete] \
-default active \ -default active \
-command [cb _delete] -command [cb _delete]
pack $w.buttons.delete -side right pack $w.buttons.delete -side right
button $w.buttons.cancel -text [mc "Cancel"] \ ${NS}::button $w.buttons.cancel -text [mc "Cancel"] \
-command [list destroy $w] -command [list destroy $w]
pack $w.buttons.cancel -side right -padx 5 pack $w.buttons.cancel -side right -padx 5
pack $w.buttons -side bottom -fill x -pady 10 -padx 10 pack $w.buttons -side bottom -fill x -pady 10 -padx 10
labelframe $w.dest -text [mc "From Repository"] ${NS}::labelframe $w.dest -text [mc "From Repository"]
if {$all_remotes ne {}} { if {$all_remotes ne {}} {
radiobutton $w.dest.remote_r \ ${NS}::radiobutton $w.dest.remote_r \
-text [mc "Remote:"] \ -text [mc "Remote:"] \
-value remote \ -value remote \
-variable @urltype -variable @urltype
eval tk_optionMenu $w.dest.remote_m @remote $all_remotes if {$use_ttk} {
ttk::combobox $w.dest.remote_m -textvariable @remote \
-values $all_remotes -state readonly
} else {
eval tk_optionMenu $w.dest.remote_m @remote $all_remotes
}
grid $w.dest.remote_r $w.dest.remote_m -sticky w grid $w.dest.remote_r $w.dest.remote_m -sticky w
if {[lsearch -sorted -exact $all_remotes origin] != -1} { if {[lsearch -sorted -exact $all_remotes origin] != -1} {
set remote origin set remote origin
@ -62,13 +68,11 @@ constructor dialog {} {
} else { } else {
set urltype url set urltype url
} }
radiobutton $w.dest.url_r \ ${NS}::radiobutton $w.dest.url_r \
-text [mc "Arbitrary Location:"] \ -text [mc "Arbitrary Location:"] \
-value url \ -value url \
-variable @urltype -variable @urltype
entry $w.dest.url_t \ ${NS}::entry $w.dest.url_t \
-borderwidth 1 \
-relief sunken \
-width 50 \ -width 50 \
-textvariable @url \ -textvariable @url \
-validate key \ -validate key \
@ -81,33 +85,30 @@ constructor dialog {} {
grid columnconfigure $w.dest 1 -weight 1 grid columnconfigure $w.dest 1 -weight 1
pack $w.dest -anchor nw -fill x -pady 5 -padx 5 pack $w.dest -anchor nw -fill x -pady 5 -padx 5
labelframe $w.heads -text [mc "Branches"] ${NS}::labelframe $w.heads -text [mc "Branches"]
listbox $w.heads.l \ slistbox $w.heads.l \
-height 10 \ -height 10 \
-width 70 \ -width 70 \
-listvariable @head_list \ -listvariable @head_list \
-selectmode extended \ -selectmode extended
-yscrollcommand [list $w.heads.sby set]
scrollbar $w.heads.sby -command [list $w.heads.l yview]
frame $w.heads.footer ${NS}::frame $w.heads.footer
label $w.heads.footer.status \ ${NS}::label $w.heads.footer.status \
-textvariable @status \ -textvariable @status \
-anchor w \ -anchor w \
-justify left -justify left
button $w.heads.footer.rescan \ ${NS}::button $w.heads.footer.rescan \
-text [mc "Rescan"] \ -text [mc "Rescan"] \
-command [cb _rescan] -command [cb _rescan]
pack $w.heads.footer.status -side left -fill x pack $w.heads.footer.status -side left -fill x
pack $w.heads.footer.rescan -side right pack $w.heads.footer.rescan -side right
pack $w.heads.footer -side bottom -fill x pack $w.heads.footer -side bottom -fill x
pack $w.heads.sby -side right -fill y
pack $w.heads.l -side left -fill both -expand 1 pack $w.heads.l -side left -fill both -expand 1
pack $w.heads -fill both -expand 1 -pady 5 -padx 5 pack $w.heads -fill both -expand 1 -pady 5 -padx 5
labelframe $w.validate -text [mc "Delete Only If"] ${NS}::labelframe $w.validate -text [mc "Delete Only If"]
radiobutton $w.validate.head_r \ ${NS}::radiobutton $w.validate.head_r \
-text [mc "Merged Into:"] \ -text [mc "Merged Into:"] \
-value head \ -value head \
-variable @checktype -variable @checktype
@ -115,7 +116,7 @@ constructor dialog {} {
trace add variable @head_list write [cb _write_head_list] trace add variable @head_list write [cb _write_head_list]
trace add variable @check_head write [cb _write_check_head] trace add variable @check_head write [cb _write_check_head]
grid $w.validate.head_r $w.validate.head_m -sticky w grid $w.validate.head_r $w.validate.head_m -sticky w
radiobutton $w.validate.always_r \ ${NS}::radiobutton $w.validate.always_r \
-text [mc "Always (Do not perform merge checks)"] \ -text [mc "Always (Do not perform merge checks)"] \
-value always \ -value always \
-variable @checktype -variable @checktype
@ -208,15 +209,15 @@ method _delete {} {
return return
} }
if {[tk_messageBox \ if {$checktype ne {head}} {
-icon warning \ if {[tk_messageBox \
-type yesno \ -icon warning \
-title [wm title $w] \ -type yesno \
-parent $w \ -title [wm title $w] \
-message [mc "Recovering deleted branches is difficult. -parent $w \
-message [mc "Recovering deleted branches is difficult.\n\nDelete the selected branches?"]] ne yes} {
Delete the selected branches?"]] ne yes} { return
return }
} }
destroy $w destroy $w
@ -250,6 +251,8 @@ method _write_url {args} { set urltype url }
method _write_check_head {args} { set checktype head } method _write_check_head {args} { set checktype head }
method _write_head_list {args} { method _write_head_list {args} {
global current_branch
$head_m delete 0 end $head_m delete 0 end
foreach abr $head_list { foreach abr $head_list {
$head_m insert end radiobutton \ $head_m insert end radiobutton \
@ -258,7 +261,11 @@ method _write_head_list {args} {
-variable @check_head -variable @check_head
} }
if {[lsearch -exact -sorted $head_list $check_head] < 0} { if {[lsearch -exact -sorted $head_list $check_head] < 0} {
set check_head {} if {[lsearch -exact -sorted $head_list $current_branch] < 0} {
set check_head {}
} else {
set check_head $current_branch
}
} }
} }

View File

@ -14,15 +14,16 @@ field smarktop
field smarkbot field smarkbot
constructor new {i_w i_text args} { constructor new {i_w i_text args} {
global use_ttk NS
set w $i_w set w $i_w
set ctext $i_text set ctext $i_text
frame $w ${NS}::frame $w
label $w.l -text [mc Find:] ${NS}::label $w.l -text [mc Find:]
entry $w.ent -textvariable ${__this}::searchstring -background lightgreen entry $w.ent -textvariable ${__this}::searchstring -background lightgreen
button $w.bn -text [mc Next] -command [cb find_next] ${NS}::button $w.bn -text [mc Next] -command [cb find_next]
button $w.bp -text [mc Prev] -command [cb find_prev] ${NS}::button $w.bp -text [mc Prev] -command [cb find_prev]
checkbutton $w.cs -text [mc Case-Sensitive] \ ${NS}::checkbutton $w.cs -text [mc Case-Sensitive] \
-variable ${__this}::casesensitive -command [cb _incrsearch] -variable ${__this}::casesensitive -command [cb _incrsearch]
pack $w.l -side left pack $w.l -side left
pack $w.cs -side right pack $w.cs -side right

View File

@ -2,6 +2,7 @@
# Copyright (C) 2006, 2007 Shawn Pearce # Copyright (C) 2006, 2007 Shawn Pearce
proc do_windows_shortcut {} { proc do_windows_shortcut {} {
global _gitworktree
set fn [tk_getSaveFile \ set fn [tk_getSaveFile \
-parent . \ -parent . \
-title [append "[appname] ([reponame]): " [mc "Create Desktop Icon"]] \ -title [append "[appname] ([reponame]): " [mc "Create Desktop Icon"]] \
@ -15,7 +16,7 @@ proc do_windows_shortcut {} {
[info nameofexecutable] \ [info nameofexecutable] \
[file normalize $::argv0] \ [file normalize $::argv0] \
] \ ] \
[file dirname [file normalize [gitdir]]] [file normalize $_gitworktree]
} err]} { } err]} {
error_popup [strcat [mc "Cannot write shortcut:"] "\n\n$err"] error_popup [strcat [mc "Cannot write shortcut:"] "\n\n$err"]
} }
@ -23,7 +24,7 @@ proc do_windows_shortcut {} {
} }
proc do_cygwin_shortcut {} { proc do_cygwin_shortcut {} {
global argv0 global argv0 _gitworktree
if {[catch { if {[catch {
set desktop [exec cygpath \ set desktop [exec cygpath \
@ -54,9 +55,9 @@ proc do_cygwin_shortcut {} {
$argv0] $argv0]
win32_create_lnk $fn [list \ win32_create_lnk $fn [list \
$sh -c \ $sh -c \
"CHERE_INVOKING=1 source /etc/profile;[sq $me]" \ "CHERE_INVOKING=1 source /etc/profile;[sq $me] &" \
] \ ] \
[file dirname [file normalize [gitdir]]] [file normalize $_gitworktree]
} err]} { } err]} {
error_popup [strcat [mc "Cannot write shortcut:"] "\n\n$err"] error_popup [strcat [mc "Cannot write shortcut:"] "\n\n$err"]
} }

View File

@ -15,7 +15,7 @@ proc find_ssh_key {} {
} }
proc do_ssh_key {} { proc do_ssh_key {} {
global sshkey_title have_tk85 sshkey_fd global sshkey_title have_tk85 sshkey_fd use_ttk NS
set w .sshkey_dialog set w .sshkey_dialog
if {[winfo exists $w]} { if {[winfo exists $w]} {
@ -23,7 +23,7 @@ proc do_ssh_key {} {
return return
} }
toplevel $w Dialog $w
wm transient $w . wm transient $w .
set finfo [find_ssh_key] set finfo [find_ssh_key]
@ -35,9 +35,9 @@ proc do_ssh_key {} {
set gen_state disabled set gen_state disabled
} }
frame $w.header -relief flat ${NS}::frame $w.header
label $w.header.lbl -textvariable sshkey_title -anchor w ${NS}::label $w.header.lbl -textvariable sshkey_title -anchor w
button $w.header.gen -text [mc "Generate Key"] \ ${NS}::button $w.header.gen -text [mc "Generate Key"] \
-command [list make_ssh_key $w] -state $gen_state -command [list make_ssh_key $w] -state $gen_state
pack $w.header.lbl -side left -expand 1 -fill x pack $w.header.lbl -side left -expand 1 -fill x
pack $w.header.gen -side right pack $w.header.gen -side right
@ -46,14 +46,16 @@ proc do_ssh_key {} {
text $w.contents -width 60 -height 10 -wrap char -relief sunken text $w.contents -width 60 -height 10 -wrap char -relief sunken
pack $w.contents -fill both -expand 1 pack $w.contents -fill both -expand 1
if {$have_tk85} { if {$have_tk85} {
$w.contents configure -inactiveselectbackground darkblue set clr darkblue
if {$use_ttk} { set clr [ttk::style lookup . -selectbackground] }
$w.contents configure -inactiveselectbackground $clr
} }
frame $w.buttons ${NS}::frame $w.buttons
button $w.buttons.close -text [mc Close] \ ${NS}::button $w.buttons.close -text [mc Close] \
-default active -command [list destroy $w] -default active -command [list destroy $w]
pack $w.buttons.close -side right pack $w.buttons.close -side right
button $w.buttons.copy -text [mc "Copy To Clipboard"] \ ${NS}::button $w.buttons.copy -text [mc "Copy To Clipboard"] \
-command [list tk_textCopy $w.contents] -command [list tk_textCopy $w.contents]
pack $w.buttons.copy -side left pack $w.buttons.copy -side left
pack $w.buttons -side bottom -fill x -pady 5 -padx 5 pack $w.buttons -side bottom -fill x -pady 5 -padx 5

View File

@ -13,14 +13,16 @@ field units {}; # unit of progress
field meter {}; # current core git progress meter (if active) field meter {}; # current core git progress meter (if active)
constructor new {path} { constructor new {path} {
global use_ttk NS
set w $path set w $path
set w_l $w.l set w_l $w.l
set w_c $w.c set w_c $w.c
frame $w \ ${NS}::frame $w
-borderwidth 1 \ if {!$use_ttk} {
-relief sunken $w configure -borderwidth 1 -relief sunken
label $w_l \ }
${NS}::label $w_l \
-textvariable @status \ -textvariable @status \
-anchor w \ -anchor w \
-justify left -justify left
@ -37,12 +39,13 @@ method _oneline_pack {} {
} }
constructor two_line {path} { constructor two_line {path} {
global NS
set w $path set w $path
set w_l $w.l set w_l $w.l
set w_c $w.c set w_c $w.c
frame $w ${NS}::frame $w
label $w_l \ ${NS}::label $w_l \
-textvariable @status \ -textvariable @status \
-anchor w \ -anchor w \
-justify left -justify left

174
lib/themed.tcl Normal file
View File

@ -0,0 +1,174 @@
# Functions for supporting the use of themed Tk widgets in git-gui.
# Copyright (C) 2009 Pat Thoyts <patthoyts@users.sourceforge.net>
proc InitTheme {} {
# Create a color label style (bg can be overridden by widget option)
ttk::style layout Color.TLabel {
Color.Label.border -sticky news -children {
Color.label.fill -sticky news -children {
Color.Label.padding -sticky news -children {
Color.Label.label -sticky news}}}}
eval [linsert [ttk::style configure TLabel] 0 \
ttk::style configure Color.TLabel]
ttk::style configure Color.TLabel \
-borderwidth 0 -relief flat -padding 2
ttk::style map Color.TLabel -background {{} gold}
# We also need a padded label.
ttk::style configure Padded.TLabel \
-padding {5 5} -borderwidth 1 -relief solid
# We need a gold frame.
ttk::style layout Gold.TFrame {
Gold.Frame.border -sticky nswe -children {
Gold.Frame.fill -sticky nswe}}
ttk::style configure Gold.TFrame -background gold -relief flat
# listboxes should have a theme border so embed in ttk::frame
ttk::style layout SListbox.TFrame {
SListbox.Frame.Entry.field -sticky news -border true -children {
SListbox.Frame.padding -sticky news
}
}
}
proc gold_frame {w args} {
global use_ttk
if {$use_ttk} {
eval [linsert $args 0 ttk::frame $w -style Gold.TFrame]
} else {
eval [linsert $args 0 frame $w -background gold]
}
}
proc tlabel {w args} {
global use_ttk
if {$use_ttk} {
set cmd [list ttk::label $w -style Color.TLabel]
foreach {k v} $args {
switch -glob -- $k {
-activebackground {}
default { lappend cmd $k $v }
}
}
eval $cmd
} else {
eval [linsert $args 0 label $w]
}
}
# The padded label gets used in the about class.
proc paddedlabel {w args} {
global use_ttk
if {$use_ttk} {
eval [linsert $args 0 ttk::label $w -style Padded.TLabel]
} else {
eval [linsert $args 0 label $w \
-padx 5 -pady 5 \
-justify left \
-anchor w \
-borderwidth 1 \
-relief solid]
}
}
# Create a toplevel for use as a dialog.
# If available, sets the EWMH dialog hint and if ttk is enabled
# place a themed frame over the surface.
proc Dialog {w args} {
eval [linsert $args 0 toplevel $w -class Dialog]
pave_toplevel $w
return $w
}
# Tk toplevels are not themed - so pave it over with a themed frame to get
# the base color correct per theme.
proc pave_toplevel {w} {
global use_ttk
if {$use_ttk && ![winfo exists $w.!paving]} {
set paving [ttk::frame $w.!paving]
place $paving -x 0 -y 0 -relwidth 1 -relheight 1
lower $paving
}
}
# Create a scrolled listbox with appropriate border for the current theme.
# On many themes the border for a scrolled listbox needs to go around the
# listbox and the scrollbar.
proc slistbox {w args} {
global use_ttk NS
if {$use_ttk} {
set f [ttk::frame $w -style SListbox.TFrame -padding 2]
} else {
set f [frame $w -relief flat]
}
if {[catch {
if {$use_ttk} {
eval [linsert $args 0 listbox $f.list -relief flat \
-highlightthickness 0 -borderwidth 0]
} else {
eval [linsert $args 0 listbox $f.list]
}
${NS}::scrollbar $f.vs -command [list $f.list yview]
$f.list configure -yscrollcommand [list $f.vs set]
grid $f.list $f.vs -sticky news
grid rowconfigure $f 0 -weight 1
grid columnconfigure $f 0 -weight 1
bind $f.list <<ListboxSelect>> \
[list event generate $w <<ListboxSelect>>]
interp hide {} $w
interp alias {} $w {} $f.list
} err]} {
destroy $f
return -code error $err
}
return $w
}
# fetch the background color from a widget.
proc get_bg_color {w} {
global use_ttk
if {$use_ttk} {
set bg [ttk::style lookup [winfo class $w] -background]
} else {
set bg [$w cget -background]
}
return $bg
}
# ttk::spinbox didn't get added until 8.6
proc tspinbox {w args} {
global use_ttk
if {$use_ttk && [llength [info commands ttk::spinbox]] > 0} {
eval [linsert $args 0 ttk::spinbox $w]
} else {
eval [linsert $args 0 spinbox $w]
}
}
# Tk 8.6 provides a standard font selection dialog. This uses the native
# dialogs on Windows and MacOSX or a standard Tk dialog on X11.
proc tchoosefont {w title familyvar sizevar} {
if {[package vsatisfies [package provide Tk] 8.6]} {
upvar #0 $familyvar family
upvar #0 $sizevar size
tk fontchooser configure -parent $w -title $title \
-font [list $family $size] \
-command [list on_choosefont $familyvar $sizevar]
tk fontchooser show
} else {
choose_font::pick $w $title $familyvar $sizevar
}
}
# Called when the Tk 8.6 fontchooser selects a font.
proc on_choosefont {familyvar sizevar font} {
upvar #0 $familyvar family
upvar #0 $sizevar size
set font [font actual $font]
set family [dict get $font -family]
set size [dict get $font -size]
}
# Local variables:
# mode: tcl
# indent-tabs-mode: t
# tab-width: 4
# End:

View File

@ -146,7 +146,7 @@ proc tools_complete {fullname w {ok 1}} {
} }
if {$ok} { if {$ok} {
set msg [mc "Tool completed succesfully: %s" $fullname] set msg [mc "Tool completed successfully: %s" $fullname]
} else { } else {
set msg [mc "Tool failed: %s" $fullname] set msg [mc "Tool failed: %s" $fullname]
} }

View File

@ -16,53 +16,50 @@ field ask_branch 0; # ask for a revision
field ask_args 0; # ask for additional args field ask_args 0; # ask for additional args
constructor dialog {} { constructor dialog {} {
global repo_config global repo_config use_ttk NS
make_toplevel top w make_dialog top w
wm title $top [append "[appname] ([reponame]): " [mc "Add Tool"]] wm title $top [append "[appname] ([reponame]): " [mc "Add Tool"]]
if {$top ne {.}} { if {$top ne {.}} {
wm geometry $top "+[winfo rootx .]+[winfo rooty .]" wm geometry $top "+[winfo rootx .]+[winfo rooty .]"
wm transient $top . wm transient $top .
} }
label $w.header -text [mc "Add New Tool Command"] -font font_uibold ${NS}::label $w.header -text [mc "Add New Tool Command"] \
-font font_uibold -anchor center
pack $w.header -side top -fill x pack $w.header -side top -fill x
frame $w.buttons ${NS}::frame $w.buttons
checkbutton $w.buttons.global \ ${NS}::checkbutton $w.buttons.global \
-text [mc "Add globally"] \ -text [mc "Add globally"] \
-variable @add_global -variable @add_global
pack $w.buttons.global -side left -padx 5 pack $w.buttons.global -side left -padx 5
button $w.buttons.create -text [mc Add] \ ${NS}::button $w.buttons.create -text [mc Add] \
-default active \ -default active \
-command [cb _add] -command [cb _add]
pack $w.buttons.create -side right pack $w.buttons.create -side right
button $w.buttons.cancel -text [mc Cancel] \ ${NS}::button $w.buttons.cancel -text [mc Cancel] \
-command [list destroy $w] -command [list destroy $w]
pack $w.buttons.cancel -side right -padx 5 pack $w.buttons.cancel -side right -padx 5
pack $w.buttons -side bottom -fill x -pady 10 -padx 10 pack $w.buttons -side bottom -fill x -pady 10 -padx 10
labelframe $w.desc -text [mc "Tool Details"] ${NS}::labelframe $w.desc -text [mc "Tool Details"]
label $w.desc.name_cmnt -anchor w\ ${NS}::label $w.desc.name_cmnt -anchor w\
-text [mc "Use '/' separators to create a submenu tree:"] -text [mc "Use '/' separators to create a submenu tree:"]
grid x $w.desc.name_cmnt -sticky we -padx {0 5} -pady {0 2} grid x $w.desc.name_cmnt -sticky we -padx {0 5} -pady {0 2}
label $w.desc.name_l -text [mc "Name:"] ${NS}::label $w.desc.name_l -text [mc "Name:"]
set w_name $w.desc.name_t set w_name $w.desc.name_t
entry $w_name \ ${NS}::entry $w_name \
-borderwidth 1 \
-relief sunken \
-width 40 \ -width 40 \
-textvariable @name \ -textvariable @name \
-validate key \ -validate key \
-validatecommand [cb _validate_name %d %S] -validatecommand [cb _validate_name %d %S]
grid $w.desc.name_l $w_name -sticky we -padx {0 5} grid $w.desc.name_l $w_name -sticky we -padx {0 5}
label $w.desc.cmd_l -text [mc "Command:"] ${NS}::label $w.desc.cmd_l -text [mc "Command:"]
set w_cmd $w.desc.cmd_t set w_cmd $w.desc.cmd_t
entry $w_cmd \ ${NS}::entry $w_cmd \
-borderwidth 1 \
-relief sunken \
-width 40 \ -width 40 \
-textvariable @command -textvariable @command
grid $w.desc.cmd_l $w_cmd -sticky we -padx {0 5} -pady {0 3} grid $w.desc.cmd_l $w_cmd -sticky we -padx {0 5} -pady {0 3}
@ -70,30 +67,30 @@ constructor dialog {} {
grid columnconfigure $w.desc 1 -weight 1 grid columnconfigure $w.desc 1 -weight 1
pack $w.desc -anchor nw -fill x -pady 5 -padx 5 pack $w.desc -anchor nw -fill x -pady 5 -padx 5
checkbutton $w.confirm \ ${NS}::checkbutton $w.confirm \
-text [mc "Show a dialog before running"] \ -text [mc "Show a dialog before running"] \
-variable @confirm -command [cb _check_enable_dlg] -variable @confirm -command [cb _check_enable_dlg]
labelframe $w.dlg -labelwidget $w.confirm ${NS}::labelframe $w.dlg -labelwidget $w.confirm
checkbutton $w.dlg.askbranch \ ${NS}::checkbutton $w.dlg.askbranch \
-text [mc "Ask the user to select a revision (sets \$REVISION)"] \ -text [mc "Ask the user to select a revision (sets \$REVISION)"] \
-variable @ask_branch -state disabled -variable @ask_branch -state disabled
pack $w.dlg.askbranch -anchor w -padx 15 pack $w.dlg.askbranch -anchor w -padx 15
checkbutton $w.dlg.askargs \ ${NS}::checkbutton $w.dlg.askargs \
-text [mc "Ask the user for additional arguments (sets \$ARGS)"] \ -text [mc "Ask the user for additional arguments (sets \$ARGS)"] \
-variable @ask_args -state disabled -variable @ask_args -state disabled
pack $w.dlg.askargs -anchor w -padx 15 pack $w.dlg.askargs -anchor w -padx 15
pack $w.dlg -anchor nw -fill x -pady {0 8} -padx 5 pack $w.dlg -anchor nw -fill x -pady {0 8} -padx 5
checkbutton $w.noconsole \ ${NS}::checkbutton $w.noconsole \
-text [mc "Don't show the command output window"] \ -text [mc "Don't show the command output window"] \
-variable @no_console -variable @no_console
pack $w.noconsole -anchor w -padx 5 pack $w.noconsole -anchor w -padx 5
checkbutton $w.needsfile \ ${NS}::checkbutton $w.needsfile \
-text [mc "Run only if a diff is selected (\$FILENAME not empty)"] \ -text [mc "Run only if a diff is selected (\$FILENAME not empty)"] \
-variable @needs_file -variable @needs_file
pack $w.needsfile -anchor w -padx 5 pack $w.needsfile -anchor w -padx 5
@ -182,40 +179,38 @@ field w ; # widget path
field w_names ; # name list field w_names ; # name list
constructor dialog {} { constructor dialog {} {
global repo_config global_config system_config global repo_config global_config system_config use_ttk NS
load_config 1 load_config 1
make_toplevel top w make_dialog top w
wm title $top [append "[appname] ([reponame]): " [mc "Remove Tool"]] wm title $top [append "[appname] ([reponame]): " [mc "Remove Tool"]]
if {$top ne {.}} { if {$top ne {.}} {
wm geometry $top "+[winfo rootx .]+[winfo rooty .]" wm geometry $top "+[winfo rootx .]+[winfo rooty .]"
wm transient $top . wm transient $top .
} }
label $w.header -text [mc "Remove Tool Commands"] -font font_uibold ${NS}::label $w.header -text [mc "Remove Tool Commands"] \
-font font_uibold -anchor center
pack $w.header -side top -fill x pack $w.header -side top -fill x
frame $w.buttons ${NS}::frame $w.buttons
button $w.buttons.create -text [mc Remove] \ ${NS}::button $w.buttons.create -text [mc Remove] \
-default active \ -default active \
-command [cb _remove] -command [cb _remove]
pack $w.buttons.create -side right pack $w.buttons.create -side right
button $w.buttons.cancel -text [mc Cancel] \ ${NS}::button $w.buttons.cancel -text [mc Cancel] \
-command [list destroy $w] -command [list destroy $w]
pack $w.buttons.cancel -side right -padx 5 pack $w.buttons.cancel -side right -padx 5
pack $w.buttons -side bottom -fill x -pady 10 -padx 10 pack $w.buttons -side bottom -fill x -pady 10 -padx 10
frame $w.list ${NS}::frame $w.list
set w_names $w.list.l set w_names $w.list.l
listbox $w_names \ slistbox $w_names \
-height 10 \ -height 10 \
-width 30 \ -width 30 \
-selectmode extended \ -selectmode extended \
-exportselection false \ -exportselection false
-yscrollcommand [list $w.list.sby set]
scrollbar $w.list.sby -command [list $w.list.l yview]
pack $w.list.sby -side right -fill y
pack $w.list.l -side left -fill both -expand 1 pack $w.list.l -side left -fill both -expand 1
pack $w.list -fill both -expand 1 -pady 5 -padx 5 pack $w.list -fill both -expand 1 -pady 5 -padx 5
@ -232,7 +227,7 @@ constructor dialog {} {
} }
if {$local_cnt > 0} { if {$local_cnt > 0} {
label $w.colorlbl -foreground blue \ ${NS}::label $w.colorlbl -foreground blue \
-text [mc "(Blue denotes repository-local tools)"] -text [mc "(Blue denotes repository-local tools)"]
pack $w.colorlbl -fill x -pady 5 -padx 5 pack $w.colorlbl -fill x -pady 5 -padx 5
} }
@ -277,14 +272,14 @@ field is_ok 0; # ok to start
field argstr {}; # arguments field argstr {}; # arguments
constructor dialog {fullname} { constructor dialog {fullname} {
global M1B global M1B use_ttk NS
set title [get_config "guitool.$fullname.title"] set title [get_config "guitool.$fullname.title"]
if {$title eq {}} { if {$title eq {}} {
regsub {/} $fullname { / } title regsub {/} $fullname { / } title
} }
make_toplevel top w -autodelete 0 make_dialog top w -autodelete 0
wm title $top [append "[appname] ([reponame]): " $title] wm title $top [append "[appname] ([reponame]): " $title]
if {$top ne {.}} { if {$top ne {.}} {
wm geometry $top "+[winfo rootx .]+[winfo rooty .]" wm geometry $top "+[winfo rootx .]+[winfo rooty .]"
@ -297,7 +292,7 @@ constructor dialog {fullname} {
set prompt [mc "Run Command: %s" $command] set prompt [mc "Run Command: %s" $command]
} }
label $w.header -text $prompt -font font_uibold ${NS}::label $w.header -text $prompt -font font_uibold -anchor center
pack $w.header -side top -fill x pack $w.header -side top -fill x
set argprompt [get_config "guitool.$fullname.argprompt"] set argprompt [get_config "guitool.$fullname.argprompt"]
@ -311,12 +306,10 @@ constructor dialog {fullname} {
set argprompt [mc "Arguments"] set argprompt [mc "Arguments"]
} }
labelframe $w.arg -text $argprompt ${NS}::labelframe $w.arg -text $argprompt
set w_args $w.arg.txt set w_args $w.arg.txt
entry $w_args \ ${NS}::entry $w_args \
-borderwidth 1 \
-relief sunken \
-width 40 \ -width 40 \
-textvariable @argstr -textvariable @argstr
pack $w_args -padx 5 -pady 5 -fill both pack $w_args -padx 5 -pady 5 -fill both
@ -337,18 +330,18 @@ constructor dialog {fullname} {
pack $w.rev -anchor nw -fill both -expand 1 -pady 5 -padx 5 pack $w.rev -anchor nw -fill both -expand 1 -pady 5 -padx 5
} }
frame $w.buttons ${NS}::frame $w.buttons
if {$is_ask_revs} { if {$is_ask_revs} {
button $w.buttons.visualize \ ${NS}::button $w.buttons.visualize \
-text [mc Visualize] \ -text [mc Visualize] \
-command [cb _visualize] -command [cb _visualize]
pack $w.buttons.visualize -side left pack $w.buttons.visualize -side left
} }
button $w.buttons.ok \ ${NS}::button $w.buttons.ok \
-text [mc OK] \ -text [mc OK] \
-command [cb _start] -command [cb _start]
pack $w.buttons.ok -side right pack $w.buttons.ok -side right
button $w.buttons.cancel \ ${NS}::button $w.buttons.cancel \
-text [mc "Cancel"] \ -text [mc "Cancel"] \
-command [cb _cancel] -command [cb _cancel]
pack $w.buttons.cancel -side right -padx 5 pack $w.buttons.cancel -side right -padx 5

View File

@ -33,10 +33,15 @@ proc push_to {remote} {
proc start_push_anywhere_action {w} { proc start_push_anywhere_action {w} {
global push_urltype push_remote push_url push_thin push_tags global push_urltype push_remote push_url push_thin push_tags
global push_force global push_force
global repo_config
set is_mirror 0
set r_url {} set r_url {}
switch -- $push_urltype { switch -- $push_urltype {
remote {set r_url $push_remote} remote {
set r_url $push_remote
catch {set is_mirror $repo_config(remote.$push_remote.mirror)}
}
url {set r_url $push_url} url {set r_url $push_url}
} }
if {$r_url eq {}} return if {$r_url eq {}} return
@ -53,23 +58,29 @@ proc start_push_anywhere_action {w} {
lappend cmd --tags lappend cmd --tags
} }
lappend cmd $r_url lappend cmd $r_url
set cnt 0 if {$is_mirror} {
foreach i [$w.source.l curselection] { set cons [console::new \
set b [$w.source.l get $i] [mc "push %s" $r_url] \
lappend cmd "refs/heads/$b:refs/heads/$b" [mc "Mirroring to %s" $r_url]]
incr cnt
}
if {$cnt == 0} {
return
} elseif {$cnt == 1} {
set unit branch
} else { } else {
set unit branches set cnt 0
} foreach i [$w.source.l curselection] {
set b [$w.source.l get $i]
lappend cmd "refs/heads/$b:refs/heads/$b"
incr cnt
}
if {$cnt == 0} {
return
} elseif {$cnt == 1} {
set unit branch
} else {
set unit branches
}
set cons [console::new \ set cons [console::new \
[mc "push %s" $r_url] \ [mc "push %s" $r_url] \
[mc "Pushing %s %s to %s" $cnt $unit $r_url]] [mc "Pushing %s %s to %s" $cnt $unit $r_url]]
}
console::exec $cons $cmd console::exec $cons $cmd
destroy $w destroy $w
} }
@ -80,50 +91,55 @@ trace add variable push_remote write \
proc do_push_anywhere {} { proc do_push_anywhere {} {
global all_remotes current_branch global all_remotes current_branch
global push_urltype push_remote push_url push_thin push_tags global push_urltype push_remote push_url push_thin push_tags
global push_force global push_force use_ttk NS
set w .push_setup set w .push_setup
toplevel $w toplevel $w
wm withdraw $w
wm geometry $w "+[winfo rootx .]+[winfo rooty .]" wm geometry $w "+[winfo rootx .]+[winfo rooty .]"
pave_toplevel $w
label $w.header -text [mc "Push Branches"] -font font_uibold ${NS}::label $w.header -text [mc "Push Branches"] \
-font font_uibold -anchor center
pack $w.header -side top -fill x pack $w.header -side top -fill x
frame $w.buttons ${NS}::frame $w.buttons
button $w.buttons.create -text [mc Push] \ ${NS}::button $w.buttons.create -text [mc Push] \
-default active \ -default active \
-command [list start_push_anywhere_action $w] -command [list start_push_anywhere_action $w]
pack $w.buttons.create -side right pack $w.buttons.create -side right
button $w.buttons.cancel -text [mc "Cancel"] \ ${NS}::button $w.buttons.cancel -text [mc "Cancel"] \
-default normal \ -default normal \
-command [list destroy $w] -command [list destroy $w]
pack $w.buttons.cancel -side right -padx 5 pack $w.buttons.cancel -side right -padx 5
pack $w.buttons -side bottom -fill x -pady 10 -padx 10 pack $w.buttons -side bottom -fill x -pady 10 -padx 10
labelframe $w.source -text [mc "Source Branches"] ${NS}::labelframe $w.source -text [mc "Source Branches"]
listbox $w.source.l \ slistbox $w.source.l \
-height 10 \ -height 10 \
-width 70 \ -width 70 \
-selectmode extended \ -selectmode extended
-yscrollcommand [list $w.source.sby set]
foreach h [load_all_heads] { foreach h [load_all_heads] {
$w.source.l insert end $h $w.source.l insert end $h
if {$h eq $current_branch} { if {$h eq $current_branch} {
$w.source.l select set end $w.source.l select set end
} }
} }
scrollbar $w.source.sby -command [list $w.source.l yview]
pack $w.source.sby -side right -fill y
pack $w.source.l -side left -fill both -expand 1 pack $w.source.l -side left -fill both -expand 1
pack $w.source -fill both -expand 1 -pady 5 -padx 5 pack $w.source -fill both -expand 1 -pady 5 -padx 5
labelframe $w.dest -text [mc "Destination Repository"] ${NS}::labelframe $w.dest -text [mc "Destination Repository"]
if {$all_remotes ne {}} { if {$all_remotes ne {}} {
radiobutton $w.dest.remote_r \ ${NS}::radiobutton $w.dest.remote_r \
-text [mc "Remote:"] \ -text [mc "Remote:"] \
-value remote \ -value remote \
-variable push_urltype -variable push_urltype
eval tk_optionMenu $w.dest.remote_m push_remote $all_remotes if {$use_ttk} {
ttk::combobox $w.dest.remote_m -textvariable push_remote \
-values $all_remotes
} else {
eval tk_optionMenu $w.dest.remote_m push_remote $all_remotes
}
grid $w.dest.remote_r $w.dest.remote_m -sticky w grid $w.dest.remote_r $w.dest.remote_m -sticky w
if {[lsearch -sorted -exact $all_remotes origin] != -1} { if {[lsearch -sorted -exact $all_remotes origin] != -1} {
set push_remote origin set push_remote origin
@ -134,13 +150,11 @@ proc do_push_anywhere {} {
} else { } else {
set push_urltype url set push_urltype url
} }
radiobutton $w.dest.url_r \ ${NS}::radiobutton $w.dest.url_r \
-text [mc "Arbitrary Location:"] \ -text [mc "Arbitrary Location:"] \
-value url \ -value url \
-variable push_urltype -variable push_urltype
entry $w.dest.url_t \ ${NS}::entry $w.dest.url_t \
-borderwidth 1 \
-relief sunken \
-width 50 \ -width 50 \
-textvariable push_url \ -textvariable push_url \
-validate key \ -validate key \
@ -155,16 +169,16 @@ proc do_push_anywhere {} {
grid columnconfigure $w.dest 1 -weight 1 grid columnconfigure $w.dest 1 -weight 1
pack $w.dest -anchor nw -fill x -pady 5 -padx 5 pack $w.dest -anchor nw -fill x -pady 5 -padx 5
labelframe $w.options -text [mc "Transfer Options"] ${NS}::labelframe $w.options -text [mc "Transfer Options"]
checkbutton $w.options.force \ ${NS}::checkbutton $w.options.force \
-text [mc "Force overwrite existing branch (may discard changes)"] \ -text [mc "Force overwrite existing branch (may discard changes)"] \
-variable push_force -variable push_force
grid $w.options.force -columnspan 2 -sticky w grid $w.options.force -columnspan 2 -sticky w
checkbutton $w.options.thin \ ${NS}::checkbutton $w.options.thin \
-text [mc "Use thin pack (for slow network connections)"] \ -text [mc "Use thin pack (for slow network connections)"] \
-variable push_thin -variable push_thin
grid $w.options.thin -columnspan 2 -sticky w grid $w.options.thin -columnspan 2 -sticky w
checkbutton $w.options.tags \ ${NS}::checkbutton $w.options.tags \
-text [mc "Include tags"] \ -text [mc "Include tags"] \
-variable push_tags -variable push_tags
grid $w.options.tags -columnspan 2 -sticky w grid $w.options.tags -columnspan 2 -sticky w
@ -180,5 +194,6 @@ proc do_push_anywhere {} {
bind $w <Key-Escape> "destroy $w" bind $w <Key-Escape> "destroy $w"
bind $w <Key-Return> [list start_push_anywhere_action $w] bind $w <Key-Return> [list start_push_anywhere_action $w]
wm title $w [append "[appname] ([reponame]): " [mc "Push"]] wm title $w [append "[appname] ([reponame]): " [mc "Push"]]
wm deiconify $w
tkwait window $w tkwait window $w
} }

View File

@ -18,9 +18,9 @@ proc win32_create_lnk {lnk_path lnk_exec lnk_dir} {
eval [list exec wscript.exe \ eval [list exec wscript.exe \
/E:jscript \ /E:jscript \
/nologo \ /nologo \
[file join $oguilib win32_shortcut.js] \ [file nativename [file join $oguilib win32_shortcut.js]] \
$lnk_path \ $lnk_path \
[file join $oguilib git-gui.ico] \ [file nativename [file join $oguilib git-gui.ico]] \
$lnk_dir \ $lnk_dir \
$lnk_exec] $lnk_args $lnk_exec] $lnk_args
} }

1061
po/de.po

File diff suppressed because it is too large Load Diff

2005
po/el.po Normal file

File diff suppressed because it is too large Load Diff

872
po/fr.po

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

171
po/glossary/el.po Normal file
View File

@ -0,0 +1,171 @@
# Translation of git-gui glossary to Greek
# Copyright (C) 2009 Jimmy Angelakos
# This file is distributed under the same license as the git-gui package.
# Jimmy Angelakos <vyruss@hellug.gr>, 2009.
msgid ""
msgstr ""
"Project-Id-Version: git-gui-glossary\n"
"POT-Creation-Date: 2008-01-07 21:20+0100\n"
"PO-Revision-Date: 2009-06-23 20:41+0300\n"
"Last-Translator: Jimmy Angelakos <vyruss@hellug.gr>\n"
"Language-Team: Greek <i18n@lists.hellug.gr>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Generator: Lokalize 0.3\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
#. "English Definition (Dear translator: This file will never be visible to the user! It should only serve as a tool for you, the translator. Nothing more.)"
msgid "English Term (Dear translator: This file will never be visible to the user!)"
msgstr ""
#. ""
msgid "amend"
msgstr "διόρθωση"
#. ""
msgid "annotate"
msgstr "σχολιασμός"
#. "A 'branch' is an active line of development."
msgid "branch [noun]"
msgstr "κλάδος [αντικείμενο]"
#. ""
msgid "branch [verb]"
msgstr "διακλάδωση [ενέργεια]"
#. ""
msgid "checkout [noun]"
msgstr "εξαγωγή [αντικείμενο]"
#. "The action of updating the working tree to a revision which was stored in the object database."
msgid "checkout [verb]"
msgstr "εξαγωγή [ενέργεια]"
#. ""
msgid "clone [verb]"
msgstr "κλωνοποίηση [ενέργεια]"
#. "A single point in the git history."
msgid "commit [noun]"
msgstr "υποβολή [αντικείμενο] "
#. "The action of storing a new snapshot of the project's state in the git history."
msgid "commit [verb]"
msgstr "υποβολή [ενέργεια]"
#. ""
msgid "diff [noun]"
msgstr "διαφορά [αντικείμενο] "
#. ""
msgid "diff [verb]"
msgstr "διαφορά [ενέργεια]"
#. "A fast-forward is a special type of merge where you have a revision and you are merging another branch's changes that happen to be a descendant of what you have."
msgid "fast forward merge"
msgstr "συγχώνευση επιτάχυνσης"
#. "Fetching a branch means to get the branch's head from a remote repository, to find out which objects are missing from the local object database, and to get them, too."
msgid "fetch"
msgstr "ανάκτηση"
#. "One context of consecutive lines in a whole patch, which consists of many such hunks"
msgid "hunk"
msgstr "κομμάτι"
#. "A collection of files. The index is a stored version of your working tree."
msgid "index (in git-gui: staging area)"
msgstr "ευρετήριο (στο git-gui: περιοχή σταδιοποίησης)"
#. "A successful merge results in the creation of a new commit representing the result of the merge."
msgid "merge [noun]"
msgstr "συγχώνευση [αντικείμενο]"
#. "To bring the contents of another branch into the current branch."
msgid "merge [verb]"
msgstr "συγχώνευση [ενέργεια]"
#. ""
msgid "message"
msgstr "μήνυμα"
#. "Deletes all stale tracking branches under <name>. These stale branches have already been removed from the remote repository referenced by <name>, but are still locally available in 'remotes/<name>'."
msgid "prune"
msgstr "κλάδεμα"
#. "Pulling a branch means to fetch it and merge it."
msgid "pull"
msgstr "λήψη"
#. "Pushing a branch means to get the branch's head ref from a remote repository, and ... (well, can someone please explain it for mere mortals?)"
msgid "push"
msgstr "ώθηση"
#. ""
msgid "redo"
msgstr "ξανά"
#. "An other repository ('remote'). One might have a set of remotes whose branches one tracks."
msgid "remote"
msgstr "απομακρυσμένο"
#. "A collection of refs (?) together with an object database containing all objects which are reachable from the refs... (oops, you've lost me here. Again, please an explanation for mere mortals?)"
msgid "repository"
msgstr "αποθετήριο"
#. ""
msgid "reset"
msgstr "επαναφορά"
#. ""
msgid "revert"
msgstr "αναίρεση"
#. "A particular state of files and directories which was stored in the object database."
msgid "revision"
msgstr "αναθεώρηση"
#. ""
#, fuzzy
msgid "sign off"
msgstr "αποσύνδεση"
#. ""
msgid "staging area"
msgstr "περιοχή σταδιοποίησης"
#. ""
msgid "status"
msgstr "κατάσταση"
#. "A ref pointing to a tag or commit object"
msgid "tag [noun]"
msgstr "ετικέτα [αντικείμενο]"
#. ""
msgid "tag [verb]"
msgstr "ετικέτα [ενέργεια]"
#. "A regular git branch that is used to follow changes from another repository."
msgid "tracking branch"
msgstr "κλάδος παρακολούθησης"
#. ""
msgid "undo"
msgstr "αναίρεση"
#. ""
msgid "update"
msgstr "ενημέρωση"
#. ""
msgid "verify"
msgstr "επαλήθευση"
#. "The tree of actual checked out files."
msgid "working copy, working tree"
msgstr "αντίγραφο εργασίας"

198
po/hu.po
View File

@ -7,8 +7,8 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: git-gui-i 18n\n" "Project-Id-Version: git-gui-i 18n\n"
"Report-Msgid-Bugs-To: \n" "Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2008-11-16 13:56-0800\n" "POT-Creation-Date: 2008-12-08 08:31-0800\n"
"PO-Revision-Date: 2008-11-17 23:03+0100\n" "PO-Revision-Date: 2008-12-10 15:00+0100\n"
"Last-Translator: Miklos Vajna <vmiklos@frugalware.org>\n" "Last-Translator: Miklos Vajna <vmiklos@frugalware.org>\n"
"Language-Team: Hungarian\n" "Language-Team: Hungarian\n"
"MIME-Version: 1.0\n" "MIME-Version: 1.0\n"
@ -241,25 +241,25 @@ msgstr "Visszavonás"
msgid "Redo" msgid "Redo"
msgstr "Mégis" msgstr "Mégis"
#: git-gui.sh:2378 git-gui.sh:2923 #: git-gui.sh:2378 git-gui.sh:2937
msgid "Cut" msgid "Cut"
msgstr "Kivágás" msgstr "Kivágás"
#: git-gui.sh:2381 git-gui.sh:2926 git-gui.sh:3000 git-gui.sh:3082 #: git-gui.sh:2381 git-gui.sh:2940 git-gui.sh:3014 git-gui.sh:3096
#: lib/console.tcl:69 #: lib/console.tcl:69
msgid "Copy" msgid "Copy"
msgstr "Másolás" msgstr "Másolás"
#: git-gui.sh:2384 git-gui.sh:2929 #: git-gui.sh:2384 git-gui.sh:2943
msgid "Paste" msgid "Paste"
msgstr "Beillesztés" msgstr "Beillesztés"
#: git-gui.sh:2387 git-gui.sh:2932 lib/branch_delete.tcl:26 #: git-gui.sh:2387 git-gui.sh:2946 lib/branch_delete.tcl:26
#: lib/remote_branch_delete.tcl:38 #: lib/remote_branch_delete.tcl:38
msgid "Delete" msgid "Delete"
msgstr "Törlés" msgstr "Törlés"
#: git-gui.sh:2391 git-gui.sh:2936 git-gui.sh:3086 lib/console.tcl:71 #: git-gui.sh:2391 git-gui.sh:2950 git-gui.sh:3100 lib/console.tcl:71
msgid "Select All" msgid "Select All"
msgstr "Mindent kiválaszt" msgstr "Mindent kiválaszt"
@ -291,15 +291,15 @@ msgstr "Kész"
msgid "Commit@@verb" msgid "Commit@@verb"
msgstr "Commit@@ige" msgstr "Commit@@ige"
#: git-gui.sh:2443 git-gui.sh:2864 #: git-gui.sh:2443 git-gui.sh:2878
msgid "New Commit" msgid "New Commit"
msgstr "Új commit" msgstr "Új commit"
#: git-gui.sh:2451 git-gui.sh:2871 #: git-gui.sh:2451 git-gui.sh:2885
msgid "Amend Last Commit" msgid "Amend Last Commit"
msgstr "Utolsó commit javítása" msgstr "Utolsó commit javítása"
#: git-gui.sh:2461 git-gui.sh:2825 lib/remote_branch_delete.tcl:99 #: git-gui.sh:2461 git-gui.sh:2839 lib/remote_branch_delete.tcl:99
msgid "Rescan" msgid "Rescan"
msgstr "Keresés újra" msgstr "Keresés újra"
@ -319,15 +319,15 @@ msgstr "Commitba való kiválasztás visszavonása"
msgid "Revert Changes" msgid "Revert Changes"
msgstr "Változtatások visszaállítása" msgstr "Változtatások visszaállítása"
#: git-gui.sh:2491 git-gui.sh:3069 #: git-gui.sh:2491 git-gui.sh:3083
msgid "Show Less Context" msgid "Show Less Context"
msgstr "Kevesebb környezet mutatása" msgstr "Kevesebb környezet mutatása"
#: git-gui.sh:2495 git-gui.sh:3073 #: git-gui.sh:2495 git-gui.sh:3087
msgid "Show More Context" msgid "Show More Context"
msgstr "Több környezet mutatása" msgstr "Több környezet mutatása"
#: git-gui.sh:2502 git-gui.sh:2838 git-gui.sh:2947 #: git-gui.sh:2502 git-gui.sh:2852 git-gui.sh:2961
msgid "Sign Off" msgid "Sign Off"
msgstr "Aláír" msgstr "Aláír"
@ -361,7 +361,7 @@ msgstr "Névjegy: %s"
msgid "Preferences..." msgid "Preferences..."
msgstr "Beállítások..." msgstr "Beállítások..."
#: git-gui.sh:2565 git-gui.sh:3115 #: git-gui.sh:2565 git-gui.sh:3129
msgid "Options..." msgid "Options..."
msgstr "Opciók..." msgstr "Opciók..."
@ -381,125 +381,125 @@ msgstr "Online dokumentáció"
msgid "Show SSH Key" msgid "Show SSH Key"
msgstr "SSH kulcs mutatása" msgstr "SSH kulcs mutatása"
#: git-gui.sh:2707 #: git-gui.sh:2721
#, tcl-format #, tcl-format
msgid "fatal: cannot stat path %s: No such file or directory" msgid "fatal: cannot stat path %s: No such file or directory"
msgstr "" msgstr ""
"végzetes hiba: nem érhető el a(z) %s útvonal: Nincs ilyen fájl vagy könyvtár" "végzetes hiba: nem érhető el a(z) %s útvonal: Nincs ilyen fájl vagy könyvtár"
#: git-gui.sh:2740 #: git-gui.sh:2754
msgid "Current Branch:" msgid "Current Branch:"
msgstr "Jelenlegi branch:" msgstr "Jelenlegi branch:"
#: git-gui.sh:2761 #: git-gui.sh:2775
msgid "Staged Changes (Will Commit)" msgid "Staged Changes (Will Commit)"
msgstr "Kiválasztott változtatások (commitolva lesz)" msgstr "Kiválasztott változtatások (commitolva lesz)"
#: git-gui.sh:2781 #: git-gui.sh:2795
msgid "Unstaged Changes" msgid "Unstaged Changes"
msgstr "Kiválasztatlan változtatások" msgstr "Kiválasztatlan változtatások"
#: git-gui.sh:2831 #: git-gui.sh:2845
msgid "Stage Changed" msgid "Stage Changed"
msgstr "Változtatások kiválasztása" msgstr "Változtatások kiválasztása"
#: git-gui.sh:2850 lib/transport.tcl:93 lib/transport.tcl:182 #: git-gui.sh:2864 lib/transport.tcl:104 lib/transport.tcl:193
msgid "Push" msgid "Push"
msgstr "Push" msgstr "Push"
#: git-gui.sh:2885 #: git-gui.sh:2899
msgid "Initial Commit Message:" msgid "Initial Commit Message:"
msgstr "Kezdeti commit üzenet:" msgstr "Kezdeti commit üzenet:"
#: git-gui.sh:2886 #: git-gui.sh:2900
msgid "Amended Commit Message:" msgid "Amended Commit Message:"
msgstr "Javító commit üzenet:" msgstr "Javító commit üzenet:"
#: git-gui.sh:2887 #: git-gui.sh:2901
msgid "Amended Initial Commit Message:" msgid "Amended Initial Commit Message:"
msgstr "Kezdeti javító commit üzenet:" msgstr "Kezdeti javító commit üzenet:"
#: git-gui.sh:2888 #: git-gui.sh:2902
msgid "Amended Merge Commit Message:" msgid "Amended Merge Commit Message:"
msgstr "Javító merge commit üzenet:" msgstr "Javító merge commit üzenet:"
#: git-gui.sh:2889 #: git-gui.sh:2903
msgid "Merge Commit Message:" msgid "Merge Commit Message:"
msgstr "Merge commit üzenet:" msgstr "Merge commit üzenet:"
#: git-gui.sh:2890 #: git-gui.sh:2904
msgid "Commit Message:" msgid "Commit Message:"
msgstr "Commit üzenet:" msgstr "Commit üzenet:"
#: git-gui.sh:2939 git-gui.sh:3090 lib/console.tcl:73 #: git-gui.sh:2953 git-gui.sh:3104 lib/console.tcl:73
msgid "Copy All" msgid "Copy All"
msgstr "Összes másolása" msgstr "Összes másolása"
#: git-gui.sh:2963 lib/blame.tcl:104 #: git-gui.sh:2977 lib/blame.tcl:104
msgid "File:" msgid "File:"
msgstr "Fájl:" msgstr "Fájl:"
#: git-gui.sh:3078 #: git-gui.sh:3092
msgid "Refresh" msgid "Refresh"
msgstr "Frissítés" msgstr "Frissítés"
#: git-gui.sh:3099 #: git-gui.sh:3113
msgid "Decrease Font Size" msgid "Decrease Font Size"
msgstr "Font méret csökkentése" msgstr "Font méret csökkentése"
#: git-gui.sh:3103 #: git-gui.sh:3117
msgid "Increase Font Size" msgid "Increase Font Size"
msgstr "Fönt méret növelése" msgstr "Fönt méret növelése"
#: git-gui.sh:3111 lib/blame.tcl:281 #: git-gui.sh:3125 lib/blame.tcl:281
msgid "Encoding" msgid "Encoding"
msgstr "Kódolás" msgstr "Kódolás"
#: git-gui.sh:3122 #: git-gui.sh:3136
msgid "Apply/Reverse Hunk" msgid "Apply/Reverse Hunk"
msgstr "Hunk alkalmazása/visszaállítása" msgstr "Hunk alkalmazása/visszaállítása"
#: git-gui.sh:3127 #: git-gui.sh:3141
msgid "Apply/Reverse Line" msgid "Apply/Reverse Line"
msgstr "Sor alkalmazása/visszaállítása" msgstr "Sor alkalmazása/visszaállítása"
#: git-gui.sh:3137 #: git-gui.sh:3151
msgid "Run Merge Tool" msgid "Run Merge Tool"
msgstr "Merge eszköz futtatása" msgstr "Merge eszköz futtatása"
#: git-gui.sh:3142 #: git-gui.sh:3156
msgid "Use Remote Version" msgid "Use Remote Version"
msgstr "Távoli verzió használata" msgstr "Távoli verzió használata"
#: git-gui.sh:3146 #: git-gui.sh:3160
msgid "Use Local Version" msgid "Use Local Version"
msgstr "Helyi verzió használata" msgstr "Helyi verzió használata"
#: git-gui.sh:3150 #: git-gui.sh:3164
msgid "Revert To Base" msgid "Revert To Base"
msgstr "Visszaállítás az alaphoz" msgstr "Visszaállítás az alaphoz"
#: git-gui.sh:3169 #: git-gui.sh:3183
msgid "Unstage Hunk From Commit" msgid "Unstage Hunk From Commit"
msgstr "Hunk törlése commitból" msgstr "Hunk törlése commitból"
#: git-gui.sh:3170 #: git-gui.sh:3184
msgid "Unstage Line From Commit" msgid "Unstage Line From Commit"
msgstr "A sor kiválasztásának törlése" msgstr "A sor kiválasztásának törlése"
#: git-gui.sh:3172 #: git-gui.sh:3186
msgid "Stage Hunk For Commit" msgid "Stage Hunk For Commit"
msgstr "Hunk kiválasztása commitba" msgstr "Hunk kiválasztása commitba"
#: git-gui.sh:3173 #: git-gui.sh:3187
msgid "Stage Line For Commit" msgid "Stage Line For Commit"
msgstr "Sor kiválasztása commitba" msgstr "Sor kiválasztása commitba"
#: git-gui.sh:3196 #: git-gui.sh:3210
msgid "Initializing..." msgid "Initializing..."
msgstr "Inicializálás..." msgstr "Inicializálás..."
#: git-gui.sh:3301 #: git-gui.sh:3315
#, tcl-format #, tcl-format
msgid "" msgid ""
"Possible environment issues exist.\n" "Possible environment issues exist.\n"
@ -516,7 +516,7 @@ msgstr ""
"indított folyamatok által:\n" "indított folyamatok által:\n"
"\n" "\n"
#: git-gui.sh:3331 #: git-gui.sh:3345
msgid "" msgid ""
"\n" "\n"
"This is due to a known issue with the\n" "This is due to a known issue with the\n"
@ -526,7 +526,7 @@ msgstr ""
"Ez a Cygwin által terjesztett Tcl binárisban\n" "Ez a Cygwin által terjesztett Tcl binárisban\n"
"lévő ismert hiba miatt van." "lévő ismert hiba miatt van."
#: git-gui.sh:3336 #: git-gui.sh:3350
#, tcl-format #, tcl-format
msgid "" msgid ""
"\n" "\n"
@ -612,43 +612,43 @@ msgstr "Futtatás másolás-érzékelésen keresztül..."
msgid "Loading annotation..." msgid "Loading annotation..."
msgstr "Az annotáció betöltése..." msgstr "Az annotáció betöltése..."
#: lib/blame.tcl:964 #: lib/blame.tcl:963
msgid "Author:" msgid "Author:"
msgstr "Szerző:" msgstr "Szerző:"
#: lib/blame.tcl:968 #: lib/blame.tcl:967
msgid "Committer:" msgid "Committer:"
msgstr "Commiter:" msgstr "Commiter:"
#: lib/blame.tcl:973 #: lib/blame.tcl:972
msgid "Original File:" msgid "Original File:"
msgstr "Eredeti fájl:" msgstr "Eredeti fájl:"
#: lib/blame.tcl:1021 #: lib/blame.tcl:1020
msgid "Cannot find HEAD commit:" msgid "Cannot find HEAD commit:"
msgstr "Nem található a HEAD commit:" msgstr "Nem található a HEAD commit:"
#: lib/blame.tcl:1076 #: lib/blame.tcl:1075
msgid "Cannot find parent commit:" msgid "Cannot find parent commit:"
msgstr "Nem található a szülő commit:" msgstr "Nem található a szülő commit:"
#: lib/blame.tcl:1091 #: lib/blame.tcl:1090
msgid "Unable to display parent" msgid "Unable to display parent"
msgstr "Nem lehet megjeleníteni a szülőt" msgstr "Nem lehet megjeleníteni a szülőt"
#: lib/blame.tcl:1092 lib/diff.tcl:297 #: lib/blame.tcl:1091 lib/diff.tcl:297
msgid "Error loading diff:" msgid "Error loading diff:"
msgstr "Hiba a diff betöltése közben:" msgstr "Hiba a diff betöltése közben:"
#: lib/blame.tcl:1232 #: lib/blame.tcl:1231
msgid "Originally By:" msgid "Originally By:"
msgstr "Eredeti szerző:" msgstr "Eredeti szerző:"
#: lib/blame.tcl:1238 #: lib/blame.tcl:1237
msgid "In File:" msgid "In File:"
msgstr "Ebben a fájlban:" msgstr "Ebben a fájlban:"
#: lib/blame.tcl:1243 #: lib/blame.tcl:1242
msgid "Copied Or Moved Here By:" msgid "Copied Or Moved Here By:"
msgstr "Ide másolta vagy helyezte:" msgstr "Ide másolta vagy helyezte:"
@ -665,7 +665,7 @@ msgstr "Checkout"
#: lib/checkout_op.tcl:544 lib/choose_font.tcl:43 lib/merge.tcl:172 #: lib/checkout_op.tcl:544 lib/choose_font.tcl:43 lib/merge.tcl:172
#: lib/option.tcl:125 lib/remote_add.tcl:32 lib/remote_branch_delete.tcl:42 #: lib/option.tcl:125 lib/remote_add.tcl:32 lib/remote_branch_delete.tcl:42
#: lib/tools_dlg.tcl:40 lib/tools_dlg.tcl:204 lib/tools_dlg.tcl:352 #: lib/tools_dlg.tcl:40 lib/tools_dlg.tcl:204 lib/tools_dlg.tcl:352
#: lib/transport.tcl:97 #: lib/transport.tcl:108
msgid "Cancel" msgid "Cancel"
msgstr "Mégsem" msgstr "Mégsem"
@ -776,16 +776,6 @@ msgstr "Mindig (Ne legyen merge teszt.)"
msgid "The following branches are not completely merged into %s:" msgid "The following branches are not completely merged into %s:"
msgstr "A következő branchek nem teljesen lettek merge-ölve ebbe: %s:" msgstr "A következő branchek nem teljesen lettek merge-ölve ebbe: %s:"
#: lib/branch_delete.tcl:115
msgid ""
"Recovering deleted branches is difficult. \n"
"\n"
" Delete the selected branches?"
msgstr ""
"A törölt branchek visszaállítása bonyolult. \n"
"\n"
" Biztosan törli a kiválasztott brancheket?"
#: lib/branch_delete.tcl:141 #: lib/branch_delete.tcl:141
#, tcl-format #, tcl-format
msgid "" msgid ""
@ -1317,19 +1307,19 @@ msgstr ""
"A jelenlegi merge még nem teljesen fejeződött be. Csak akkor javíthat egy " "A jelenlegi merge még nem teljesen fejeződött be. Csak akkor javíthat egy "
"előbbi commitot, hogyha megszakítja a jelenlegi merge folyamatot.\n" "előbbi commitot, hogyha megszakítja a jelenlegi merge folyamatot.\n"
#: lib/commit.tcl:49 #: lib/commit.tcl:48
msgid "Error loading commit data for amend:" msgid "Error loading commit data for amend:"
msgstr "Hiba a javítandó commit adat betöltése közben:" msgstr "Hiba a javítandó commit adat betöltése közben:"
#: lib/commit.tcl:76 #: lib/commit.tcl:75
msgid "Unable to obtain your identity:" msgid "Unable to obtain your identity:"
msgstr "Nem sikerült megállapítani az azonosítót:" msgstr "Nem sikerült megállapítani az azonosítót:"
#: lib/commit.tcl:81 #: lib/commit.tcl:80
msgid "Invalid GIT_COMMITTER_IDENT:" msgid "Invalid GIT_COMMITTER_IDENT:"
msgstr "Érvénytelen GIT_COMMITTER_IDENT:" msgstr "Érvénytelen GIT_COMMITTER_IDENT:"
#: lib/commit.tcl:133 #: lib/commit.tcl:132
msgid "" msgid ""
"Last scanned state does not match repository state.\n" "Last scanned state does not match repository state.\n"
"\n" "\n"
@ -1346,7 +1336,7 @@ msgstr ""
"\n" "\n"
"Az újrakeresés most automatikusan el fog indulni.\n" "Az újrakeresés most automatikusan el fog indulni.\n"
#: lib/commit.tcl:156 #: lib/commit.tcl:155
#, tcl-format #, tcl-format
msgid "" msgid ""
"Unmerged files cannot be committed.\n" "Unmerged files cannot be committed.\n"
@ -1359,7 +1349,7 @@ msgstr ""
"A(z) %s fájlban ütközések vannak. Egyszer azokat ki kell javítani, majd " "A(z) %s fájlban ütközések vannak. Egyszer azokat ki kell javítani, majd "
"hozzá ki kell választani a fájlt mielőtt commitolni lehetne.\n" "hozzá ki kell választani a fájlt mielőtt commitolni lehetne.\n"
#: lib/commit.tcl:164 #: lib/commit.tcl:163
#, tcl-format #, tcl-format
msgid "" msgid ""
"Unknown file state %s detected.\n" "Unknown file state %s detected.\n"
@ -1370,7 +1360,7 @@ msgstr ""
"\n" "\n"
"A(z) %s fájlt nem tudja ez a program commitolni.\n" "A(z) %s fájlt nem tudja ez a program commitolni.\n"
#: lib/commit.tcl:172 #: lib/commit.tcl:171
msgid "" msgid ""
"No changes to commit.\n" "No changes to commit.\n"
"\n" "\n"
@ -1380,7 +1370,7 @@ msgstr ""
"\n" "\n"
"Legalább egy fájl ki kell választani, hogy commitolni lehessen.\n" "Legalább egy fájl ki kell választani, hogy commitolni lehessen.\n"
#: lib/commit.tcl:187 #: lib/commit.tcl:186
msgid "" msgid ""
"Please supply a commit message.\n" "Please supply a commit message.\n"
"\n" "\n"
@ -1398,45 +1388,45 @@ msgstr ""
"- Második sor: Üres\n" "- Második sor: Üres\n"
"- A többi sor: Leírja, hogy miért jó ez a változtatás.\n" "- A többi sor: Leírja, hogy miért jó ez a változtatás.\n"
#: lib/commit.tcl:211 #: lib/commit.tcl:210
#, tcl-format #, tcl-format
msgid "warning: Tcl does not support encoding '%s'." msgid "warning: Tcl does not support encoding '%s'."
msgstr "figyelmeztetés: a Tcl nem támogatja a(z) '%s' kódolást." msgstr "figyelmeztetés: a Tcl nem támogatja a(z) '%s' kódolást."
#: lib/commit.tcl:227 #: lib/commit.tcl:226
msgid "Calling pre-commit hook..." msgid "Calling pre-commit hook..."
msgstr "A pre-commit hurok meghívása..." msgstr "A pre-commit hurok meghívása..."
#: lib/commit.tcl:242 #: lib/commit.tcl:241
msgid "Commit declined by pre-commit hook." msgid "Commit declined by pre-commit hook."
msgstr "A commitot megakadályozta a pre-commit hurok. " msgstr "A commitot megakadályozta a pre-commit hurok. "
#: lib/commit.tcl:265 #: lib/commit.tcl:264
msgid "Calling commit-msg hook..." msgid "Calling commit-msg hook..."
msgstr "A commit-msg hurok meghívása..." msgstr "A commit-msg hurok meghívása..."
#: lib/commit.tcl:280 #: lib/commit.tcl:279
msgid "Commit declined by commit-msg hook." msgid "Commit declined by commit-msg hook."
msgstr "A commiot megakadályozta a commit-msg hurok." msgstr "A commiot megakadályozta a commit-msg hurok."
#: lib/commit.tcl:293 #: lib/commit.tcl:292
msgid "Committing changes..." msgid "Committing changes..."
msgstr "A változtatások commitolása..." msgstr "A változtatások commitolása..."
#: lib/commit.tcl:309 #: lib/commit.tcl:308
msgid "write-tree failed:" msgid "write-tree failed:"
msgstr "a write-tree sikertelen:" msgstr "a write-tree sikertelen:"
#: lib/commit.tcl:310 lib/commit.tcl:354 lib/commit.tcl:374 #: lib/commit.tcl:309 lib/commit.tcl:353 lib/commit.tcl:373
msgid "Commit failed." msgid "Commit failed."
msgstr "A commit nem sikerült." msgstr "A commit nem sikerült."
#: lib/commit.tcl:327 #: lib/commit.tcl:326
#, tcl-format #, tcl-format
msgid "Commit %s appears to be corrupt" msgid "Commit %s appears to be corrupt"
msgstr "A(z) %s commit sérültnek tűnik" msgstr "A(z) %s commit sérültnek tűnik"
#: lib/commit.tcl:332 #: lib/commit.tcl:331
msgid "" msgid ""
"No changes to commit.\n" "No changes to commit.\n"
"\n" "\n"
@ -1450,19 +1440,19 @@ msgstr ""
"\n" "\n"
"Az újrakeresés most automatikusan el fog indulni.\n" "Az újrakeresés most automatikusan el fog indulni.\n"
#: lib/commit.tcl:339 #: lib/commit.tcl:338
msgid "No changes to commit." msgid "No changes to commit."
msgstr "Nincs commitolandó változtatás." msgstr "Nincs commitolandó változtatás."
#: lib/commit.tcl:353 #: lib/commit.tcl:352
msgid "commit-tree failed:" msgid "commit-tree failed:"
msgstr "a commit-tree sikertelen:" msgstr "a commit-tree sikertelen:"
#: lib/commit.tcl:373 #: lib/commit.tcl:372
msgid "update-ref failed:" msgid "update-ref failed:"
msgstr "az update-ref sikertelen:" msgstr "az update-ref sikertelen:"
#: lib/commit.tcl:461 #: lib/commit.tcl:460
#, tcl-format #, tcl-format
msgid "Created commit %s: %s" msgid "Created commit %s: %s"
msgstr "Létrejött a %s commit: %s" msgstr "Létrejött a %s commit: %s"
@ -2168,7 +2158,8 @@ msgstr "A(z) %s letöltése"
msgid "Do not know how to initialize repository at location '%s'." msgid "Do not know how to initialize repository at location '%s'."
msgstr "Nem tudni, hogy hogy kell a(z) '%s' helyen repót inicializálni." msgstr "Nem tudni, hogy hogy kell a(z) '%s' helyen repót inicializálni."
#: lib/remote_add.tcl:163 lib/transport.tcl:25 lib/transport.tcl:71 #: lib/remote_add.tcl:163 lib/transport.tcl:25 lib/transport.tcl:63
#: lib/transport.tcl:81
#, tcl-format #, tcl-format
msgid "push %s" msgid "push %s"
msgstr "%s push-olása" msgstr "%s push-olása"
@ -2186,11 +2177,11 @@ msgstr "Távoli Branch törlése"
msgid "From Repository" msgid "From Repository"
msgstr "Forrás repó" msgstr "Forrás repó"
#: lib/remote_branch_delete.tcl:50 lib/transport.tcl:123 #: lib/remote_branch_delete.tcl:50 lib/transport.tcl:134
msgid "Remote:" msgid "Remote:"
msgstr "Távoli:" msgstr "Távoli:"
#: lib/remote_branch_delete.tcl:66 lib/transport.tcl:138 #: lib/remote_branch_delete.tcl:66 lib/transport.tcl:149
msgid "Arbitrary Location:" msgid "Arbitrary Location:"
msgstr "Önkényes hely:" msgstr "Önkényes hely:"
@ -2398,7 +2389,7 @@ msgstr "Futtatás: %s..."
#: lib/tools.tcl:149 #: lib/tools.tcl:149
#, tcl-format #, tcl-format
msgid "Tool completed succesfully: %s" msgid "Tool completed successfully: %s"
msgstr "Az eszköz sikeresen befejeződött: %s" msgstr "Az eszköz sikeresen befejeződött: %s"
#: lib/tools.tcl:151 #: lib/tools.tcl:151
@ -2519,38 +2510,43 @@ msgstr "A %s repóból törölt követő branchek törlése"
msgid "Pushing changes to %s" msgid "Pushing changes to %s"
msgstr "Változások pusholása ide: %s" msgstr "Változások pusholása ide: %s"
#: lib/transport.tcl:72 #: lib/transport.tcl:64
#, tcl-format
msgid "Mirroring to %s"
msgstr "Tükrözés a következő helyre: %s"
#: lib/transport.tcl:82
#, tcl-format #, tcl-format
msgid "Pushing %s %s to %s" msgid "Pushing %s %s to %s"
msgstr "Pusholás: %s %s, ide: %s" msgstr "Pusholás: %s %s, ide: %s"
#: lib/transport.tcl:89 #: lib/transport.tcl:100
msgid "Push Branches" msgid "Push Branches"
msgstr "Branchek pusholása" msgstr "Branchek pusholása"
#: lib/transport.tcl:103 #: lib/transport.tcl:114
msgid "Source Branches" msgid "Source Branches"
msgstr "Forrás branchek" msgstr "Forrás branchek"
#: lib/transport.tcl:120 #: lib/transport.tcl:131
msgid "Destination Repository" msgid "Destination Repository"
msgstr "Cél repó" msgstr "Cél repó"
#: lib/transport.tcl:158 #: lib/transport.tcl:169
msgid "Transfer Options" msgid "Transfer Options"
msgstr "Átviteli opciók" msgstr "Átviteli opciók"
#: lib/transport.tcl:160 #: lib/transport.tcl:171
msgid "Force overwrite existing branch (may discard changes)" msgid "Force overwrite existing branch (may discard changes)"
msgstr "" msgstr ""
"Létező branch felülírásának erőltetése (lehet, hogy el fog dobni " "Létező branch felülírásának erőltetése (lehet, hogy el fog dobni "
"változtatásokat)" "változtatásokat)"
#: lib/transport.tcl:164 #: lib/transport.tcl:175
msgid "Use thin pack (for slow network connections)" msgid "Use thin pack (for slow network connections)"
msgstr "Vékony csomagok használata (lassú hálózati kapcsolatok számára)" msgstr "Vékony csomagok használata (lassú hálózati kapcsolatok számára)"
#: lib/transport.tcl:168 #: lib/transport.tcl:179
msgid "Include tags" msgid "Include tags"
msgstr "Tageket is" msgstr "Tageket is"

686
po/it.po

File diff suppressed because it is too large Load Diff

670
po/ja.po

File diff suppressed because it is too large Load Diff

2474
po/nb.po Normal file

File diff suppressed because it is too large Load Diff

1438
po/ru.po

File diff suppressed because it is too large Load Diff

1395
po/sv.po

File diff suppressed because it is too large Load Diff

View File

@ -676,16 +676,6 @@ msgstr "总是合并 (不作合并测试.)"
msgid "The following branches are not completely merged into %s:" msgid "The following branches are not completely merged into %s:"
msgstr "下列分支没有完全被合并到 %s:" msgstr "下列分支没有完全被合并到 %s:"
#: lib/branch_delete.tcl:115
msgid ""
"Recovering deleted branches is difficult. \n"
"\n"
" Delete the selected branches?"
msgstr ""
"恢复被删除的分支非常困难.\n"
"\n"
"是否要删除所选分支?"
#: lib/branch_delete.tcl:141 #: lib/branch_delete.tcl:141
#, tcl-format #, tcl-format
msgid "" msgid ""

View File

@ -3,15 +3,21 @@
exec wish "$0" -- "$@" exec wish "$0" -- "$@"
if { $argc >=2 && [lindex $argv 0] == "--working-dir" } { if { $argc >=2 && [lindex $argv 0] == "--working-dir" } {
cd [lindex $argv 1] set workdir [lindex $argv 1]
cd $workdir
if {[lindex [file split $workdir] end] eq {.git}} {
# Workaround for Explorer right click "Git GUI Here" on .git/
cd ..
}
set argv [lrange $argv 2 end] set argv [lrange $argv 2 end]
incr argc -2 incr argc -2
} }
set bindir [file dirname \ set basedir [file dirname \
[file dirname \ [file dirname \
[file dirname [info script]]]] [file dirname [info script]]]]
set bindir [file join $bindir bin] set bindir [file join $basedir bin]
set bindir "$bindir;[file join $basedir mingw bin]"
regsub -all ";" $bindir "\\;" bindir regsub -all ";" $bindir "\\;" bindir
set env(PATH) "$bindir;$env(PATH)" set env(PATH) "$bindir;$env(PATH)"
unset bindir unset bindir