Skip to content

Commit

Permalink
Updated documentation and version bump
Browse files Browse the repository at this point in the history
  • Loading branch information
robrighter committed Apr 1, 2011
1 parent f399176 commit 97f088d
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 10 deletions.
4 changes: 2 additions & 2 deletions README.md
Expand Up @@ -168,8 +168,8 @@ function requires access to and transmission of customer credit card information

recurly.transactions.createImmediateOneTimeTransaction(accountcode, details, callback)

Transparent
==============
Transparent Post
==================
http://docs.recurly.com/transparent-post/basics

recurly.transparent.billingInfoUrl
Expand Down
10 changes: 3 additions & 7 deletions lib/transparent.js
Expand Up @@ -34,10 +34,6 @@
}

this.getFormValuesFromResult = function getFormValuesFromResult(result, type){
console.log('!!!!!!!!!!!!!!!!!!!!!!!!!!!! I\'m Here !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!');
console.log(result.data);
console.log(type);
console.log('=============================================')
var fields = {};
var errors = [];
t.traverse(result.data,function(key, value, parent){
Expand Down Expand Up @@ -93,7 +89,7 @@
fields[parent+'['+key+']'] = toprint.replace(/'/g, ''');
}
catch(e){
console.log('GET FIELDS: could not process: ' + parent+'['+key+'] : ' + toprint );
t.debug('GET FIELDS: could not process: ' + parent+'['+key+'] : ' + toprint );
}
}
});
Expand All @@ -110,7 +106,7 @@
});
}
catch(err){
console.log('Could not process listed error: ' + e);
t.debug('Could not process listed error: ' + e);
}
};
errors.forEach(function(item){
Expand All @@ -124,7 +120,7 @@
processSingleError(item);
}
catch(err){
console.log('Could not process single error: ' + item);
t.debug('Could not process single error: ' + item);
}
}
});
Expand Down
2 changes: 1 addition & 1 deletion package.json
@@ -1,7 +1,7 @@
{ "name" : "node-recurly"
, "description" : "Library for accessing the api for the Recurly recurring billing service."
, "keywords" : [ "recurly", "e-commerce", "recurring billing" ]
, "version" : "0.0.6"
, "version" : "0.0.7"
, "homepage" : "https://github.com/robrighter/node-recurly"
, "author" : "Rob Righter <robrighter@gmail.com> (http://github.com/robrighter)"
, "contributors" :
Expand Down

0 comments on commit 97f088d

Please sign in to comment.