mirror of
https://github.com/beetbox/beets.git
synced 2025-12-06 16:42:42 +01:00
beets.io now supports HTTPS
See https://github.com/beetbox/beets/pull/3297.
This commit is contained in:
parent
c04462d8d2
commit
728203e15a
12 changed files with 24 additions and 24 deletions
|
|
@ -103,7 +103,7 @@ Read More
|
||||||
Learn more about beets at `its Web site`_. Follow `@b33ts`_ on Twitter for
|
Learn more about beets at `its Web site`_. Follow `@b33ts`_ on Twitter for
|
||||||
news and updates.
|
news and updates.
|
||||||
|
|
||||||
.. _its Web site: http://beets.io/
|
.. _its Web site: https://beets.io/
|
||||||
.. _@b33ts: https://twitter.com/b33ts/
|
.. _@b33ts: https://twitter.com/b33ts/
|
||||||
|
|
||||||
Authors
|
Authors
|
||||||
|
|
|
||||||
|
|
@ -39,7 +39,7 @@ else:
|
||||||
SKIPPED_TRACKS = ['[data track]']
|
SKIPPED_TRACKS = ['[data track]']
|
||||||
|
|
||||||
musicbrainzngs.set_useragent('beets', beets.__version__,
|
musicbrainzngs.set_useragent('beets', beets.__version__,
|
||||||
'http://beets.io/')
|
'https://beets.io/')
|
||||||
|
|
||||||
|
|
||||||
class MusicBrainzAPIError(util.HumanReadableException):
|
class MusicBrainzAPIError(util.HumanReadableException):
|
||||||
|
|
|
||||||
|
|
@ -34,7 +34,7 @@ import confuse
|
||||||
|
|
||||||
|
|
||||||
AUTH_ERRORS = (TokenRequestDenied, TokenMissing, VerifierMissing)
|
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):
|
class BeatportAPIError(Exception):
|
||||||
|
|
@ -109,7 +109,7 @@ class BeatportClient(object):
|
||||||
:rtype: (unicode, unicode) tuple
|
:rtype: (unicode, unicode) tuple
|
||||||
"""
|
"""
|
||||||
self.api.parse_authorization_response(
|
self.api.parse_authorization_response(
|
||||||
"http://beets.io/auth?" + auth_data)
|
"https://beets.io/auth?" + auth_data)
|
||||||
access_data = self.api.fetch_access_token(
|
access_data = self.api.fetch_access_token(
|
||||||
self._make_url('/identity/1/oauth/access-token'))
|
self._make_url('/identity/1/oauth/access-token'))
|
||||||
return access_data['oauth_token'], access_data['oauth_token_secret']
|
return access_data['oauth_token'], access_data['oauth_token_secret']
|
||||||
|
|
|
||||||
|
|
@ -37,7 +37,7 @@ import traceback
|
||||||
from string import ascii_lowercase
|
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.
|
# Exceptions that discogs_client should really handle but does not.
|
||||||
CONNECTION_ERRORS = (ConnectionError, socket.error, http_client.HTTPException,
|
CONNECTION_ERRORS = (ConnectionError, socket.error, http_client.HTTPException,
|
||||||
|
|
|
||||||
|
|
@ -1241,7 +1241,7 @@ Fixes:
|
||||||
* :doc:`/plugins/replaygain`: Fix a crash using the Python Audio Tools
|
* :doc:`/plugins/replaygain`: Fix a crash using the Python Audio Tools
|
||||||
backend. :bug:`1873`
|
backend. :bug:`1873`
|
||||||
|
|
||||||
.. _beets.io: http://beets.io/
|
.. _beets.io: https://beets.io/
|
||||||
.. _Beetbox: https://github.com/beetbox
|
.. _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`_.
|
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)
|
1.2.2 (August 27, 2013)
|
||||||
|
|
@ -3227,7 +3227,7 @@ begins today on features for version 1.1.
|
||||||
unintentionally loading the plugins they contain.
|
unintentionally loading the plugins they contain.
|
||||||
|
|
||||||
.. _The Echo Nest: http://the.echonest.com/
|
.. _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
|
.. _mp3gain: http://mp3gain.sourceforge.net/download.php
|
||||||
.. _aacgain: https://aacgain.altosdesign.com
|
.. _aacgain: https://aacgain.altosdesign.com
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -242,7 +242,7 @@ to interact directly with the underlying SQLite database, you must use a
|
||||||
items = lib.items(query)
|
items = lib.items(query)
|
||||||
lib.add_album(list(items))
|
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
|
.. currentmodule:: beets.dbcore.db
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -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*
|
Read more than you ever wanted to know about the *flexible attributes*
|
||||||
feature `on the beets blog`_.
|
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
|
Choose a path style manually for some music
|
||||||
|
|
|
||||||
|
|
@ -4,7 +4,7 @@ Getting Started
|
||||||
Welcome to `beets`_! This guide will help you begin using it to make your music
|
Welcome to `beets`_! This guide will help you begin using it to make your music
|
||||||
collection better.
|
collection better.
|
||||||
|
|
||||||
.. _beets: http://beets.io/
|
.. _beets: https://beets.io/
|
||||||
|
|
||||||
Installing
|
Installing
|
||||||
----------
|
----------
|
||||||
|
|
|
||||||
|
|
@ -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
|
or `file a bug`_ in the issue tracker. Please let us know where you think this
|
||||||
documentation can be improved.
|
documentation can be improved.
|
||||||
|
|
||||||
.. _beets: http://beets.io/
|
.. _beets: https://beets.io/
|
||||||
.. _the mailing list: https://groups.google.com/group/beets-users
|
.. _the mailing list: https://groups.google.com/group/beets-users
|
||||||
.. _file a bug: https://github.com/beetbox/beets/issues
|
.. _file a bug: https://github.com/beetbox/beets/issues
|
||||||
.. _the discussion board: https://discourse.beets.io
|
.. _the discussion board: https://discourse.beets.io
|
||||||
|
|
|
||||||
|
|
@ -1,6 +1,6 @@
|
||||||
#compdef beet
|
#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.
|
# 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.
|
# They will be updated under the assumption that the config file is in the same directory as the library.
|
||||||
|
|
|
||||||
2
setup.py
2
setup.py
|
|
@ -60,7 +60,7 @@ setup(
|
||||||
description='music tagger and library organizer',
|
description='music tagger and library organizer',
|
||||||
author='Adrian Sampson',
|
author='Adrian Sampson',
|
||||||
author_email='adrian@radbox.org',
|
author_email='adrian@radbox.org',
|
||||||
url='http://beets.io/',
|
url='https://beets.io/',
|
||||||
license='MIT',
|
license='MIT',
|
||||||
platforms='ALL',
|
platforms='ALL',
|
||||||
long_description=_read('README.rst'),
|
long_description=_read('README.rst'),
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue