]> Sergey Matveev's repositories - public-inbox.git/log
public-inbox.git
4 years agoMerge remote-tracking branch 'origin/xap-optional' into master
Eric Wong [Tue, 21 May 2019 23:22:05 +0000 (23:22 +0000)]
Merge remote-tracking branch 'origin/xap-optional' into master

* origin/xap-optional:
  admin: improve warnings and errors for missing modules
  searchidx: do not create empty Xapian partitions for basic
  lazy load Xapian and make it optional for v2
  www: use Inbox->over where appropriate
  nntp: use Inbox->over directly
  inbox: add ->over method to ease access

4 years agosearchidx: remove unused Compress::Zlib import
Eric Wong [Tue, 21 May 2019 06:54:27 +0000 (06:54 +0000)]
searchidx: remove unused Compress::Zlib import

We only compress in OverIdx, now; since we no longer do overview
stuff in Xapian (and Xapian compresses document data, anyways).

4 years agoPublicInbox::Import::add: Consolidate subject handling
Eric W. Biederman [Fri, 17 May 2019 01:53:06 +0000 (20:53 -0500)]
PublicInbox::Import::add: Consolidate subject handling

Consolidate subject handling in the add function to make it easier to
read and understand.

Signed-off-by: "Eric W. Biederman" <ebiederm@xmission.com>
4 years agowww: unescape '+' => ' ' before general URI unescape
Eric Wong [Thu, 16 May 2019 07:06:21 +0000 (07:06 +0000)]
www: unescape '+' => ' ' before general URI unescape

This allows searching for terms with "+" in them properly.

4 years agoRevert "view: perform highlighting for space-prefixed diffs"
Eric Wong [Thu, 16 May 2019 06:54:08 +0000 (06:54 +0000)]
Revert "view: perform highlighting for space-prefixed diffs"

This was buggy and was causing non-diff text to have extra
leading spaces.  The diff parsing code needs to be cleaned up,
so this will be fixed, later.

This reverts commit 1a67b91c1326efa372d1ec957e2494849d894f0b.

4 years agosearch: disable phrase searching, for now
Eric Wong [Thu, 16 May 2019 03:40:47 +0000 (03:40 +0000)]
search: disable phrase searching, for now

There probably needs to be an option to enable this
independently of indexlevel; but for now this is
the safest option.

And, as I discovered during the development of the
indexlevel option, Xapian does a pretty good job of
finding phrases without position data, anyways.

4 years agoview: perform highlighting for space-prefixed diffs
Eric Wong [Thu, 16 May 2019 01:23:29 +0000 (01:23 +0000)]
view: perform highlighting for space-prefixed diffs

"git format-patch --interdiff" and similar can prefix diffs
with leading white space.  Teach our diff parser to account
for it and set appropriate CSS classes for them.

4 years agoremove hard Devel::Peek dependency and lazy load for daemons
Eric Wong [Wed, 15 May 2019 10:39:19 +0000 (10:39 +0000)]
remove hard Devel::Peek dependency and lazy load for daemons

It's only useful for a corner case in long-running daemons when
an admin decides to compact or vacuum a Xapian or SQLite DB.

As a result, other scripts should run slightly faster.  For
instance, this saves about 80ms (2.710s => 2.630s) in t/mda.t
on my remote workstation.

While we're at it, make sure EvCleanup is properly require'd
in Daemon.pm and HTTP.pm and document our use of Devel::Peek.

4 years agoinbox: remove POSIX strftime import
Eric Wong [Wed, 15 May 2019 10:39:01 +0000 (10:39 +0000)]
inbox: remove POSIX strftime import

We no longer need it since Inbox->recent hits the overview
DB instead of Xapian

4 years agodoc: add marketing guide
Eric Wong [Thu, 9 May 2019 09:57:37 +0000 (09:57 +0000)]
doc: add marketing guide

Preventative measures; since marketing is almost always annoying
to me.  And trying to avoid unintended consequences.

4 years agoadmin: improve warnings and errors for missing modules
Eric Wong [Wed, 15 May 2019 01:18:09 +0000 (01:18 +0000)]
admin: improve warnings and errors for missing modules

Since we lazy-load Xapian now, some errors may become
more cryptic or buried.  Try to improve that by making
Admin show better errors.

4 years agosearchidx: do not create empty Xapian partitions for basic
Eric Wong [Wed, 15 May 2019 01:18:10 +0000 (01:18 +0000)]
searchidx: do not create empty Xapian partitions for basic

No point in leaving a mess of empty directories when Xapian
doesn't load.

4 years agolazy load Xapian and make it optional for v2
Eric Wong [Wed, 15 May 2019 01:18:08 +0000 (01:18 +0000)]
lazy load Xapian and make it optional for v2

