Skip to content
This repository has been archived by the owner on Jan 10, 2022. It is now read-only.

Commit

Permalink
Misc fixes and cleanup.
Browse files Browse the repository at this point in the history
  • Loading branch information
richtera committed Dec 23, 2012
1 parent 872609e commit 7fa8be4
Show file tree
Hide file tree
Showing 7 changed files with 4,320 additions and 154 deletions.
2 changes: 2 additions & 0 deletions .idea/calipso.iml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

8 changes: 8 additions & 0 deletions .idea/jsLibraryMappings.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4,236 changes: 4,236 additions & 0 deletions .idea/libraries/Calipso_node_modules.xml

Large diffs are not rendered by default.

219 changes: 70 additions & 149 deletions .idea/workspace.xml

Large diffs are not rendered by default.

5 changes: 3 additions & 2 deletions app.js
Expand Up @@ -8,7 +8,8 @@
*
*/

var req = require('express/lib/request');
var req = require('express/lib/request'),
utils = require('express/lib/utils');

var flashFormatters = req.flashFormatters = {
s: function(val){
Expand Down Expand Up @@ -98,7 +99,7 @@ var rootpath = process.cwd() + '/',
calipso = require(nodepath.join(rootpath, 'lib/calipso')),
translate = require(nodepath.join(rootpath, 'i18n/translate')),
logo = require(nodepath.join(rootpath, 'logo')),
everyauth = require("everyauth");
everyauth = require('everyauth');

// To enable everyauth debugging.
//everyauth.debug = true;
Expand Down
3 changes: 1 addition & 2 deletions jasmine-1.1.0.js
Expand Up @@ -115,8 +115,7 @@ jasmine.ExpectationResult.prototype.passed = function () {
* Getter for the Jasmine environment. Ensures one gets created
*/
jasmine.getEnv = function() {
var env = jasmine.currentEnv_ = jasmine.currentEnv_ || new jasmine.Env();
return env;
return jasmine.currentEnv_ = jasmine.currentEnv_ || new jasmine.Env();
};

/**
Expand Down
1 change: 0 additions & 1 deletion package.json
Expand Up @@ -41,7 +41,6 @@
"request":"2.9.x",
"pool":"0.4.x",
"mime":"1.2.x",
"cluster": "0.7.x",
"step": "0.0.x",
"optimist":"0.3.x",
"colors":"0.6.x",
Expand Down

0 comments on commit 7fa8be4

Please sign in to comment.