Remove test account.
authorManuel Nickschas <sputnick@quassel-irc.org>
Mon, 10 Dec 2007 15:06:26 +0000 (15:06 +0000)
committerManuel Nickschas <sputnick@quassel-irc.org>
Mon, 10 Dec 2007 15:06:26 +0000 (15:06 +0000)
README.Qtopia
src/qtopia/coreconnectdlg.cpp

index 96c0cf3..3622b1a 100644 (file)
@@ -16,14 +16,6 @@ Note that QuasselTopia is just the client; it can't do IRC by
 itself. You'll need a Quassel core running on some server or PC for
 the phone to connect to.
 
 itself. You'll need a Quassel core running on some server or PC for
 the phone to connect to.
 
-For testing purposes we have provided a core on one of our
-servers. You can connect to it for checking out QuasselTopia without
-having to install your own.  The core can be reached at
-<apollo.mindpool.net:4242>, with user 'testuser' and password
-'testuser'. If you can't connect, please let us know, and we'll
-restart it. You may also connect with a Quassel desktop client to this
-core.  The test account will be automatically created on first run.
-
 In its current state, QuasselTopia cannot do much except for
 connecting to a core and displaying the buffers you are in. Oh, and
 chatting of course.  But you cannot change any settings, create/edit
 In its current state, QuasselTopia cannot do much except for
 connecting to a core and displaying the buffers you are in. Oh, and
 chatting of course.  But you cannot change any settings, create/edit
index 176e077..860f43e 100644 (file)
@@ -58,15 +58,17 @@ CoreConnectDlg::CoreConnectDlg(QWidget *parent, bool /*doAutoConnect*/) : QDialo
   AccountSettings s;
   ui.accountList->addItems(s.knownAccounts());
   // if empty, create a test account
   AccountSettings s;
   ui.accountList->addItems(s.knownAccounts());
   // if empty, create a test account
+  /* disabled for the moment
   if(!ui.accountList->count()) {
     QVariantMap accData;
     accData["User"] = "testuser";
   if(!ui.accountList->count()) {
     QVariantMap accData;
     accData["User"] = "testuser";
-    accData["Host"] = "apollo.mindpool.net";
+    accData["Host"] = "";
     accData["Port"] = 4242;
     accData["Port"] = 4242;
-    accData["Password"] = "testuser";
+    accData["Password"] = "";
     s.setValue("Test Account", "AccountData", accData);
     ui.accountList->addItems(s.knownAccounts());
   }
     s.setValue("Test Account", "AccountData", accData);
     ui.accountList->addItems(s.knownAccounts());
   }
+  */
   // end test account
   if(ui.accountList->count()) ui.accountList->item(0)->setSelected(true);
   setWidgetStates();
   // end test account
   if(ui.accountList->count()) ui.accountList->item(0)->setSelected(true);
   setWidgetStates();