Adrian Sampson
38eecb93c9
Merge pull request #1237 from andremiller/master
...
Support for CORS
2015-01-20 14:02:27 -08:00
Andre Miller
5cf869e0f8
Updated web documentation for CORS
2015-01-20 20:52:24 +02:00
Malte Ried
a62a152010
Moved the regular expression file filter into a separate plugin.
2015-01-20 19:50:00 +01:00
Adrian Sampson
293e2512ed
Imported count: sensitive to plugin skips
...
Regression from b7125e4343 pointed out by
@mried.
2015-01-20 09:55:56 -08:00
Andre Miller
f815138758
Combined cors and cors_origin config options into one
2015-01-20 19:53:04 +02:00
Bruno Cauet
d6a4046245
Avoid stacking logger prefixes
2015-01-20 17:34:01 +01:00
Andre Miller
47ea4b7d8b
flake8 formatting updates
2015-01-20 16:06:16 +02:00
Andre Miller
f47be23658
CORS support now uses flask-cor extension
2015-01-20 15:33:33 +02:00
Andre Miller
c8880de52c
Fixes for flake8 validation
2015-01-20 00:38:26 +02:00
Andre Miller
bd63e1e386
Made CORS configurable and changed host default to 127.0.0.1
2015-01-20 00:20:26 +02:00
Frederik “Freso” S. Olesen
4d904e20cf
changelog: Combine the two lastgenre genre addition entries.
...
See https://botbot.me/freenode/beets/msg/29935738/
2015-01-19 18:44:31 +01:00
Frederik “Freso” S. Olesen
cd1564f584
changelog: Move lastgenre genre additions to "Features".
...
See https://botbot.me/freenode/beets/msg/29935738/
2015-01-19 18:42:40 +01:00
Bruno Cauet
b436e75a9e
embedart: fix behaviour on IM unparseable output, add tests
...
Test all EmbedCoverArtPlugin.check_art_similarity() code paths.
Improve #1241 .
2015-01-19 11:50:51 +01:00
Frederik “Freso” S. Olesen
29739dbe04
Move autotag.mb.SEARCH_LIMIT to configuration.
...
Merge branch 'search-limit-in-config'
From pull request #1245 by @Freso.
2015-01-19 11:46:05 +01:00
Frederik “Freso” S. Olesen
20213c8916
Add changelog entry for new musicbrainz.searchlimit option.
2015-01-19 11:44:16 +01:00
Bruno Cauet
d5e3ff2f48
Improve repr(ConfigView): fix class name displayed
...
Use config.__class__.__name__ instead of "ConfigView" in __repr__().
Before:
>>> from beets import ui
>>> c
<ConfigView: root>
>>> c['foo']
<ConfigView: foo>
After:
>>> from beets import ui
>>> c
<LazyConfig: root>
>>> c['foo']
<Subview: foo>
2015-01-19 10:42:00 +01:00
Bruno Cauet
70ef96d565
Make list(ui.config) raise a TypeError
...
As per PEP234 (https://www.python.org/dev/peps/pep-0234/ ) if an object
has __getitem__() but not __iter__() then the former will be used to
build an iterable, invoking it with 0, then 1, ... until a KeyError is
raised. Lazy configuration makes it never happen, and list(config) runs
indefinitely, hogging all memory.
Implement __iter__(), which raises a TypeError, to solve that problem.
2015-01-19 10:35:32 +01:00
Frederik “Freso” S. Olesen
ad00c5dc7b
docs: Fix hyperlink targets.
...
I inserted musicbrainz.searchlimit at the wrong place, breaking the
hyperlink target `match-config` - and I also forgot to add a hyperlink
target for `searchlimit`.
2015-01-19 02:24:32 +01:00
Frederik “Freso” S. Olesen
7c429e8c58
docs: New entry for musicbrainz.searchlimit config option.
2015-01-19 02:19:43 +01:00
Frederik “Freso” S. Olesen
cef0d2cfd7
autotag: Move mb.SEARCH_LIMIT to configuration.
2015-01-19 02:15:27 +01:00
Adrian Sampson
f346853710
embedart: Do not use shell for subprocess
...
This avoids bugs when the filename contains spaces, etc.
Pinging @Kraymer: I gave this a brief test, but can you check whether I messed
anything up more subtly?
Came up when looking at #1241 .
2015-01-18 16:25:23 -08:00
Adrian Sampson
909c96b060
embedart: Handle unparseable IM output ( #1241 )
2015-01-18 16:18:22 -08:00
Adrian Sampson
dc5a79e35c
New import_task_created event
...
Part of #1186 .
2015-01-18 15:37:48 -08:00
Adrian Sampson
f145e3b184
More comment cleanup
...
It has been a while since I have looked at these, and many of the FIXMEs no
longer make sense to me. Better to open issues if there's really something to
fix.
2015-01-18 14:58:08 -08:00
Frederik “Freso” S. Olesen
167abda752
Merge branch 'master' of https://github.com/sampsyo/beets
...
Conflicts:
docs/changelog.rst
2015-01-18 23:05:23 +01:00
Frederik “Freso” S. Olesen
5060fc34ea
Changelog for classical genres in lastgenre plugin.
2015-01-18 23:03:50 +01:00
Adrian Sampson
9352927a0f
Merge branch 'master' of github.com:sampsyo/beets
2015-01-18 14:00:37 -08:00
Frederik “Freso” S. Olesen
6031cab891
lastgenre: Add "mass" to the classical genre tree.
2015-01-18 23:00:27 +01:00
Frederik “Freso” S. Olesen
61797e7a74
lastgenre: Add classical music.
...
Merge branch 'Horla-master'
From pull request #1240 by @Horla. Fixes #1239 .
2015-01-18 22:54:19 +01:00
Adrian Sampson
90e4a78d94
Move archive logic to ImportTaskFactory
...
Also move sentinel generation there.
2015-01-18 13:46:56 -08:00
Horla
587ff39f22
Update genres-tree.yaml
...
Removing "classic"
2015-01-18 22:46:40 +01:00
Horla
8ed9e50e18
Update genres-tree.yaml
...
Changing "classic" to "classical"
2015-01-18 22:27:34 +01:00
Horla
3fdc5c936e
Update genres.txt
...
Add classical subgenres
2015-01-18 22:13:36 +01:00
Horla
3a3150b740
Update genres-tree.yaml
...
Add classic genre with its subgenres
2015-01-18 22:11:01 +01:00
Adrian Sampson
b7125e4343
Centralize some counting in ImportTaskFactory
...
Part of a larger effort to simplify read_tasks for plugin interposition
(#1186 ).
2015-01-18 13:03:36 -08:00
Malte Ried
0afe0a60a1
Instead of using the list of archive tasks for further importing, only the fist task was used - which is not iterable, of course.
2015-01-18 19:16:51 +01:00
Malte Ried
c91f7f7795
Archive tasks may be a list of tasks instead of a single task now
2015-01-18 19:07:20 +01:00
Malte Ried
0eb185a5e7
Merge branch 'master' into import-filefilter
2015-01-18 18:55:24 +01:00
Andre Miller
9fe2bc1a38
Support for CORS
2015-01-18 10:23:49 +02:00
Adrian Sampson
4169da3dd1
Fix "skipped N directories" message
2015-01-17 19:05:00 -08:00
Adrian Sampson
8a60875086
More docstring fixes in ImportTaskFactory
2015-01-17 19:01:15 -08:00
Adrian Sampson
b273be9d59
Event handlers can now return values
...
Part of #1186 , which I hope to break into smaller pieces.
2015-01-17 18:39:56 -08:00
Adrian Sampson
c392932a92
Improve some docstrings
2015-01-17 18:30:47 -08:00
Adrian Sampson
6f2d9845b5
Add an assertion for summarize_items ( #1232 )
2015-01-17 14:20:53 -08:00
Adrian Sampson
bf02855ee1
Remove Beatport plugin (c.f. #1229 )
2015-01-16 12:15:54 -08:00
Bruno Cauet
7c2d5f0948
Import beets.ui in discogs plugin
...
The discogs plugin uses beets.ui but did not explicitely import it,
which might cause it to crash when used in standalone.
2015-01-16 17:59:35 +01:00
Bruno Cauet
d2726e1c25
Fix mpdstats plugin config management
...
Fix #1228 :
- remove erroneous calls to `self.config`
- always use `config['mpd']` and not `self.config` (which is
config['mpdstats']) to match the doc
2015-01-16 11:08:24 +01:00
Adrian Sampson
6fb3b24c31
Merge pull request #1221 from brunal/crash-on-invalid-queries
...
Stop on invalid queries instead of ignoring them
2015-01-15 10:50:05 -08:00
Bruno Cauet
08c9ad43fa
Document the new behaviour in docstrings & changelog
2015-01-15 11:55:42 +01:00
Bruno Cauet
f4b4847919
Rename exception: InvalidQuery → InvalidQueryError
...
Follow PEP8.
2015-01-15 11:47:35 +01:00