From d37a9d81dc580a33eec2c435b6b18a9f42f36e58 Mon Sep 17 00:00:00 2001 From: Benoit Chesneau Date: Tue, 19 Jan 2010 00:09:09 +0100 Subject: [PATCH] edit header to tell the license. --- NOTICE | 7 +++++-- gunicorn/__init__.py | 4 ++-- gunicorn/arbiter.py | 5 ++--- gunicorn/http/__init__.py | 4 ++-- gunicorn/http/http_parser.py | 4 ++-- gunicorn/http/request.py | 4 ++-- gunicorn/http/response.py | 4 ++-- gunicorn/http/tee.py | 4 ++-- gunicorn/main.py | 4 ++-- gunicorn/util.py | 5 ++--- gunicorn/worker.py | 4 ++-- setup.py | 5 ++--- 12 files changed, 27 insertions(+), 27 deletions(-) diff --git a/NOTICE b/NOTICE index 3cf3b5db..08f183ab 100644 --- a/NOTICE +++ b/NOTICE @@ -1,4 +1,7 @@ -gnicorn +Gunicorn 2009,2010 (c) BenoƮt Chesneau -2009,2010 (c) Paul J. Davis \ No newline at end of file +2009,2010 (c) Paul J. Davis + +Gunicorn is released under the MIT license. See the LICENSE +file for the complete license. \ No newline at end of file diff --git a/gunicorn/__init__.py b/gunicorn/__init__.py index d336db47..8c56abce 100644 --- a/gunicorn/__init__.py +++ b/gunicorn/__init__.py @@ -1,7 +1,7 @@ # -*- coding: utf-8 - # -# This file is part of gunicorn. See the NOTICE file included -# with this release for more information. +# This file is part of gunicorn released under the MIT license. +# See the NOTICE for more information. __version__ = "0.1" diff --git a/gunicorn/arbiter.py b/gunicorn/arbiter.py index 1872006b..77add787 100644 --- a/gunicorn/arbiter.py +++ b/gunicorn/arbiter.py @@ -1,8 +1,7 @@ # -*- coding: utf-8 - # -# This file is part of gunicorn. See the NOTICE file included -# with this release for more information. - +# This file is part of gunicorn released under the MIT license. +# See the NOTICE for more information. import errno import fcntl diff --git a/gunicorn/http/__init__.py b/gunicorn/http/__init__.py index 3ddbe476..51abaf20 100644 --- a/gunicorn/http/__init__.py +++ b/gunicorn/http/__init__.py @@ -1,7 +1,7 @@ # -*- coding: utf-8 - # -# This file is part of gunicorn. See the NOTICE file included -# with this release for more information. +# This file is part of gunicorn released under the MIT license. +# See the NOTICE for more information. from gunicorn.http.request import HTTPRequest, RequestError diff --git a/gunicorn/http/http_parser.py b/gunicorn/http/http_parser.py index 791d6e98..3a68be71 100644 --- a/gunicorn/http/http_parser.py +++ b/gunicorn/http/http_parser.py @@ -1,7 +1,7 @@ # -*- coding: utf-8 - # -# This file is part of gunicorn. See the NOTICE file included -# with this release for more information. +# This file is part of gunicorn released under the MIT license. +# See the NOTICE for more information. class HttpParser(object): diff --git a/gunicorn/http/request.py b/gunicorn/http/request.py index 6c66d447..9b844c99 100644 --- a/gunicorn/http/request.py +++ b/gunicorn/http/request.py @@ -1,7 +1,7 @@ # -*- coding: utf-8 - # -# This file is part of gunicorn. See the NOTICE file included -# with this release for more information. +# This file is part of gunicorn released under the MIT license. +# See the NOTICE for more information. import errno diff --git a/gunicorn/http/response.py b/gunicorn/http/response.py index 1badefcc..d164e188 100644 --- a/gunicorn/http/response.py +++ b/gunicorn/http/response.py @@ -1,7 +1,7 @@ # -*- coding: utf-8 - # -# This file is part of gunicorn. See the NOTICE file included -# with this release for more information. +# This file is part of gunicorn released under the MIT license. +# See the NOTICE for more information. import errno import socket diff --git a/gunicorn/http/tee.py b/gunicorn/http/tee.py index 2f42505b..a0176e7f 100644 --- a/gunicorn/http/tee.py +++ b/gunicorn/http/tee.py @@ -1,7 +1,7 @@ # -*- coding: utf-8 - # -# This file is part of gunicorn. See the NOTICE file included -# with this release for more information. +# This file is part of gunicorn released under the MIT license. +# See the NOTICE for more information. """ diff --git a/gunicorn/main.py b/gunicorn/main.py index d8fbcc44..9c22806e 100644 --- a/gunicorn/main.py +++ b/gunicorn/main.py @@ -1,7 +1,7 @@ # -*- coding: utf-8 - # -# This file is part of gunicorn. See the NOTICE file included -# with this release for more information. +# This file is part of gunicorn released under the MIT license. +# See the NOTICE for more information. import logging diff --git a/gunicorn/util.py b/gunicorn/util.py index 9aa81d00..336f8d2a 100644 --- a/gunicorn/util.py +++ b/gunicorn/util.py @@ -1,8 +1,7 @@ # -*- coding: utf-8 - # -# This file is part of gunicorn. See the NOTICE file included -# with this release for more information. - +# This file is part of gunicorn released under the MIT license. +# See the NOTICE for more information. import errno import select diff --git a/gunicorn/worker.py b/gunicorn/worker.py index e16cbb2a..9c831311 100644 --- a/gunicorn/worker.py +++ b/gunicorn/worker.py @@ -1,7 +1,7 @@ # -*- coding: utf-8 - # -# This file is part of gunicorn. See the NOTICE file included -# with this release for more information. +# This file is part of gunicorn released under the MIT license. +# See the NOTICE for more information. import errno diff --git a/setup.py b/setup.py index 39636002..f8457210 100644 --- a/setup.py +++ b/setup.py @@ -1,8 +1,7 @@ # -*- coding: utf-8 - # -# This file is part of gunicorn. See the NOTICE file included -# with this release for more information. - +# This file is part of gunicorn released under the MIT license. +# See the NOTICE for more information. import os