Beispiel #1
0
def ListMovies(ex_link, page):
    filmy, pagination = cdaonline.scanMainpage(ex_link, int(page))
    print '$$$$$$$$$$$$$$$$$$$$$$', filmy
    if pagination[0]:
        addLinkItem(name='[COLOR blue]<< poprzednia strona <<[/COLOR]',
                    url=ex_link,
                    mode='__page__M',
                    page=pagination[1],
                    IsPlayable=False)
    items = len(filmy)

    for f in filmy:
        addLinkItem(name=f.get('title'),
                    url=f.get('href'),
                    mode='getLinks',
                    iconimage=f.get('img'),
                    infoLabels=f,
                    IsPlayable=True,
                    itemcount=items)
    if pagination[1]:
        addLinkItem(name='[COLOR blue]>> następna strona >>[/COLOR]',
                    url=ex_link,
                    mode='__page__M',
                    page=pagination[1],
                    IsPlayable=False)
Beispiel #2
0
def ListMovies(ex_link,page):
    filmy,pagination = cdaonline.scanMainpage(ex_link,int(page))
    if pagination[0]:
        addLinkItem(name='[COLOR blue]<< poprzednia strona <<[/COLOR]', url=ex_link, mode='__page__M', page=pagination[1], IsPlayable=False)
    items=len(filmy)
    for f in filmy:
        addLinkItem(name=f.get('title'), url=f.get('href'), mode='getLinks', iconimage=f.get('img'), infoLabels=f, IsPlayable=True,itemcount=items)
    if pagination[1]:
        addLinkItem(name='[COLOR blue]>> nastepna strona >>[/COLOR]', url=ex_link, mode='__page__M', page=pagination[1], IsPlayable=False)
Beispiel #3
0
Datei: main.py Projekt: Swir/kodi
def ListSeriale(ex_link,page):
    filmy,pagination = cdaonline.scanMainpage(ex_link,int(page))
    if pagination[0]:
        addLinkItem(name='[COLOR blue]<< poprzednia strona <<[/COLOR]', url=ex_link, mode='__page__S', page=pagination[1], IsPlayable=False)
    items=len(filmy)
    for f in filmy:
        addDir(name=f.get('title'), ex_link=f.get('href'), mode='getEpisodes', iconImage=f.get('img'), infoLabels=f)
    if pagination[1]:
        addLinkItem(name='[COLOR blue]>> nastepna strona >>[/COLOR]', url=ex_link, mode='__page__S', page=pagination[1], IsPlayable=False)
Beispiel #4
0
def ListSeriale(ex_link,page):
    filmy,pagination = cdaonline.scanMainpage(ex_link,int(page))
    if pagination[0]:
        addLinkItem(name='[COLOR blue]<< poprzednia strona <<[/COLOR]', url=ex_link, mode='__page__S', page=pagination[1], IsPlayable=False)
    items=len(filmy)
    for f in filmy:
        addDir(name=f.get('title'), ex_link=f.get('href'), mode='getEpisodes', iconImage=f.get('img'), infoLabels=f)
    if pagination[1]:
        addLinkItem(name='[COLOR blue]>> nastepna strona >>[/COLOR]', url=ex_link, mode='__page__S', page=pagination[1], IsPlayable=False)