docs: Update all references to mopidy.settings.default

This commit is contained in:
Stein Magnus Jodal 2010-03-23 00:53:27 +01:00
parent bbc44350fc
commit 861f4957aa
5 changed files with 9 additions and 11 deletions

View File

@ -32,7 +32,7 @@ Internal mixers
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
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
@ -71,7 +71,7 @@ External device mixers
Mopidy supports controlling volume on external devices instead of on the
computer running Mopidy through the use of custom mixer implementations. To
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
choose.

View File

@ -21,7 +21,7 @@ A complete ``~/.mopidy/settings.py`` may look like this::
Available settings
==================
.. automodule:: mopidy.settings.default
.. automodule:: mopidy.settings
:synopsis: Available settings and their default values.
:members:
:undoc-members:

View File

@ -72,7 +72,7 @@ libspotify backend instead, copy the Spotify application key to
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

View File

@ -23,8 +23,7 @@ class DenonMixer(BaseMixer):
**Settings**
- :attr:`mopidy.settings.default.MIXER_EXT_PORT` -- Example:
``/dev/ttyUSB0``
- :attr:`mopidy.settings.MIXER_EXT_PORT` -- Example: ``/dev/ttyUSB0``
"""
def __init__(self):

View File

@ -33,11 +33,10 @@ class NadMixer(BaseMixer):
**Settings**
- :attr:`mopidy.settings.default.MIXER_EXT_PORT` --
Example: ``/dev/ttyUSB0``
- :attr:`mopidy.settings.default.MIXER_EXT_SOURCE` -- Example: ``Aux``
- :attr:`mopidy.settings.default.MIXER_EXT_SPEAKERS_A` -- Example: ``On``
- :attr:`mopidy.settings.default.MIXER_EXT_SPEAKERS_B` -- Example: ``Off``
- :attr:`mopidy.settings.MIXER_EXT_PORT` -- Example: ``/dev/ttyUSB0``
- :attr:`mopidy.settings.MIXER_EXT_SOURCE` -- Example: ``Aux``
- :attr:`mopidy.settings.MIXER_EXT_SPEAKERS_A` -- Example: ``On``
- :attr:`mopidy.settings.MIXER_EXT_SPEAKERS_B` -- Example: ``Off``
"""