[elpa] master f84099b: register-list.el: Update author's email
branch: master commit f84099bb5a12998e22ba1384d6da35f5cb0bf7ae Author: Bastien Commit: Bastien register-list.el: Update author's email * register-list.el: Update author's email. --- packages/register-list/register-list.el |4 ++-- 1 files changed, 2 insertions(+), 2 deletions(-) diff --git a/packages/register-list/register-list.el b/packages/register-list/register-list.el index f817e4d..1c87d62 100755 --- a/packages/register-list/register-list.el +++ b/packages/register-list/register-list.el @@ -3,8 +3,8 @@ ;; Copyright (C) 2011-2015 Free Software Foundation, Inc. ;; ;; Filename: register-list.el -;; Author: Bastien Guerry -;; Maintainer: Bastien Guerry +;; Author: Bastien Guerry +;; Maintainer: Bastien Guerry ;; Keywords: register ;; Description: List and edit the register ;; Version: 0.1
[elpa] master 665522d: README: Fix copyright years.
branch: master commit 665522d114bdb81614e5e40d0cead46e23db23c8 Author: Bastien Commit: Bastien README: Fix copyright years. --- README |2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README b/README index 57d9ca9..3223929 100644 --- a/README +++ b/README @@ -1,4 +1,4 @@ -Copyright (C) 2010-2011, 2014, 2015 Free Software Foundation, Inc. +Copyright (C) 2010-2011, 2014-2016 Free Software Foundation, Inc. See the end of the file for license conditions.
[elpa] master 917b79e: Minor fix against b30add.
branch: master commit 917b79e9e2b22f5000a2d0d67ffa54ba4fcd1b69 Author: Bastien Commit: Bastien Minor fix against b30add. Use b...@gnu.org instead of b...@altern.org. --- packages/windresize/windresize.el | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/packages/windresize/windresize.el b/packages/windresize/windresize.el index f5a060a..c87735d 100644 --- a/packages/windresize/windresize.el +++ b/packages/windresize/windresize.el @@ -3,8 +3,8 @@ ;; Copyright (C) 2011-2017 Free Software Foundation, Inc. ;; ;; Filename: windresize.el -;; Author: Bastien -;; Maintainer: Bastien +;; Author: Bastien +;; Maintainer: Bastien ;; Keywords: window ;; Description: Set window configuration with keystrokes ;; Version: 0.1
[elpa] externals-release/org updated (a846152 -> 5ee39c3)
bastien1 pushed a change to branch externals-release/org. from a846152 doc/org-manual.org: Enhance examples new a4d0607 contrib/org-mac-link.el: fix Mail.app link compatibility with macOS 11 new 5ee39c3 ox-html: Add margin to fix overflow visibility problem Summary of changes: contrib/lisp/org-mac-link.el | 2 +- lisp/ox-html.el | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-)
[elpa] externals-release/org a4d0607 1/2: contrib/org-mac-link.el: fix Mail.app link compatibility with macOS 11
branch: externals-release/org commit a4d0607e1901338b50493533815489cb71ec3844 Author: Jan Lübke Commit: Kyle Meyer contrib/org-mac-link.el: fix Mail.app link compatibility with macOS 11 * org-mac-link.el (org-mac-message-open): Replace angular brackets with encoded version (< to %3C and > to %3E) so macOS 11 Big Sur can open the message in mail.app. macOS 11 does not open the mail link with angular brackets any more. This fix is backwards compatible. I have tested it on macOS 10.15.7. TINYCHANGE --- contrib/lisp/org-mac-link.el | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/contrib/lisp/org-mac-link.el b/contrib/lisp/org-mac-link.el index d16190e..e692acb 100644 --- a/contrib/lisp/org-mac-link.el +++ b/contrib/lisp/org-mac-link.el @@ -912,7 +912,7 @@ selected items in DEVONthink Pro Office and make link(s) out of it/them." "Visit the message with MESSAGE-ID. This will use the command `open' with the message URL." (start-process (concat "open message:" message-id) nil - "open" (concat "message://<" (substring message-id 2) ">"))) + "open" (concat "message://%3C" (substring message-id 2) "%3E"))) (defun org-as-get-selected-mail () "AppleScript to create links to selected messages in Mail.app."
[elpa] externals/org c822c80 1/2: contrib/lisp/org-contacts.el: Add stardiviner as the maintainer
branch: externals/org commit c822c80ef883e3514c0464d740b1f6ff276faa9e Author: Bastien Commit: Bastien contrib/lisp/org-contacts.el: Add stardiviner as the maintainer --- contrib/lisp/org-contacts.el | 1 + 1 file changed, 1 insertion(+) diff --git a/contrib/lisp/org-contacts.el b/contrib/lisp/org-contacts.el index d8d4984..310166d 100644 --- a/contrib/lisp/org-contacts.el +++ b/contrib/lisp/org-contacts.el @@ -3,6 +3,7 @@ ;; Copyright (C) 2010-2014 Julien Danjou ;; Author: Julien Danjou +;; Maintainer: stardiviner ;; Keywords: outlines, hypermedia, calendar ;; ;; This file is NOT part of GNU Emacs.
[elpa] externals-release/org 5ee39c3 2/2: ox-html: Add margin to fix overflow visibility problem
branch: externals-release/org commit 5ee39c3524bfbd881b6ca1e5eec20a045543e585 Author: Fatih Aydin Commit: Kyle Meyer ox-html: Add margin to fix overflow visibility problem * lisp/ox-html.el (org-html-style-default): Add the margin-top property to pre.src:hover:before so that the programming language is fully visible. TINYCHANGE --- lisp/ox-html.el | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lisp/ox-html.el b/lisp/ox-html.el index d2f24f5..1a466fb 100644 --- a/lisp/ox-html.el +++ b/lisp/ox-html.el @@ -300,7 +300,7 @@ property on the headline itself.") padding: 3px; border: 1px solid black; } - pre.src:hover:before { display: inline;} + pre.src:hover:before { display: inline; margin-top: 14px;} /* Languages per Org manual */ pre.src-asymptote:before { content: 'Asymptote'; } pre.src-awk:before { content: 'Awk'; }
[elpa] externals/org updated (35e419b -> b1dc454)
bastien1 pushed a change to branch externals/org. from 35e419b Merge branch 'maint' new c822c80 contrib/lisp/org-contacts.el: Add stardiviner as the maintainer new a4d0607 contrib/org-mac-link.el: fix Mail.app link compatibility with macOS 11 new 5ee39c3 ox-html: Add margin to fix overflow visibility problem new b1dc454 Merge branch 'maint' Summary of changes: contrib/lisp/org-contacts.el | 1 + contrib/lisp/org-mac-link.el | 2 +- lisp/ox-html.el | 2 +- 3 files changed, 3 insertions(+), 2 deletions(-)
[elpa] externals/org b1dc454 2/2: Merge branch 'maint'
branch: externals/org commit b1dc45424212031b451a568e5ea4938585aa6edb Merge: c822c80 5ee39c3 Author: Kyle Meyer Commit: Kyle Meyer Merge branch 'maint' --- contrib/lisp/org-mac-link.el | 2 +- lisp/ox-html.el | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/contrib/lisp/org-mac-link.el b/contrib/lisp/org-mac-link.el index d16190e..e692acb 100644 --- a/contrib/lisp/org-mac-link.el +++ b/contrib/lisp/org-mac-link.el @@ -912,7 +912,7 @@ selected items in DEVONthink Pro Office and make link(s) out of it/them." "Visit the message with MESSAGE-ID. This will use the command `open' with the message URL." (start-process (concat "open message:" message-id) nil - "open" (concat "message://<" (substring message-id 2) ">"))) + "open" (concat "message://%3C" (substring message-id 2) "%3E"))) (defun org-as-get-selected-mail () "AppleScript to create links to selected messages in Mail.app." diff --git a/lisp/ox-html.el b/lisp/ox-html.el index d2f24f5..1a466fb 100644 --- a/lisp/ox-html.el +++ b/lisp/ox-html.el @@ -300,7 +300,7 @@ property on the headline itself.") padding: 3px; border: 1px solid black; } - pre.src:hover:before { display: inline;} + pre.src:hover:before { display: inline; margin-top: 14px;} /* Languages per Org manual */ pre.src-asymptote:before { content: 'Asymptote'; } pre.src-awk:before { content: 'Awk'; }
[elpa] main d50774f: org: Update repository URL and release branch
branch: main commit d50774f11d24ac04c7ad67f9c7b9ed94b9ba88df Author: Bastien Commit: Bastien org: Update repository URL and release branch --- elpa-packages | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/elpa-packages b/elpa-packages index cffd9a6..89e6989 100644 --- a/elpa-packages +++ b/elpa-packages @@ -271,9 +271,9 @@ ("omn-mode":url nil) ("on-screen" :url "https://github.com/michael-heerdegen/on-screen.el.git";) ("org" - :url "https://code.orgmode.org/bzg/org-mode"; + :url "git://git.sv.gnu.org/emacs/org-mode.git" :lisp-dir "lisp" - :release-branch "maint" + :release-branch "bugfix" :ignored-files ("etc/schema" "contrib" "mk" "testing" "lisp/org-install.el") :news "etc/ORG-NEWS" :shell-command "make autoloads info; mv doc/org.info org.info; mv doc/orgguide.info orgguide.info"
[nongnu] main afc5d93: elpa-packages (org-contrib): New package
branch: main commit afc5d93ba94d454c6fe27767e2f21441bd9ac4c8 Author: Bastien Commit: Bastien elpa-packages (org-contrib): New package --- elpa-packages | 5 + 1 file changed, 5 insertions(+) diff --git a/elpa-packages b/elpa-packages index 4589e00..b495e00 100644 --- a/elpa-packages +++ b/elpa-packages @@ -26,6 +26,11 @@ ("request":url "https://github.com/tkf/emacs-request"; :ignored-files ("tests" "doc" "COPYING")) + ("org-contrib":url "https://git.sr.ht/~bzg/org-contrib"; + :lisp-dir "lisp" + :readme "README.org" + :ignored-files ("README.md")) + ("sly":url "https://github.com/joaotavora/sly"; :texinfo "doc/sly.texi" ;; Not needed any more:
[elpa] main 03e7b6e: org: Use org.info and orgguide.info files
branch: main commit 03e7b6e08c0356f56b66ec435edcd992a3f29f2c Author: Bastien Commit: Bastien org: Use org.info and orgguide.info files Previous versions of org-mode.git used to generate the info files "org" and "orgguide". Starting from 9802877f in org-mode.git, we use "org.info" and "orgguide.info", so move these files instead. --- elpa-packages | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/elpa-packages b/elpa-packages index 5203314..6a55446 100644 --- a/elpa-packages +++ b/elpa-packages @@ -257,7 +257,7 @@ :release-branch "maint" :ignored-files ("etc/schema" "contrib" "mk" "testing" "lisp/org-install.el") :news "etc/ORG-NEWS" - :shell-command "make autoloads info; mv doc/org org.info; mv doc/orgguide orgguide.info" + :shell-command "make autoloads info; mv doc/org.info org.info; mv doc/orgguide.info orgguide.info" :doc ("org.info" "orgguide.info") :auto-sync t) ("org-translate" :url nil)
[ELPA-diffs] /srv/bzr/emacs/elpa r257: Add b...@gnu.org as the maintainer of register-alist.el and windresize.el
revno: 257 committer: Bastien Guerry branch nick: elpa timestamp: Fri 2012-09-28 10:22:08 +0200 message: Add b...@gnu.org as the maintainer of register-alist.el and windresize.el modified: admin/overmaint.txt === modified file 'admin/overmaint.txt' --- a/admin/overmaint.txt 2012-05-23 07:11:36 + +++ b/admin/overmaint.txt 2012-09-28 08:22:08 + @@ -7,3 +7,6 @@ # Examples: #some-package/some-file.elnomail #some-package/otherfile.eln...@example.com + +register-alist/register-list.el b...@gnu.org +windresize/windresize.el.el b...@gnu.org
[ELPA-diffs] /srv/bzr/emacs/elpa r259: Use http://orgmode.org/elpa/ as the directory for the ELPA Org archive
revno: 259 committer: Bastien Guerry branch nick: elpa timestamp: Fri 2012-09-28 10:23:41 +0200 message: Use http://orgmode.org/elpa/ as the directory for the ELPA Org archive modified: admin/package-update.sh === modified file 'admin/package-update.sh' --- a/admin/package-update.sh 2011-07-01 20:32:27 + +++ b/admin/package-update.sh 2012-09-28 08:23:41 + @@ -82,8 +82,8 @@ echo "Not fetching Org daily from orgmode.org" else echo "Fetching Org daily from orgmode.org" -pkgname=`curl -s http://orgmode.org/pkg/daily/|perl -ne 'push @f, $1 if m/(org-\d{8})\.tar/; END { @f = sort @f; print "$f[-1]\n"}'` -wget -q http://orgmode.org/pkg/daily/${pkgname}.tar -O ${pkgname}.tar +pkgname=`curl -s http://orgmode.org/elpa/|perl -ne 'push @f, $1 if m/(org-\d{8})\.tar/; END { @f = sort @f; print "$f[-1]\n"}'` +wget -q http://orgmode.org/elpa/${pkgname}.tar -O ${pkgname}.tar if [ -f ${pkgname}.tar ]; then tar xf ${pkgname}.tar rm -f ${pkgname}.tar
[ELPA-diffs] /srv/bzr/emacs/elpa r258: Use http://orgmode.org/elpa/ as the directory for the ELPA Org archive
revno: 258 committer: Bastien Guerry branch nick: elpa timestamp: Fri 2012-09-28 10:23:26 +0200 message: Use http://orgmode.org/elpa/ as the directory for the ELPA Org archive modified: admin/org-synch.sh === modified file 'admin/org-synch.sh' --- a/admin/org-synch.sh2011-04-22 03:18:57 + +++ b/admin/org-synch.sh2012-09-28 08:23:26 + @@ -4,10 +4,10 @@ PATH="/bin:/usr/bin:/usr/local/bin:${PATH}" -pkgname=`curl -s http://orgmode.org/pkg/daily/|perl -ne 'push @f, $1 if m/(org-\d{8}\.tar)/; END { @f = sort @f; print "$f[-1]\n"}'` +pkgname=`curl -s http://orgmode.org/elpa/|perl -ne 'push @f, $1 if m/(org-\d{8}\.tar)/; END { @f = sort @f; print "$f[-1]\n"}'` cd $1 -wget -q http://orgmode.org/pkg/daily/${pkgname} -O ${pkgname}-tmp +wget -q http://orgmode.org/elpa/${pkgname} -O ${pkgname}-tmp if [ -f ${pkgname}-tmp ]; then rm -f org*.tar mv ${pkgname}-tmp ${pkgname} && \
[ELPA-diffs] ELPA branch, master, updated. 41111310cd1543f5a3b66b61b30a58e485096218
This is an automated email from the git hooks/post-receive script. It was generated because a ref change was pushed to the repository containing the project "ELPA". The branch, master has been updated via 4310cd1543f5a3b66b61b30a58e485096218 (commit) from 7f5222113ec0265d6ddadc13aa5ae01810cd6d34 (commit) Those revisions listed above that are new to this repository have not appeared on any other notification email; so we list those revisions in full, below. - Log - commit 4310cd1543f5a3b66b61b30a58e485096218 Author: bastien1 Date: Fri Aug 16 10:44:19 2013 +0200 register-list.el: Update copyright year. diff --git a/packages/register-list/register-list.el b/packages/register-list/register-list.el index 5e622b9..9b3e212 100755 --- a/packages/register-list/register-list.el +++ b/packages/register-list/register-list.el @@ -1,6 +1,6 @@ ;;; register-list.el --- Interactively list/edit registers ;; -;; Copyright (C) 2011 Free Software Foundation, Inc. +;; Copyright (C) 2011-2013 Free Software Foundation, Inc. ;; ;; Filename: register-list.el ;; Author: Bastien Guerry --- Summary of changes: packages/register-list/register-list.el |2 +- 1 files changed, 1 insertions(+), 1 deletions(-) hooks/post-receive -- ELPA
[ELPA-diffs] ELPA branch, master, updated. 055b3ad052d5746000196344b75ca7fb4da55614
This is an automated email from the git hooks/post-receive script. It was generated because a ref change was pushed to the repository containing the project "ELPA". The branch, master has been updated via 055b3ad052d5746000196344b75ca7fb4da55614 (commit) from 4acb2ef259003a21c42563d9be1d5762694185ea (commit) Those revisions listed above that are new to this repository have not appeared on any other notification email; so we list those revisions in full, below. - Log - commit 055b3ad052d5746000196344b75ca7fb4da55614 Author: bastien1 Date: Tue Jan 7 14:40:19 2014 +0100 Update copyright years. diff --git a/packages/register-list/register-list.el b/packages/register-list/register-list.el index d192cc7..c93e479 100755 --- a/packages/register-list/register-list.el +++ b/packages/register-list/register-list.el @@ -1,6 +1,6 @@ ;;; register-list.el --- Interactively list/edit registers -*- lexical-binding:t -*- ;; -;; Copyright (C) 2011-2013 Free Software Foundation, Inc. +;; Copyright (C) 2011-2014 Free Software Foundation, Inc. ;; ;; Filename: register-list.el ;; Author: Bastien Guerry diff --git a/packages/windresize/windresize.el b/packages/windresize/windresize.el index e13dd3f..d80afde 100755 --- a/packages/windresize/windresize.el +++ b/packages/windresize/windresize.el @@ -1,6 +1,6 @@ ;;; windresize.el --- Resize windows interactively ;; -;; Copyright (C) 2011 Free Software Foundation, Inc. +;; Copyright (C) 2011-2014 Free Software Foundation, Inc. ;; ;; Filename: windresize.el ;; Author: Bastien --- Summary of changes: packages/register-list/register-list.el |2 +- packages/windresize/windresize.el |2 +- 2 files changed, 2 insertions(+), 2 deletions(-) hooks/post-receive -- ELPA
[ELPA-diffs] ELPA branch, master, updated. a5b16e46a18a714aadb0ed6a367c0e9e21a07a8e
This is an automated email from the git hooks/post-receive script. It was generated because a ref change was pushed to the repository containing the project "ELPA". The branch, master has been updated via a5b16e46a18a714aadb0ed6a367c0e9e21a07a8e (commit) from 055b3ad052d5746000196344b75ca7fb4da55614 (commit) Those revisions listed above that are new to this repository have not appeared on any other notification email; so we list those revisions in full, below. - Log - commit a5b16e46a18a714aadb0ed6a367c0e9e21a07a8e Author: bastien1 Date: Tue Jan 7 17:26:54 2014 +0100 New command `debbugs-org-regenerate-status' * debbugs-org.el: Mention `debbugs-org-regenerate-status' in the comment section. * debbugs-org.el (debbugs-org-show-reports): Fix typo. (debbugs-org-regenerate-status): New command. (debbugs-org-mode-map): Bind it to `C-c # g'. diff --git a/packages/debbugs/debbugs-org.el b/packages/debbugs/debbugs-org.el index bde1299..7c4d108 100644 --- a/packages/debbugs/debbugs-org.el +++ b/packages/debbugs/debbugs-org.el @@ -84,12 +84,18 @@ ;; "C-c # C": Send a debbugs control message ;; "C-c # t": Mark the bug locally as tagged ;; "C-c # d": Show bug attributes +;; "C-c # g": Regenerate text properties with status ;; The last entry in a TODO record is the link [[Messages]]. If you ;; follow this link, a Gnus ephemeral group is opened presenting all ;; related messages for this bug. Here you could also send debbugs ;; control messages by keystroke "C". +;; Note that following the [[Messages]] link will only work if you +;; generated the list of bugs from the current session, or if you hit +;; C-c # g which will regenerate the text properties containing the +;; bug status (i.e. the bug number). + ;; Finally, if you simply want to list some bugs with known bug ;; numbers, call the command ;; @@ -329,7 +335,7 @@ returned." ;; Properties. (insert " :PROPERTIES:\n") - (insert (format " :DEBGUGS_ID: %s\n" id)) + (insert (format " :DEBBUGS_ID: %s\n" id)) (when merged (insert (format @@ -359,6 +365,24 @@ returned." (org-overview) (set-buffer-modified-p nil))) +(defun debbugs-org-regenerate-status () + "Regenerate the `tabulated-list-id' text property. +This property is used when following the [Messages] link, so you +need to regenerate it when opening an .org file after you killed +the corresponding buffer (e.g. by closing Emacs.)" + (interactive) + (save-excursion +(goto-char (point-min)) +(while (re-search-forward ":DEBBUGS_ID:[ \t]*\\([0-9]+\\)" nil t) + (let* ((bugnum (string-to-number (match-string 1))) +(mw (org-entry-get (point) "MERGEDWIDTH")) +(tli (list (cons 'id bugnum) + (cons 'bug_num bugnum) + (cons 'mergedwidth (if mw (string-to-number mw) + (beg (org-back-to-heading t)) + (end (org-end-of-subtree t))) + (add-text-properties beg end `(tabulated-list-id ,tli)) + (defun debbugs-org-show-next-reports (hits) "Show next HITS of bug reports." (with-current-buffer (get-buffer-create "*Org Bugs*") @@ -382,6 +406,7 @@ returned." (define-key map (kbd "C-c # t") 'debbugs-gnu-toggle-tag) (define-key map (kbd "C-c # C") 'debbugs-gnu-send-control-message) (define-key map (kbd "C-c # d") 'debbugs-gnu-display-status) +(define-key map (kbd "C-c # g") 'debbugs-org-regenerate-status) map) "Keymap for the `debbugs-org-mode' minor mode.") --- Summary of changes: packages/debbugs/debbugs-org.el | 27 ++- 1 files changed, 26 insertions(+), 1 deletions(-) hooks/post-receive -- ELPA