git.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
From: demerphq <demerphq@gmail.com>
To: Jakub Narebski <jnareb@gmail.com>
Cc: "Rafael Garcia-Suarez" <rgarciasuarez@gmail.com>,
	git@vger.kernel.org,
	"Johannes Schindelin" <Johannes.Schindelin@gmx.de>,
	"Toralf Förster" <toralf.foerster@gmx.de>
Subject: Re: [PATCH] gitweb: Better regexp for SHA-1 committag match
Date: Sat, 7 Feb 2009 10:22:15 +0100	[thread overview]
Message-ID: <9b18b3110902070122r3397888aqcaebfcf3e6d40d51@mail.gmail.com> (raw)
In-Reply-To: <200902061126.18418.jnareb@gmail.com>

2009/2/6 Jakub Narebski <jnareb@gmail.com>:
> Dnia piątek 6. lutego 2009 10:49, Rafael Garcia-Suarez napisał:
>> 2009/2/6 Jakub Narebski <jnareb@gmail.com>:
>
>> > Make SHA-1 regexp to be turned into hyperlink (the SHA-1 committag)
>> > to match word boundary at the beginning and the end.  This way we
>> > reduce number of false matches, for example we now don't match
>> > 0x74a5cd01 which is hex decimal (for example memory address),
>> > but is not SHA-1.
>>
>> Further suggestion: you could also turn the final \b into (\b|\@),
>
> You meant \b -> \b(?!\@), didn't you?  Word boundary _not_ followed
> by '@', and not word boundary _OR_ '@' as you wrote...

Since \b(?!\@) is effectively two zero width negative assertions in a
row you could simplify by saying:

  (?![^\w\@])

and that way you can easily add the '.' case as well.

Yves










-- 
perl -Mre=debug -e "/just|another|perl|hacker/"

  parent reply	other threads:[~2009-02-07  9:24 UTC|newest]

Thread overview: 22+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2009-02-02 21:04 webgit highlightes mem adresses as git versions Toralf Förster
2009-02-02 22:54 ` Jakub Narebski
2009-02-03 11:04   ` Toralf Förster
2009-02-03 12:31     ` Johannes Schindelin
2009-02-06  9:12       ` [PATCH] gitweb: Better regexp for SHA-1 committag match Jakub Narebski
2009-02-06  9:49         ` Rafael Garcia-Suarez
2009-02-06 10:26           ` Jakub Narebski
2009-02-06 10:31             ` Rafael Garcia-Suarez
2009-02-06 10:49               ` [PATCHv2] " Jakub Narebski
2009-02-06 13:03                 ` Johannes Schindelin
2009-02-06 21:47                   ` Jay Soffian
2009-02-06 22:00                     ` Jakub Narebski
2009-02-07  7:48                 ` Junio C Hamano
2009-02-07  8:34                   ` Jakub Narebski
2009-02-07  8:48                     ` Junio C Hamano
2009-02-07  9:25                       ` Jakub Narebski
2009-02-07  9:32                         ` demerphq
2009-02-07 10:09                           ` Jakub Narebski
2009-02-07 14:01                 ` Jakub Narebski
2009-02-07  9:22             ` demerphq [this message]
2009-02-07 10:07               ` [PATCH] " Jakub Narebski
2009-02-07 13:30                 ` demerphq

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=9b18b3110902070122r3397888aqcaebfcf3e6d40d51@mail.gmail.com \
    --to=demerphq@gmail.com \
    --cc=Johannes.Schindelin@gmx.de \
    --cc=git@vger.kernel.org \
    --cc=jnareb@gmail.com \
    --cc=rgarciasuarez@gmail.com \
    --cc=toralf.foerster@gmx.de \
    /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).