Skip to content

Commit

Permalink
Implentation of new methods and code refactoring for release 0.0.2
Browse files Browse the repository at this point in the history
  • Loading branch information
latinojoel committed Oct 12, 2013
1 parent 0be29f1 commit 20ad99a
Show file tree
Hide file tree
Showing 6 changed files with 422 additions and 142 deletions.
11 changes: 11 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,16 @@
# CDAjs


## 0.0.2

* Implementation of listQueries method
* Implementation of getCdaList method
* Implementation of listDataAccessTypes method
* Implementation of listParameters method
* Implementation of clearCache method
* Implementation of getCdaFile method
* refactoring code

## 0.0.1

* Implementation of doQuery method
4 changes: 2 additions & 2 deletions build/yuidoc.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "CDAjs",
"description": "CDAjs is a stand-alone javascript library for working with Pentaho Community Data Access plugin.",
"version": "0.0.1",
"version": "0.0.2",
"url": "http://latinojoel.github.io/cdajs",
"logo": "http://latinojoel.github.io/cdajs/images/cdajs_logo.png",
"options": {
Expand All @@ -10,6 +10,6 @@
"paths": [
"../lib"
],
"outdir": "./api-0.0.1"
"outdir": "./api-0.0.2"
}
}
4 changes: 2 additions & 2 deletions examples/expressjs-app-sample/package.json
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
cd wo {
{
"name": "application-name",
"version": "0.0.2",
"private": true,
Expand All @@ -7,7 +7,7 @@ cd wo {
},
"dependencies": {
"express": "3.3.4",
"cda.js": ">=0.0.2",
"cdajs": ">=0.0.1",
"jade": "*",
"stylus": "*"
}
Expand Down
4 changes: 2 additions & 2 deletions examples/expressjs-app-sample/routes/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
* GET home page.
*/

var cda = require("cda.js");
var cda = require("cdajs");

exports.index = function(req, res) {
var obj = new cda.CDA({
Expand All @@ -15,7 +15,7 @@ exports.index = function(req, res) {
return;
}
});
obj.doQuery(function(xhr) {
obj.doQuery(function (xhr) {
res.send("Result Set: " + xhr.resultset);
}, {
params: {
Expand Down

0 comments on commit 20ad99a

Please sign in to comment.