gnunet-svn
[Top][All Lists]
Advanced

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

[GNUnet-SVN] r7367 - GNUnet/src/setup/qt


From: gnunet
Subject: [GNUnet-SVN] r7367 - GNUnet/src/setup/qt
Date: Sun, 29 Jun 2008 11:53:52 -0600 (MDT)

Author: durner
Date: 2008-06-29 11:53:52 -0600 (Sun, 29 Jun 2008)
New Revision: 7367

Modified:
   GNUnet/src/setup/qt/gnunet-setup.ui
   GNUnet/src/setup/qt/setupWizard.cc
Log:
remove NAT option

Modified: GNUnet/src/setup/qt/gnunet-setup.ui
===================================================================
--- GNUnet/src/setup/qt/gnunet-setup.ui 2008-06-29 14:41:39 UTC (rev 7366)
+++ GNUnet/src/setup/qt/gnunet-setup.ui 2008-06-29 17:53:52 UTC (rev 7367)
@@ -225,44 +225,6 @@
            </spacer>
           </item>
           <item>
-           <widget class="QLabel" name="label_5" >
-            <property name="text" >
-             <string>If you are connected to the internet through another 
computer doing SNAT, a router or a "hardware firewall" and other computers on 
the internet cannot connect to this computer, check the this option on this 
page. Leave it unchecked on direct connections through modems, ISDN cards and 
DNAT (also known as "port forwarding").</string>
-            </property>
-            <property name="wordWrap" >
-             <bool>true</bool>
-            </property>
-           </widget>
-          </item>
-          <item>
-           <layout class="QHBoxLayout" >
-            <property name="margin" >
-             <number>0</number>
-            </property>
-            <property name="spacing" >
-             <number>6</number>
-            </property>
-            <item>
-             <widget class="QCheckBox" name="cbSNAT" >
-              <property name="font" >
-               <font>
-                <family>MS Shell Dlg 2</family>
-                <pointsize>8</pointsize>
-                <weight>75</weight>
-                <italic>false</italic>
-                <bold>true</bold>
-                <underline>false</underline>
-                <strikeout>false</strikeout>
-               </font>
-              </property>
-              <property name="text" >
-               <string>Computer cannot receive inbound connections</string>
-              </property>
-             </widget>
-            </item>
-           </layout>
-          </item>
-          <item>
            <spacer>
             <property name="orientation" >
              <enum>Qt::Vertical</enum>

Modified: GNUnet/src/setup/qt/setupWizard.cc
===================================================================
--- GNUnet/src/setup/qt/setupWizard.cc  2008-06-29 14:41:39 UTC (rev 7366)
+++ GNUnet/src/setup/qt/setupWizard.cc  2008-06-29 17:53:52 UTC (rev 7367)
@@ -67,7 +67,7 @@
             "<td>&nbsp;</td>"
           "</tr>"
         "</table>"
-        "<br>"  
+        "<br>"
   );
 }
 
@@ -75,20 +75,20 @@
 {
   setupUi(this);
   welcome();
-  
+
   curPage = 0;
 
   this->ectx = ectx;
   this->cfg = cfg;
   this->cfg_fn = cfg_fn;
-  
+
   pbPrev->setHidden(true);
-  
+
   connect(pbNext, SIGNAL(clicked()), this, SLOT(nextClicked()));
   connect(pbPrev, SIGNAL(clicked()), this, SLOT(prevClicked()));
   connect(pbClose, SIGNAL(clicked()) , this, SLOT(abortClicked()));
   connect(htmlWelcome, SIGNAL(anchorClicked(const QUrl &)), this, 
SLOT(linkHandler(const QUrl &)));
-  
+
   loadDefaults();
 }
 
