changeset 47:1ae315a49009 pure

Removed references to XMMS
author Josef "Jeff" Sipek <jeffpc@josefsipek.net>
date Mon, 06 Nov 2006 05:25:05 -0500
parents 2d570448aba5
children 3eee483b5c4e
files README vixm/control.py vixm/main.py
diffstat 3 files changed, 10 insertions(+), 10 deletions(-) [+]
line wrap: on
line diff
--- a/README	Mon Nov 06 05:19:23 2006 -0500
+++ b/README	Mon Nov 06 05:25:05 2006 -0500
@@ -5,11 +5,11 @@
 
 1) Priority playlist: initially empty
 
-2) Default playlist: initial contents are loaded from XMMS's playlist
+2) Default playlist: initial contents are loaded from a playlist (file)
 
 When a new song is about to be played, the priority playlist is checked. If
 there is a song, it is dequeued off the list and played. If the playlist is
-empty, nothing is done - XMMS just played another song.
+empty, a song is chosed from the default queue.
 
 One uses the 'a' and 'd' commands to append (enqueue) and delete (dequeue)
 songs from the priority lists. For exact command syntax see the 'h' command
@@ -19,7 +19,7 @@
 
 jeffpc@batlh:~$ vixm
 Creating playlists...
-Loading songs from XMMS's playlist...
+Loading songs from the playlist...
 Instanciating ui thread...
 /starship
 Seaching list 0 for 'starship':
--- a/vixm/control.py	Mon Nov 06 05:19:23 2006 -0500
+++ b/vixm/control.py	Mon Nov 06 05:25:05 2006 -0500
@@ -125,27 +125,27 @@
 
 def cmd_play(ui, start, stop, args):
 	"""x
-		- Direct XMMS control: play"""
+		- Direct control: play"""
 	print "Play not implemented"
 
 def cmd_pause(ui, start, stop, args):
 	"""c
-		- Direct XMMS control: pause"""
+		- Direct control: pause"""
 	print "Pause not implemented"
 
 def cmd_stop(ui, start, stop, args):
 	"""v
-		- Direct XMMS control: stop"""
+		- Direct control: stop"""
 	print "Stop not implemented"
 
 def cmd_prev(ui, start, stop, args):
 	"""z
-		- Direct XMMS control: previous song"""
+		- Direct control: previous song"""
 	print "Previous song not implemented"
 
 def cmd_next(ui, start, stop, args):
 	"""b
-		- Direct XMMS control: next song"""
+		- Direct control: next song"""
 	ui.play.play_next(ui.lists)
 
 def cmd_shell(ui, start, stop, args):
--- a/vixm/main.py	Mon Nov 06 05:19:23 2006 -0500
+++ b/vixm/main.py	Mon Nov 06 05:25:05 2006 -0500
@@ -12,8 +12,8 @@
 	lists[playlist.LIST_PRIO]	= playlist.playlist()
 	lists[playlist.LIST_DEFAULT]	= playlist.playlist(allowrandom=True)
 
-	# read in the info for all the songs in XMMS's playlist
-	print "Loading songs from XMMS's playlist..."
+	# read in the info for all the songs in the playlist
+	print "Loading songs from the playlist..."
 	songs = []
 	idx = 0
 	for l in open(listfn, "r").readlines():