summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rwxr-xr-xsrc/YalpClients/EflClient/main.py7
-rwxr-xr-xsrc/YalpClients/EflClient/media.py1
-rwxr-xr-xsrc/YalpClients/EflClient/medialist.py3
-rwxr-xr-xsrc/YalpClients/EflClient/playlist.py1
4 files changed, 1 insertions, 11 deletions
diff --git a/src/YalpClients/EflClient/main.py b/src/YalpClients/EflClient/main.py
index 973f287..eef1ebf 100755
--- a/src/YalpClients/EflClient/main.py
+++ b/src/YalpClients/EflClient/main.py
@@ -9,7 +9,7 @@ import emotion
import evas
import elementary
-#imort own Classes
+#import own Classes
import searchframe
import medialist
import playlist
@@ -26,19 +26,14 @@ def gui():
win.title_set("YALP")
win.autodel_set(True)
- #win.destroy = destroy
- #vid = emotion.Emotion(win.canvas,module_filename="xine");
edje_file = os.path.join(os.path.dirname(sys.argv[0]),"yalp_gui.edj")
c = edje.Edje(win.canvas, file=edje_file, group = "yalp")
s = searchframe.Search(win, c)
- #video = playlist.Selection(win, c, vid)
-
c.show()
win.resize(480,620)
win.show()
- #ecore.main_loop_begin();
elementary.run();
print "quit main loop"
elementary.shutdown();
diff --git a/src/YalpClients/EflClient/media.py b/src/YalpClients/EflClient/media.py
index 871369e..0e06814 100755
--- a/src/YalpClients/EflClient/media.py
+++ b/src/YalpClients/EflClient/media.py
@@ -17,4 +17,3 @@ class Media(object):
songlist = []
songlist.append(self.result)
self.video.set_stream(songlist, self.servercon)
-
diff --git a/src/YalpClients/EflClient/medialist.py b/src/YalpClients/EflClient/medialist.py
index 9943798..dc75e4f 100755
--- a/src/YalpClients/EflClient/medialist.py
+++ b/src/YalpClients/EflClient/medialist.py
@@ -24,7 +24,4 @@ class Medialist(object):
self.medialist.item_append(media.result.name, None, None, media.callback)
self.medialist.show()
self.medialist.go()
- #video = playlist.Selection(self.win, self.c, stream)
- #video = playlist.Selection(self.win, self.c)
- #video.add_button()
diff --git a/src/YalpClients/EflClient/playlist.py b/src/YalpClients/EflClient/playlist.py
index 484872f..234994f 100755
--- a/src/YalpClients/EflClient/playlist.py
+++ b/src/YalpClients/EflClient/playlist.py
@@ -48,7 +48,6 @@ class Selection(object):
print "stream from", ip, port
self.vid.file_set("http://"+ip+":"+str(port))
- #self.vid.file_set("/home/manut/test.avi")
print "self.vid", self.vid
self.c.part_swallow("video", self.vid)
self.vid.show()