gnash-commit
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Gnash-commit] /srv/bzr/gnash/rtmp r10073: be clear which server the res


From: rob
Subject: [Gnash-commit] /srv/bzr/gnash/rtmp r10073: be clear which server the responses are from.
Date: Sat, 28 Mar 2009 12:35:12 -0600
User-agent: Bazaar (1.5)

------------------------------------------------------------
revno: 10073
committer: address@hidden
branch nick: rtmp
timestamp: Sat 2009-03-28 12:35:12 -0600
message:
  be clear which server the responses are from.
modified:
  testsuite/misc-ming.all/red5test.as
=== modified file 'testsuite/misc-ming.all/red5test.as'
--- a/testsuite/misc-ming.all/red5test.as       2009-03-27 17:54:57 +0000
+++ b/testsuite/misc-ming.all/red5test.as       2009-03-28 18:35:12 +0000
@@ -575,7 +575,7 @@
 o=new ResultHandler();
 o.onResult = function()
 {
-    note("Got a result back from the server.");
+    note("Got a result back from the  RTMP server.");
     
     // now it is connected
     if ((ncrtmp.isConnected == true) && (ncrtmp.statuses.length == 1)) {
@@ -628,7 +628,7 @@
 o=new ResultHandler();
 o.onResult = function()
 {
-    note("Got a string result back from the server."+dumpObject(arguments));
+    note("Got a string result back from the RTMP 
server."+dumpObject(arguments));
 //     note("ARG4 is: " +dumpObject(arguments[0]));
     str = arguments[0].toString();
     if (arguments.length == 1) {
@@ -647,7 +647,7 @@
 o=new ResultHandler();
 o.onResult = function()
 {
-    note("Got a numerical 0 result back from the 
server."+dumpObject(arguments));
+    note("Got a numerical 0 result back from the RTMP 
server."+dumpObject(arguments));
     if (arguments.length == 1) {
        if (arguments[0] == 0) {
            result5 = true;
@@ -661,7 +661,7 @@
 o=new ResultHandler();
 o.onResult = function()
 {
-    note("Got a numerical 1 result back from the 
server."+dumpObject(arguments));
+    note("Got a numerical 1 result back from the RTMP 
server."+dumpObject(arguments));
     if (arguments.length == 1) {
        if (arguments[0] == 1) {
            result6 = true;
@@ -675,7 +675,7 @@
 o=new ResultHandler();
 o.onResult = function()
 {
-    note("Got a numerical -1 result back from the 
server."+dumpObject(arguments));
+    note("Got a numerical -1 result back from the RTMP 
server."+dumpObject(arguments));
     if ((arguments.length == 1)) {
        note("FIXME: "+arguments[0].to_number());
        result7 = true;
@@ -688,7 +688,7 @@
 o=new ResultHandler();
 o.onResult = function()
 {
-    note("Got a numerical 256 result back from the 
server."+dumpObject(arguments));
+    note("Got a numerical 256 result back from the RTMP 
server."+dumpObject(arguments));
     if (arguments.length == 1) {
        if (arguments[0] == 256) {
            result8 = true;
@@ -702,7 +702,7 @@
 o=new ResultHandler();
 o.onResult = function()
 {
-    note("Got a numerical -256 result back from the 
server."+dumpObject(arguments));
+    note("Got a numerical -256 result back from the RTMP 
server."+dumpObject(arguments));
     if (arguments.length == 1) {
        if (arguments[0] == -256) {
            result9 = true;
@@ -716,7 +716,7 @@
 o=new ResultHandler();
 o.onResult = function()
 {
-    note("Got a numerical 65536 result back from the 
server."+dumpObject(arguments));
+    note("Got a numerical 65536 result back from the  
RTMPserver."+dumpObject(arguments));
     if (arguments.length == 1) {
        if (arguments[0] == 65536) {
            result10 = true;
@@ -730,7 +730,7 @@
 o=new ResultHandler();
 o.onResult = function()
 {
-    note("Got a numerical -65536 result back from the 
server."+dumpObject(arguments));
+    note("Got a numerical -65536 result back from the RTMP 
server."+dumpObject(arguments));
     if (arguments.length == 1) {
        if (arguments[0] == -65536) {
            result11 = true;
@@ -744,7 +744,7 @@
 o=new ResultHandler();
 o.onResult = function()
 {
-    note("Got a numerical 1.5 result back from the 
server."+dumpObject(arguments));
+    note("Got a numerical 1.5 result back from the RTMP 
server."+dumpObject(arguments));
     if (arguments.length == 1) {
        if (arguments[0] == 1.5) {
            result12 = true;
@@ -758,7 +758,7 @@
 o=new ResultHandler();
 o.onResult = function()
 {
-    note("Got a numerical -1.5 result back from the 
server."+dumpObject(arguments));
+    note("Got a numerical -1.5 result back from the RTMP 
server."+dumpObject(arguments));
     if (arguments.length == 1) {
        if (arguments[0] == -1.5) {
            result13 = true;
@@ -772,7 +772,7 @@
 o=new ResultHandler();
 o.onResult = function()
 {
-    note("Got a numerical NaN result back from the 
server."+dumpObject(arguments));
+    note("Got a numerical NaN result back from the RTMP 
server."+dumpObject(arguments));
     if (arguments.length == 1) {
        if (arguments[0] == NaN) {
            result14 = true;
@@ -786,7 +786,7 @@
 o=new ResultHandler();
 o.onResult = function()
 {
-    note("Got an numerical infinity result back from the 
server."+dumpObject(arguments));
+    note("Got an numerical infinity result back from the RTMP 
server."+dumpObject(arguments));
     if (arguments.length == 1) {
        if (arguments[0] == infinity) {
            result15 = true;
@@ -800,7 +800,7 @@
 o=new ResultHandler();
 o.onResult = function()
 {
-    note("Got a numerical -infinity result back from the 
server."+dumpObject(arguments));
+    note("Got a numerical -infinity result back from the RTMP 
server."+dumpObject(arguments));
     if (arguments.length == 1) {
        if (arguments[0] == -infinity) {
            result16 = true;
@@ -833,7 +833,7 @@
 o=new ResultHandler();
 o.onResult = function()
 {
-    note("Got an empty array result back from the 
server."+dumpObject(arguments));
+    note("Got an empty array result back from the RTMP 
server."+dumpObject(arguments));
     if (arguments.length == 1) {
        if (arguments[0].length == 0) {
            result17 = true;
@@ -849,7 +849,7 @@
 o=new ResultHandler();
 o.onResult = function()
 {
-    note("Got a single item array result back from the 
server."+dumpObject(arguments));
+    note("Got a single item array result back from the RTMP 
server."+dumpObject(arguments));
     if (arguments.length == 1) {
        if (arguments[0][0] == 1) {
            result18 = true;
@@ -867,7 +867,7 @@
 o=new ResultHandler();
 o.onResult = function()
 {
-    note("Got an 3 item array result back from the 
server."+dumpObject(arguments));
+    note("Got an 3 item array result back from the RTMP 
server."+dumpObject(arguments));
     if ((arguments.length == 1) && (arguments[0].length == 3)) {
        if ((arguments[0][0] == 1) && (arguments[0][1] == 2) && 
(arguments[0][2] == 3))  {
            result19 = true;
@@ -889,7 +889,7 @@
 o=new ResultHandler();
 o.onResult = function()
 {
-    note("Got a sparse result back from the server."+dumpObject(arguments));
+    note("Got a sparse result back from the RTMP 
server."+dumpObject(arguments));
     if ((arguments.length == 1) && (arguments[0].length == 2)) {
        if ((arguments[0][0] == 1) && (arguments[0][1] == 5))  {
            result20 = true;


reply via email to

[Prev in Thread] Current Thread [Next in Thread]