[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[elpa] externals/openpgp a311c89f17 23/30: Add missing docstrings
From: |
ELPA Syncer |
Subject: |
[elpa] externals/openpgp a311c89f17 23/30: Add missing docstrings |
Date: |
Sun, 26 Mar 2023 10:59:28 -0400 (EDT) |
branch: externals/openpgp
commit a311c89f17e564eed867d4fc6d913aaf53f04891
Author: Philip Kaludercic <philipk@posteo.net>
Commit: Philip Kaludercic <philipk@posteo.net>
Add missing docstrings
---
openpgp.el | 9 +++++++++
1 file changed, 9 insertions(+)
diff --git a/openpgp.el b/openpgp.el
index 56a0609a6f..b54caa217a 100644
--- a/openpgp.el
+++ b/openpgp.el
@@ -61,6 +61,8 @@ URL, if non-nil."
(if arg (concat "/" arg) "")))
(defun openpgp--process-key (status)
+ "Callback function for `url-retrieve' for receiving a key.
+STATUS is a plist described in the docstring for `url-retrieve'."
(when (plist-get status :error)
(error "Request failed: %s"
(caddr (assq (caddr (plist-get status :error))
@@ -89,6 +91,7 @@ URL, if non-nil."
;;; Uploading Keys
(defun openpgp--key-ids ()
+ "Generate a list of KEY ids."
(let* ((keys (epg-list-keys (epg-make-context)))
(uids (mapcan #'epg-key-user-id-list keys))
(ids (mapcar #'epg-user-id-string uids))
@@ -96,6 +99,9 @@ URL, if non-nil."
(mapcan (lambda (addr) (and (car addr) (cdr addr))) addr)))
(defun openpgp--verify-callback (status email)
+ "Callback function for `url-retrieve' for verifying a key.
+STATUS is a plist described in the docstring for `url-retrieve'.
+EMAIL is the email address being verified."
(when (plist-get status :error)
(error "Request failed: %s"
(caddr (assq (caddr (plist-get status :error))
@@ -130,6 +136,9 @@ TOKEN should be supplied by a previous \"upload-key\"
request."
(list email))))
(defun openpgp--upload-callback (status email)
+ "Callback function for `url-retrieve' for uploading a key.
+STATUS is a plist described in the docstring for `url-retrieve'.
+EMAIL is the email address being uploaded."
(when (plist-get status :error)
(error "Request failed: %s"
(caddr (assq (caddr (plist-get status :error))
- [elpa] externals/openpgp 322b045d4e 24/30: Assign copyright to the FSF, (continued)
- [elpa] externals/openpgp 322b045d4e 24/30: Assign copyright to the FSF, ELPA Syncer, 2023/03/26
- [elpa] externals/openpgp 665fd5e05d 26/30: Add a .dir-locals.el file, ELPA Syncer, 2023/03/26
- [elpa] externals/openpgp 9b17ce593f 13/30: Added email autocompletion for openpgp-upload-key-file, ELPA Syncer, 2023/03/26
- [elpa] externals/openpgp 9385b7502e 17/30: Format file as a proper Emacs package, ELPA Syncer, 2023/03/26
- [elpa] externals/openpgp 226b50eba8 11/30: Added missing require statments, ELPA Syncer, 2023/03/26
- [elpa] externals/openpgp 63b794e5f6 06/30: Fixed mu4e issues, ELPA Syncer, 2023/03/26
- [elpa] externals/openpgp a31d7bbb79 16/30: Fixed scoping in openpgp-mu4e-fetch-key, ELPA Syncer, 2023/03/26
- [elpa] externals/openpgp 7dbc5feede 22/30: Complete missing information in header, ELPA Syncer, 2023/03/26
- [elpa] externals/openpgp 72dbc056ba 12/30: Added email autocompletion for openpgp-upload-key, ELPA Syncer, 2023/03/26
- [elpa] externals/openpgp f77ea6317e 21/30: Remove "Mail Client Support" section, ELPA Syncer, 2023/03/26
- [elpa] externals/openpgp a311c89f17 23/30: Add missing docstrings,
ELPA Syncer <=
- [elpa] externals/openpgp 2a31092a2f 27/30: Add a .gitignore file, ELPA Syncer, 2023/03/26
- [elpa] externals/openpgp 671030cb32 01/30: Initial revision, ELPA Syncer, 2023/03/26
- [elpa] externals/openpgp 8d2f94ef37 04/30: Hexify email address when fetching key, ELPA Syncer, 2023/03/26
- [elpa] externals/openpgp 40af1f122e 10/30: Added support for pre-Emacs 27 via json-read, ELPA Syncer, 2023/03/26
- [elpa] externals/openpgp 7742862e4a 20/30: Fix formatting of outline headers, ELPA Syncer, 2023/03/26
- [elpa] externals/openpgp 6d58b73248 28/30: Add a file with the license text, ELPA Syncer, 2023/03/26
- [elpa] externals/openpgp 5d8eb489bc 29/30: Add a README file, ELPA Syncer, 2023/03/26
- [elpa] externals/openpgp e8550d3136 15/30: Fixed indentation in openpgp-mu4e-fetch-key, ELPA Syncer, 2023/03/26
- [elpa] externals/openpgp 59f2277a72 03/30: Added rmail and mu4e integration functions, ELPA Syncer, 2023/03/26
- [elpa] externals/openpgp 63571ea6f9 08/30: Improved openpgp--verify-callback message generation, ELPA Syncer, 2023/03/26