Support graphite identifiers with embedded colons. i.e. host:twiggy.servlet:home.method:GET.user:loggedin.50th

This commit is contained in:
Semir Patel
2014-03-06 11:37:33 -08:00
parent 3b327bab8f
commit 1c72e0c40c
+3 -2
View File
@@ -120,8 +120,9 @@ define([
i === 36 || // $
i >= 65 && i <= 90 || // A-Z
i === 95 || // _
i === 45 || // -
i === 42 || // *
i === 45 || // -
i === 42 || // *
i === 58 || // :
i >= 97 && i <= 122; // a-z
}