Python xbmcplugin.SORT_METHOD_DATE Examples
The following are 9
code examples of xbmcplugin.SORT_METHOD_DATE().
You can vote up the ones you like or vote down the ones you don't like,
and go to the original project or source file by following the links above each example.
You may also want to check out all available functions/classes of the module
xbmcplugin
, or try the search function
.
Example #1
Source File: main.py From plugin.video.auvio with GNU General Public License v3.0 | 6 votes |
def menu_live(params): listing = [] live_medias = api.get_live_videos() if live_medias and len(live_medias): for live_media in live_medias: li = media_to_kodi_item(live_media) listing.append(li) # Item label sortable_by = (xbmcplugin.SORT_METHOD_DATE, xbmcplugin.SORT_METHOD_DURATION) return common.plugin.create_listing( listing, succeeded = True, #if False Kodi won’t open a new listing and stays on the current level. #update_listing = False, #if True, Kodi won’t open a sub-listing but refresh the current one. #cache_to_disk = True, #cache this view to disk. #sort_methods = sortable_by, #he list of integer constants representing virtual folder sort methods. #view_mode = None, #a numeric code for a skin view mode. View mode codes are different in different skins except for 50 (basic listing). #content = None #string - current plugin content, e.g. ‘movies’ or ‘episodes’. )
Example #2
Source File: main.py From plugin.video.auvio with GNU General Public License v3.0 | 6 votes |
def menu_homepage(params): listing = [] sid = '3669' #home sidebar sidebar_listing = get_sidebar_listing(sid) listing += sidebar_listing sortable_by = (xbmcplugin.SORT_METHOD_DATE, xbmcplugin.SORT_METHOD_DURATION) return common.plugin.create_listing( listing, succeeded = True, #if False Kodi won’t open a new listing and stays on the current level. #update_listing = False, #if True, Kodi won’t open a sub-listing but refresh the current one. #cache_to_disk = True, #cache this view to disk. #sort_methods = sortable_by, #he list of integer constants representing virtual folder sort methods. #view_mode = None, #a numeric code for a skin view mode. View mode codes are different in different skins except for 50 (basic listing). #content = None #string - current plugin content, e.g. ‘movies’ or ‘episodes’. )
Example #3
Source File: filmui.py From plugin.video.mediathekview with MIT License | 6 votes |
def __init__(self, plugin, sortmethods=None): Film.__init__(self) self.plugin = plugin self.handle = plugin.addon_handle self.settings = Settings() # define sortmethod for films # all av. sort method and put the default sortmethod on first place to be used by UI allSortMethods = [ xbmcplugin.SORT_METHOD_TITLE, xbmcplugin.SORT_METHOD_DATE, xbmcplugin.SORT_METHOD_DATEADDED, xbmcplugin.SORT_METHOD_SIZE, xbmcplugin.SORT_METHOD_DURATION ] if sortmethods is not None: self.sortmethods = sortmethods else: method = allSortMethods[0] allSortMethods[0] = allSortMethods[self.settings.filmSortMethod] allSortMethods[self.settings.filmSortMethod]=method self.sortmethods = allSortMethods self.showshows = False self.showchannels = False
Example #4
Source File: xbmcUtils.py From filmkodi with Apache License 2.0 | 6 votes |
def setSortMethodsForCurrentXBMCList(handle, sortKeys): def addSortMethod(method): xbmcplugin.addSortMethod(handle = handle, sortMethod = method) if not sortKeys or sortKeys==[]: addSortMethod(xbmcplugin.SORT_METHOD_UNSORTED) else: if 'name' in sortKeys: addSortMethod(xbmcplugin.SORT_METHOD_LABEL) if 'size' in sortKeys: addSortMethod(xbmcplugin.SORT_METHOD_SIZE) if 'duration' in sortKeys: addSortMethod(xbmcplugin.SORT_METHOD_DURATION) if 'genre' in sortKeys: addSortMethod(xbmcplugin.SORT_METHOD_GENRE) if 'rating' in sortKeys: addSortMethod(xbmcplugin.SORT_METHOD_VIDEO_RATING) if 'date' in sortKeys: addSortMethod(xbmcplugin.SORT_METHOD_DATE) if 'file' in sortKeys: addSortMethod(xbmcplugin.SORT_METHOD_FILE)
Example #5
Source File: xbmcUtils.py From filmkodi with Apache License 2.0 | 6 votes |
def setSortMethodsForCurrentXBMCList(handle, sortKeys): def addSortMethod(method): xbmcplugin.addSortMethod(handle = handle, sortMethod = method) if not sortKeys or sortKeys==[]: addSortMethod(xbmcplugin.SORT_METHOD_UNSORTED) else: if 'name' in sortKeys: addSortMethod(xbmcplugin.SORT_METHOD_LABEL) if 'size' in sortKeys: addSortMethod(xbmcplugin.SORT_METHOD_SIZE) if 'duration' in sortKeys: addSortMethod(xbmcplugin.SORT_METHOD_DURATION) if 'genre' in sortKeys: addSortMethod(xbmcplugin.SORT_METHOD_GENRE) if 'rating' in sortKeys: addSortMethod(xbmcplugin.SORT_METHOD_VIDEO_RATING) if 'date' in sortKeys: addSortMethod(xbmcplugin.SORT_METHOD_DATE) if 'file' in sortKeys: addSortMethod(xbmcplugin.SORT_METHOD_FILE)
Example #6
Source File: addon.py From Kodi with GNU Lesser General Public License v3.0 | 5 votes |
def kodi_draw_list(parts, rows): for row in rows: xbmcplugin.addDirectoryItem(*row.item(parts)) xbmcplugin.addSortMethod(h, xbmcplugin.SORT_METHOD_UNSORTED) xbmcplugin.addSortMethod(h, xbmcplugin.SORT_METHOD_LABEL) xbmcplugin.addSortMethod(h, xbmcplugin.SORT_METHOD_VIDEO_RATING) xbmcplugin.addSortMethod(h, xbmcplugin.SORT_METHOD_VIDEO_YEAR) xbmcplugin.addSortMethod(h, xbmcplugin.SORT_METHOD_DATE) xbmcplugin.setContent(h, 'files') xbmcplugin.endOfDirectory(h)
Example #7
Source File: addon.py From script.module.clouddrive.common with GNU General Public License v3.0 | 5 votes |
def __init__(self): self._addon = KodiUtils.get_addon() self._addonid = self._addon.getAddonInfo('id') self._addon_name = self._addon.getAddonInfo('name') self._addon_url = sys.argv[0] self._addon_version = self._addon.getAddonInfo('version') self._common_addon_id = 'script.module.clouddrive.common' self._common_addon = KodiUtils.get_addon(self._common_addon_id) self._common_addon_version = self._common_addon.getAddonInfo('version') self._dialog = xbmcgui.Dialog() self._profile_path = Utils.unicode(KodiUtils.translate_path(self._addon.getAddonInfo('profile'))) self._progress_dialog = DialogProgress(self._addon_name) self._progress_dialog_bg = DialogProgressBG(self._addon_name) self._export_progress_dialog_bg = DialogProgressBG(self._addon_name) self._system_monitor = KodiUtils.get_system_monitor() self._account_manager = AccountManager(self._profile_path) self._pin_dialog = None self.iskrypton = KodiUtils.get_home_property('iskrypton') == 'true' if len(sys.argv) > 1: self._addon_handle = int(sys.argv[1]) self._addon_params = urlparse.parse_qs(sys.argv[2][1:]) for param in self._addon_params: self._addon_params[param] = self._addon_params.get(param)[0] self._content_type = Utils.get_safe_value(self._addon_params, 'content_type') if not self._content_type: wid = xbmcgui.getCurrentWindowId() if wid == 10005 or wid == 10500 or wid == 10501 or wid == 10502: self._content_type = 'audio' elif wid == 10002: self._content_type = 'image' else: self._content_type = 'video' xbmcplugin.addSortMethod(handle=self._addon_handle, sortMethod=xbmcplugin.SORT_METHOD_LABEL) xbmcplugin.addSortMethod(handle=self._addon_handle, sortMethod=xbmcplugin.SORT_METHOD_UNSORTED ) xbmcplugin.addSortMethod(handle=self._addon_handle, sortMethod=xbmcplugin.SORT_METHOD_SIZE ) xbmcplugin.addSortMethod(handle=self._addon_handle, sortMethod=xbmcplugin.SORT_METHOD_DATE ) xbmcplugin.addSortMethod(handle=self._addon_handle, sortMethod=xbmcplugin.SORT_METHOD_DURATION )
Example #8
Source File: addon.py From plugin.git.browser with GNU General Public License v3.0 | 5 votes |
def set_view(view_id, content=None): if content is not None: xbmcplugin.setContent(HANDLE_ID, content) xbmc.executebuiltin("Container.SetViewMode(%s)" % view_id) xbmcplugin.addSortMethod( handle=HANDLE_ID, sortMethod=xbmcplugin.SORT_METHOD_UNSORTED ) xbmcplugin.addSortMethod( handle=HANDLE_ID, sortMethod=xbmcplugin.SORT_METHOD_LABEL ) xbmcplugin.addSortMethod( handle=HANDLE_ID, sortMethod=xbmcplugin.SORT_METHOD_VIDEO_RATING ) xbmcplugin.addSortMethod( handle=HANDLE_ID, sortMethod=xbmcplugin.SORT_METHOD_DATE ) xbmcplugin.addSortMethod( handle=HANDLE_ID, sortMethod=xbmcplugin.SORT_METHOD_PROGRAM_COUNT ) xbmcplugin.addSortMethod( handle=HANDLE_ID, sortMethod=xbmcplugin.SORT_METHOD_VIDEO_RUNTIME ) xbmcplugin.addSortMethod( handle=HANDLE_ID, sortMethod=xbmcplugin.SORT_METHOD_GENRE )
Example #9
Source File: main.py From plugin.video.iptv.recorder with GNU General Public License v3.0 | 4 votes |
def recordings(): dir = plugin.get_setting('recordings') found_files = find_files(dir) items = [] starts = [] for path in found_files: try: json_file = path[:-3]+'.json' info = json.loads(xbmcvfs.File(json_file).read()) programme = info["programme"] title = programme['title'] sub_title = programme['sub_title'] or '' episode = programme['episode'] date = "(%s)" % programme['date'] or '' start = programme['start'] starts.append(start) if episode and episode != "MOVIE": label = "%s [COLOR grey]%s[/COLOR] %s" % (title, episode, sub_title) elif episode == "MOVIE": label = "%s %s" % (title,date) else: label = "%s %s" % (title, sub_title) description = programme['description'] except: label = os.path.splitext(os.path.basename(path))[0] description = "" starts.append("0") label = urllib.unquote_plus(label) label = label.decode("utf8") context_items = [] context_items.append((_("Delete Recording"), 'XBMC.RunPlugin(%s)' % (plugin.url_for(delete_recording, label=label.encode("utf8"), path=path)))) context_items.append((_("Delete All Recordings"), 'XBMC.RunPlugin(%s)' % (plugin.url_for(delete_all_recordings)))) if plugin.get_setting('external.player'): context_items.append((_("External Player"), 'XBMC.RunPlugin(%s)' % (plugin.url_for(play_external, path=path)))) #context_items.append((_("Convert to mp4"), 'XBMC.RunPlugin(%s)' % (plugin.url_for(convert, path=path)))) items.append({ 'label': label, 'path': path, 'is_playable': True, 'context_menu': context_items, 'info_type': 'Video', 'info':{"title": label, "plot":description}, }) xbmcplugin.addSortMethod( handle=int( sys.argv[ 1 ] ), sortMethod=xbmcplugin.SORT_METHOD_UNSORTED ) xbmcplugin.addSortMethod( handle=int( sys.argv[ 1 ] ), sortMethod=xbmcplugin.SORT_METHOD_LABEL ) xbmcplugin.addSortMethod( handle=int( sys.argv[ 1 ] ), sortMethod=xbmcplugin.SORT_METHOD_DATE ) start_items = zip(starts,items) start_items.sort(reverse=True) items = [x for y, x in start_items] return sorted(items, key=lambda k: k['label'].lower())