beets.io now supports HTTPS

See https://github.com/beetbox/beets/pull/3297.
This commit is contained in:
FichteFoll 2019-06-06 15:34:15 +02:00
parent c04462d8d2
commit 728203e15a
No known key found for this signature in database
GPG key ID: 9FA3981C07CD83C5
12 changed files with 24 additions and 24 deletions

View file

@ -103,7 +103,7 @@ Read More
Learn more about beets at `its Web site`_. Follow `@b33ts`_ on Twitter for
news and updates.
.. _its Web site: http://beets.io/
.. _its Web site: https://beets.io/
.. _@b33ts: https://twitter.com/b33ts/
Authors

View file

@ -39,7 +39,7 @@ else:
SKIPPED_TRACKS = ['[data track]']
musicbrainzngs.set_useragent('beets', beets.__version__,
'http://beets.io/')
'https://beets.io/')
class MusicBrainzAPIError(util.HumanReadableException):

View file

@ -34,7 +34,7 @@ import confuse
AUTH_ERRORS = (TokenRequestDenied, TokenMissing, VerifierMissing)
USER_AGENT = u'beets/{0} +http://beets.io/'.format(beets.__version__)
USER_AGENT = u'beets/{0} +https://beets.io/'.format(beets.__version__)
class BeatportAPIError(Exception):
@ -109,7 +109,7 @@ class BeatportClient(object):
:rtype: (unicode, unicode) tuple
"""
self.api.parse_authorization_response(
"http://beets.io/auth?" + auth_data)
"https://beets.io/auth?" + auth_data)
access_data = self.api.fetch_access_token(
self._make_url('/identity/1/oauth/access-token'))
return access_data['oauth_token'], access_data['oauth_token_secret']

View file

@ -37,7 +37,7 @@ import traceback
from string import ascii_lowercase
USER_AGENT = u'beets/{0} +http://beets.io/'.format(beets.__version__)
USER_AGENT = u'beets/{0} +https://beets.io/'.format(beets.__version__)
# Exceptions that discogs_client should really handle but does not.
CONNECTION_ERRORS = (ConnectionError, socket.error, http_client.HTTPException,

View file

@ -1241,7 +1241,7 @@ Fixes:
* :doc:`/plugins/replaygain`: Fix a crash using the Python Audio Tools
backend. :bug:`1873`
.. _beets.io: http://beets.io/
.. _beets.io: https://beets.io/
.. _Beetbox: https://github.com/beetbox
@ -2639,7 +2639,7 @@ previous versions would spit out a warning and then list your entire library.
There's more detail than you could ever need `on the beets blog`_.
.. _on the beets blog: http://beets.io/blog/flexattr.html
.. _on the beets blog: https://beets.io/blog/flexattr.html
1.2.2 (August 27, 2013)
@ -3227,7 +3227,7 @@ begins today on features for version 1.1.
unintentionally loading the plugins they contain.
.. _The Echo Nest: http://the.echonest.com/
.. _Tomahawk resolver: http://beets.io/blog/tomahawk-resolver.html
.. _Tomahawk resolver: https://beets.io/blog/tomahawk-resolver.html
.. _mp3gain: http://mp3gain.sourceforge.net/download.php
.. _aacgain: https://aacgain.altosdesign.com

View file

@ -242,7 +242,7 @@ to interact directly with the underlying SQLite database, you must use a
items = lib.items(query)
lib.add_album(list(items))
.. _blog post: http://beets.io/blog/sqlite-nightmare.html
.. _blog post: https://beets.io/blog/sqlite-nightmare.html
.. currentmodule:: beets.dbcore.db

View file

@ -127,7 +127,7 @@ And, unlike :ref:`built-in fields <itemfields>`, such fields can be removed::
Read more than you ever wanted to know about the *flexible attributes*
feature `on the beets blog`_.
.. _on the beets blog: http://beets.io/blog/flexattr.html
.. _on the beets blog: https://beets.io/blog/flexattr.html
Choose a path style manually for some music

View file

@ -4,7 +4,7 @@ Getting Started
Welcome to `beets`_! This guide will help you begin using it to make your music
collection better.
.. _beets: http://beets.io/
.. _beets: https://beets.io/
Installing
----------

View file

@ -17,7 +17,7 @@ Freenode, drop by `the discussion board`_, send email to `the mailing list`_,
or `file a bug`_ in the issue tracker. Please let us know where you think this
documentation can be improved.
.. _beets: http://beets.io/
.. _beets: https://beets.io/
.. _the mailing list: https://groups.google.com/group/beets-users
.. _file a bug: https://github.com/beetbox/beets/issues
.. _the discussion board: https://discourse.beets.io

View file

@ -1,6 +1,6 @@
#compdef beet
# zsh completion for beets music library manager and MusicBrainz tagger: http://beets.io/
# zsh completion for beets music library manager and MusicBrainz tagger: https://beets.io/
# Default values for BEETS_LIBRARY & BEETS_CONFIG needed for the cache checking function.
# They will be updated under the assumption that the config file is in the same directory as the library.

View file

@ -60,7 +60,7 @@ setup(
description='music tagger and library organizer',
author='Adrian Sampson',
author_email='adrian@radbox.org',
url='http://beets.io/',
url='https://beets.io/',
license='MIT',
platforms='ALL',
long_description=_read('README.rst'),