Skip to content

Parameter Typing -- URL Only #454

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Closed
wants to merge 25 commits into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
25 commits
Select commit Hold shift + click to select a range
322c85b
add flag in .transitionTo() to allow ability to disable broadcast of …
mattbroekhuis Sep 10, 2013
8518db2
can register a type
Sep 19, 2013
5220d5c
UrlMatcher looks for types in the Url and generates a typeMap between…
Sep 19, 2013
8c30b39
format decodes typed values. removed normalization that was forcing b…
Sep 20, 2013
438a62a
Correctly detect left-click on IE8, fixes #452.
nateabele Sep 21, 2013
4cdadcf
fix($resolve): resolve factories from string names
nateabele Sep 21, 2013
b7b2ceb
Merge pull request #451 from littlebitselectronics/component-support
nateabele Sep 22, 2013
d3c6a5d
added is and normalization to type
Sep 23, 2013
0cd78ae
matcher.exec checks typed parameters are of correct type
Sep 23, 2013
45e2639
split pattern and is
Sep 23, 2013
78f80a7
format checks the type before encoding
Sep 23, 2013
308cc1d
evaluates type equality when transitioning
Sep 23, 2013
ea9b3a7
added sample for custom type. documented the type function
Sep 24, 2013
7ac3739
Merge branch 'master' of github.com:toddhgardner/ui-router into typed…
Sep 24, 2013
e22517d
fixed equality in integer type
Sep 24, 2013
8c93f6b
Merge branch 'master' of github.com:toddhgardner/ui-router into typed…
Sep 24, 2013
c3859b8
merge
Sep 24, 2013
bcd71cb
fixing jsdoc for windows
Sep 24, 2013
c9da9f2
fixing jsdoc for windows
Sep 24, 2013
841239c
fixing release for windows
Sep 24, 2013
cf3e5b6
for 0.2.1. release
Sep 24, 2013
7e96189
release 0.2.1
Sep 24, 2013
92249d2
added simple typing to UrlMatch Contructor search params
Sep 24, 2013
04cc8a0
added anonymous type registration for search param regex
Sep 25, 2013
8271d0f
added pattern checking before decoding types in the exec()
Sep 25, 2013
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions Gruntfile.js
Original file line number Diff line number Diff line change
Expand Up @@ -106,7 +106,7 @@ module.exports = function (grunt) {

grunt.registerTask('jsdoc', 'Generate documentation', function () {
promising(this,
system('node_modules/jsdoc/jsdoc -c config/jsdoc.js -d \'' + grunt.config('builddir') + '\'/doc src')
system('\"./node_modules/jsdoc/jsdoc\" -c ./config/jsdoc.js -d \"./' + grunt.config('builddir') + '/doc\" src')
);
});

Expand Down Expand Up @@ -150,10 +150,10 @@ module.exports = function (grunt) {

var version = grunt.config('pkg.version'), releasedir = grunt.config('builddir');
promising(this,
system('git add \'' + releasedir + '\'').then(function () {
system('git add \"' + releasedir + '\"').then(function () {
return system('git commit -m \'release ' + version + '\'');
}).then(function () {
return system('git tag \'' + version + '\'');
return system('git tag \"' + version + '\"');
})
);
});
Expand Down
2 changes: 1 addition & 1 deletion bower.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "angular-ui-router",
"version": "0.2.0",
"version": "0.2.1",
"main": "./release/angular-ui-router.min.js",
"dependencies": {
"angular": ">= 1.0.6"
Expand Down
2 changes: 1 addition & 1 deletion component.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "angular-ui-router",
"version": "0.2.0",
"version": "0.2.1",
"description": "State-based routing for AngularJS",
"keywords": [
"angular",
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "angular-ui-router",
"description": "State-based routing for AngularJS",
"version": "0.2.0",
"version": "0.2.1",
"homepage": "http://angular-ui.github.com/",
"author": {
"name": "Karsten Sperling",
Expand Down
Loading