File tree Expand file tree Collapse file tree 12 files changed +48
-82
lines changed Expand file tree Collapse file tree 12 files changed +48
-82
lines changed Original file line number Diff line number Diff line change 1
- METEOR@0.9.4
1
+ METEOR@1.0
Original file line number Diff line number Diff line change 1
1
accounts-base@1.1.2
2
- accounts-password@1.0.3
3
- accounts-ui-unstyled@1.1.3
4
- accounts-ui@1.1.2
2
+ accounts-password@1.0.4
3
+ accounts-ui-unstyled@1.1.4
4
+ accounts-ui@1.1.3
5
5
aldeed:collection2@2.2.0
6
6
aldeed:simple-schema@1.0.3
7
- amplify@1.0.0
8
7
application-configuration@1.0.3
9
- autoupdate@1.1.2
8
+ autoupdate@1.1.3
10
9
base64@1.0.1
11
10
binary-heap@1.0.1
12
11
blaze-tools@1.0.1
13
- blaze@2.0.2
12
+ blaze@2.0.3
14
13
boilerplate-generator@1.0.1
15
14
callback-hook@1.0.1
16
15
check@1.0.2
17
- coffeescript@1.0.4
18
16
ctl-helper@1.0.4
19
17
ctl@1.0.2
20
- ddp@1.0.10
18
+ ddp@1.0.11
21
19
deps@1.0.5
22
20
ejson@1.0.4
23
21
email@1.0.4
@@ -26,28 +24,31 @@ follower-livedata@1.0.2
26
24
geojson-utils@1.0.1
27
25
html-tools@1.0.2
28
26
htmljs@1.0.2
29
- http@1.0.7
27
+ http@1.0.8
30
28
id-map@1.0.1
31
- iron:core@0.3.4
32
- iron:dynamic-template@0.4.1
33
- iron:layout@0.4.1
34
- iron:router@0.9.4
29
+ iron:controller@1.0.0
30
+ iron:core@1.0.0
31
+ iron:dynamic-template@1.0.0
32
+ iron:layout@1.0.0
33
+ iron:location@1.0.0
34
+ iron:middleware-stack@1.0.0
35
+ iron:router@1.0.0
36
+ iron:url@1.0.0
35
37
jquery@1.0.1
36
38
json@1.0.1
37
- less@1.0.10
39
+ launch-screen@1.0.0
40
+ less@1.0.11
38
41
livedata@1.0.11
39
42
localstorage@1.0.1
40
- logging@1.0.4
41
- meteor-platform@1.1.2
42
- meteor@1.1.2
43
- mike:mocha@0.3.12
44
- minifiers@1.1.1
45
- minimongo@1.0.4
43
+ logging@1.0.5
44
+ meteor-platform@1.2.0
45
+ meteor@1.1.3
46
+ minifiers@1.1.2
47
+ minimongo@1.0.5
46
48
mobile-status-bar@1.0.1
47
49
mongo-livedata@1.0.6
48
- mongo@1.0.7
49
- mrt:iron-router-progress@0.9.2
50
- nooitaf:semantic-ui@0.19.3
50
+ mongo@1.0.8
51
+ nooitaf:semantic-ui-less@0.19.3
51
52
npm-bcrypt@0.7.7
52
53
observe-sequence@1.0.3
53
54
ordered-dict@1.0.1
@@ -59,18 +60,16 @@ reload@1.1.1
59
60
retry@1.0.1
60
61
routepolicy@1.0.2
61
62
service-configuration@1.0.2
62
- session@1.0.3
63
+ session@1.0.4
63
64
sha@1.0.1
64
65
spacebars-compiler@1.0.3
65
66
spacebars@1.0.3
66
67
srp@1.0.1
67
68
standard-app-packages@1.0.3
68
- templating@1.0.8
69
+ templating@1.0.9
69
70
tracker@1.0.3
70
71
ui@1.0.4
71
72
underscore@1.0.1
72
- url@1.0.1
73
- velocity:core@0.2.14
74
- velocity:html-reporter@0.2.4
73
+ url@1.0.2
75
74
webapp-hashing@1.0.1
76
- webapp@1.1.3
75
+ webapp@1.1.4
Original file line number Diff line number Diff line change 1
1
Router . configure ( {
2
2
layoutTemplate : 'basicLayout' ,
3
- notFoundTemplate : 'notFound' ,
4
- yieldTemplates : {
5
- 'header' : { to : 'header' } ,
6
- 'footer' : { to : 'footer' }
7
- }
3
+ notFoundTemplate : 'notFound'
8
4
} ) ;
Original file line number Diff line number Diff line change 1
1
< template name ="basicLayout ">
2
2
< header >
3
- {{> yield region=' header' }}
3
+ {{> header}}
4
4
</ header >
5
5
< div id ="main ">
6
6
{{> yield}}
7
7
{{! Also a sidebar! }}
8
8
</ div >
9
9
< footer >
10
- {{> yield region=' footer' }}
10
+ {{> footer}}
11
11
</ footer >
12
12
</ template >
Original file line number Diff line number Diff line change 1
1
< template name ="notFound ">
2
2
< p >
3
3
Seems like this site doesn't exist< br />
4
- < a href ="{{urlFor 'home'}} "> Go to home</ a >
4
+ < a href ="/ "> Go to home</ a >
5
5
</ p >
6
6
</ template >
Original file line number Diff line number Diff line change 1
- Router .map (->
2
- this .route ' __routeName__' ,
3
- path : ' __routePath__'
4
- )
1
+ Router .route ' __routePath__' , ->
2
+ this .render ' __routeName__'
Original file line number Diff line number Diff line change 1
- HomeController = RouteController .extend (
2
- template : ' home'
3
- )
4
-
5
- Router .map (->
6
- this .route ' HomeRoute' ,
7
- path : ' /' ,
8
- controller : HomeController
9
- )
1
+ Router .route ' /' , ->
2
+ this .render ' HomeRoute'
Original file line number Diff line number Diff line change 1
- Router . map ( function ( ) {
2
- this . route ( '__routeName__' , {
3
- path : '__routePath__'
4
- } ) ;
1
+ Router . route ( '__routePath__' , function ( ) {
2
+ this . render ( '__routeName__' ) ;
5
3
} ) ;
Original file line number Diff line number Diff line change 1
- var HomeController = RouteController . extend ( {
2
- template : 'home'
3
- } ) ;
4
-
5
- Router . map ( function ( ) {
6
- this . route ( 'home' , {
7
- path : '/' ,
8
- controller : HomeController
9
- } ) ;
1
+ Router . route ( '/' , function ( ) {
2
+ this . render ( 'home' ) ;
10
3
} ) ;
Original file line number Diff line number Diff line change 1
- Router . map ( function ( ) {
2
- this . route ( '__routeName__' , {
3
- path : '__routePath__'
4
- } ) ;
1
+ Router . route ( '__routePath__' , function ( ) {
2
+ this . render ( '__routeName__' ) ;
5
3
} ) ;
Original file line number Diff line number Diff line change 1
- var HomeController = RouteController . extend ( {
2
- template : 'home'
3
- } ) ;
4
-
5
- Router . map ( function ( ) {
6
- this . route ( 'home' , {
7
- path : '/' ,
8
- controller : HomeController
9
- } ) ;
1
+ Router . route ( '/' , function ( ) {
2
+ this . render ( 'home' ) ;
10
3
} ) ;
Original file line number Diff line number Diff line change 1
- Router . map ( function ( ) {
2
- // Home Route
3
- this . route ( 'home' , {
4
- path : '/'
5
- } ) ;
1
+ // Home Route
2
+ Router . route ( '/' , function ( ) {
3
+ this . render ( 'home' ) ;
6
4
} ) ;
You can’t perform that action at this time.
0 commit comments