コード例 #1
0
ファイル: DP_About.py プロジェクト: jbollacke/DreamPlex
	def getLeftText(self):
		printl("", self, "S")
		
		content = ""
		content += "Information\n\n"
		content += "DreamPlex - a plex client for Enigma2 \n" 
		content += "Version: \t" + getVersion() + "\n\n"
		content += "Author: \t DonDavici\n"
		content += "\n"
		content += "Skin: \t" + getSkinAuthors() + "\n"
		content += "\n"
		content += "Contributors: \t wezhunter\n"
		content += "\t andyblac \n"
		content += "\t rossi2000 \n"
		content += "\n\nIf you like my work you can buy me a beer :-) \n\[email protected]"
		
		printl("", self, "C")
		return content
コード例 #2
0
    def getLeftText(self):
        printl("", self, "S")

        if config.plugins.dreamplex.remoteAgent.value:
            state, information = getHttpDeamonInformation()

        content = ""
        content += "Information\n\n"
        content += "DreamPlex - a plex client for Enigma2 \n"
        content += "Version: \t" + getVersion() + "\n\n"
        content += "Author: \t DonDavici\n"
        content += "\n"
        content += "Skin: \t" + getSkinAuthors() + "\n"
        content += "\n"
        content += "Contributors: \t wezhunter\n"
        content += "\t andyblac \n"
        content += "\t rossi2000 \n"
        content += "\n\nIf you like my work you can buy me a beer :-) \n\[email protected]"

        if config.plugins.dreamplex.remoteAgent.value:
            content += "\n\nRemotePlayer: " + str(information)

        printl("", self, "C")
        return content
コード例 #3
0
ファイル: DP_About.py プロジェクト: DonDavici/DreamPlex
	def getLeftText(self):
		printl("", self, "S")

		if config.plugins.dreamplex.remoteAgent.value:
			state, information = getHttpDeamonInformation()
		
		content = ""
		content += "Information\n\n"
		content += "DreamPlex - a plex client for Enigma2 \n" 
		content += "Version: \t" + getVersion() + "\n\n"
		content += "Author: \t DonDavici\n"
		content += "\n"
		content += "Skin: \t" + getSkinAuthors() + "\n"
		content += "\n"
		content += "Contributors: \t wezhunter\n"
		content += "\t andyblac \n"
		content += "\t rossi2000 \n"
		content += "\n\nIf you like my work you can buy me a beer :-) \n\[email protected]"

		if config.plugins.dreamplex.remoteAgent.value:
			content += "\n\nRemotePlayer: " + str(information)

		printl("", self, "C")
		return content