]> git.scottworley.com Git - reliable-chat/commitdiff
/nosuchcommand shouldn't speak
authorScott Worley <sworley@chkno.net>
Sun, 19 Aug 2012 06:31:11 +0000 (23:31 -0700)
committerScott Worley <sworley@chkno.net>
Sun, 19 Aug 2012 06:31:11 +0000 (23:31 -0700)
webclient/rc.html

index df592d0a8639fc939f419f08468456180cf053c5..d06f515e4328a307b910747c863bf196710e063e 100644 (file)
 
        function rcinput(input) {
                var message;
-               var re = /^\/([a-z]+) (.*)/
+               var re = /^\/(\S+)(\s(.*))?/
                var match = re.exec(input);
                if (match) {
-                       if (match[1] == 'me') {
-                               message = "* " + rcnick() + "  " + match[2];
-                       } else if (match[1] == 'nick') {
-                               message = "*** " + rcnick() + " is now known as " + match[2];
-                               rcsetnick(match[2]);
+                       var command = match[1];
+                       var rest = match[3];
+                       if (command == 'me') {
+                               message = "* " + rcnick() + "  " + rest;
+                       } else if (command == 'nick') {
+                               message = "*** " + rcnick() + " is now known as " + rest;
+                               rcsetnick(rest);
                        } else {
-                               rcaddmessagetoUI({'Text': '-!- No such command: ' + match[1], 'ServerTimes': {}});
+                               rcaddmessagetoUI({'Text': '-!- No such command: ' + command, 'ServerTimes': {}});
                                return;
                        }
                } else {