From 95ad276cad3369bf5f7253d0110a6e04425bd32a Mon Sep 17 00:00:00 2001 From: Douglas Christopher Wilson Date: Thu, 18 Jun 2015 23:00:20 -0400 Subject: [PATCH] docs: add license comments --- index.js | 7 +++++++ lib/express.js | 8 ++++++++ lib/middleware/init.js | 8 ++++++++ lib/middleware/query.js | 8 ++++++++ lib/request.js | 8 ++++++++ lib/router/index.js | 7 +++++++ lib/router/layer.js | 8 ++++++++ lib/router/route.js | 8 ++++++++ lib/view.js | 8 ++++++++ 9 files changed, 70 insertions(+) diff --git a/index.js b/index.js index 3da33783..e6cf8225 100644 --- a/index.js +++ b/index.js @@ -1,2 +1,9 @@ +/*! + * express + * Copyright(c) 2009-2013 TJ Holowaychuk + * Copyright(c) 2013 Roman Shtylman + * Copyright(c) 2014-2015 Douglas Christopher Wilson + * MIT Licensed + */ module.exports = require('./lib/express'); diff --git a/lib/express.js b/lib/express.js index bb8d8082..0d06c820 100644 --- a/lib/express.js +++ b/lib/express.js @@ -1,3 +1,11 @@ +/*! + * express + * Copyright(c) 2009-2013 TJ Holowaychuk + * Copyright(c) 2013 Roman Shtylman + * Copyright(c) 2014-2015 Douglas Christopher Wilson + * MIT Licensed + */ + /** * Module dependencies. */ diff --git a/lib/middleware/init.js b/lib/middleware/init.js index 1e3e903f..0c3644da 100644 --- a/lib/middleware/init.js +++ b/lib/middleware/init.js @@ -1,3 +1,11 @@ +/*! + * express + * Copyright(c) 2009-2013 TJ Holowaychuk + * Copyright(c) 2013 Roman Shtylman + * Copyright(c) 2014-2015 Douglas Christopher Wilson + * MIT Licensed + */ + /** * Initialization middleware, exposing the * request and response to each other, as well diff --git a/lib/middleware/query.js b/lib/middleware/query.js index 092bbd99..80d65859 100644 --- a/lib/middleware/query.js +++ b/lib/middleware/query.js @@ -1,3 +1,11 @@ +/*! + * express + * Copyright(c) 2009-2013 TJ Holowaychuk + * Copyright(c) 2013 Roman Shtylman + * Copyright(c) 2014-2015 Douglas Christopher Wilson + * MIT Licensed + */ + /** * Module dependencies. */ diff --git a/lib/request.js b/lib/request.js index 99964925..4d756deb 100644 --- a/lib/request.js +++ b/lib/request.js @@ -1,3 +1,11 @@ +/*! + * express + * Copyright(c) 2009-2013 TJ Holowaychuk + * Copyright(c) 2013 Roman Shtylman + * Copyright(c) 2014-2015 Douglas Christopher Wilson + * MIT Licensed + */ + /** * Module dependencies. */ diff --git a/lib/router/index.js b/lib/router/index.js index d0989da2..d79a1eb4 100644 --- a/lib/router/index.js +++ b/lib/router/index.js @@ -1,3 +1,10 @@ +/*! + * express + * Copyright(c) 2009-2013 TJ Holowaychuk + * Copyright(c) 2013 Roman Shtylman + * Copyright(c) 2014-2015 Douglas Christopher Wilson + * MIT Licensed + */ /** * Module dependencies. diff --git a/lib/router/layer.js b/lib/router/layer.js index 88ebd396..cc8a1f2c 100644 --- a/lib/router/layer.js +++ b/lib/router/layer.js @@ -1,3 +1,11 @@ +/*! + * express + * Copyright(c) 2009-2013 TJ Holowaychuk + * Copyright(c) 2013 Roman Shtylman + * Copyright(c) 2014-2015 Douglas Christopher Wilson + * MIT Licensed + */ + /** * Module dependencies. */ diff --git a/lib/router/route.js b/lib/router/route.js index d3ef53bc..adb833ce 100644 --- a/lib/router/route.js +++ b/lib/router/route.js @@ -1,3 +1,11 @@ +/*! + * express + * Copyright(c) 2009-2013 TJ Holowaychuk + * Copyright(c) 2013 Roman Shtylman + * Copyright(c) 2014-2015 Douglas Christopher Wilson + * MIT Licensed + */ + /** * Module dependencies. */ diff --git a/lib/view.js b/lib/view.js index e0989b4d..acde752e 100644 --- a/lib/view.js +++ b/lib/view.js @@ -1,3 +1,11 @@ +/*! + * express + * Copyright(c) 2009-2013 TJ Holowaychuk + * Copyright(c) 2013 Roman Shtylman + * Copyright(c) 2014-2015 Douglas Christopher Wilson + * MIT Licensed + */ + /** * Module dependencies. */