[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[GNUnet-SVN] r35768 - gnunet-gtk/src/setup
From: |
gnunet |
Subject: |
[GNUnet-SVN] r35768 - gnunet-gtk/src/setup |
Date: |
Thu, 21 May 2015 12:14:44 +0200 |
Author: grothoff
Date: 2015-05-21 12:14:44 +0200 (Thu, 21 May 2015)
New Revision: 35768
Modified:
gnunet-gtk/src/setup/gnunet-setup-options.c
Log:
-fix option visibility
Modified: gnunet-gtk/src/setup/gnunet-setup-options.c
===================================================================
--- gnunet-gtk/src/setup/gnunet-setup-options.c 2015-05-21 10:07:58 UTC (rev
35767)
+++ gnunet-gtk/src/setup/gnunet-setup-options.c 2015-05-21 10:14:44 UTC (rev
35768)
@@ -912,8 +912,8 @@
* Hide "hostlist" options if hostlist is not in use.
*/
static struct GNUNET_SETUP_VisibilitySpecification hide_hostlist_tab[] = {
- {"GNUNET_setup_hostlist_vbox", "(^| )hostlist($| )", NULL},
- {"GNUNET_setup_hostlist_label", "(^| )hostlist($| )", NULL},
+ {"GNUNET_setup_hostlist_vbox", "YES", NULL},
+ {"GNUNET_setup_hostlist_label", "YES", NULL},
{NULL, NULL, NULL}
};
@@ -922,8 +922,8 @@
* Hide "exit" options if VPN exit is not in use.
*/
static struct GNUNET_SETUP_VisibilitySpecification hide_exit_options[] = {
- {"GNUNET_setup_exit_label", "(^| )exit($| )", NULL},
- {"GNUNET_setup_exit_vbox", "(^| )exit($| )", NULL},
+ {"GNUNET_setup_exit_label", "YES", NULL},
+ {"GNUNET_setup_exit_vbox", "YES", NULL},
{NULL, NULL, NULL}
};
@@ -932,7 +932,7 @@
* Hide DNS "exit" options if DNS exit is not in use.
*/
static struct GNUNET_SETUP_VisibilitySpecification hide_dns_exit_options[] = {
- {"GNUNET_setup_dns_resolver_hbox", "^YES$", NULL},
+ {"GNUNET_setup_dns_resolver_hbox", "YES", NULL},
{NULL, NULL, NULL}
};
@@ -941,7 +941,7 @@
* Hide IPv4 "exit" options if IPv4 exit is not in use.
*/
static struct GNUNET_SETUP_VisibilitySpecification hide_v4_exit_options[] = {
- {"GNUNET_SETUP_exit_policy_v4_hbox", "^YES$", NULL},
+ {"GNUNET_SETUP_exit_policy_v4_hbox", "YES", NULL},
{NULL, NULL, NULL}
};
@@ -950,7 +950,7 @@
* Hide IPv6 "exit" options if IPv6 exit is not in use.
*/
static struct GNUNET_SETUP_VisibilitySpecification hide_v6_exit_options[] = {
- {"GNUNET_SETUP_exit_policy_v6_hbox", "^YES$", NULL},
+ {"GNUNET_SETUP_exit_policy_v6_hbox", "YES", NULL},
{NULL, NULL, NULL}
};
@@ -1005,7 +1005,7 @@
* Hide "fs" tab if FS not active.
*/
static struct GNUNET_SETUP_VisibilitySpecification hide_fs_tab[] = {
- {"GNUNET_setup_fs_main_vbox", "(^| )fs($| )", NULL},
+ {"GNUNET_setup_fs_main_vbox", "YES", NULL},
{NULL, NULL, NULL}
};
@@ -1014,7 +1014,7 @@
* Hide "vpn" tab if VPN not active.
*/
static struct GNUNET_SETUP_VisibilitySpecification hide_vpn_tab[] = {
- {"GNUNET_setup_vpn_vbox", "(^| )pt($| )", NULL},
+ {"GNUNET_setup_vpn_vbox", "YES", NULL},
{NULL, NULL, NULL}
};
@@ -1023,7 +1023,7 @@
* Hide "namestore" tab if GNS not active.
*/
static struct GNUNET_SETUP_VisibilitySpecification hide_gns_tabs[] = {
- {"GNUNET_setup_namestore_vbox", "(^| )gns($| )", NULL},
+ {"GNUNET_setup_namestore_vbox", "YES", NULL},
{NULL, NULL, NULL}
};
[Prev in Thread] |
Current Thread |
[Next in Thread] |
- [GNUnet-SVN] r35768 - gnunet-gtk/src/setup,
gnunet <=