summaryrefslogtreecommitdiff
path: root/paste
diff options
context:
space:
mode:
authorianb <devnull@localhost>2006-06-13 16:13:41 +0000
committerianb <devnull@localhost>2006-06-13 16:13:41 +0000
commitce90e19bfb8e2269e5e286630f6302cfabfdd096 (patch)
tree8d42e3a6dae32ca74aa93eacd1dee42654a4cb75 /paste
parent18b946d9f521486065f33432fd904dc85ddb922b (diff)
downloadpastedeploy-ce90e19bfb8e2269e5e286630f6302cfabfdd096.tar.gz
Added copyright header to a bunch of files
Diffstat (limited to 'paste')
-rw-r--r--paste/deploy/__init__.py2
-rw-r--r--paste/deploy/config.py2
-rw-r--r--paste/deploy/converters.py2
-rw-r--r--paste/deploy/interfaces.py2
-rw-r--r--paste/deploy/loadwsgi.py2
-rw-r--r--paste/deploy/paster_templates.py2
-rw-r--r--paste/deploy/util/__init__.py2
-rw-r--r--paste/deploy/util/fixtypeerror.py2
8 files changed, 16 insertions, 0 deletions
diff --git a/paste/deploy/__init__.py b/paste/deploy/__init__.py
index abf833f..f89218f 100644
--- a/paste/deploy/__init__.py
+++ b/paste/deploy/__init__.py
@@ -1,3 +1,5 @@
+# (c) 2005 Ian Bicking and contributors; written for Paste (http://pythonpaste.org)
+# Licensed under the MIT license: http://www.opensource.org/licenses/mit-license.php
from loadwsgi import *
try:
from config import CONFIG
diff --git a/paste/deploy/config.py b/paste/deploy/config.py
index 912eeb0..696f7fd 100644
--- a/paste/deploy/config.py
+++ b/paste/deploy/config.py
@@ -1,3 +1,5 @@
+# (c) 2005 Ian Bicking and contributors; written for Paste (http://pythonpaste.org)
+# Licensed under the MIT license: http://www.opensource.org/licenses/mit-license.php
import threading
# Loaded lazily
wsgilib = None
diff --git a/paste/deploy/converters.py b/paste/deploy/converters.py
index f329174..f0ad349 100644
--- a/paste/deploy/converters.py
+++ b/paste/deploy/converters.py
@@ -1,3 +1,5 @@
+# (c) 2005 Ian Bicking and contributors; written for Paste (http://pythonpaste.org)
+# Licensed under the MIT license: http://www.opensource.org/licenses/mit-license.php
def asbool(obj):
if isinstance(obj, (str, unicode)):
obj = obj.strip().lower()
diff --git a/paste/deploy/interfaces.py b/paste/deploy/interfaces.py
index 8a03bdb..3da4bfe 100644
--- a/paste/deploy/interfaces.py
+++ b/paste/deploy/interfaces.py
@@ -1,3 +1,5 @@
+# (c) 2005 Ian Bicking and contributors; written for Paste (http://pythonpaste.org)
+# Licensed under the MIT license: http://www.opensource.org/licenses/mit-license.php
############################################################
## Functions
############################################################
diff --git a/paste/deploy/loadwsgi.py b/paste/deploy/loadwsgi.py
index 91d26e8..405b08a 100644
--- a/paste/deploy/loadwsgi.py
+++ b/paste/deploy/loadwsgi.py
@@ -1,3 +1,5 @@
+# (c) 2005 Ian Bicking and contributors; written for Paste (http://pythonpaste.org)
+# Licensed under the MIT license: http://www.opensource.org/licenses/mit-license.php
import os
import re
import urllib
diff --git a/paste/deploy/paster_templates.py b/paste/deploy/paster_templates.py
index c3de82b..4434898 100644
--- a/paste/deploy/paster_templates.py
+++ b/paste/deploy/paster_templates.py
@@ -1,3 +1,5 @@
+# (c) 2005 Ian Bicking and contributors; written for Paste (http://pythonpaste.org)
+# Licensed under the MIT license: http://www.opensource.org/licenses/mit-license.php
import os
from paste.script.templates import Template
diff --git a/paste/deploy/util/__init__.py b/paste/deploy/util/__init__.py
index 792d600..56bf54c 100644
--- a/paste/deploy/util/__init__.py
+++ b/paste/deploy/util/__init__.py
@@ -1 +1,3 @@
+# (c) 2005 Ian Bicking and contributors; written for Paste (http://pythonpaste.org)
+# Licensed under the MIT license: http://www.opensource.org/licenses/mit-license.php
#
diff --git a/paste/deploy/util/fixtypeerror.py b/paste/deploy/util/fixtypeerror.py
index d513c6d..b1fa0ec 100644
--- a/paste/deploy/util/fixtypeerror.py
+++ b/paste/deploy/util/fixtypeerror.py
@@ -1,3 +1,5 @@
+# (c) 2005 Ian Bicking and contributors; written for Paste (http://pythonpaste.org)
+# Licensed under the MIT license: http://www.opensource.org/licenses/mit-license.php
"""
Fixes the vague error message that you get when calling a function
with the wrong arguments.