More tests work without Search::Xapian, now.
Usability issues still need to be fixed

4 years agowww: use Inbox->over where appropriate
Eric Wong [Wed, 15 May 2019 01:18:07 +0000 (01:18 +0000)]
www: use Inbox->over where appropriate

We don't need to rely on Xapian search functionality for the
majority of the WWW code, even.  subject_normalized is moved to
SearchMsg, where it (probably) makes more sense, anyways.

4 years agonntp: use Inbox->over directly
Eric Wong [Wed, 15 May 2019 01:18:06 +0000 (01:18 +0000)]
nntp: use Inbox->over directly

None of the NNTP code actually relies on Xapian, anymore.

4 years agoinbox: add ->over method to ease access
Eric Wong [Wed, 15 May 2019 01:18:05 +0000 (01:18 +0000)]
inbox: add ->over method to ease access

One small step towards making installing Xapian optional for v2
and providing more WWW and NNTP functionality without it.

4 years agotests: get rid of unnecessary Cwd module use
Eric Wong [Tue, 14 May 2019 03:32:03 +0000 (03:32 +0000)]
tests: get rid of unnecessary Cwd module use

We only need it for tests that chdir, and maybe for ENV{PATH}
portability (dash seems fine, not sure about others).

v2: revert change to solver_git.t for FreeBSD 11.2 and document

4 years agot/nntp.t: skip if Data::Dumper is missing
Eric Wong [Tue, 14 May 2019 03:32:02 +0000 (03:32 +0000)]
t/nntp.t: skip if Data::Dumper is missing

We can revisit this, later; but Data::Dumper requires a separate
package for CentOS-7 users, at least.

4 years agot/config.t: remove Data::Dumper dependency
Eric Wong [Tue, 14 May 2019 03:32:01 +0000 (03:32 +0000)]
t/config.t: remove Data::Dumper dependency

CentOS-7 needs the perl-Data-Dumper package, and the
test is small enough to roll our own escaping, here.

4 years agotests: remove unnecessary loading of ::DS and Socket
Eric Wong [Tue, 14 May 2019 03:32:00 +0000 (03:32 +0000)]
tests: remove unnecessary loading of ::DS and Socket

PublicInbox::DS works for every platform we we care about,
nowadays; so checking for it is a waste of time.  Cleanup a
few POSIX and Socket imports while we're in the area.

4 years agohttpd: get rid of Deflater warning
Eric Wong [Sun, 5 May 2019 20:42:20 +0000 (20:42 +0000)]
httpd: get rid of Deflater warning

Deflating responses may be done by the reverse proxy (e.g. varnish
or nginx), so the warning for it could be invalid.

4 years agosearchidx: fix incremental index with indexlevel=basic on v1
Eric Wong [Tue, 14 May 2019 02:04:43 +0000 (02:04 +0000)]
searchidx: fix incremental index with indexlevel=basic on v1

We were reindexing the full history every invocation of -index
when Xapian was not used because we were incorrectly relying on
'last_commit' metadata stored in Xapian.

Rewrite the indexing logic to be less confusing while we're
at it, since we rely on `git merge-base --is-ancestor' nowadays.

Furthermore, we need to handle message removals from the
overview index correctly when Xapian is not in use.

Co-authored-by: Eric W. Biederman <ebiederm@xmission.com>
4 years agov2writable: allow setting nproc via creat options
Eric Wong [Tue, 14 May 2019 02:04:42 +0000 (02:04 +0000)]
v2writable: allow setting nproc via creat options

Avoiding reliance on environment variables is a bit cleaner
for writing tests

4 years agov1writable: new wrapper which is closer to v2writable
Eric Wong [Tue, 14 May 2019 02:04:41 +0000 (02:04 +0000)]
v1writable: new wrapper which is closer to v2writable

Import initialization is a little strange from history, but we
also can't change it too much because it's technically a public
API which external code may rely on...

And we may need to support v1 repos indefinitely.  This should
make it easier to write tests for both formats.

4 years agoci: include some scripts to make CI easier
Eric Wong [Tue, 7 May 2019 09:09:54 +0000 (09:09 +0000)]
ci: include some scripts to make CI easier

This should make it easier to test a bunch of package
installation profiles across whatever OS isolation
one chooses (chroots, containers, jails, VMs).

4 years agodoc/include.mk: remove git use and redundant declarations
Eric Wong [Wed, 8 May 2019 08:34:36 +0000 (08:34 +0000)]
doc/include.mk: remove git use and redundant declarations

And document that we still have GNU-isms in that
include.mk Makefile (and may continue to do so).
Finally, take advantage of GNU-isms to warn users
to run "gmake" to build all manpages.

4 years agoMakefile.PL: improve make(1) portability
Eric Wong [Tue, 7 May 2019 23:43:42 +0000 (23:43 +0000)]
Makefile.PL: improve make(1) portability

The `shell' function appears missing, so we'll rely on Bourne
shell expansioN, instead.

