From ded783e3945f501edfc91b5a2bcae9e50a4e8c4b Mon Sep 17 00:00:00 2001 From: Stein Magnus Jodal Date: Sat, 12 Oct 2013 00:21:25 +0200 Subject: [PATCH 1/5] manifest: pylintrc no longer exists, so don't include it in PyPI package --- MANIFEST.in | 1 - 1 file changed, 1 deletion(-) diff --git a/MANIFEST.in b/MANIFEST.in index 84122dcc..f1968205 100644 --- a/MANIFEST.in +++ b/MANIFEST.in @@ -2,7 +2,6 @@ include *.rst include LICENSE include MANIFEST.in include data/mopidy.desktop -include pylintrc recursive-include docs * prune docs/_build From 61f2d7314e9c7663b75b9f322573462e8afb8476 Mon Sep 17 00:00:00 2001 From: Stein Magnus Jodal Date: Sun, 13 Oct 2013 19:50:04 +0200 Subject: [PATCH 2/5] docs: Fix typo --- docs/ext/index.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/ext/index.rst b/docs/ext/index.rst index a4f376b2..f798b962 100644 --- a/docs/ext/index.rst +++ b/docs/ext/index.rst @@ -106,7 +106,7 @@ Mopidy-SoundCloud https://github.com/mopidy/mopidy-soundcloud -rovides a backend for playing music from the `SoundCloud +Provides a backend for playing music from the `SoundCloud `_ service. From 677c61f39867cea70eb5e786b81a639f5181faff Mon Sep 17 00:00:00 2001 From: Javier Domingo Cansino Date: Fri, 18 Oct 2013 16:12:38 +0200 Subject: [PATCH 3/5] tests: Rename local tests to describe that they are testing local providers and not core controllers --- tests/backends/local/library_test.py | 2 +- tests/backends/local/playback_test.py | 2 +- tests/backends/local/playlists_test.py | 2 +- tests/backends/local/tracklist_test.py | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/tests/backends/local/library_test.py b/tests/backends/local/library_test.py index 8f988503..17a7f827 100644 --- a/tests/backends/local/library_test.py +++ b/tests/backends/local/library_test.py @@ -11,7 +11,7 @@ from mopidy.models import Track, Album, Artist from tests import path_to_data_dir -class LocalLibraryControllerTest(unittest.TestCase): +class LocalLibraryProviderTest(unittest.TestCase): artists = [Artist(name='artist1'), Artist(name='artist2'), Artist()] albums = [ diff --git a/tests/backends/local/playback_test.py b/tests/backends/local/playback_test.py index c37eb91d..5df86dd1 100644 --- a/tests/backends/local/playback_test.py +++ b/tests/backends/local/playback_test.py @@ -19,7 +19,7 @@ from tests.backends.local import generate_song, populate_tracklist # TODO Test 'playlist repeat', e.g. repeat=1,single=0 -class LocalPlaybackControllerTest(unittest.TestCase): +class LocalPlaybackProviderTest(unittest.TestCase): config = { 'local': { 'media_dir': path_to_data_dir(''), diff --git a/tests/backends/local/playlists_test.py b/tests/backends/local/playlists_test.py index 4975d8aa..a9f13974 100644 --- a/tests/backends/local/playlists_test.py +++ b/tests/backends/local/playlists_test.py @@ -15,7 +15,7 @@ from tests import path_to_data_dir from tests.backends.local import generate_song -class LocalPlaylistsControllerTest(unittest.TestCase): +class LocalPlaylistsProviderTest(unittest.TestCase): backend_class = actor.LocalBackend config = { 'local': { diff --git a/tests/backends/local/tracklist_test.py b/tests/backends/local/tracklist_test.py index 1993d246..a58bf5f6 100644 --- a/tests/backends/local/tracklist_test.py +++ b/tests/backends/local/tracklist_test.py @@ -14,7 +14,7 @@ from tests import path_to_data_dir from tests.backends.local import generate_song, populate_tracklist -class LocalTracklistControllerTest(unittest.TestCase): +class LocalTracklistProviderTest(unittest.TestCase): config = { 'local': { 'media_dir': path_to_data_dir(''), From 46bd5bc09659ab8dc9e5901cb42da50946144e1f Mon Sep 17 00:00:00 2001 From: Stein Magnus Jodal Date: Sat, 19 Oct 2013 21:09:49 +0200 Subject: [PATCH 4/5] docs: Reduce depth of ToC --- docs/index.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/index.rst b/docs/index.rst index c5183471..17a40c32 100644 --- a/docs/index.rst +++ b/docs/index.rst @@ -30,7 +30,7 @@ Usage ===== .. toctree:: - :maxdepth: 3 + :maxdepth: 2 installation/index installation/raspberrypi From 9a5d177ddacfbbfd054d05075d1e48c811f9e58b Mon Sep 17 00:00:00 2001 From: Stein Magnus Jodal Date: Sat, 19 Oct 2013 21:10:16 +0200 Subject: [PATCH 5/5] docs: Update authors list --- AUTHORS | 2 ++ 1 file changed, 2 insertions(+) diff --git a/AUTHORS b/AUTHORS index 28b8ebd2..fdfb82fb 100644 --- a/AUTHORS +++ b/AUTHORS @@ -23,6 +23,8 @@ - Tobias Sauerwein - Alli Witheford - Alexandre Petitjean +- Terje Larsen - Pavol Babincak - Javier Domingo +- Javier Domingo Cansino - Lasse Bigum