Exemplo n.º 1
0
	def __init__(self, session, url=None):
		'''
		'''
		printl ("", self, "S")
		
		DP_LibMain.__init__(self, session, "tv shows")
		self.g_url = url
		
		printl ("", self, "C")
Exemplo n.º 2
0
    def __init__(self, session, url=None):
        '''
		'''
        printl("", self, "S")

        DP_LibMain.__init__(self, session, "tv shows")
        self.g_url = url

        printl("", self, "C")
Exemplo n.º 3
0
	def __init__(self, session, url=None, uuid=None, source=None):
		printl ("", self, "S")
		
		DP_LibMain.__init__(self, session, "movies")
		
		self.g_url = url
		self.g_uuid = uuid
		self.g_source = source
		
		printl ("", self, "C")
Exemplo n.º 4
0
	def __init__(self, session, url=None, showEpisodesDirectly=False):
		'''
		we use showEpisodesDirectly for the onDeck functions that forces us to jump directly to episodes
		'''
		printl ("", self, "S")
		
		DP_LibMain.__init__(self, session, "tv shows")
		self.g_url = url
		self.showEpisodesDirectly = showEpisodesDirectly
		
		printl ("", self, "C")
Exemplo n.º 5
0
    def __init__(self, session, url=None, showEpisodesDirectly=False):
        '''
		we use showEpisodesDirectly for the onDeck functions that forces us to jump directly to episodes
		'''
        printl("", self, "S")

        DP_LibMain.__init__(self, session, "music")
        self.g_url = url
        self.showEpisodesDirectly = showEpisodesDirectly

        printl("", self, "C")
Exemplo n.º 6
0
    def __init__(self, session, url=None, showEpisodesDirectly=False, uuid=None, source=None):
        """
		we use showEpisodesDirectly for the onDeck functions that forces us to jump directly to episodes
		"""
        printl("", self, "S")

        DP_LibMain.__init__(self, session, "tvshows")
        self.g_url = url
        self.showEpisodesDirectly = showEpisodesDirectly
        self.g_uuid = uuid
        self.g_source = source

        printl("", self, "C")