Stein Magnus Jodal
50be4a5316
docs: Update changelog
2013-11-11 23:13:25 +01:00
Stein Magnus Jodal
a289d831d0
Merge pull request #569 from ZenithDK/scan_multiple_artist
...
Fix scan with multiple track artists and add tests
2013-11-11 14:07:36 -08:00
Stein Magnus Jodal
aa7b360d0d
docs: Fix typos
2013-11-11 22:59:45 +01:00
Stein Magnus Jodal
d2280d9a86
docs: Add {mpd,http}/zeroconf descriptions
2013-11-11 22:52:36 +01:00
Stein Magnus Jodal
f7c3272045
docs: Update authors
2013-11-11 22:46:32 +01:00
Stein Magnus Jodal
df4f99cf7b
docs: Update changelog
2013-11-11 22:46:21 +01:00
Stein Magnus Jodal
924553b62e
http: Fix tests
2013-11-11 22:40:45 +01:00
Stein Magnus Jodal
d723db8f41
Merge pull request #573 from adamcik/feature/avahi
...
Cleaned up version of #558 - Add avahi publishing of MPD and HTTP server endpoints.
2013-11-11 13:35:43 -08:00
Thomas Adamcik
660a1b7382
avahi: Remove use of config_section
2013-11-11 22:32:46 +01:00
Thomas Adamcik
f03c049485
avahi: More review comments and some other fixes.
...
- Switched to newstyle class
- Switched to safe values in kwargs
2013-11-11 22:04:13 +01:00
Thomas Adamcik
c964d15ac4
avahi: Simplify config to single value
2013-11-11 21:42:23 +01:00
Thomas Adamcik
e9c2816354
avahi: Add hostname and port template values to names
2013-11-11 21:39:14 +01:00
Thomas Adamcik
fb31193ed0
avahi: Fixes from review comments
2013-11-11 21:26:11 +01:00
Thomas Adamcik
6c6932c374
avahi: Only convert single string at a time in helper
2013-11-11 21:16:05 +01:00
Thomas Adamcik
bcce865ce7
avahi: Convert MPD and HTTP to use cleaned up versions
...
- Move imports to top as they should be.
- Report state based on publish return value.
- Remove overly broad except clauses.
- Unpublish before stopping servers.
2013-11-11 21:15:56 +01:00
Thomas Adamcik
50cfe42ce0
avahi: Improve error handling for dbus errors.
...
- Handle dbus not being installed.
- Handle not finding the system bus.
- Handle not finding the avahi service.
- Return if publish succeeded.
2013-11-11 21:15:47 +01:00
Thomas Adamcik
cf5589b4eb
avahi: Style and code cleanups in zeroconf module.
...
- Prepare for handling missing dbus directly in module.
- Constants should always be all caps.
- Extracted helpers from class to convey intent via their naming.
- Moved imports out of class, imports should always be on the top.
- Made sure calling publish mutiple times does not re-convert text.
- Made sure calling unpublish without publish does not break.
2013-11-11 21:15:35 +01:00
Stein Magnus Jodal
484efab28e
utils: Remove Python 2.6 workaround
2013-11-10 21:37:53 +01:00
Thomas Adamcik
851cf65328
docs: More review fixes
2013-11-10 13:11:01 +01:00
Thomas Adamcik
d839a0d1ba
local: Fix flake mistakes in scan sub-command.
2013-11-10 13:03:53 +01:00
Thomas Adamcik
4e6ebbe955
local/docs: Update based on review comments
...
- Bunch of typos and wording improvements from review.
- Fixed mopidy.backends.local.scan botched merge.
- Document and enforce that sub-command name needs to be bytes.
2013-11-09 18:20:22 +01:00
Thomas Adamcik
df953ea1e6
Merge branch 'develop' into feature/subcommands
...
Conflicts:
mopidy/scanner.py
2013-11-09 13:40:47 +01:00
Thomas Adamcik
5cd0938e0d
docs: Update changelog with sub-commands work
2013-11-09 13:38:09 +01:00
Thomas Adamcik
3945e437de
docs: Fix minor doc issues found during review
...
- Adds autodoc for mopidy.audio.scan
- Updates ``file://`` to ``local:``
- Minor language fix.
2013-11-09 13:30:27 +01:00
Thomas Adamcik
67c028c31e
docs: Update docs with respect to sub-commands
2013-11-09 13:23:52 +01:00
Lasse Bigum
deb442c54a
Update documentation
2013-11-09 03:10:20 +01:00
Lasse Bigum
2bd1f043ce
Updated code with new multiple artist handling and added tests
2013-11-09 03:01:53 +01:00
Lasse Bigum
8b7621c3e3
Merge branch 'develop' of https://github.com/mopidy/mopidy into feature/extra_tags
2013-11-09 02:37:44 +01:00
Lasse Bigum
c776565f65
Another round of review comments
2013-11-09 01:22:27 +01:00
Thomas Adamcik
51d1e22655
docs: Update changelog for PR #566 and #567
2013-11-08 23:51:45 +01:00
Thomas Adamcik
1a3ff456f9
scanner: Remove old scanner in favour of sub-commands
2013-11-08 23:21:26 +01:00
Thomas Adamcik
b5f8480eea
local: Add 'mopidy scan' command via extension sub-commands.
2013-11-08 23:20:19 +01:00
Thomas Adamcik
2581062ae0
ext/backends: Add extensions to sub commands run
2013-11-08 23:18:26 +01:00
Thomas Adamcik
ef10c2e178
main: Wire in actual execution of sub-commands.
2013-11-08 22:04:26 +01:00
Thomas Adamcik
518cac5eab
ext/backends: Add get_sub_commands and BaseSubCommandProvider
2013-11-08 22:01:18 +01:00
Thomas Adamcik
7144876dc5
main: Move default subparsers into commands module
...
Also switches to using dest for storing the chosen sub-parser.
2013-11-08 22:01:18 +01:00
Lasse Bigum
093c0400a9
Fix review comments
2013-11-08 21:43:31 +01:00
Lasse Bigum
03750a8bf2
Fix scan with multiple track artists and add tests
2013-11-08 21:25:21 +01:00
Thomas Adamcik
25fedc7700
loggin: Add DelayedHandler to root logger.
...
The delayed handler:
- Accepts and buffers logs until they are released.
- Upon release the logs are re-posted to the root logger.
- After release log records are ignored.
This allows us to avoid the silly tricks we've been doing with parsing args and
config early for the sake of bootstraping logging. Now we can just start
logging and once the logging has been setup the messages are released and
handled according to the correct settings.
2013-11-08 19:53:00 +01:00
Thomas Adamcik
4f03677675
main: Improve main bootstrapping sequence
...
- Parses args in two pases to allow for setup of logging well before doing
extension sub-commands.
2013-11-08 19:53:00 +01:00
Thomas Adamcik
9539c2ac35
main: Switch to subcommands
...
- show-deps replaced with 'mopidy deps'
- show-config replaced with 'mopidy config'
- Just running mopidy now displays help, run 'mopidy run' to start server.
2013-11-08 19:53:00 +01:00
Thomas Adamcik
f49973304c
main: Start unifying command handling
...
- Removes show_deps and show_config from commands module. These
are now handled directly in the main() method pending subcommands.
- Unifies show_config with general main() config handling.
- Sets default verbosity level to zero.
- Reduce verbosity when --show-config or --show-deps is called.
- Update console logging to consider verbosity < 0 quiet/
2013-11-08 01:17:52 +01:00
Thomas Adamcik
51b778fcd6
main: Create helper for logging boostraping
2013-11-08 00:59:05 +01:00
Thomas Adamcik
bdba83b1be
main: Move argparse building to a function.
2013-11-08 00:09:17 +01:00
Stein Magnus Jodal
e608f9f213
Merge pull request #567 from adamcik/feature/local-uri-translation
...
local/scanner: Make checking mtime and skipping known files work again
2013-11-07 15:00:17 -08:00
Thomas Adamcik
93918cb1e0
local: flake8 fixes
2013-11-07 23:25:55 +01:00
Stein Magnus Jodal
5b78ff94ff
docs: Remove count from MPD limitations list
2013-11-07 19:33:46 +01:00
Javier Domingo Cansino
71bae709ef
core: filter() to accept also tuples
2013-11-07 11:05:33 +01:00
Javier Domingo Cansino
45a38cdaf1
core: Changing input to accept also sets, as might be also used.
2013-11-07 10:51:29 +01:00
Javier Domingo Cansino
6721a59b26
tests: Fixing self confusion mistake
...
docs: Documenting tracklist's new filter() feature
2013-11-07 09:46:34 +01:00