Ignore:
Timestamp:
07/01/13 03:11:23 (12 years ago)
Author:
hendrikvanantwerpen
Message:

Reorganized app and fixed some style issues.

Was looking for a bug where the proxy would not forward requests to the
database. This is somehow magically resolved now.

Location:
Dev/trunk/src/server/util
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • Dev/trunk/src/server/util/q-request.js

    r468 r470  
    99    dfd.response = q.defer();
    1010   
    11     options = options
    12         ? _.clone(options)
    13         : {};
     11    options = options ? _.clone(options) : {};
    1412    options.uri = url || options.uri;
    1513   
  • Dev/trunk/src/server/util/simple-http-proxy.js

    r466 r470  
    33 * Module dependencies
    44 */
    5 var url = require('url')
    6     , join = require('path').join
    7     , protocols = {
     5var url = require('url'),
     6    join = require('path').join,
     7    protocols = {
    88        http: require('http'),
    99        https: require('https')
Note: See TracChangeset for help on using the changeset viewer.