@@ -96,12 +96,12 @@
 {
   QString str;
   QComboBox *cmbIF;
-  
+
   cmbIF = (QComboBox *) cls;
   str = name;
   if (str.length() == 0)
     str = QObject::tr("(unknown connection)");
-  
+
   cmbIF->addItem(str);
   if (defaultNIC)
     cmbIF->setCurrentIndex(cmbIF->count() - 1);
@@ -113,18 +113,15 @@
 {
   char *val;
   unsigned long long num;
-  
+
   // page 2
   GNUNET_list_network_interfaces (ectx, &insert_nic, cmbIF);
-  
+
   GNUNET_GC_get_configuration_value_string (cfg, "NETWORK", "IP", "",
                                             &val);
   editIP->setText(val);
   GNUNET_free_non_null(val);
-  
-  cbSNAT->setChecked(GNUNET_GC_get_configuration_value_yesno(cfg, "NAT", 
"LIMITED",
-                                 GNUNET_NO) == GNUNET_YES);
-                                 
+
   // page 3
   GNUNET_GC_get_configuration_value_string (cfg,
                                             "LOAD",
@@ -132,7 +129,7 @@
                                             &val);
   editUp->setText(val);
   GNUNET_free_non_null(val);
-  
+
   GNUNET_GC_get_configuration_value_string (cfg,
                                             "LOAD",
                                             "MAXNETDOWNBPSTOTAL", "50000",
@@ -151,12 +148,12 @@
   {
     rbShared->setChecked(true);
   }
-  
+
   GNUNET_GC_get_configuration_value_string (cfg,
                                             "LOAD", "MAXCPULOAD", "50", &val);
   spinCPU->setValue(atoi(val));
   GNUNET_free_non_null(val);
-  
+
   // page 4
   char *uname = NULL;
   char *gname = NULL;
@@ -192,7 +189,7 @@
   if (NULL == gname || strlen (gname) == 0)
     {
       struct group *grp;
-      
+
       if ((geteuid () == 0) || (NULL != getgrnam ("gnunet")))
         group_name = GNUNET_strdup ("gnunet");
       else
@@ -234,7 +231,7 @@
 #ifdef WINDOWS
   cap = FALSE;
 #endif
-  
+
   if (!cap) {
     editGroup->setEnabled(false);
     editGroup->setText("");
@@ -242,11 +239,11 @@
 
   GNUNET_free_non_null(uname);
   GNUNET_free_non_null(gname);
-  
+
   // page 5
   GNUNET_GC_get_configuration_value_number(cfg, "FS", "QUOTA", 1, 1000000, 
1024, &num);
   spinQuota->setValue(num);
-  
+
   cbMigr->setChecked(GNUNET_GC_get_configuration_value_yesno
                                 (cfg, "FS", "ACTIVEMIGRATION",
                                  GNUNET_YES) == GNUNET_YES);
@@ -259,11 +256,11 @@
 int GSetupWizard::saveConf()
 {
   GString str;
-  
+
   str = cmbIF->currentText();
 #ifdef Q_OS_WIN32
   int idx;
-  
+
   idx = str.lastIndexOf("- ");
   if (idx == -1)
   {
@@ -278,21 +275,20 @@
   GNUNET_GC_set_configuration_value_string(cfg, ectx, "LOAD", "INTERFACES", 
str.toUtf8CStr());
   str = editIP->text();
   GNUNET_GC_set_configuration_value_string(cfg, ectx, "NETWORK", "IP", 
str.toUtf8CStr());
-  GNUNET_GC_set_configuration_value_choice(cfg, ectx, "NAT", "LIMITED", 
cbSNAT->isChecked() ? "YES" : "NO");
   str = editDown->text();
   GNUNET_GC_set_configuration_value_string(cfg, ectx, "LOAD", 
"MAXNETDOWNBPSTOTAL", str.toUtf8CStr());
   str = editUp->text();
-  GNUNET_GC_set_configuration_value_string(cfg, ectx, "LOAD", 
"MAXNETUPBPSTOTAL", str.toUtf8CStr());  
+  GNUNET_GC_set_configuration_value_string(cfg, ectx, "LOAD", 
"MAXNETUPBPSTOTAL", str.toUtf8CStr());
   GNUNET_GC_set_configuration_value_choice(cfg, ectx, "LOAD", "BASICLIMITING", 
rbFull->isChecked() ? "YES" : "NO");
-  GNUNET_GC_set_configuration_value_number(cfg, ectx, "LOAD", "MAXCPULOAD", 
spinCPU->value());  
+  GNUNET_GC_set_configuration_value_number(cfg, ectx, "LOAD", "MAXCPULOAD", 
spinCPU->value());
   str = editUser->text();
   GNUNET_GC_set_configuration_value_string(cfg, ectx, "GNUNETD", "USER", 
str.toUtf8CStr());
   str = editGroup->text();
-  GNUNET_GC_set_configuration_value_string(cfg, ectx, "GNUNETD", "GROUP", 
str.toUtf8CStr());  
+  GNUNET_GC_set_configuration_value_string(cfg, ectx, "GNUNETD", "GROUP", 
str.toUtf8CStr());
   GNUNET_GC_set_configuration_value_choice(cfg, ectx, "FS", "ACTIVEMIGRATION", 
cbMigr->isChecked() ? "YES" : "NO");
-  GNUNET_GC_set_configuration_value_number(cfg, ectx, "FS", "QUOTA", 
spinQuota->value());  
+  GNUNET_GC_set_configuration_value_number(cfg, ectx, "FS", "QUOTA", 
spinQuota->value());
   GNUNET_GC_set_configuration_value_choice(cfg, ectx, "GNUNETD", "AUTOSTART", 
cbAutostart->isChecked() ? "YES" : "NO");
-  
+
   if (GNUNET_GC_write_configuration (cfg, cfg_fn))
     {
       QMessageBox::critical(this, tr("Error"), tr("Unable to save 
configuration file ") +
@@ -306,7 +302,7 @@
 {
   QMessageBox::StandardButton ret;
   int ok;
-  
+
   ret = QMessageBox::question(this, tr("Save"), tr("Do you want to save the 
new configuration?"),
     QMessageBox::Yes | QMessageBox::No | QMessageBox::Cancel, 
QMessageBox::Yes);
   switch(ret)
@@ -321,7 +317,7 @@
     default:
       ok = GNUNET_NO;
   }
-  
+
   if (ok)
     qApp->quit();
 }
@@ -329,7 +325,7 @@
 void GSetupWizard::nextClicked()
 {
   pbPrev->setHidden(false);
-  
+
   if (curPage == 3)
   {
     pbNext->setIcon(QIcon(":/pixmaps/exit.png"));
@@ -339,12 +335,12 @@
   {
     GString str;
     char *user_name, *group_name;
-    
+
     str = editUser->text();
     user_name = strdup(str.toUtf8CStr());
     str = editGroup->text();
     group_name = strdup(str.toUtf8CStr());
-    
+
     if (cbAutostart->isChecked() && strlen(user_name))
       if (!GNUNET_GNS_wiz_create_group_user (group_name, user_name))
         {
@@ -356,7 +352,7 @@
           GNUNET_free(group_name);
           return;
         }
-  
+
     if (GNUNET_GNS_wiz_autostart_service (ectx, GNUNET_SERVICE_TYPE_GNUNETD,
         cbAutostart->isChecked(), user_name, group_name) != GNUNET_OK)
       {
@@ -373,25 +369,25 @@
           QMessageBox::critical(this, tr("Error"), QString("Unable to change 
startup process for auto-share: ") +
             STRERROR(errno));
 #endif
-      }    
-    
+      }
+
     GNUNET_free(user_name);
     GNUNET_free(group_name);
-  
+
     if (GNUNET_OK != saveConf ())
       return;
-    
+
     if (cbGNUpdate->isChecked())
       {
         QProcess proc;
         QStringList args;
         char *bin;
-        
+
         args << "-L" << "INFO" << "-c" << cfg_fn;
-        bin = GNUNET_get_installation_path (GNUNET_IPK_BINDIR);        
+        bin = GNUNET_get_installation_path (GNUNET_IPK_BINDIR);
         proc.setWorkingDirectory(bin);
         proc.setStandardErrorFile(QDir::tempPath() + DIR_SEPARATOR_STR 
"gnunet-setup.err");
-        proc.setStandardOutputFile(QDir::tempPath() + DIR_SEPARATOR_STR 
"gnunet-setup.out");        
+        proc.setStandardOutputFile(QDir::tempPath() + DIR_SEPARATOR_STR 
"gnunet-setup.out");
         GNUNET_free_non_null(bin);
         proc.start("gnunet-update", args);
         proc.waitForFinished(-1);
@@ -412,7 +408,7 @@
 
     return;
   }
-  
+
   curPage++;
   stackedWidget->setCurrentIndex(curPage);
 }
@@ -422,13 +418,13 @@
   if (curPage == 4)
   {
     pbNext->setIcon(QIcon(":/pixmaps/go-next.png"));
-    pbNext->setText(tr("Next"));    
+    pbNext->setText(tr("Next"));
   }
   else if (curPage == 1)
     pbPrev->setHidden(true);
   else if (curPage == 0)
     return;
-  
+
   curPage--;
   stackedWidget->setCurrentIndex(curPage);
 }





reply via email to

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