rename swat => swat2, so that we don't conflict with samba3
[gd/samba/.git] / swat2 / scripting / client / status.js
diff --git a/swat2/scripting/client/status.js b/swat2/scripting/client/status.js
new file mode 100644 (file)
index 0000000..a41038d
--- /dev/null
@@ -0,0 +1,40 @@
+/*
+       server status library for SWAT
+
+       released under the GNU GPL Version 3 or later
+*/
+
+
+// Format for a server status table
+var s = [
+       { id : "server",
+         label : "Server",
+         content: "text",
+          defaultValue : "-",
+          width : 100
+       },
+
+       { id : "status",
+         label : "Status",
+         content: "text",
+         defaultValue : "-",
+         width: 100
+       }
+];
+
+function __load_status_table(info, container)
+{
+       var table = new QxListView(s);
+       var i;
+       for (i in info) {
+               table.addData( {server : i, status : info[i]} );
+       }
+       container.add(table);
+       container.setVisible(true);
+}
+
+function getServerStatus(container) 
+{
+       server_call_url("/scripting/server/status.esp", 'serverInfo',
+                               function(info) { __load_status_table(info, container); });
+}