Use "$?" instead of "$<" since the latter is only specified
for inference and .DEFAULT rules, not target rules.

Tested on FreeBSD make(1) and bmake(1) on Debian.

4 years agodoc: give txt files proper titles
Eric Wong [Tue, 7 May 2019 20:40:28 +0000 (20:40 +0000)]
doc: give txt files proper titles

We can fix the redundant rule in include.mk which causes
make(1) on FreeBSD to complain; but HTML docs will likely
still require GNU make.

4 years agodoc: use bullet list for wwwlisting options
Eric Wong [Wed, 8 May 2019 22:32:43 +0000 (22:32 +0000)]
doc: use bullet list for wwwlisting options

Otherwise, pod2man complains about "=item 404" not starting
with a letter and thinking it's part of a numbered list.

4 years agot/purge.t: fix unreferenced variable
Eric Wong [Wed, 8 May 2019 19:52:36 +0000 (19:52 +0000)]
t/purge.t: fix unreferenced variable

4 years agoINSTALL: note xapian-compact(1) tool
Eric Wong [Wed, 8 May 2019 20:03:33 +0000 (20:03 +0000)]
INSTALL: note xapian-compact(1) tool

The Perl Xapian bindings do not support compacting, yet,
so we rely on the xapian-compact tool.

4 years agoINSTALL: depend on Encode instead of Encode::MIME::Header
Eric Wong [Wed, 8 May 2019 02:47:20 +0000 (02:47 +0000)]
INSTALL: depend on Encode instead of Encode::MIME::Header

Email::MIME uses Encode::MIME::Header and depends on that
appropriately; however we depend on other parts of the Encode
distribution, but that's bundled with Perl by upstream, anyways;
and should place no additional burden on users.

4 years agoINSTALL: update with FreeBSD pkg names and reorder
Eric Wong [Sun, 5 May 2019 01:37:00 +0000 (01:37 +0000)]
INSTALL: update with FreeBSD pkg names and reorder

Fortunately, there is a pattern to most of these package names
in all distros I've tested (and hopefully other BSDs have them,
too).

Then, reorder the INSTALL document to mention the top-level
modules, first, so users can avoid needing to type extra
dependencies.  However, we still list some implicit dependencies
in case the upstream package drops dependencies independently of
us.

Finally, Devel::Peek is not a dependency worth making optional
since it's bundled by Perl upstream.  Fedora/RH-based distros
are the only one which turn it into a non-standard package when
Perl5 is installed.

4 years agoMerge remote-tracking branch 'origin/danga-bundle'
Eric Wong [Wed, 8 May 2019 19:24:07 +0000 (19:24 +0000)]
Merge remote-tracking branch 'origin/danga-bundle'

* origin/danga-bundle:
  DS: epoll: fix misordered EPOLL_CTL_DEL call
  DS: drop unused "_undef" sub
  syscall: drop readahead wrapper
  build: do not manify DS and Syscall pods
  DS: handle EINTR in IO::Poll path, too
  DS: workaround IO::Kqueue EINTR (mis-)handling
  DS: drop profiling support
  DS: remove unused fields and functions
  listener: use EPOLLEXCLUSIVE for listen sockets
  bundle Danga::Socket and Sys::Syscall

4 years agoDS: epoll: fix misordered EPOLL_CTL_DEL call
Eric Wong [Wed, 8 May 2019 19:04:17 +0000 (19:04 +0000)]
DS: epoll: fix misordered EPOLL_CTL_DEL call

Any operations on an fd after POSIX::close() are invalid, so
epoll_ctl will fail.  Worse off, in a multi-threaded Perl, the
fd may be reused by another thread and EPOLL_CTL_DEL can hit the
wrong file description as a result.

cf. https://rt.cpan.org/Ticket/Display.html?id=129487

4 years agoDS: drop unused "_undef" sub
Eric Wong [Wed, 8 May 2019 18:58:58 +0000 (18:58 +0000)]
DS: drop unused "_undef" sub

No longer used since we removed the *_ip_string fields

4 years agosyscall: drop readahead wrapper
Eric Wong [Wed, 8 May 2019 18:10:25 +0000 (18:10 +0000)]
syscall: drop readahead wrapper

No backwards compatibility to worry about for us; and fadvise
is superior anyways.

4 years agobuild: do not manify DS and Syscall pods
Eric Wong [Wed, 8 May 2019 18:15:40 +0000 (18:15 +0000)]
build: do not manify DS and Syscall pods

We don't need to increase our install footprint with
documentation from our internals (which will surely
change).

4 years agoDS: handle EINTR in IO::Poll path, too
Eric Wong [Wed, 8 May 2019 09:07:36 +0000 (09:07 +0000)]
DS: handle EINTR in IO::Poll path, too

IO::Poll::_poll returns -1, which is "true" to Perl.

cf. https://rt.cpan.org/Ticket/Display.html?id=129484

4 years agonntp: avoid uninitialized variable from blank requests
Eric Wong [Wed, 8 May 2019 02:53:03 +0000 (02:53 +0000)]
nntp: avoid uninitialized variable from blank requests

We'll ignore blank lines from clients, since that's what innd
seems to do.

4 years agowwwstream: do not load URI.pm
Eric Wong [Tue, 7 May 2019 08:27:12 +0000 (08:27 +0000)]
wwwstream: do not load URI.pm

It's unneeded since commit e358bd7a3833f8c5 (2016-07-02)
("inbox: base_url method takes PSGI env hashref instead")

So we only depend on URI::Escape from the "URI" CPAN distribution,
at the moment.

4 years agospawn (Inline::C): fix off-by-one error
Eric Wong [Mon, 6 May 2019 23:42:31 +0000 (23:42 +0000)]
spawn (Inline::C): fix off-by-one error

Noticed while testing on FreeBSD 11.2 amd64 with the optional
Inline::C extension using clang 6.0.0.  The end result on
FreeBSD was spawning processes failed badly and things were
immediately unusable with this enabled.

av_len is a misleading API, and I failed to read the API
comments in perl:/av.c which state:

> Note that, unlike what the name implies, it returns
> the highest index in the array, so to get the size of
> the array you need to use "av_len(av) + 1".
> This is unlike "sv_len", which returns what you would expect.

If this bug affected anybody, it would've only affected users
using both the optional Inline::C module AND set the
PERL_INLINE_DIRECTORY environment variable.

That said, I've never seen any evidence of it on Debian
GNU/Linux + gcc on any x86 variant.  That includes full 64-bit
systems, a full 32-bit system, a 64-bit system with 32-bit
userspace, across multiple gcc versions since 2016.

4 years agoindex: warn with info about the message as context
Eric Wong [Fri, 19 Apr 2019 07:41:22 +0000 (07:41 +0000)]
index: warn with info about the message as context

This can help users track down the source of warnings
when presented with imperfect emails.

While we're at it, make the __WARN__ callback in t/v2writable.t
a no-op since we don't check for warnings, there.

4 years agoMerge remote-tracking branch 'origin/wwwlisting'
Eric Wong [Sun, 5 May 2019 23:28:02 +0000 (23:28 +0000)]
Merge remote-tracking branch 'origin/wwwlisting'

* origin/wwwlisting:
  www: support listing of inboxes
  start depending on Perl 5.10.1+

4 years agoDS: workaround IO::Kqueue EINTR (mis-)handling
Eric Wong [Sun, 5 May 2019 04:56:14 +0000 (04:56 +0000)]
DS: workaround IO::Kqueue EINTR (mis-)handling

IO::Kqueue seems unmaintained, so workaround a long-standing
bug where it falls over on signals:
https://rt.cpan.org/Ticket/Display.html?id=116615

4 years agot/search.t: fix permissions check on FreeBSD
Eric Wong [Sun, 5 May 2019 21:33:40 +0000 (21:33 +0000)]
t/search.t: fix permissions check on FreeBSD

FreeBSD does not allow non-root users to set S_ISGID;
so git skips this bit on FreeBSD and Debian/kFreeBSD
platforms.

4 years agoDS: drop profiling support
Eric Wong [Sun, 5 May 2019 00:27:10 +0000 (00:27 +0000)]
DS: drop profiling support

There's other ways to profile and we don't need to add runtime
branches to do this.

4 years agoDS: remove unused fields and functions
Eric Wong [Fri, 3 May 2019 10:34:10 +0000 (10:34 +0000)]
DS: remove unused fields and functions

More will likely be dropped in the future, but drop the obvious
ones we aren't using, for now; especially since some of them are
set at ->new time and unavoidable.

This saves 579 bytes per-client on my 64-bit Debian stable
system as measured by Devel::Size::total_size from
PublicInbox::HTTP::event_read.  This adds up in C10K or C100K
situations.

Things we drop are:

* corked - MSG_MORE requires fewer syscalls
* read_push_back - tried to use it, ate CPU with slow clients
* IP/port fields - accept() already returns what we care about

4 years agolistener: use EPOLLEXCLUSIVE for listen sockets
Eric Wong [Fri, 3 May 2019 10:34:09 +0000 (10:34 +0000)]
listener: use EPOLLEXCLUSIVE for listen sockets

