From ed8dfcd66ac35eb62ca23db54d35545ab15cf294 Mon Sep 17 00:00:00 2001 From: Sahat Yalkabov Date: Sat, 10 May 2014 02:20:13 -0400 Subject: [PATCH 1/3] Update package.json --- package.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/package.json b/package.json index 27bc2022f1..df5b270fcd 100755 --- a/package.json +++ b/package.json @@ -13,7 +13,7 @@ "async": "^0.8.0", "bcrypt-nodejs": "^0.0.3", "body-parser": "^1.0.2", - "cheerio": "^0.15.0", + "cheerio": "^0.16.0", "clockwork": "^0.1.1", "compression": "^1.0.2", "connect-assets": "^3.0.0-beta2", @@ -36,7 +36,7 @@ "mongoose": "^3.8.8", "morgan": "^1.0.0", "node-foursquare": "^0.2.1", - "node-linkedin": "^0.1.8", + "node-linkedin": "^0.2.0", "nodemailer": "^0.6.3", "passport": "^0.2.0", "passport-facebook": "^1.0.3", From 78fc891c1edff3e635b1fa3f84befa96ccad2549 Mon Sep 17 00:00:00 2001 From: Shiva Teja Reddy Date: Tue, 13 May 2014 09:47:30 +0530 Subject: [PATCH 2/3] CSRF should use the variable --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index b9efba4e32..d860da4ca0 100644 --- a/README.md +++ b/README.md @@ -477,7 +477,7 @@ added in the [pull request #40](https://github.com/sahat/hackathon-starter/pull/ as part of CSRF protection. ``` -input(type='hidden', name='_csrf', value='_csrf') +input(type='hidden', name='_csrf', value=_csrf) ``` **Note:** It is now possible to whitelist certain URLs. In other words you can From 915a655ae6dda10e8ddd7479369cf0d16ec58e58 Mon Sep 17 00:00:00 2001 From: Sahat Yalkabov Date: Tue, 13 May 2014 18:37:30 -0400 Subject: [PATCH 3/3] Updated Socket.IO code example --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index d860da4ca0..1374a285c9 100644 --- a/README.md +++ b/README.md @@ -970,7 +970,7 @@ If you want to stick all your JavaScript inside templates, then in `layout.jade` your main template file, add this to `head` block. ```jade -script(src='/socket.io/socket.io.js?v=#{cacheBuster}') +script(src='/socket.io/socket.io.js') script. var socket = io.connect(window.location.href); socket.on('greet', function (data) {