Commit 1c72e0c4 by Semir Patel

Support graphite identifiers with embedded colons. i.e.…

Support graphite identifiers with embedded colons. i.e. host:twiggy.servlet:home.method:GET.user:loggedin.50th
parent 3b327bab
...@@ -122,6 +122,7 @@ define([ ...@@ -122,6 +122,7 @@ define([
i === 95 || // _ i === 95 || // _
i === 45 || // - i === 45 || // -
i === 42 || // * i === 42 || // *
i === 58 || // :
i >= 97 && i <= 122; // a-z i >= 97 && i <= 122; // a-z
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment