Consistent top-of-file doc blocks

This commit is contained in:
Andrew Stewart 2015-04-14 18:16:03 -07:00
parent 7f706b9de7
commit cccb376679
19 changed files with 62 additions and 28 deletions

View File

@ -1,5 +1,5 @@
/* /**
* adaptor * Cylon.js - Adaptor base class
* cylonjs.com * cylonjs.com
* *
* Copyright (c) 2013-2015 The Hybrid Group * Copyright (c) 2013-2015 The Hybrid Group

View File

@ -1,5 +1,5 @@
/* /**
* basestar * Cylon.js - Basestar base class
* cylonjs.com * cylonjs.com
* *
* Copyright (c) 2013-2015 The Hybrid Group * Copyright (c) 2013-2015 The Hybrid Group

View File

@ -1,5 +1,5 @@
/* /*
* Cylon - Internal Configuration * Cylon.js - Internal Configuration
* cylonjs.com * cylonjs.com
* *
* Copyright (c) 2013-2015 The Hybrid Group * Copyright (c) 2013-2015 The Hybrid Group

View File

@ -1,5 +1,5 @@
/* /*
* cylon * Cylon.js - Master Control Program
* cylonjs.com * cylonjs.com
* *
* Copyright (c) 2013-2015 The Hybrid Group * Copyright (c) 2013-2015 The Hybrid Group

View File

@ -1,5 +1,5 @@
/* /**
* driver * Cylon.js - Driver base class
* cylonjs.com * cylonjs.com
* *
* Copyright (c) 2013-2015 The Hybrid Group * Copyright (c) 2013-2015 The Hybrid Group

View File

@ -1,5 +1,5 @@
/* /**
* Device/Connection Initializer * Cylon.js - Adaptor/Driver initializer
* cylonjs.com * cylonjs.com
* *
* Copyright (c) 2013-2015 The Hybrid Group * Copyright (c) 2013-2015 The Hybrid Group

View File

@ -1,5 +1,5 @@
/* /**
* Linux IO DigitalPin * Cylon.js - GPIO Digital Pin class
* cylonjs.com * cylonjs.com
* *
* Copyright (c) 2013-2015 The Hybrid Group * Copyright (c) 2013-2015 The Hybrid Group

View File

@ -1,3 +1,11 @@
/**
* Cylon.js - I/O Utils
* cylonjs.com
*
* Copyright (c) 2013-2015 The Hybrid Group
* Licensed under the Apache 2.0 license.
*/
"use strict"; "use strict";
module.exports = { module.exports = {

View File

@ -1,5 +1,5 @@
/* /**
* logger * Cylon.js - Logger
* cylonjs.com * cylonjs.com
* *
* Copyright (c) 2013-2015 The Hybrid Group * Copyright (c) 2013-2015 The Hybrid Group

View File

@ -1,3 +1,11 @@
/**
* Cylon.js - Basic Logger
* cylonjs.com
*
* Copyright (c) 2013-2015 The Hybrid Group
* Licensed under the Apache 2.0 license.
*/
"use strict"; "use strict";
var getArgs = function(args) { var getArgs = function(args) {

View File

@ -1,3 +1,11 @@
/**
* Cylon.js - Null Logger
* cylonjs.com
*
* Copyright (c) 2013-2015 The Hybrid Group
* Licensed under the Apache 2.0 license.
*/
"use strict"; "use strict";
// The NullLogger is designed for cases where you want absolutely nothing to // The NullLogger is designed for cases where you want absolutely nothing to

View File

@ -1,9 +1,5 @@
/* /**
* Registry * Cylon.js - Module Registry
*
* The Registry contains references to all Drivers and Adaptors Cylon is aware
* of, along with which module they live in (e.g. cylon-firmata).
*
* cylonjs.com * cylonjs.com
* *
* Copyright (c) 2013-2015 The Hybrid Group * Copyright (c) 2013-2015 The Hybrid Group

View File

@ -1,5 +1,5 @@
/* /**
* robot * Cylon.js - Robot class
* cylonjs.com * cylonjs.com
* *
* Copyright (c) 2013-2015 The Hybrid Group * Copyright (c) 2013-2015 The Hybrid Group

View File

@ -1,5 +1,5 @@
/* /*
* Loopback adaptor * Cylon.js - Loopback adaptor
* cylonjs.com * cylonjs.com
* *
* Copyright (c) 2013-2015 The Hybrid Group * Copyright (c) 2013-2015 The Hybrid Group

View File

@ -1,5 +1,5 @@
/* /*
* Ping driver * Cylon.js - Ping driver
* cylonjs.com * cylonjs.com
* *
* Copyright (c) 2013-2015 The Hybrid Group * Copyright (c) 2013-2015 The Hybrid Group

View File

@ -1,5 +1,5 @@
/* /*
* Test adaptor * Cylon.js - Test Adaptor
* cylonjs.com * cylonjs.com
* *
* Copyright (c) 2013-2015 The Hybrid Group * Copyright (c) 2013-2015 The Hybrid Group

View File

@ -1,5 +1,5 @@
/* /*
* Test driver * Cylon.js - Test Driver
* cylonjs.com * cylonjs.com
* *
* Copyright (c) 2013-2015 The Hybrid Group * Copyright (c) 2013-2015 The Hybrid Group

View File

@ -1,5 +1,11 @@
// A collection of useful helper functions, used internally but not exported /**
// with the rest of Cylon. * Cylon.js - Helper Utilities
* cylonjs.com
*
* Copyright (c) 2013-2015 The Hybrid Group
* Licensed under the Apache 2.0 license.
*/
"use strict"; "use strict";
var __slice = Array.prototype.slice; var __slice = Array.prototype.slice;

View File

@ -1,3 +1,11 @@
/**
* Cylon.js - Monkey Patches
* cylonjs.com
*
* Copyright (c) 2013-2015 The Hybrid Group
* Licensed under the Apache 2.0 license.
*/
"use strict"; "use strict";
var max = Math.max, var max = Math.max,