docs: Update all references to mopidy.settings.default
This commit is contained in:
parent
bbc44350fc
commit
861f4957aa
@ -32,7 +32,7 @@ Internal mixers
|
|||||||
Most users will use one of these internal mixers which controls the volume on
|
Most users will use one of these internal mixers which controls the volume on
|
||||||
the computer running Mopidy. If you do not specify which mixer you want to use
|
the computer running Mopidy. If you do not specify which mixer you want to use
|
||||||
in the settings, Mopidy will choose one for you based upon what OS you run. See
|
in the settings, Mopidy will choose one for you based upon what OS you run. See
|
||||||
:attr:`mopidy.settings.default.MIXER` for the defaults.
|
:attr:`mopidy.settings.MIXER` for the defaults.
|
||||||
|
|
||||||
|
|
||||||
:mod:`mopidy.mixers.alsa` -- ALSA mixer
|
:mod:`mopidy.mixers.alsa` -- ALSA mixer
|
||||||
@ -71,7 +71,7 @@ External device mixers
|
|||||||
Mopidy supports controlling volume on external devices instead of on the
|
Mopidy supports controlling volume on external devices instead of on the
|
||||||
computer running Mopidy through the use of custom mixer implementations. To
|
computer running Mopidy through the use of custom mixer implementations. To
|
||||||
enable one of the following mixers, you must the set
|
enable one of the following mixers, you must the set
|
||||||
:attr:`mopidy.settings.default.MIXER` setting to point to one of the classes
|
:attr:`mopidy.settings.MIXER` setting to point to one of the classes
|
||||||
found below, and possibly add some extra settings required by the mixer you
|
found below, and possibly add some extra settings required by the mixer you
|
||||||
choose.
|
choose.
|
||||||
|
|
||||||
|
|||||||
@ -21,7 +21,7 @@ A complete ``~/.mopidy/settings.py`` may look like this::
|
|||||||
Available settings
|
Available settings
|
||||||
==================
|
==================
|
||||||
|
|
||||||
.. automodule:: mopidy.settings.default
|
.. automodule:: mopidy.settings
|
||||||
:synopsis: Available settings and their default values.
|
:synopsis: Available settings and their default values.
|
||||||
:members:
|
:members:
|
||||||
:undoc-members:
|
:undoc-members:
|
||||||
|
|||||||
@ -72,7 +72,7 @@ libspotify backend instead, copy the Spotify application key to
|
|||||||
|
|
||||||
BACKENDS = (u'mopidy.backends.libspotify.LibspotifyBackend',)
|
BACKENDS = (u'mopidy.backends.libspotify.LibspotifyBackend',)
|
||||||
|
|
||||||
For a full list of available settings, see :mod:`mopidy.settings.default`.
|
For a full list of available settings, see :mod:`mopidy.settings`.
|
||||||
|
|
||||||
|
|
||||||
Running Mopidy
|
Running Mopidy
|
||||||
|
|||||||
@ -23,8 +23,7 @@ class DenonMixer(BaseMixer):
|
|||||||
|
|
||||||
**Settings**
|
**Settings**
|
||||||
|
|
||||||
- :attr:`mopidy.settings.default.MIXER_EXT_PORT` -- Example:
|
- :attr:`mopidy.settings.MIXER_EXT_PORT` -- Example: ``/dev/ttyUSB0``
|
||||||
``/dev/ttyUSB0``
|
|
||||||
"""
|
"""
|
||||||
|
|
||||||
def __init__(self):
|
def __init__(self):
|
||||||
|
|||||||
@ -33,11 +33,10 @@ class NadMixer(BaseMixer):
|
|||||||
|
|
||||||
**Settings**
|
**Settings**
|
||||||
|
|
||||||
- :attr:`mopidy.settings.default.MIXER_EXT_PORT` --
|
- :attr:`mopidy.settings.MIXER_EXT_PORT` -- Example: ``/dev/ttyUSB0``
|
||||||
Example: ``/dev/ttyUSB0``
|
- :attr:`mopidy.settings.MIXER_EXT_SOURCE` -- Example: ``Aux``
|
||||||
- :attr:`mopidy.settings.default.MIXER_EXT_SOURCE` -- Example: ``Aux``
|
- :attr:`mopidy.settings.MIXER_EXT_SPEAKERS_A` -- Example: ``On``
|
||||||
- :attr:`mopidy.settings.default.MIXER_EXT_SPEAKERS_A` -- Example: ``On``
|
- :attr:`mopidy.settings.MIXER_EXT_SPEAKERS_B` -- Example: ``Off``
|
||||||
- :attr:`mopidy.settings.default.MIXER_EXT_SPEAKERS_B` -- Example: ``Off``
|
|
||||||
|
|
||||||
"""
|
"""
|
||||||
|
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user