Since our listen sockets are non-blocking and we may run
multiple httpd|nntpd processes; we need a way to avoid
thundering herds when there are multiple httpd|nntpd worker
processes.

EPOLLEXCLUSIVE was added just for that in Linux 4.5

4 years agobundle Danga::Socket and Sys::Syscall
Eric Wong [Fri, 3 May 2019 10:34:08 +0000 (10:34 +0000)]
bundle Danga::Socket and Sys::Syscall

These modules are unmaintained upstream at the moment, but I'll
be able to help with the intended maintainer once/if CPAN
ownership is transferred.  OTOH, we've been waiting for that
transfer for several years, now...

Changes I intend to make:

* EPOLLEXCLUSIVE for Linux
* remove unused fields wasting memory
* kqueue bugfixes e.g. https://rt.cpan.org/Ticket/Display.html?id=116615
* accept4 support

And some lower priority experiments:

* switch to EV_ONESHOT / EPOLLONESHOT (incompatible changes)
* nginx-style buffering to tmpfile instead of string array
* sendfile off tmpfile buffers
* io_uring maybe?

4 years agowwwstream: drop tor2web URL
Eric Wong [Sat, 4 May 2019 18:42:39 +0000 (18:42 +0000)]
wwwstream: drop tor2web URL

It was a MITM hazard and been killed off by the DoS subsystem
last July: https://marc.info/?i=87d0vwwkbs.fsf@riseup.net

5 years agodoc/standards: add a link to PSGI specs
Eric Wong [Mon, 29 Apr 2019 01:33:12 +0000 (01:33 +0000)]
doc/standards: add a link to PSGI specs

5 years agoextmsg: escape ampersands in @EXT_URL array
Eric Wong [Sat, 27 Apr 2019 21:46:54 +0000 (21:46 +0000)]
extmsg: escape ampersands in @EXT_URL array

We already escape the user-provided Message-IDs (so there's no
security problem AFAIK), but the URL templates which exist in
our source code were not escaped properly.

This quiets down tidy(1).

5 years agoviewdiff: do not break out of DSTATE_CTX on /^$/
Eric Wong [Fri, 26 Apr 2019 07:42:24 +0000 (07:42 +0000)]
viewdiff: do not break out of DSTATE_CTX on /^$/

It seems a common case for mangled patches is editors or MUAs
dropping trailing whitespace, and lines matching /^ $/ gets
the space dropped to only match /^$/.

5 years agocgit: improve handling of cgit data path
Eric Wong [Thu, 25 Apr 2019 07:57:06 +0000 (07:57 +0000)]
cgit: improve handling of cgit data path

