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: |
* [PATCH 02/10] cgit: use Perl 5.10-isms, optimize, and golf
  2022-10-04 19:12  6% [PATCH 00/10] www_coderepo: git viewer w/ search planned Eric Wong
@ 2022-10-04 19:12  7% ` Eric Wong
  0 siblings, 0 replies; 2+ results
From: Eric Wong @ 2022-10-04 19:12 UTC (permalink / raw)
  To: meta

We can reduce variable assignments in a few places and filter
keys more quickly using the `grep' Perl op rather than relying on
`m// or next' inside a loop.  Similar changes to the NNTP and IMAP
(e.g. b700fce60f25038e (nntp: NEWNEWS: speed up filtering, 2020-11-27))
yielded good improvements.
---
 lib/PublicInbox/Cgit.pm | 25 +++++++++++--------------
 1 file changed, 11 insertions(+), 14 deletions(-)

diff --git a/lib/PublicInbox/Cgit.pm b/lib/PublicInbox/Cgit.pm
index cc729aa2..a63f8902 100644
--- a/lib/PublicInbox/Cgit.pm
+++ b/lib/PublicInbox/Cgit.pm
@@ -1,4 +1,4 @@
-# Copyright (C) 2019-2021 all contributors <meta@public-inbox.org>
+# Copyright (C) all contributors <meta@public-inbox.org>
 # License: AGPL-3.0+ <https://www.gnu.org/licenses/agpl-3.0.txt>
 
 # wrapper for cgit(1) and git-http-backend(1) for browsing and
@@ -6,7 +6,7 @@
 # directive to be set in the public-inbox config file.
 
 package PublicInbox::Cgit;
-use strict;
+use v5.12;
 use PublicInbox::GitHTTPBackend;
 use PublicInbox::Git;
 # not bothering with Exporter for a one-off
@@ -40,10 +40,9 @@ sub locate_cgit ($) {
 		if (defined($cgit_bin) && $cgit_bin =~ m!\A(.+?)/[^/]+\z!) {
 			unshift @dirs, $1 if -d $1;
 		}
-		foreach my $d (@dirs) {
-			my $f = "$d/cgit.css";
-			next unless -f $f;
-			$cgit_data = $d;
+		for (@dirs) {
+			next unless -f "$_/cgit.css";
+			$cgit_data = $_;
 			last;
 		}
 	}
@@ -65,17 +64,15 @@ sub new {
 
 	# some cgit repos may not be mapped to inboxes, so ensure those exist:
 	my $code_repos = $pi_cfg->{-code_repos};
-	foreach my $k (keys %$pi_cfg) {
-		$k =~ /\Acoderepo\.(.+)\.dir\z/ or next;
-		my $dir = $pi_cfg->{$k};
-		$code_repos->{$1} ||= $pi_cfg->fill_code_repo($1);
+	for my $k (grep(/\Acoderepo\.(?:.+)\.dir\z/, keys %$pi_cfg)) {
+		$k = substr($k, length('coderepo.'), -length('.dir'));
+		$code_repos->{$k} //= $pi_cfg->fill_code_repo($k);
 	}
 	while (my ($nick, $repo) = each %$code_repos) {
 		$self->{"\0$nick"} = $repo;
 	}
-	my $cgit_static = $pi_cfg->{-cgit_static};
-	my $static = join('|', map { quotemeta $_ } keys %$cgit_static);
-	$self->{static} = qr/\A($static)\z/;
+	my $s = join('|', map { quotemeta } keys %{$pi_cfg->{-cgit_static}});
+	$self->{static} = qr/\A($s)\z/;
 	$self;
 }
 
@@ -114,7 +111,7 @@ sub call {
 
 	my $cgi_env = { PATH_INFO => $path_info };
 	foreach (@PASS_ENV) {
-		defined(my $v = $env->{$_}) or next;
+		my $v = $env->{$_} // next;
 		$cgi_env->{$_} = $v;
 	}
 	$cgi_env->{'HTTPS'} = 'on' if $env->{'psgi.url_scheme'} eq 'https';

^ permalink raw reply related	[relevance 7%]

* [PATCH 00/10] www_coderepo: git viewer w/ search planned
@ 2022-10-04 19:12  6% Eric Wong
  2022-10-04 19:12  7% ` [PATCH 02/10] cgit: use Perl 5.10-isms, optimize, and golf Eric Wong
  0 siblings, 1 reply; 2+ results
From: Eric Wong @ 2022-10-04 19:12 UTC (permalink / raw)
  To: meta

This is to eventually support M:N inbox:coderepo search via
-extindex.  For now, it's a JS-free and CSS-optional
cgit-like UI, but perhaps more brutalist :>

It's mainly for wiring /$INBOX/$OID/s/ into /$CODEREPO/$OID/s/,
but Atom feeds and such will be supported.

It'll work better with coderepos with a ".git" name suffix
to avoid conflicts with the inbox name.  So [coderepo "git"]
becomes [coderepo "git.git"] in my config file.  cgitrc usage
should continue working, I think...

It looks better out-of-the-box on w3m since cgit relies too
much on CSS :>

Example here: https://80x24.org/lore/git.git

Eric Wong (10):
  tests: use test_httpd consistently
  cgit: use Perl 5.10-isms, optimize, and golf
  git: hoist out description
  git: move cloneurl + description reading here
  www_coderepo: an alternative to cgit
  www_coderepo: wire up /$CODEREPO/$OID/s/ endpoint
  git: allow ->local_nick to return undef
  www_coderepo: wire up snapshot support
  www_stream: use git->pub_urls for coderepo links
  www_coderepo: start a top nav bar in summary view

 MANIFEST                        |   2 +
 lib/PublicInbox/Cgit.pm         |  33 ++---
 lib/PublicInbox/Config.pm       |   2 +-
 lib/PublicInbox/ExtSearch.pm    |   2 +-
 lib/PublicInbox/Git.pm          |  53 +++++++--
 lib/PublicInbox/GitAsyncCat.pm  |  66 ++++++++--
 lib/PublicInbox/Inbox.pm        |  23 +---
 lib/PublicInbox/RepoSnapshot.pm |  95 +++++++++++++++
 lib/PublicInbox/SolverGit.pm    |   8 +-
 lib/PublicInbox/TestCommon.pm   |  14 ++-
 lib/PublicInbox/ViewVCS.pm      |   1 +
 lib/PublicInbox/WWW.pm          |  12 +-
 lib/PublicInbox/WwwCoderepo.pm  | 205 ++++++++++++++++++++++++++++++++
 lib/PublicInbox/WwwStream.pm    |  33 ++---
 t/init.t                        |   2 +-
 t/lei-mirror.t                  |  10 +-
 t/psgi_attach.t                 |  13 +-
 t/solver_git.t                  |  70 ++++++++---
 t/www_altid.t                   |  13 +-
 xt/solver.t                     |  18 +--
 20 files changed, 533 insertions(+), 142 deletions(-)
 create mode 100644 lib/PublicInbox/RepoSnapshot.pm
 create mode 100644 lib/PublicInbox/WwwCoderepo.pm

^ permalink raw reply	[relevance 6%]

Results 1-2 of 2 | reverse | options above
-- pct% links below jump to the message on this page, permalinks otherwise --
2022-10-04 19:12  6% [PATCH 00/10] www_coderepo: git viewer w/ search planned Eric Wong
2022-10-04 19:12  7% ` [PATCH 02/10] cgit: use Perl 5.10-isms, optimize, and golf Eric Wong

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).