summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBastien Nocera <hadess@hadess.net>2004-04-05 21:47:40 +0000
committerBastien Nocera <hadess@src.gnome.org>2004-04-05 21:47:40 +0000
commit08db5c1a67443c55cfd98ff158fec4517952d334 (patch)
tree0a8fee0b01d43d8b0a1cbaaa658e56591b39c4cc
parent66d68ed920ad3f4ee084da08df69fdc8518c3b69 (diff)
downloadtotem-08db5c1a67443c55cfd98ff158fec4517952d334.tar.gz
remove TODO item make "totem cd:" on the command-line work again (Closes:
2004-04-05 Bastien Nocera <hadess@hadess.net> * README: remove TODO item * src/totem.c: (totem_is_media): make "totem cd:" on the command-line work again (Closes: #138791)
-rw-r--r--ChangeLog6
-rw-r--r--README2
-rw-r--r--src/totem.c2
3 files changed, 8 insertions, 2 deletions
diff --git a/ChangeLog b/ChangeLog
index c09301238..edc4a9832 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,11 @@
2004-04-05 Bastien Nocera <hadess@hadess.net>
+ * README: remove TODO item
+ * src/totem.c: (totem_is_media): make "totem cd:" on the command-line
+ work again (Closes: #138791)
+
+2004-04-05 Bastien Nocera <hadess@hadess.net>
+
* NEWS: updated
* README: removed TODO item
* src/bacon-video-widget-xine.c: (xine_event_message),
diff --git a/README b/README
index dcd3dea21..e0352fc90 100644
--- a/README
+++ b/README
@@ -111,8 +111,6 @@ http://article.gmane.org/gmane.comp.video.xine.devel/4304/match=tvtime
http://article.gmane.org/gmane.comp.video.xine.devel/3456/match=+api+addition+subtitles+accessibility
- implement a subclass of the checkbox menu item that takes two strings as parameters and switche between the two depending on the state (eg. Lock/Unlock)
- enhance the look of the controls popup in fullscreen
-- register all the icons with the stock stuff (see bluecurve for what icons
-we could be getting)
- rtsp plugin for xine?
http://www.live.com/liveMedia/#testProgs
- finish vanity
diff --git a/src/totem.c b/src/totem.c
index 66bcbb9b0..f55a7a594 100644
--- a/src/totem.c
+++ b/src/totem.c
@@ -836,6 +836,8 @@ totem_is_media (const char *mrl)
return TRUE;
if (strncmp ("vcd:", mrl, strlen ("vcd:")) == 0)
return TRUE;
+ if (strncmp ("cd:", mrl, strlen ("cd:")) == 0)
+ return TRUE;
return FALSE;
}