daveappserver 0.6.22 → 0.6.24
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/appserver.js +2 -2
- package/package.json +1 -1
package/appserver.js
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
var myVersion = "0.6.
|
|
1
|
+
var myVersion = "0.6.24", myProductName = "daveAppServer";
|
|
2
2
|
|
|
3
3
|
exports.start = startup;
|
|
4
4
|
exports.notifySocketSubscribers = notifySocketSubscribers;
|
|
@@ -1011,7 +1011,7 @@ function cleanFileStats (stats) { //4/19/21 by DW
|
|
|
1011
1011
|
function getScreenname (callback) {
|
|
1012
1012
|
function containsIllegalCharacter (name) { //3/17/23 by DW
|
|
1013
1013
|
function isLegal (ch) {
|
|
1014
|
-
return (utils.isAlpha (ch) || utils.isNumeric (ch) || (ch == "_"));
|
|
1014
|
+
return (utils.isAlpha (ch) || utils.isNumeric (ch) || (ch == "_") || (ch == ".") || (ch == "@"));
|
|
1015
1015
|
}
|
|
1016
1016
|
for (var i = 0; i < name.length; i++) {
|
|
1017
1017
|
let ch = name [i];
|