Tristan Fischer
Tristan Fischer
I'm not sure if this is something you/we really want, so I only updated the code. If you like it, I can add tests and update the docs. With this...
This is more a draft/idea than a full PR. Problem is, when you have a view with multiple URLs but want to add pagination you need to know the actual...
The pip package is named "virtualenvwrapper", not "virtualenv-wrapper".
... instead of "list of two-element-length-tuples containing label and action" ;) This would improve readability and would make it easier for beginners. Also this is a good place to use...
See http://forum.xbmc.org/showthread.php?tid=163023&pid=1403486#pid1403486 (and following replies) and https://github.com/xbmc/xbmc/pull/2643. Goal is to have get_language() already available in Frodo via xbmcswift2 (maybe in swift 3.1 or 2.5?) with a seamless switch to Gotham's...
Like discussed on IRC. Example: ``` /cached_route/?refresh_cache=true /cached_route/?bypass_cache=true ``` Which would result in ``` python @plugin.cached_route('/cached_route/', TTL=600) def get_foo(): return api.get_stuff() ``` returning fresh data, even when TTL is not...
See http://forum.xbmc.org/showthread.php?tid=119362&pid=1345025#pid1345025
There are some xbmc methods which obviously never will be implemented in the CLI because they are just unneeded. Examples: ``` WARNING - [xbmcswift2] The setResolvedUrl method has not been...