Skip to content

Commit 109bdf6

Browse files
committed
Update copyright notice
1 parent cc313cd commit 109bdf6

File tree

10 files changed

+23
-18
lines changed

10 files changed

+23
-18
lines changed

LICENSE

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
The MIT License (MIT)
22

3-
Copyright (c) 2013 Fabio Massaioli
3+
Copyright (c) 2016 Fabio Massaioli and other contributors
44

55
Code from Node http module:
66
Copyright Joyent, Inc. and other Node contributors

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ License
5050

5151
The MIT License (MIT)
5252

53-
Copyright (c) 2013 Fabio Massaioli
53+
Copyright (c) 2016 Fabio Massaioli and other contributors
5454

5555
Code from Node http module:
5656
Copyright Joyent, Inc. and other Node contributors

example/fileServer.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
#!/usr/bin/env node
22

33
/**
4-
* Copyright (c) 2013 Fabio Massaioli
4+
* Copyright (c) 2016 Fabio Massaioli and other contributors
55
*
66
* Code from Node http module:
77
* Copyright Joyent, Inc. and other Node contributors

example/integration.js

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,10 @@
1+
#!/usr/bin/env node
2+
13
/**
2-
* Copyright Robert Groh and other contributors
4+
* Copyright (c) 2016 Fabio Massaioli, Robert Groh and other contributors
5+
*
6+
* Code from Node http module:
7+
* Copyright Joyent, Inc. and other Node contributors
38
*
49
* Permission is hereby granted, free of charge, to any person obtaining a copy of
510
* this software and associated documentation files (the 'Software'), to deal in
@@ -94,6 +99,3 @@ fcgiFramework.createServer(
9499
server.listen(port);
95100
}
96101
});
97-
98-
99-

index.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/**
2-
* Copyright (c) 2013 Fabio Massaioli
2+
* Copyright (c) 2016 Fabio Massaioli and other contributors
33
*
44
* Code from Node http module:
55
* Copyright Joyent, Inc. and other Node contributors
@@ -38,7 +38,7 @@ exports.ServerResponse = exports.Response;
3838
/**
3939
* function createServer([responder], [authorizer], [filter], [config])
4040
* Creates and returns a FastCGI server object. Compatible with http.createServer
41-
*
41+
*
4242
* Arguments:
4343
* - responder (optional): callback for FastCGI responder requests (normal HTTP requests, 'request' event)
4444
* - authorizer (optional): callback for FastCGI authorizer requests ('authorize' event)

lib/request.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/**
2-
* Copyright (c) 2013 Fabio Massaioli
2+
* Copyright (c) 2016 Fabio Massaioli and other contributors
33
*
44
* Code from Node http module:
55
* Copyright Joyent, Inc. and other Node contributors

lib/response.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/**
2-
* Copyright (c) 2013 Fabio Massaioli
2+
* Copyright (c) 2016 Fabio Massaioli and other contributors
33
*
44
* Code from Node http module:
55
* Copyright Joyent, Inc. and other Node contributors

lib/server.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/**
2-
* Copyright (c) 2013 Fabio Massaioli
2+
* Copyright (c) 2016 Fabio Massaioli and other contributors
33
*
44
* Code from Node http module:
55
* Copyright Joyent, Inc. and other Node contributors
@@ -47,7 +47,7 @@ function isfunction(obj) {
4747
/**
4848
* function Server([responder], [authorizer], [filter], [config])
4949
* FastCGI server object. Compatible with http.Server
50-
*
50+
*
5151
* Arguments:
5252
* - responder (optional): callback for FastCGI responder requests (normal HTTP requests, 'request' event)
5353
* - authorizer (optional): callback for FastCGI authorizer requests ('authorize' event)

lib/streams.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/**
2-
* Copyright (c) 2013 Fabio Massaioli
2+
* Copyright (c) 2016 Fabio Massaioli and other contributors
33
*
44
* Code from Node http module:
55
* Copyright Joyent, Inc. and other Node contributors

test/mocha/integration/echo.js

Lines changed: 7 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,8 @@
11
/**
2-
* Copyright Robert Groh and other contributors
2+
* Copyright (c) 2016 Fabio Massaioli, Robert Groh and other contributors
3+
*
4+
* Code from Node http module:
5+
* Copyright Joyent, Inc. and other Node contributors
36
*
47
* Permission is hereby granted, free of charge, to any person obtaining a copy of
58
* this software and associated documentation files (the 'Software'), to deal in
@@ -20,7 +23,7 @@
2023
*/
2124

2225
'use strict';
23-
/*global describe, it, before, after */ //, xit, beforeEach, afterEach */
26+
/*global describe, it, before, after */
2427
/*jshint node: true */
2528
/*jshint expr: true*/
2629

@@ -36,8 +39,8 @@ function randomInt(low, high) {
3639

3740

3841
describe('echo Server', function setup() {
39-
var port = 0 //will choose a random (and hopefully free) port
40-
, socketPath = path.join(__dirname, 'echoServer_Socket' + randomInt(1000, 2000));
42+
var port = 0, //will choose a random (and hopefully free) port
43+
socketPath = path.join(__dirname, 'echoServer_Socket' + randomInt(1000, 2000));
4144

4245
before(function startFastCgiApplication(done) {
4346
function answerWithError(res, err) {

0 commit comments

Comments
 (0)