From: Bert Wesarg <bert.wesarg@googlemail.com>
To: Pat Thoyts <patthoyts@users.sourceforge.net>
Cc: David Fries <David@fries.net>, git@vger.kernel.org
Subject: Re: [PATCH 3/4] git-gui: only except numbers in the goto-line input
Date: Sun, 16 Oct 2011 12:32:47 +0200 [thread overview]
Message-ID: <CAKPyHN0r9VF9nS35+YZWbMb-DW4Xgt-MzN5JX2DH8eji7SZRpw@mail.gmail.com> (raw)
In-Reply-To: <87fwitkihn.fsf@fox.patthoyts.tk>
Hi,
On Sun, Oct 16, 2011 at 00:17, Pat Thoyts
<patthoyts@users.sourceforge.net> wrote:
> Bert Wesarg <bert.wesarg@googlemail.com> writes:
>
>>Signed-off-by: Bert Wesarg <bert.wesarg@googlemail.com>
>>---
>> lib/line.tcl | 16 ++++++++++++++--
>> 1 files changed, 14 insertions(+), 2 deletions(-)
>>
>>diff --git a/lib/line.tcl b/lib/line.tcl
>>index 692485a..70785e1 100644
>>--- a/lib/line.tcl
>>+++ b/lib/line.tcl
>>@@ -15,7 +15,11 @@ constructor new {i_w i_text args} {
>>
>> ${NS}::frame $w
>> ${NS}::label $w.l -text [mc "Goto Line:"]
>>- entry $w.ent -textvariable ${__this}::linenum -background lightgreen
>>+ entry $w.ent \
>>+ -textvariable ${__this}::linenum \
>>+ -background lightgreen \
>>+ -validate key \
>>+ -validatecommand [cb _validate %P]
>> ${NS}::button $w.bn -text [mc Go] -command [cb _incrgoto]
>>
>> pack $w.l -side left
>>@@ -26,7 +30,7 @@ constructor new {i_w i_text args} {
>> grid remove $w
>>
>> bind $w.ent <Return> [cb _incrgoto]
>>- bind $w.ent <Escape> [list linebar::hide $this]
>>+ bind $w.ent <Escape> [cb hide]
>>
>> bind $w <Destroy> [list delete_this $this]
>> return $this
>>@@ -55,6 +59,14 @@ method editor {} {
>> return $w.ent
>> }
>>
>>+method _validate {P} {
>>+ # only accept numbers as input
>>+ if {[regexp {\d*} $P]} {
>>+ return 1
>>+ }
>>+ return 0
>>+}
>>+
>> method _incrgoto {} {
>> if {$linenum ne {}} {
>> $ctext see $linenum.0
>
> This one doesn't actually work when I try it it accepts alphanumeric
> input. However, replacing the validate body with
> string is integer $P
> fixes it to operate as intended so I'll replace it with this.
Sorry, the correct regexp would have been {^\d*$}. But your [string is
integer] should completely suffice. Thanks.
> Looks like it needs theming too but that can be a separate patch.
Theming is not my field, sorry.
Bert
> --
> Pat Thoyts http://www.patthoyts.tk/
> PGP fingerprint 2C 6E 98 07 2C 59 C8 97 10 CE 11 E6 04 E0 B9 DD
>
next prev parent reply other threads:[~2011-10-16 10:32 UTC|newest]
Thread overview: 10+ messages / expand[flat|nested] mbox.gz Atom feed top
2011-10-13 13:48 [PATCH 1/4] git-gui: search and linenumber input are mutual exclusive in the blame view Bert Wesarg
2011-10-13 13:48 ` [PATCH 2/4] git-gui: clear the goto line input when hiding Bert Wesarg
2011-10-13 13:48 ` [PATCH 3/4] git-gui: only except numbers in the goto-line input Bert Wesarg
2011-10-13 13:48 ` [RFC/PATCH 4/4] git-gui: incremental goto line in blame view Bert Wesarg
2011-10-15 22:26 ` Pat Thoyts
2011-10-15 22:17 ` [PATCH 3/4] git-gui: only except numbers in the goto-line input Pat Thoyts
2011-10-16 10:32 ` Bert Wesarg [this message]
2011-10-15 22:20 ` [PATCH 2/4] git-gui: clear the goto line input when hiding Pat Thoyts
2011-10-16 10:29 ` Bert Wesarg
2011-10-15 22:22 ` [PATCH 1/4] git-gui: search and linenumber input are mutual exclusive in the blame view Pat Thoyts
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=CAKPyHN0r9VF9nS35+YZWbMb-DW4Xgt-MzN5JX2DH8eji7SZRpw@mail.gmail.com \
--to=bert.wesarg@googlemail.com \
--cc=David@fries.net \
--cc=git@vger.kernel.org \
--cc=patthoyts@users.sourceforge.net \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).