[MINOR] Allow dots in show-node & add "white-space: nowrap" in th.pxname.
diff --git a/src/cfgparse.c b/src/cfgparse.c
index 3e74634..70662b9 100644
--- a/src/cfgparse.c
+++ b/src/cfgparse.c
@@ -1889,7 +1889,7 @@
 
 				for (i=0; args[2][i]; i++) {
 					c = args[2][i];
-					if (!isupper(c) && !islower(c) && !isdigit(c) && c != '_' && c != '-')
+					if (!isupper(c) && !islower(c) && !isdigit(c) && c != '_' && c != '-' && c != '.')
 						break;
 				}
 
diff --git a/src/dumpstats.c b/src/dumpstats.c
index 7199fe0..f9d8785 100644
--- a/src/dumpstats.c
+++ b/src/dumpstats.c
@@ -777,7 +777,7 @@
 			     "table.tbl { border-collapse: collapse; border-style: none;}\n"
 			     "table.tbl td { border-width: 1px 1px 1px 1px; border-style: solid solid solid solid; padding: 2px 3px; border-color: gray;}\n"
 			     "table.tbl th { border-width: 1px; border-style: solid solid solid solid; border-color: gray;}\n"
-			     "table.tbl th.pxname {background: #b00040; color: #ffff40; font-weight: bold; border-style: solid solid none solid; padding: 2px 3px;}\n"
+			     "table.tbl th.pxname {background: #b00040; color: #ffff40; font-weight: bold; border-style: solid solid none solid; padding: 2px 3px; white-space: nowrap;}\n"
 			     "table.tbl th.empty { border-style: none; empty-cells: hide; background: white;}\n"
 			     "table.tbl th.desc { background: white; border-style: solid solid none solid; text-align: left; padding: 2px 3px;}\n"
 			     "table.lgd { border-collapse: collapse; border-width: 1px; border-style: none none none solid; border-color: black;}\n"