Skip to content

Commit f474ab1

Browse files
cleercoderyanflorence
authored andcommitted
[changed] '.' is no longer a path delimeter
1 parent 7b17307 commit f474ab1

File tree

2 files changed

+7
-1
lines changed

2 files changed

+7
-1
lines changed

modules/helpers/Path.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ function compilePattern(pattern) {
2222

2323
var source = pattern.replace(paramMatcher, function (match, pathSegment) {
2424
paramNames.push(getParamName(pathSegment));
25-
return pathSegment === '*' ? '(.*?)' : '([^./?#]+)';
25+
return pathSegment === '*' ? '(.*?)' : '([^/?#]+)';
2626
});
2727

2828
compiled.matcher = new RegExp('^' + source + '$', 'i');

specs/Path.spec.js

+6
Original file line numberDiff line numberDiff line change
@@ -32,6 +32,12 @@ describe('Path.extractParams', function () {
3232
expect(Path.extractParams(pattern, 'users/123')).toBe(null);
3333
});
3434
});
35+
36+
describe('and the path matches with a segment containing a .', function () {
37+
it('returns an object with the params', function () {
38+
expect(Path.extractParams(pattern, 'comments/foo.bar/edit')).toEqual({ id: 'foo.bar' });
39+
});
40+
});
3541
});
3642

3743
describe('when a pattern has characters that have special URL encoding', function () {

0 commit comments

Comments
 (0)