branch: externals/hyperbole commit 35fe1ea7a8dcab94e28fd050d26663a5d1ff3fb7 Merge: 3bb0fce04f 67d6ff9d06 Author: Bob Weiner <r...@gnu.org> Commit: Bob Weiner <r...@gnu.org>
Merge branch 'master' of hyperbole Also update to include code files referenced in website hyperbole.html. --- ChangeLog | 8 ++++++++ README.md | 7 +++---- hypb-maintenance.el | 14 ++++++++------ 3 files changed, 19 insertions(+), 10 deletions(-) diff --git a/ChangeLog b/ChangeLog index a70b0da6e7..e4396a37c6 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,5 +1,13 @@ +2022-05-02 Mats Lidell <ma...@gnu.org> + +* hypb-maintenance.el (hypb:web-repo-update): Add files to website that + are linked from hyperbole.html. i.e. README.md. + 2022-05-01 Bob Weiner <r...@gnu.org> +* hypb-maintenance.el (hypb:web-repo-update): Add hui.el, hbut.el, hbdata.el and hmail.el + referenced in hyperbole.html. + * HY-ANNOUNCE: Shrink width of videos table to prevent wrapping. * README.md: Use [TOC] to automatically generate table of contents with md2html diff --git a/README.md b/README.md index 8741f1e117..82b462fec5 100644 --- a/README.md +++ b/README.md @@ -452,10 +452,9 @@ encapsulates the button attribute storage implemented by Hyperbole. [hmail.el](hmail.el) provides a basic abstract interface for integrating mail readers other than Rmail into Hyperbole. -See the [Hyperbole Questions and Answers](man/hyperbole.html#Questions -and Answers) appendix in the Hyperbole manual for information on how -to alter the default context-sensitive Hyperbole key bindings (Smart -Keys). +See the [Hyperbole Questions and Answers](man/hyperbole.html#Questions-and-Answers) +appendix in the Hyperbole manual for information on how to alter the +default context-sensitive Hyperbole key bindings (Smart Keys). ## User Quotes diff --git a/hypb-maintenance.el b/hypb-maintenance.el index ac79b7a9ba..c5705cd0a6 100644 --- a/hypb-maintenance.el +++ b/hypb-maintenance.el @@ -3,9 +3,9 @@ ;; Author: Mats Lidell <ma...@gnu.org> ;; ;; Orig-Date: 31-Mar-21 at 21:11:00 -;; Last-Mod: 12-Mar-22 at 15:14:34 by Bob Weiner +;; Last-Mod: 1-May-22 at 19:06:09 by Bob Weiner ;; -;; Copyright (C) 1991-2021 Free Software Foundation, Inc. +;; Copyright (C) 1991-2022 Free Software Foundation, Inc. ;; See the "HY-COPY" file for license information. ;; ;; This file is part of GNU Hyperbole. @@ -61,10 +61,12 @@ Point `hypb:web-repo-location' to where the web repo is located." ;; hyperbole.html (copy-file "README.md.html" (concat hypb:web-repo-location "hyperbole.html") t) - ;; DEMO DEMO-ROLO.otl - (copy-file "DEMO" hypb:web-repo-location t) - (copy-file "DEMO-ROLO.otl" hypb:web-repo-location t) - (copy-file "FAST-DEMO" hypb:web-repo-location t) + ;; DEMO DEMO-ROLO.otl HY-ABOUT INSTALL HY-COPY COPYING MANIFEST + ;; hui.el hbut.el hbdata.el hmail.el - referenced in hyperbole.el + (mapc (lambda (file) (copy-file file hypb:web-repo-location t)) + '("DEMO" "DEMO-ROLO.otl" "FAST-DEMO" "HY-ABOUT" "INSTALL" + "HY-COPY" "COPYING" "MANIFEST" + "hui.el" "hbut.el" "hbdata.el" "hmail.el")) ;; man recursive (copy-directory "man" hypb:web-repo-location nil t nil)