Skip to content

Commit

Permalink
[ @ ] Reminders and TODO
Browse files Browse the repository at this point in the history
  • Loading branch information
pnegri committed Oct 28, 2011
1 parent 0576e2e commit 30d1f7a
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 0 deletions.
7 changes: 7 additions & 0 deletions TODO.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
Implement a Response Time Calculator
Implement a Request Time HEader
Implement a Second Timer
* Requests per Second
* CPU use
* Disk use
Implement a Node Information (To store) etc
3 changes: 3 additions & 0 deletions lib/arcabouco.js
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,8 @@ Arcabouco.prototype = {
var this_controller = require( controller_filename );
var controller_index = this.controllerInstances.push( this_controller );

if (this_controller.bootstrap != undefined) this_controller.bootstrap( this );

if (this_controller.getRoutes == undefined) return;
var controller_routes = this_controller.getRoutes();

Expand Down Expand Up @@ -117,6 +119,7 @@ Arcabouco.prototype = {
url_parts.data = data;
url_parts.route = route.index;
url_parts.request = request;
url_parts.app = this;
}
);
if (url_parts) break;
Expand Down

0 comments on commit 30d1f7a

Please sign in to comment.