* [PATCH] wwwlisting: fix grep call for match=domain filtering
@ 2020-07-30 5:30 Kyle Meyer
2020-07-30 8:03 ` Eric Wong
0 siblings, 1 reply; 3+ messages in thread
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 [flat|nested] 3+ messages in thread
* Re: [PATCH] wwwlisting: fix grep call for match=domain filtering
2020-07-30 5:30 [PATCH] wwwlisting: fix grep call for match=domain filtering Kyle Meyer
@ 2020-07-30 8:03 ` Eric Wong
2020-07-30 14:58 ` Kyle Meyer
0 siblings, 1 reply; 3+ messages in thread
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 [flat|nested] 3+ messages in thread
* Re: [PATCH] wwwlisting: fix grep call for match=domain filtering
2020-07-30 8:03 ` Eric Wong
@ 2020-07-30 14:58 ` Kyle Meyer
0 siblings, 0 replies; 3+ messages in thread
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 [flat|nested] 3+ messages in thread
end of thread, other threads:[~2020-07-30 14:58 UTC | newest]
Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2020-07-30 5:30 [PATCH] wwwlisting: fix grep call for match=domain filtering Kyle Meyer
2020-07-30 8:03 ` Eric Wong
2020-07-30 14:58 ` Kyle Meyer
user/dev discussion of public-inbox itself
This inbox may be cloned and mirrored by anyone:
git clone --mirror https://public-inbox.org/meta
git clone --mirror http://czquwvybam4bgbro.onion/meta
git clone --mirror http://hjrcffqmbrq6wope.onion/meta
git clone --mirror http://ou63pmih66umazou.onion/meta
# If you have public-inbox 1.1+ installed, you may
# initialize and index your mirror using the following commands:
public-inbox-init -V1 meta meta/ https://public-inbox.org/meta \
meta@public-inbox.org
public-inbox-index meta
Example config snippet for mirrors.
Newsgroups are available over NNTP:
nntp://news.public-inbox.org/inbox.comp.mail.public-inbox.meta
nntp://ou63pmih66umazou.onion/inbox.comp.mail.public-inbox.meta
nntp://czquwvybam4bgbro.onion/inbox.comp.mail.public-inbox.meta
nntp://hjrcffqmbrq6wope.onion/inbox.comp.mail.public-inbox.meta
nntp://news.gmane.io/gmane.mail.public-inbox.general
note: .onion URLs require Tor: https://www.torproject.org/
code repositories for the project(s) associated with this inbox:
https://80x24.org/public-inbox.git
AGPL code for this site: git clone https://public-inbox.org/public-inbox.git