adds info about the source of the lib/* files
This commit is contained in:
parent
c165aca080
commit
a648ffbdab
9 changed files with 36 additions and 1 deletions
4
index.js
4
index.js
|
|
@ -1,3 +1,7 @@
|
||||||
|
// this file is a modified version of the v0.2.1 easel local OS X
|
||||||
|
// install. you can find out more about easel and the x-carve at
|
||||||
|
// inventables.com & easel.inventables.com
|
||||||
|
|
||||||
var io = require('socket.io')
|
var io = require('socket.io')
|
||||||
, http = require('http')
|
, http = require('http')
|
||||||
, WebsocketController = require('./lib/websocket_controller')
|
, WebsocketController = require('./lib/websocket_controller')
|
||||||
|
|
|
||||||
|
|
@ -1,3 +1,6 @@
|
||||||
|
// this file is part of the v0.2.1 easel local OS X install.
|
||||||
|
// you can find out more about easel and the x-carve at
|
||||||
|
// inventables.com & easel.inventables.com
|
||||||
|
|
||||||
exports.logger = function() {
|
exports.logger = function() {
|
||||||
var logger = function(name) {
|
var logger = function(name) {
|
||||||
|
|
|
||||||
|
|
@ -1,3 +1,7 @@
|
||||||
|
// this file is part of the v0.2.1 easel local OS X install.
|
||||||
|
// you can find out more about easel and the x-carve at
|
||||||
|
// inventables.com & easel.inventables.com
|
||||||
|
|
||||||
var ErrorHandler = (function () {
|
var ErrorHandler = (function () {
|
||||||
|
|
||||||
return {
|
return {
|
||||||
|
|
@ -8,4 +12,4 @@ var ErrorHandler = (function () {
|
||||||
}
|
}
|
||||||
})();
|
})();
|
||||||
|
|
||||||
module.exports = ErrorHandler;
|
module.exports = ErrorHandler;
|
||||||
|
|
|
||||||
|
|
@ -1,3 +1,7 @@
|
||||||
|
// this file is part of the v0.2.1 easel local OS X install.
|
||||||
|
// you can find out more about easel and the x-carve at
|
||||||
|
// inventables.com & easel.inventables.com
|
||||||
|
|
||||||
module.exports = function(that) {
|
module.exports = function(that) {
|
||||||
var listeners = [];
|
var listeners = [];
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -1,3 +1,7 @@
|
||||||
|
// this file is part of the v0.2.1 easel local OS X install.
|
||||||
|
// you can find out more about easel and the x-carve at
|
||||||
|
// inventables.com & easel.inventables.com
|
||||||
|
|
||||||
var interval = function(callback) {
|
var interval = function(callback) {
|
||||||
var id = null;
|
var id = null;
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -1,3 +1,7 @@
|
||||||
|
// this file is part of the v0.2.1 easel local OS X install.
|
||||||
|
// you can find out more about easel and the x-carve at
|
||||||
|
// inventables.com & easel.inventables.com
|
||||||
|
|
||||||
var _ = require('underscore')._
|
var _ = require('underscore')._
|
||||||
, fs = require('fs')
|
, fs = require('fs')
|
||||||
, readline = require('readline')
|
, readline = require('readline')
|
||||||
|
|
|
||||||
|
|
@ -1,3 +1,7 @@
|
||||||
|
// this file is part of the v0.2.1 easel local OS X install.
|
||||||
|
// you can find out more about easel and the x-carve at
|
||||||
|
// inventables.com & easel.inventables.com
|
||||||
|
|
||||||
var _ = require('underscore')._
|
var _ = require('underscore')._
|
||||||
, Debugger = require('./debugger')
|
, Debugger = require('./debugger')
|
||||||
, eventDispatcher = require('./event_dispatcher');
|
, eventDispatcher = require('./event_dispatcher');
|
||||||
|
|
|
||||||
|
|
@ -1,3 +1,7 @@
|
||||||
|
// this file is part of the v0.2.1 easel local OS X install.
|
||||||
|
// you can find out more about easel and the x-carve at
|
||||||
|
// inventables.com & easel.inventables.com
|
||||||
|
|
||||||
var errorHandler = require('./error_handler')
|
var errorHandler = require('./error_handler')
|
||||||
, SP = require('serialport')
|
, SP = require('serialport')
|
||||||
, Debugger = require('./debugger')
|
, Debugger = require('./debugger')
|
||||||
|
|
|
||||||
|
|
@ -1,3 +1,7 @@
|
||||||
|
// this file is part of the v0.2.1 easel local OS X install.
|
||||||
|
// you can find out more about easel and the x-carve at
|
||||||
|
// inventables.com & easel.inventables.com
|
||||||
|
|
||||||
var Machine = require('./machine')
|
var Machine = require('./machine')
|
||||||
, SerialPortController = require('./serial_port_controller')
|
, SerialPortController = require('./serial_port_controller')
|
||||||
, path = require('path')
|
, path = require('path')
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue