GNU bug report logs -
#15967
24.3.50; [PATCH] eww: use eww-browse-url, when url in bookmark list is opened
Previous Next
Reported by: Kenjiro NAKAYAMA <knakayam <at> redhat.com>
Date: Sun, 24 Nov 2013 15:39:04 UTC
Severity: minor
Tags: patch
Found in version 24.3.50
Done: Ted Zlatanov <tzz <at> lifelogs.com>
Bug is archived. No further changes may be made.
To add a comment to this bug, you must first unarchive it, by sending
a message to control AT debbugs.gnu.org, with unarchive 15967 in the body.
You can then email your comments to 15967 AT debbugs.gnu.org in the normal way.
Toggle the display of automated, internal messages from the tracker.
Report forwarded
to
bug-gnu-emacs <at> gnu.org
:
bug#15967
; Package
emacs
.
(Sun, 24 Nov 2013 15:39:04 GMT)
Full text and
rfc822 format available.
Acknowledgement sent
to
Kenjiro NAKAYAMA <knakayam <at> redhat.com>
:
New bug report received and forwarded. Copy sent to
bug-gnu-emacs <at> gnu.org
.
(Sun, 24 Nov 2013 15:39:04 GMT)
Full text and
rfc822 format available.
Message #5 received at submit <at> debbugs.gnu.org (full text, mbox):
Since eww-bookmark-browse doesn't use eww-browse-url to open its url, it
doesn't save current URL in eww-history.
Signed-off-by: Kenjiro NAKAYAMA <knakayam <at> redhat.com>
* net/eww.el (eww-bookmark-browse): Use 'eww-browse-url'.
---
lisp/net/eww.el | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/lisp/net/eww.el b/lisp/net/eww.el
index 6f09d86..738136b 100644
--- a/lisp/net/eww.el
+++ b/lisp/net/eww.el
@@ -1065,7 +1065,7 @@ The browser to used is specified by the `shr-external-browser' variable."
;; just let it remain.
(ignore-errors
(delete-window))
- (eww (plist-get bookmark :url))))
+ (eww-browse-url (plist-get bookmark :url))))
(defun eww-next-bookmark ()
"Go to the next bookmark in the list."
--
1.8.3.1
Information forwarded
to
bug-gnu-emacs <at> gnu.org
:
bug#15967
; Package
emacs
.
(Mon, 25 Nov 2013 14:54:04 GMT)
Full text and
rfc822 format available.
Message #8 received at 15967 <at> debbugs.gnu.org (full text, mbox):
Thank you for the patches. All of them are OK to go in IMO (and tiny
changes). Could you consolidate them in a single patch with a ChangeLog
please? It can wait for your eww history stack changes or can be
submitted sooner.
Thanks
Ted
On Mon, 25 Nov 2013 00:15:52 +0900 Kenjiro NAKAYAMA <knakayam <at> redhat.com> wrote:
KN> Since eww-bookmark-browse doesn't use eww-browse-url to open its url, it
KN> doesn't save current URL in eww-history.
KN> Signed-off-by: Kenjiro NAKAYAMA <knakayam <at> redhat.com>
KN> * net/eww.el (eww-bookmark-browse): Use 'eww-browse-url'.
On Sun, 24 Nov 2013 23:41:44 +0900 Kenjiro NAKAYAMA <knakayam <at> redhat.com> wrote:
KN> eww should ask "yes or no" when add current page to bookmarks, since
KN> only "b" key to add bookmarks is easy to mistake.
KN> (My bookmarklist has amazingly increased.)
KN> Signed-off-by: Kenjiro NAKAYAMA <knakayam <at> redhat.com>
KN> * net/eww.el (eww-add-bookmark): ask confirmation when add to bookmarks
On Sun, 24 Nov 2013 23:12:47 +0900 Kenjiro NAKAYAMA <knakayam <at> redhat.com> wrote:
KN> eww should ask "yes or no" before quitting, since only "q" key to quit is
KN> easy to mistake.
KN> Signed-off-by: Kenjiro NAKAYAMA <knakayam <at> redhat.com>
KN> * net/eww.el (eww-quit): ask confirmation before quitting eww
On Mon, 25 Nov 2013 00:57:33 +0900 Kenjiro NAKAYAMA <nakayamakenjiro <at> gmail.com> wrote:
KN> Thank you for your review, Ted, Masatake.
KN> OK, I try to revise the patch to add eww own history stack.
KN> And I put ChangeLog entry to my report next time.
Information forwarded
to
bug-gnu-emacs <at> gnu.org
:
bug#15967
; Package
emacs
.
(Tue, 26 Nov 2013 11:53:03 GMT)
Full text and
rfc822 format available.
Message #11 received at 15967 <at> debbugs.gnu.org (full text, mbox):
Thanks, Ted.
I consolidated the patches, please include the patch if appreciated.
Signed-off-by: Kenjiro NAKAYAMA <knakayam <at> redhat.com>
* net/eww.el (eww-bookmark-browse): Use 'eww-browse-url'.
(eww-add-bookmark): ask confirmation when add to bookmarks
(eww-quit): ask confirmation before quitting eww
---
lisp/net/eww.el | 26 +++++++++++++++-----------
1 file changed, 15 insertions(+), 11 deletions(-)
diff --git a/lisp/net/eww.el b/lisp/net/eww.el
index 86e0977..4b8b067 100644
--- a/lisp/net/eww.el
+++ b/lisp/net/eww.el
@@ -403,8 +403,10 @@ word(s) will be searched for via `eww-search-prefix'."
(defun eww-quit ()
"Exit the Emacs Web Wowser."
(interactive)
- (setq eww-history nil)
- (kill-buffer (current-buffer)))
+ (if (y-or-n-p "quit eww? ")
+ (progn
+ (setq eww-history nil)
+ (kill-buffer (current-buffer)))))
(defun eww-back-url ()
"Go to the previously displayed page."
@@ -964,14 +966,16 @@ The browser to used is specified by the `shr-external-browser' variable."
(when (equal eww-current-url
(plist-get bookmark :url))
(error "Already bookmarked")))
- (let ((title (replace-regexp-in-string "[\n\t\r]" " " eww-current-title)))
- (setq title (replace-regexp-in-string "\\` +\\| +\\'" "" title))
- (push (list :url eww-current-url
- :title title
- :time (current-time-string))
- eww-bookmarks))
- (eww-write-bookmarks)
- (message "Bookmarked %s (%s)" eww-current-url eww-current-title))
+ (if (y-or-n-p "add bookmark this page? ")
+ (progn
+ (let ((title (replace-regexp-in-string "[\n\t\r]" " " eww-current-title)))
+ (setq title (replace-regexp-in-string "\\` +\\| +\\'" "" title))
+ (push (list :url eww-current-url
+ :title title
+ :time (current-time-string))
+ eww-bookmarks))
+ (eww-write-bookmarks)
+ (message "Bookmarked %s (%s)" eww-current-url eww-current-title))))
(defun eww-write-bookmarks ()
(with-temp-file (expand-file-name "eww-bookmarks" user-emacs-directory)
@@ -1063,7 +1067,7 @@ The browser to used is specified by the `shr-external-browser' variable."
;; just let it remain.
(ignore-errors
(delete-window))
- (eww (plist-get bookmark :url))))
+ (eww-browse-url (plist-get bookmark :url))))
(defun eww-next-bookmark ()
"Go to the next bookmark in the list."
--
1.8.3.1
Thanks,
Kenjiro Nakayama
tzz <at> lifelogs.com writes:
> Thank you for the patches. All of them are OK to go in IMO (and tiny
> changes). Could you consolidate them in a single patch with a ChangeLog
> please? It can wait for your eww history stack changes or can be
> submitted sooner.
>
> Thanks
> Ted
>
> On Mon, 25 Nov 2013 00:15:52 +0900 Kenjiro NAKAYAMA <knakayam <at> redhat.com> wrote:
>
> KN> Since eww-bookmark-browse doesn't use eww-browse-url to open its url, it
> KN> doesn't save current URL in eww-history.
>
> KN> Signed-off-by: Kenjiro NAKAYAMA <knakayam <at> redhat.com>
>
> KN> * net/eww.el (eww-bookmark-browse): Use 'eww-browse-url'.
>
> On Sun, 24 Nov 2013 23:41:44 +0900 Kenjiro NAKAYAMA <knakayam <at> redhat.com> wrote:
>
> KN> eww should ask "yes or no" when add current page to bookmarks, since
> KN> only "b" key to add bookmarks is easy to mistake.
> KN> (My bookmarklist has amazingly increased.)
>
> KN> Signed-off-by: Kenjiro NAKAYAMA <knakayam <at> redhat.com>
>
> KN> * net/eww.el (eww-add-bookmark): ask confirmation when add to bookmarks
>
> On Sun, 24 Nov 2013 23:12:47 +0900 Kenjiro NAKAYAMA <knakayam <at> redhat.com> wrote:
>
> KN> eww should ask "yes or no" before quitting, since only "q" key to quit is
> KN> easy to mistake.
>
> KN> Signed-off-by: Kenjiro NAKAYAMA <knakayam <at> redhat.com>
>
> KN> * net/eww.el (eww-quit): ask confirmation before quitting eww
>
> On Mon, 25 Nov 2013 00:57:33 +0900 Kenjiro NAKAYAMA <nakayamakenjiro <at> gmail.com> wrote:
>
> KN> Thank you for your review, Ted, Masatake.
>
> KN> OK, I try to revise the patch to add eww own history stack.
> KN> And I put ChangeLog entry to my report next time.
Reply sent
to
Ted Zlatanov <tzz <at> lifelogs.com>
:
You have taken responsibility.
(Tue, 26 Nov 2013 20:10:10 GMT)
Full text and
rfc822 format available.
Notification sent
to
Kenjiro NAKAYAMA <knakayam <at> redhat.com>
:
bug acknowledged by developer.
(Tue, 26 Nov 2013 20:10:11 GMT)
Full text and
rfc822 format available.
Message #16 received at 15967-done <at> debbugs.gnu.org (full text, mbox):
On Tue, 26 Nov 2013 20:51:49 +0900 Kenjiro NAKAYAMA <knakayam <at> redhat.com> wrote:
KN> I consolidated the patches, please include the patch if appreciated.
OK; done. I changed "add bookmark this page?" to "bookmark this page?"
but otherwise had no issues.
Thanks!
Ted
bug archived.
Request was from
Debbugs Internal Request <help-debbugs <at> gnu.org>
to
internal_control <at> debbugs.gnu.org
.
(Wed, 25 Dec 2013 12:24:04 GMT)
Full text and
rfc822 format available.
This bug report was last modified 11 years and 181 days ago.
Previous Next
GNU bug tracking system
Copyright (C) 1999 Darren O. Benham,
1997,2003 nCipher Corporation Ltd,
1994-97 Ian Jackson.