Re-organise node structure and loading to make things somewhat more

simple. This also adds the ability to display servers on the treeview.
This commit is contained in:
Dave Page
2015-03-10 13:09:11 +00:00
parent 7f68d6fced
commit fe834d1ed2
24 changed files with 400 additions and 80 deletions

View File

@@ -84,7 +84,7 @@ int main(int argc, char * argv[])
}
// Generate the app server URL
QString appServerUrl = QString("http://localhost:%1/utils/test").arg(port);
QString appServerUrl = QString("http://localhost:%1/").arg(port);
// Now the server should be up, we'll attempt to connect and get a response.
// We'll retry in a loop a few time before aborting if necessary. The browser
@@ -128,7 +128,7 @@ bool PingServer(QUrl url)
QNetworkReply *reply;
QVariant redirectUrl;
url.setPath("/utils/ping");
url.setPath("/ping");
do
{