From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.io!.POSTED.blaine.gmane.org!not-for-mail From: Juri Linkov Newsgroups: gmane.emacs.bugs Subject: bug#50497: [PATCH] Adding eww-{next,previous,up,top}-path. Date: Fri, 10 Sep 2021 19:10:23 +0300 Organization: LINKOV.NET Message-ID: <878s04ijhc.fsf@mail.linkov.net> References: <87lf45xh86.fsf@ypei.me> <87ee9wpt38.fsf@gnus.org> Mime-Version: 1.0 Content-Type: text/plain Injection-Info: ciao.gmane.io; posting-host="blaine.gmane.org:116.202.254.214"; logging-data="23267"; mail-complaints-to="usenet@ciao.gmane.io" User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/28.0.50 (x86_64-pc-linux-gnu) Cc: Yuchen Pei , 50497@debbugs.gnu.org To: Lars Ingebrigtsen Original-X-From: bug-gnu-emacs-bounces+geb-bug-gnu-emacs=m.gmane-mx.org@gnu.org Fri Sep 10 18:21:50 2021 Return-path: Envelope-to: geb-bug-gnu-emacs@m.gmane-mx.org Original-Received: from lists.gnu.org ([209.51.188.17]) by ciao.gmane.io with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.92) (envelope-from ) id 1mOjHi-0005ra-AR for geb-bug-gnu-emacs@m.gmane-mx.org; Fri, 10 Sep 2021 18:21:50 +0200 Original-Received: from localhost ([::1]:37058 helo=lists1p.gnu.org) by lists.gnu.org with esmtp (Exim 4.90_1) (envelope-from ) id 1mOjHg-0003QI-VM for geb-bug-gnu-emacs@m.gmane-mx.org; Fri, 10 Sep 2021 12:21:49 -0400 Original-Received: from eggs.gnu.org ([2001:470:142:3::10]:36384) by lists.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1mOjGw-0002wD-U7 for bug-gnu-emacs@gnu.org; Fri, 10 Sep 2021 12:21:04 -0400 Original-Received: from debbugs.gnu.org ([209.51.188.43]:55745) by eggs.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_128_GCM_SHA256:128) (Exim 4.90_1) (envelope-from ) id 1mOjGw-0004uR-NU for bug-gnu-emacs@gnu.org; Fri, 10 Sep 2021 12:21:02 -0400 Original-Received: from Debian-debbugs by debbugs.gnu.org with local (Exim 4.84_2) (envelope-from ) id 1mOjGw-0005Zb-Ji for bug-gnu-emacs@gnu.org; Fri, 10 Sep 2021 12:21:02 -0400 X-Loop: help-debbugs@gnu.org Resent-From: Juri Linkov Original-Sender: "Debbugs-submit" Resent-CC: bug-gnu-emacs@gnu.org Resent-Date: Fri, 10 Sep 2021 16:21:02 +0000 Resent-Message-ID: Resent-Sender: help-debbugs@gnu.org X-GNU-PR-Message: followup 50497 X-GNU-PR-Package: emacs X-GNU-PR-Keywords: patch Original-Received: via spool by 50497-submit@debbugs.gnu.org id=B50497.163129081321289 (code B ref 50497); Fri, 10 Sep 2021 16:21:02 +0000 Original-Received: (at 50497) by debbugs.gnu.org; 10 Sep 2021 16:20:13 +0000 Original-Received: from localhost ([127.0.0.1]:39047 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1mOjG9-0005XJ-7f for submit@debbugs.gnu.org; Fri, 10 Sep 2021 12:20:13 -0400 Original-Received: from relay12.mail.gandi.net ([217.70.178.232]:48233) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1mOjG6-0005Wh-E9 for 50497@debbugs.gnu.org; Fri, 10 Sep 2021 12:20:10 -0400 Original-Received: (Authenticated sender: juri@linkov.net) by relay12.mail.gandi.net (Postfix) with ESMTPSA id A2BE4200004; Fri, 10 Sep 2021 16:20:03 +0000 (UTC) In-Reply-To: <87ee9wpt38.fsf@gnus.org> (Lars Ingebrigtsen's message of "Fri, 10 Sep 2021 13:28:59 +0200") X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.18 Precedence: list X-BeenThere: bug-gnu-emacs@gnu.org List-Id: "Bug reports for GNU Emacs, the Swiss army knife of text editors" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: bug-gnu-emacs-bounces+geb-bug-gnu-emacs=m.gmane-mx.org@gnu.org Original-Sender: "bug-gnu-emacs" Xref: news.gmane.io gmane.emacs.bugs:214030 Archived-At: >> I often find myself wanting to navigate paginated web pages >> (e.g. ), or to go up or >> all the way up when visiting a web page, which is why I added these >> functions to my eww. >> >> Does this change make sense? If so I will amend the patch to include >> tests, doc and bug number. > > I'm not sure this is general enough to include in eww -- these are > commands that will fail in 99.7% of all web pages, because they don't > have URLs that are structured this way. Actually, the same 99.7% of all web pages doesn't provide special attributes "next"/"previous"/"up" used by 'n'/'p'/'u' eww commands. So using URL regexp matching as a fallback for other 99.7% of web pages that don't have numbers in URL will support (100% - 99.7%) * 2 pages.