Commit graph

160 commits

Author SHA1 Message Date
Cédric Carrard
313cdbe082 Merge branch 'master' into master 2017-04-20 13:34:23 +02:00
Alexey Kotlyarov
a98318f5bf Updates for Django 1.10 and 1.11 (#73) 2017-04-20 13:33:28 +02:00
Alexey Kotlyarov
59283a1af4 Update requirements for installation of the example project (#72) 2017-04-20 13:25:38 +02:00
Hopiu
15468ed3d6 urllib3 1.20 bundled with requests 2.13.0 uses loglevel DEBUG instead of INFO for timeout, update expected test output 2017-03-20 23:24:02 +01:00
Benedikt Willi
961363bf24 Use https to query the soundcloud oembed endpoint if is_secure is set on the backend 2017-02-27 15:12:39 +01:00
Cédric Carrard
9f9ed3aeed fix test soundcloud and update docs (#66) 2016-11-14 22:37:51 +01:00
Juda Kaleta
7ce2e56e83 Closes #56. Fix typo. 2016-04-14 11:08:02 +02:00
Juda Kaleta
b6142c2c78 Running on version 1.2.0 2016-01-19 20:15:31 +01:00
Juda Kaleta
259af84fae Publish version 1.1.0 2016-01-19 20:15:04 +01:00
DiogoMarques
d14876cbe1 Fixed south test, only for django < 1.9 2016-01-19 12:14:21 +00:00
DiogoMarques
6573ef549f IssueID #53: Fixed code for get thumbnail from youtube, some fixes to testes about django 1.9.1 2016-01-18 16:03:31 +00:00
DiogoMarques
d234ec5185 Get better resolutions from youtube with fallback for default resolution. 2016-01-18 13:10:02 +00:00
Juda Kaleta
394a037c67 Runninng on 1.1.0-dev 2015-05-01 11:01:19 +02:00
Juda Kaleta
7a21c7dd7f Release 1.0 2015-05-01 10:58:08 +02:00
Juda Kaleta
ec9a746503 Add param types and return to functions 2015-02-21 09:48:52 +01:00
Pat Lynam
943bbcb51c Adding support for Vimeo channels (eg. Staff picks) 2014-12-17 15:24:10 -08:00
Juda Kaleta
09f8aa1779 Test support for Django 1.7 2014-09-26 18:53:43 +02:00
sergiobrr
f5d0427fba Can't resize Soundcloud iframe 2014-08-28 02:16:05 +02:00
Juda Kaleta
316a7def7b Unskip test 2014-07-29 18:32:52 +02:00
Juda Kaleta
5c20fd6348 EMBED_VIDEO_YOUTUBE_DEFAULT_QUERY [skip ci] 2014-07-26 18:01:59 +02:00
Juda Kaleta
07e3e1cae1 Improve docs [skip ci] 2014-07-26 17:57:27 +02:00
Juda Kaleta
68717e07cb Improve docs [skip ci] 2014-07-26 17:38:55 +02:00
Juda Kaleta
9950156aaa Update docs [skip ci] 2014-07-26 16:45:39 +02:00
Juda Kaleta
fad3236a4b Fix tests. 2014-07-26 16:45:36 +02:00
Juda Kaleta
e89a82dac1 Settings options in embed tags 2014-07-26 16:19:10 +02:00
Juda Kaleta
6013055e4c Tests for new functionality 2014-07-26 14:21:58 +02:00
Juda Kaleta
0055677b84 Clean up tests 2014-07-26 14:11:30 +02:00
Juda Kaleta
1b208b9c4f Running on 1.0.0-dev 2014-07-26 13:01:54 +02:00
Juda Kaleta
7db89eb2d4 Change version numbering 2014-07-26 12:46:26 +02:00
Juda Kaleta
49b8429b2c Release 0.11 2014-07-26 12:40:35 +02:00
Juda Kaleta
be87966173 Improve EmbedVideoFormField validation 2014-07-19 10:08:35 +02:00
Juda Kaleta
cf3104421c Catch UnknownIdException, detect video_url in youtube 2014-07-19 09:48:00 +02:00
Rolo
1133071ed1 Change requests.get kwarg from data to params when calling SoundCloud API 2014-06-24 14:28:07 +01:00
Juda Kaleta
a451e148ec Improve regex for YouTube mobile urls + cover with tests 2014-05-31 10:52:08 +02:00
Andrea de Marco
90ba3b0b53 for mobile urls 2014-05-31 10:00:42 +02:00
Juda Kaleta
8b1d2eb3e5 Running on 0.11.dev 2014-05-24 09:33:14 +02:00
Juda Kaleta
bdb09043be Release 0.10 2014-05-24 09:32:05 +02:00
Juda Kaleta
73c4628366 Merge pull request #23 from szuliq/patch-1
Fix string formating
2014-05-24 09:23:59 +02:00
Juda Kaleta
e3f01b0c78 Fix formatting string 2014-05-07 23:10:26 +02:00
Juda Kaleta
2b7308e8ea Clean up imports, codestyle 2014-05-07 22:53:46 +02:00
Juda Kaleta
db11b8c866 Fix sorting query dictionary.
In dict update method, results are ordered differently
in Python version 2 and version 3. Using SortedDict
to have the same behaviour.
2014-05-07 22:51:43 +02:00
Juda Kaleta
43a6f22b7a Fixes #24. 2014-05-07 22:29:19 +02:00
Krzysztof Szularz
a238306391 Fix string formating
There is a lot of spaces in this error message.

By the way: this is never raised in normal condition. The `detect_backend` doesn't try to `get_code()` at all.
2014-05-06 17:58:23 +02:00
Brad Buran
5ebea38220 Updated video template tag to accept kwargs
Some video backends support optional arguments embedded in the URL query
string that adjust how the video is displayed (e.g. Youtube supports
rel=0 which means don't show related videos).  Updated the template tag
to accept optional KEY=VALUE pairs that will be added onto the embedded
URL as a query string.  Also added support for specifying default query
strings on a per-backend basis (e.g. so that all YouTube urls have
?rel=0 added to the end).

Added appropriate tests and documentation.
2014-05-01 07:17:53 -04:00
Juda Kaleta
42e11aaba3 Running on 0.10.dev 2014-04-04 20:29:50 +02:00
Juda Kaleta
7794d6222b Release 0.9 2014-04-04 20:27:07 +02:00
Juda Kaleta
820541cc15 Catch VideoDoesntExistException in admin widget 2014-04-04 20:10:32 +02:00
Juda Kaleta
73341e909c Fix VimeoBackendTestCase.test_get_thumbnail_url 2014-04-04 19:51:48 +02:00
Juda Kaleta
25f88793e2 Add tests for embed_video.fields 2014-03-24 19:43:42 +01:00
Juda Kaleta
b549271d1a Fixes #21. Handle invalid SoundCloud urls 2014-03-24 17:25:33 +01:00