summaryrefslogtreecommitdiffstats
path: root/devel
diff options
context:
space:
mode:
authorDaniel Kahn Gillmor <dkg@fifthhorseman.net>2018-04-29 04:35:30 -0400
committerDavid Bremner <david@tethera.net>2018-05-03 20:59:20 -0300
commitc20a5eb80520a11cb697a45b0d9553c68e2199c8 (patch)
treef3a23bba49b4a5234d92a7783518e468a7bf1781 /devel
parent4ac23c5978ff963c18a012b6b230b26f9ef98c43 (diff)
move more http -> https
Correct URLs that have crept into the notmuch codebase with http:// when https:// is possible. As part of this conversion, this changeset also indicates the current preferred upstream URLs for both gmime and sup. the new URLs are https-enabled, the old ones are not. This also fixes T310-emacs.sh, thanks to Bremner for catching it.
Diffstat (limited to 'devel')
-rw-r--r--devel/nmbug/doc/man5/notmuch-report.json.5.rst6
-rwxr-xr-xdevel/nmbug/notmuch-report2
2 files changed, 4 insertions, 4 deletions
diff --git a/devel/nmbug/doc/man5/notmuch-report.json.5.rst b/devel/nmbug/doc/man5/notmuch-report.json.5.rst
index 1207a4aa..98d2d2e3 100644
--- a/devel/nmbug/doc/man5/notmuch-report.json.5.rst
+++ b/devel/nmbug/doc/man5/notmuch-report.json.5.rst
@@ -79,8 +79,8 @@ views
An array of strings, which will be joined with 'and' to form the
view query.
-.. _Gmane: http://gmane.org/
-.. _JSON: http://json.org/
+.. _Gmane: https://gmane.org/
+.. _JSON: https://json.org/
.. _Python format string: https://docs.python.org/3/library/string.html#formatstrings
.. _quoted: https://docs.python.org/3/library/urllib.parse.html#urllib.parse.quote
@@ -95,7 +95,7 @@ EXAMPLE
"blurb": "For more information see <a href=\"https://notmuchmail.org/nmbug\">nmbug</a>",
"header": "<html><head></head><body><h1>{title}</h1><p>{blurb}</p><h2>Views</h2>",
"footer": "<hr><p>Generated: {datetime}</p></html>",
- "message-url": "http://mid.gmane.org/{message-id}"
+ "message-url": "https://mid.gmane.org/{message-id}"
},
"views": [
{
diff --git a/devel/nmbug/notmuch-report b/devel/nmbug/notmuch-report
index a9c2a6ec..5789c5f4 100755
--- a/devel/nmbug/notmuch-report
+++ b/devel/nmbug/notmuch-report
@@ -415,7 +415,7 @@ _PAGES['html'] = HtmlPage(
header=header_template.format(**context),
footer=footer_template.format(**context),
message_url_template=config['meta'].get(
- 'message-url', 'http://mid.gmane.org/{message-id}'),
+ 'message-url', 'https://mid.gmane.org/{message-id}'),
)
if args.list_views: