user/dev discussion of public-inbox itself
 help / color / mirror / code / Atom feed
Search results ordered by [date|relevance]  view[summary|nested|Atom feed]
thread overview below | download mbox.gz: |
* Re: [PATCH] wwwlisting: fix grep call for match=domain filtering
  2020-07-30  8:03  7% ` Eric Wong
@ 2020-07-30 14:58  7%   ` Kyle Meyer
  0 siblings, 0 replies; 3+ results
From: Kyle Meyer @ 2020-07-30 14:58 UTC (permalink / raw)
  To: Eric Wong; +Cc: meta

Eric Wong writes:

>>  sub list_match_domain_i {
>>  	my ($ibx, $arg) = @_;
>>  	my ($list, $hide_key, $re) = @$arg;
>> -	if (!$ibx->{-hide}->{$hide_key} && grep($re, @{$ibx->{url}})) {
>> +	if (!$ibx->{-hide}->{$hide_key} && grep(/$re/, @{$ibx->{url}})) {
>
> Gah, I keep getting languages/behaviors confused :x
>
> Especially confusing since `$string =~ $re' is documented
> in perlop(1) as being equivalent to `$string =~ /$re/'

Ah, good to know you find that bit in the documentation confusing too.
It had me scratching my head when I was debugging this, but I wasn't
sure if I was just missing something that would be obvious to someone
who knows perl.

^ permalink raw reply	[relevance 7%]

* Re: [PATCH] wwwlisting: fix grep call for match=domain filtering
  2020-07-30  5:30  7% [PATCH] wwwlisting: fix grep call for match=domain filtering Kyle Meyer
@ 2020-07-30  8:03  7% ` Eric Wong
  2020-07-30 14:58  7%   ` Kyle Meyer
  0 siblings, 1 reply; 3+ results
From: Eric Wong @ 2020-07-30  8:03 UTC (permalink / raw)
  To: Kyle Meyer; +Cc: meta

Kyle Meyer <kyle@kyleam.com> wrote:
> The grep call in list_match_domain_i returns true for all inboxes,
> even ones without a URL that matches the regular expression, because
> the qr value passed to grep is not surrounded by slashes.  Add them.
> 
> Fixes: 1988d730c0088e8b (config: support multi-value inbox.*.*url)

Thanks, pushed as commit 41ecd08ee60daa495de3a2fc2c0296dc9cc9a0b3

>  sub list_match_domain_i {
>  	my ($ibx, $arg) = @_;
>  	my ($list, $hide_key, $re) = @$arg;
> -	if (!$ibx->{-hide}->{$hide_key} && grep($re, @{$ibx->{url}})) {
> +	if (!$ibx->{-hide}->{$hide_key} && grep(/$re/, @{$ibx->{url}})) {

Gah, I keep getting languages/behaviors confused :x

Especially confusing since `$string =~ $re' is documented
in perlop(1) as being equivalent to `$string =~ /$re/'

^ permalink raw reply	[relevance 7%]

* [PATCH] wwwlisting: fix grep call for match=domain filtering
@ 2020-07-30  5:30  7% Kyle Meyer
  2020-07-30  8:03  7% ` Eric Wong
  0 siblings, 1 reply; 3+ results
From: Kyle Meyer @ 2020-07-30  5:30 UTC (permalink / raw)
  To: meta

The grep call in list_match_domain_i returns true for all inboxes,
even ones without a URL that matches the regular expression, because
the qr value passed to grep is not surrounded by slashes.  Add them.

Fixes: 1988d730c0088e8b (config: support multi-value inbox.*.*url)
---
 lib/PublicInbox/WwwListing.pm | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/lib/PublicInbox/WwwListing.pm b/lib/PublicInbox/WwwListing.pm
index 5f85e346..0af0fe68 100644
--- a/lib/PublicInbox/WwwListing.pm
+++ b/lib/PublicInbox/WwwListing.pm
@@ -40,7 +40,7 @@ sub list_all ($$$) {
 sub list_match_domain_i {
 	my ($ibx, $arg) = @_;
 	my ($list, $hide_key, $re) = @$arg;
-	if (!$ibx->{-hide}->{$hide_key} && grep($re, @{$ibx->{url}})) {
+	if (!$ibx->{-hide}->{$hide_key} && grep(/$re/, @{$ibx->{url}})) {
 		push @$list, $ibx;
 	}
 }

base-commit: 9e0c2886493863b4bc6483ce0a3bfd3d599c8c87
-- 
2.27.0


^ permalink raw reply related	[relevance 7%]

Results 1-3 of 3 | reverse | options above
-- pct% links below jump to the message on this page, permalinks otherwise --
2020-07-30  5:30  7% [PATCH] wwwlisting: fix grep call for match=domain filtering Kyle Meyer
2020-07-30  8:03  7% ` Eric Wong
2020-07-30 14:58  7%   ` Kyle Meyer

Code repositories for project(s) associated with this public inbox

	https://80x24.org/public-inbox.git

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 read-only IMAP folder(s) and NNTP newsgroup(s).