forked from jbeluch/xbmcswift2-xbmc-dist
-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[xbmcswift2-release-script] prepare release 2.4.0
- Loading branch information
Showing
10 changed files
with
285 additions
and
50 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,27 @@ | ||
''' | ||
xbmcswift2.actions | ||
------------------ | ||
This module contains wrapper functions for XBMC built-in functions. | ||
:copyright: (c) 2012 by Jonathan Beluch | ||
:license: GPLv3, see LICENSE for more details. | ||
''' | ||
|
||
|
||
def background(url): | ||
'''This action will run an addon in the background for the provided URL. | ||
See 'XBMC.RunPlugin()' at | ||
http://wiki.xbmc.org/index.php?title=List_of_built-in_functions. | ||
''' | ||
return 'XBMC.RunPlugin(%s)' % url | ||
|
||
|
||
def update_view(url): | ||
'''This action will update the current container view with provided url. | ||
See 'XBMC.Container.Update()' at | ||
http://wiki.xbmc.org/index.php?title=List_of_built-in_functions. | ||
''' | ||
return 'XBMC.Container.Update(%s)' % url |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.