rygel r443 - trunk/src/rygel
- From: zeeshanak svn gnome org
- To: svn-commits-list gnome org
- Subject: rygel r443 - trunk/src/rygel
- Date: Sun, 18 Jan 2009 19:27:17 +0000 (UTC)
Author: zeeshanak
Date: Sun Jan 18 19:27:17 2009
New Revision: 443
URL: http://svn.gnome.org/viewvc/rygel?rev=443&view=rev
Log:
Rename Steam to HTTPResponse.
Added:
trunk/src/rygel/rygel-http-response.vala
- copied, changed from r442, /trunk/src/rygel/rygel-stream.vala
Removed:
trunk/src/rygel/rygel-stream.vala
Modified:
trunk/src/rygel/Makefile.am
trunk/src/rygel/rygel-gst-stream.vala
Modified: trunk/src/rygel/Makefile.am
==============================================================================
--- trunk/src/rygel/Makefile.am (original)
+++ trunk/src/rygel/Makefile.am Sun Jan 18 19:27:17 2009
@@ -37,8 +37,8 @@
rygel-plugin-loader.c \
rygel-http-server.c \
rygel-http-server.h \
- rygel-stream.c \
- rygel-stream.h \
+ rygel-http-response.c \
+ rygel-http-response.h \
rygel-gst-stream.c \
rygel-gst-stream.h \
rygel-resource-info.h \
@@ -77,8 +77,8 @@
rygel-plugin-loader.vala \
rygel-http-server.c \
rygel-http-server.h \
- rygel-stream.c \
- rygel-stream.h \
+ rygel-http-response.c \
+ rygel-http-response.h \
rygel-gst-stream.c \
rygel-gst-stream.h \
rygel-resource-info.h \
@@ -119,7 +119,7 @@
rygel-connection-manager.vala \
rygel-media-receiver-registrar.vala \
rygel-http-server.vala \
- rygel-stream.vala \
+ rygel-http-response.vala \
rygel-gst-stream.vala \
rygel-resource-info.vala \
rygel-icon-info.vala \
Modified: trunk/src/rygel/rygel-gst-stream.vala
==============================================================================
--- trunk/src/rygel/rygel-gst-stream.vala (original)
+++ trunk/src/rygel/rygel-gst-stream.vala Sun Jan 18 19:27:17 2009
@@ -34,7 +34,7 @@
LINK
}
-public class Rygel.GstStream : Rygel.Stream {
+public class Rygel.GstStream : Rygel.HTTPResponse {
private const string SINK_NAME = "fakesink";
private Pipeline pipeline;
Copied: trunk/src/rygel/rygel-http-response.vala (from r442, /trunk/src/rygel/rygel-stream.vala)
==============================================================================
--- /trunk/src/rygel/rygel-stream.vala (original)
+++ trunk/src/rygel/rygel-http-response.vala Sun Jan 18 19:27:17 2009
@@ -23,15 +23,15 @@
* version 2 of the License, or (at your option) any later version.
*/
-public class Rygel.Stream : GLib.Object {
+public class Rygel.HTTPResponse : GLib.Object {
public Soup.Server server { get; private set; }
protected Soup.Message msg;
public signal void eos ();
- public Stream (Soup.Server server,
- Soup.Message msg,
- bool partial) {
+ public HTTPResponse (Soup.Server server,
+ Soup.Message msg,
+ bool partial) {
this.server = server;
this.msg = msg;
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]