Document `publicinbox.cgitdata' config directive, but allow it
to be unspecified and/or missing for installations which do not
wish to serve static data at all.

For users installing cgit from source to their home directory,
we can usually infer the cgit data path based on the cgit.cgi
binary path, even.

5 years agoexamples/cgit-commit-filter.lua: some doc updates
Eric Wong [Wed, 24 Apr 2019 22:51:42 +0000 (22:51 +0000)]
examples/cgit-commit-filter.lua: some doc updates

It's been a while since I wrote this, and it needs to be kept
up-to-date with some advances in our Perl code.

5 years agoexamples: cgit filter for use with WwwHighlight
Eric Wong [Wed, 24 Apr 2019 22:44:04 +0000 (22:44 +0000)]
examples: cgit filter for use with WwwHighlight

I'm using this as the cgit about-filter and source-filter
in https://80x24.org/public-inbox.git

5 years agowwwhighlight: deal with no-op highlight
Eric Wong [Wed, 24 Apr 2019 21:56:53 +0000 (21:56 +0000)]
wwwhighlight: deal with no-op highlight

Not all inputs are highlight-able, so reuse the original
input and just linkify it if it can't be highlighted.

5 years agoexamples/cgit-commit-filter: remove unused variable
Eric Wong [Wed, 24 Apr 2019 21:22:11 +0000 (21:22 +0000)]
examples/cgit-commit-filter: remove unused variable

5 years agowwwhighlight: do linkification, too
Eric Wong [Wed, 24 Apr 2019 19:52:14 +0000 (19:52 +0000)]
wwwhighlight: do linkification, too

Otherwise, there's no reason to use this API over highlight(1).
Maybe this can be an option in the future; but I'm struggling to
find a reason to not do it by default.

5 years agoview: avoid "1+ messages" in per-message footer of /t/ and /T/
Eric Wong [Tue, 23 Apr 2019 03:33:41 +0000 (03:33 +0000)]
view: avoid "1+ messages" in per-message footer of /t/ and /T/

Try to appear gramatically correct and state:
"only message in thread" when there's only one known (to us)
message in the thread.

5 years agodoc: add standards reference
Eric Wong [Sat, 20 Apr 2019 00:20:04 +0000 (00:20 +0000)]
doc: add standards reference

Incomplete at the moment, but this ought to be a handy reference
for both implementers and users alike.

5 years agowww: support listing of inboxes
Eric Wong [Thu, 18 Apr 2019 08:25:56 +0000 (08:25 +0000)]
www: support listing of inboxes

We will still return a 404 by default to '/' for compatibility
with users of Plack::App::Cascade or similar.  Inboxes are
sorted by modification times to help users detect activity
(similar to the /$INBOX/ topic view).

New configuration options:

* publicinbox.wwwlisting - configure the listing type
* publicinbox.<name>.hide - hide a particular inbox from the listing

See changes to public-inbox-config.pod for full descriptions
of the new options.

Requested-by: Leah Neukirchen <leah@vuxu.org>
  https://public-inbox.org/meta/871sdfzy80.fsf@gmail.com/

5 years agostart depending on Perl 5.10.1+
Eric Wong [Wed, 17 Apr 2019 22:05:38 +0000 (22:05 +0000)]
start depending on Perl 5.10.1+

I mainly want to start using the '//' (defined-or) operator to
simplify code, and Perl 5.10.1 is roughly a decade old at this
point.

"given/when" would've be nice, but it's future is in doubt AFAIK.

I also started using the 'parent' module in WwwHighlight, and
'autodie' in UserContent.pm, both of which were only distributed
with Perl since 5.10.1; and testing with ancient
versions/distros is time-consuming.

Anyways, I think this a small-enough jump to not break any
existing installations, given we already depend on fairly
recent versions of git and Xapian.

Maybe we can use more newish Perl features in the future...

5 years agot/hl_mod: workaround w3m not handling &apos;
Eric Wong [Fri, 19 Apr 2019 08:09:31 +0000 (08:09 +0000)]
t/hl_mod: workaround w3m not handling &apos;

This fixes a test failure on my Debian buster system.

Bug report filed for w3m to handle "&apos;":

https://bugs.debian.org/927409

and for "highlight" to favor "&#39;" in case other browsers fail:

https://bugs.debian.org/927410

5 years agolinkify: require parentheses pairs in URLs
Eric Wong [Thu, 18 Apr 2019 23:49:42 +0000 (23:49 +0000)]
linkify: require parentheses pairs in URLs

Dangling parentheses with trailing punctuation usually means the
parentheses is not intended as part of the URL.

5 years agoview: show "(no subject)" consistently in HTML
Eric Wong [Thu, 18 Apr 2019 23:31:46 +0000 (23:31 +0000)]
view: show "(no subject)" consistently in HTML

Empty subjects ("") and undefined Subjects: are now both
displayed as "(no subject)" for now.

5 years agodoc: config: fix braino/typo :x
Eric Wong [Thu, 18 Apr 2019 22:53:20 +0000 (22:53 +0000)]
doc: config: fix braino/typo :x

5 years agolinkify: don't get confused by URLs in Perl code, at least
Eric Wong [Thu, 18 Apr 2019 22:47:01 +0000 (22:47 +0000)]
linkify: don't get confused by URLs in Perl code, at least

The URLs at the top of WwwStream.pm weren't getting linkified
correctly.

5 years agoinbox: add `modified' sub
Eric Wong [Thu, 18 Apr 2019 00:58:06 +0000 (00:58 +0000)]
inbox: add `modified' sub

For inboxes with SQLite enabled (all v2, and probably most v1);
we can use the overview DB to get the timestamp of the latest
message.  It's faster than scanning git branches for commit times,
but not always the same.

5 years agogit: calculate modified time of repository
Eric Wong [Wed, 17 Apr 2019 10:49:15 +0000 (10:49 +0000)]
git: calculate modified time of repository

This will be used for generating an HTML listing for v1 inboxes,
at least.  The logic for this follows that of grokmirror,
and we may dynamically generate manifest.js.gz natively...

5 years agoconfig: use '$ibx' instead of '$rv' to denote Inbox objects
Eric Wong [Wed, 17 Apr 2019 00:32:41 +0000 (00:32 +0000)]
config: use '$ibx' instead of '$rv' to denote Inbox objects

Followup-to: 6e6f7999361925e4
  ("cleanup: use '$ibx' consistently when referring to Inbox refs")

5 years agoTODO: add an item for hooks support
Eric Wong [Mon, 15 Apr 2019 18:28:00 +0000 (18:28 +0000)]
TODO: add an item for hooks support

and add a note for grokmirror support/integration, too

5 years agoHACKING: stop advertising mailing list subscription info
Eric Wong [Mon, 15 Apr 2019 07:32:49 +0000 (07:32 +0000)]
HACKING: stop advertising mailing list subscription info

It's still available, but no point in advertising something
which increases the dependency on a centralized subscriber list.
In fact, it's actively against the goal of promoting resistance
against centralization.

5 years agoimport: prefix 'inbox' with '-' to denote Inbox ref
Eric Wong [Tue, 16 Apr 2019 01:10:10 +0000 (01:10 +0000)]
import: prefix 'inbox' with '-' to denote Inbox ref

This is for consistency with other fields which follow
this pattern w.r.t. field-naming when referring to internal
fields.

5 years agocleanup: use '$ibx' consistently when referring to Inbox refs
Eric Wong [Tue, 16 Apr 2019 01:10:09 +0000 (01:10 +0000)]
cleanup: use '$ibx' consistently when referring to Inbox refs

'$inbox' is more human-readable, so that is for the more
human-readable name in most cases.  Making our variable naming
more consistent should make the code easier-to-review and
harder to screw up.

5 years agowww: remove unnecessary Git object reference
Eric Wong [Tue, 16 Apr 2019 01:19:42 +0000 (01:19 +0000)]
www: remove unnecessary Git object reference

We access the Git object via the Inbox object nowadays, so
there's no point in having a shortcut to it, anymore.

5 years agoINSTALL: document Crypt:CBC for PublicInbox::Unsubscribe
Eric Wong [Tue, 16 Apr 2019 01:17:21 +0000 (01:17 +0000)]
INSTALL: document Crypt:CBC for PublicInbox::Unsubscribe

I basically forgot about this module, but "make syntax" on a
new chroot trips it up.

5 years agoconfig: fix regression in repo.path => coderepo.dir mapping
Eric Wong [Mon, 15 Apr 2019 06:35:30 +0000 (06:35 +0000)]
config: fix regression in repo.path => coderepo.dir mapping

We parse cgitrc for "repo.path", while we use "coderepo.dir" to
mean the same thing for non-cgit users.  So I ended up confusing
myself, here.

But then again, git uses "--git-dir" and "GIT_DIR", so I suspect
"dir" is the better choice than "path", here

5 years agoviewdiff: document constants
Eric Wong [Fri, 5 Apr 2019 20:04:29 +0000 (20:04 +0000)]
viewdiff: document constants

We'll be building off of this for showing diffs in
the coderepo views.

5 years agodoc/config: update cgit.cgi scan location
Eric Wong [Fri, 5 Apr 2019 20:04:28 +0000 (20:04 +0000)]
doc/config: update cgit.cgi scan location

We account for the upstream default location as well as
the Debian-installed one.

5 years agoconfig: support more cgit directives for project lists
Eric Wong [Fri, 5 Apr 2019 20:04:27 +0000 (20:04 +0000)]
config: support more cgit directives for project lists

Hopefully this gets us closer to matching cgit upstream behavior
(which also lacks tests).  We'll still need to support macro
expansion at some point for compatibility...

5 years agocgit: serve static css, logo, favicon directly
Eric Wong [Fri, 5 Apr 2019 20:04:26 +0000 (20:04 +0000)]
cgit: serve static css, logo, favicon directly

We can reduce the configuration needed to run cgit by reusing
the static file handling logic of the dumb git HTTP protocol.

I hate logos and icons, so don't expect public-inbox.org or
80x24.org to ever have those to waste users' bandwidth with :P
But I expect other users to find this useful.

5 years agoconfig: support cgit scan-path and scan-hidden-path
Eric Wong [Fri, 5 Apr 2019 20:04:25 +0000 (20:04 +0000)]
config: support cgit scan-path and scan-hidden-path

project_list support still needs to be done

And tests need to be written... :<

5 years agodoc: fix a few minor typos
Kyle Meyer [Sun, 7 Apr 2019 03:31:40 +0000 (23:31 -0400)]
doc: fix a few minor typos

5 years agowww: fix missing cgit fallback after legacy redirects
Eric Wong [Tue, 2 Apr 2019 02:29:44 +0000 (02:29 +0000)]
www: fix missing cgit fallback after legacy redirects

We need to instate our cgit handler everywhere we use NewsWWW
to catch wildcard requests which our normal endpoints do not
handle.

5 years agospawn: require soft and hard entries in RLIMIT_* handling
Eric Wong [Tue, 12 Mar 2019 01:47:59 +0000 (01:47 +0000)]
spawn: require soft and hard entries in RLIMIT_* handling

Our high-level config already treats single limits as a
soft==hard limit for limiters; so stop handling that redundant
in the low-level spawn() sub.

5 years agocgit: use a dedicated named limiter
Eric Wong [Tue, 12 Mar 2019 01:18:30 +0000 (01:18 +0000)]
cgit: use a dedicated named limiter

I mainly need this to enforce RLIMIT_CPU (and RLIMIT_CORE)
when requests come which generate giant, unrealistic diffs.

Per-coderepo limiters may be added in the future.  But for now,
I need to prevent cgit from monopolizing resources on my dinky
server.

5 years agoqspawn: wire up RLIMIT_* handling to limiters
Eric Wong [Mon, 11 Mar 2019 23:53:02 +0000 (23:53 +0000)]
qspawn: wire up RLIMIT_* handling to limiters

This allows users to configure RLIMIT_{CORE,CPU,DATA} using
our "limiter" config directive when spawning external processes.

5 years agowww: wire up cgit as a 404 handler if cgitrc is configured
Eric Wong [Mon, 11 Mar 2019 05:32:07 +0000 (05:32 +0000)]
www: wire up cgit as a 404 handler if cgitrc is configured

Requests intended for cgit are unlikely to conflict with
requests to inboxes.  So we can safely hand those requests
off to cgit.cgi.

5 years agocgit: support running cgit as a standalone CGI
Eric Wong [Sun, 10 Mar 2019 22:02:29 +0000 (22:02 +0000)]
cgit: support running cgit as a standalone CGI

We depend on git-http-backend for smart HTTP clone support,
however; since cgit does not support smart clones natively.
WWW.pm will be able to cascade down to this as a 404 handler in
the future.

5 years agospawn: support absolute paths
Eric Wong [Sun, 10 Mar 2019 21:40:00 +0000 (21:40 +0000)]
spawn: support absolute paths

cgit (and most other CGI executables) is not typically installed
for use via $PATH, so we'll need to support absolute paths to
run it.

5 years agogithttpbackend: check for other errors and relax CRLF check
Eric Wong [Sun, 10 Mar 2019 10:32:33 +0000 (10:32 +0000)]
githttpbackend: check for other errors and relax CRLF check

Reads to git-http-backend(1) could fail or EOF prematurely,
so we must be ready for that case.

Furthermore, cgit (and possibly other CGI) uses LF instead
of CRLF, so support those programs, too.

5 years agogithttpbackend: move more psgi.input handling into subroutine
Eric Wong [Sun, 10 Mar 2019 07:51:45 +0000 (07:51 +0000)]
githttpbackend: move more psgi.input handling into subroutine

This will be useful for other CGI wrappers we make.
This also fixes a bug with some PSGI servers which did not
present a real IO::Handle in the psgi.input env field.

5 years agosupport publicinbox.cgitrc directive
Eric Wong [Fri, 8 Mar 2019 01:21:22 +0000 (01:21 +0000)]
support publicinbox.cgitrc directive

We can save admins the trouble of declaring [coderepo "..."]
sections in the public-inbox config by parsing the cgitrc
directly.

Macro expansion (e.g. $HTTP_HOST) expansion is not supported,
yet; but may be in the future.

5 years agospawn: support RLIMIT_CPU, RLIMIT_DATA and RLIMIT_CORE
Eric Wong [Mon, 25 Feb 2019 05:14:10 +0000 (05:14 +0000)]
spawn: support RLIMIT_CPU, RLIMIT_DATA and RLIMIT_CORE

We'll be spawning cgit and git-diff, which can take gigantic
amounts of CPU time and/or heap given the right (ermm... wrong)
input.  Limit the damage that large/expensive diffs can cause.

5 years agoviewvcs: match 8000-byte lookup for git
Eric Wong [Sun, 24 Feb 2019 02:55:40 +0000 (02:55 +0000)]
viewvcs: match 8000-byte lookup for git

No need to scan the entire string, but prefer to match git
behavior.  This might be faster if/when Perl can create
substrings efficiently using CoW.

Fix a 80-column violation while we're at it.

5 years agoviewvcs: preliminary support for showing non-blobs
Eric Wong [Thu, 14 Feb 2019 02:29:10 +0000 (02:29 +0000)]
viewvcs: preliminary support for showing non-blobs

Eventually, we'll have special displays for various git objects
(commit, tree, tag).  But for now, we'll just use git-show
to spew whatever comes from git.

5 years agogit: add "commit_title" method
Eric Wong [Sun, 17 Feb 2019 05:09:50 +0000 (05:09 +0000)]
git: add "commit_title" method

This will be useful for extracting titles/subjects from
commit objects when displaying commits.

5 years agogithttpbackend: serve $GIT_DIR/info/attributes
Eric Wong [Mon, 1 Apr 2019 23:54:40 +0000 (23:54 +0000)]
githttpbackend: serve $GIT_DIR/info/attributes

This will be useful for reproducibility when mirroring
coderepos and generating diffs.