summary | shortlog | log | commit | commitdiff | tree
raw | patch | inline | side by side (parent: 0c8d783)
raw | patch | inline | side by side (parent: 0c8d783)
author | Shawn O. Pearce <spearce@spearce.org> | |
Tue, 21 Nov 2006 07:36:55 +0000 (02:36 -0500) | ||
committer | Shawn O. Pearce <spearce@spearce.org> | |
Tue, 21 Nov 2006 07:36:55 +0000 (02:36 -0500) |
The copyright notice we display in the about dialog should be the same
as the one at the top of our source code. By putting the copyright
notice that appears at the top of our source code into a global variable
rather than a comment we can trivially make them the same at all times.
Signed-off-by: Shawn O. Pearce <spearce@spearce.org>
as the one at the top of our source code. By putting the copyright
notice that appears at the top of our source code into a global variable
rather than a comment we can trivially make them the same at all times.
Signed-off-by: Shawn O. Pearce <spearce@spearce.org>
git-gui | patch | blob | history |
index 4b07612f580290d590d10a44c244dfa48c1c2083..b28786657d107ee34845fda8599035541e7204fa 100755 (executable)
--- a/git-gui
+++ b/git-gui
# Tcl ignores the next line -*- tcl -*- \
exec wish "$0" -- "$@"
-# Copyright (C) 2006 Shawn Pearce, Paul Mackerras. All rights reserved.
-# This program is free software; it may be used, copied, modified
-# and distributed under the terms of the GNU General Public Licence,
-# either version 2, or (at your option) any later version.
+set copyright {
+Copyright © 2006 Shawn Pearce, Paul Mackerras.
+
+All rights reserved.
+
+This program is free software; it may be used, copied, modified
+and distributed under the terms of the GNU General Public Licence,
+either version 2, or (at your option) any later version.
+}
set appname [lindex [file split $argv0] end]
set gitdir {}
}
proc do_about {} {
- global appname
+ global appname copyright
set w .about_dialog
toplevel $w
label $w.desc \
-text "$appname - a commit creation tool for Git.
-
-Copyright © 2006 Shawn Pearce, Paul Mackerras
-
-Use and redistribute under the terms of the
-GNU General Public License, v. 2.0 or later." \
+$copyright" \
-padx 5 -pady 5 \
-justify left \
-anchor w \