Skip to Content.
Sympa Menu

ndt-dev - [ndt-dev] [ndt] r470 committed - Rollback accidental trunk commit from bum svn switch.

Subject: NDT-DEV email list created

List archive

[ndt-dev] [ndt] r470 committed - Rollback accidental trunk commit from bum svn switch.


Chronological Thread 
  • From:
  • To:
  • Subject: [ndt-dev] [ndt] r470 committed - Rollback accidental trunk commit from bum svn switch.
  • Date: Fri, 05 Aug 2011 21:04:16 +0000

Revision: 470
Author:

Date: Fri Aug 5 14:03:19 2011
Log: Rollback accidental trunk commit from bum svn switch.
http://code.google.com/p/ndt/source/detail?r=470

Modified:
/trunk/Applet/Tcpbw100.java

=======================================
--- /trunk/Applet/Tcpbw100.java Fri Aug 5 13:41:43 2011
+++ /trunk/Applet/Tcpbw100.java Fri Aug 5 14:03:19 2011
@@ -106,7 +106,6 @@
private static final String META_BROWSER_OS = "client.browser.name";
private static final String META_CLIENT_KERNEL_VERSION = "client.kernel.version";
private static final String META_CLIENT_VERSION = "client.version";
- private static final String META_CLIENT_APPLICATION = "client.application";

/* we really should do some clean-up in this java code... maybe later ;) */
private static final byte COMM_FAILURE = 0;
@@ -1424,7 +1423,7 @@
return false;
}

- public boolean test_meta(Protocol ctl, String application) throws IOException
+ public boolean test_meta(Protocol ctl) throws IOException
{
Message msg = new Message();
if ((tests & TEST_META) == TEST_META) {
@@ -1462,7 +1461,6 @@
ctl.send_msg(TEST_MSG, (META_BROWSER_OS + ":" + UserAgentTools.getBrowser(getUserAgent())[2]).getBytes());
ctl.send_msg(TEST_MSG, (META_CLIENT_KERNEL_VERSION + ":" + System.getProperty("os.version")).getBytes());
ctl.send_msg(TEST_MSG, (META_CLIENT_VERSION + ":" + VERSION).getBytes());
- ctl.send_msg(TEST_MSG, (META_CLIENT_APPLICATION + ":" + application).getBytes());

ctl.send_msg(TEST_MSG, new byte[0]);

@@ -1693,7 +1691,7 @@
break;
case TEST_META:
sPanel.setText(messages.getString("meta"));
- if (test_meta(ctl, isApplication ? "java" : "applet")) {
+ if (test_meta(ctl)) {
results.append(errmsg);
results.append(messages.getString("metaFailed") + "\n");
tests &= (~TEST_META);


  • [ndt-dev] [ndt] r470 committed - Rollback accidental trunk commit from bum svn switch., ndt, 08/05/2011

Archive powered by MHonArc 2.6.16.

Top of Page