aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAsk Solem <askh@opera.com>2009-11-11 16:51:07 +0100
committerAsk Solem <askh@opera.com>2009-11-11 16:51:07 +0100
commit55cb4b7bb9ad31497e44698194598b626d9f9609 (patch)
treed910a04ed608452ab31d2a0694557e99d0a6d8e9
parentc39c5dfdfd5e599c8088951fae968629f4240430 (diff)
downloadchishop-55cb4b7bb9ad31497e44698194598b626d9f9609.tar.bz2
chishop-55cb4b7bb9ad31497e44698194598b626d9f9609.tar.xz
chishop-55cb4b7bb9ad31497e44698194598b626d9f9609.zip
Remove really stupid license headers from source files.
-rw-r--r--README2
-rw-r--r--chishop/__init__.py31
-rw-r--r--djangopypi/__init__.py31
-rw-r--r--djangopypi/admin.py32
-rw-r--r--djangopypi/forms.py32
-rw-r--r--djangopypi/http.py33
-rw-r--r--djangopypi/models.py32
-rw-r--r--djangopypi/views.py32
8 files changed, 0 insertions, 225 deletions
diff --git a/README b/README
index bf6511b..080df8a 100644
--- a/README
+++ b/README
@@ -2,8 +2,6 @@
2ChiShop/DjangoPyPI 2ChiShop/DjangoPyPI
3========================================= 3=========================================
4:Version: 0.1 4:Version: 0.1
5:Authors:
6 Ask Solem (askh@opera.com)
7 5
8Installation 6Installation
9============ 7============
diff --git a/chishop/__init__.py b/chishop/__init__.py
index ddd379a..b56a51c 100644
--- a/chishop/__init__.py
+++ b/chishop/__init__.py
@@ -1,33 +1,2 @@
1""" chishop.py
2Copyright (c) 2009, Ask Solem
3All rights reserved.
4
5Redistribution and use in source and binary forms, with or without
6modification, are permitted provided that the following conditions are met:
7
8 * Redistributions of source code must retain the above copyright notice,
9 this list of conditions and the following disclaimer.
10 * Redistributions in binary form must reproduce the above copyright
11 notice, this list of conditions and the following disclaimer in the
12 documentation and/or other materials provided with the distribution.
13
14Neither the name of Ask Solem nor the names of its contributors may be used
15to endorse or promote products derived from this software without specific
16prior written permission.
17
18THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
19AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,
20THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
21PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS
22BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
23CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
24SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
25INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
26CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
27ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
28POSSIBILITY OF SUCH DAMAGE.
29
30"""
31
32VERSION = (0, 1, 1) 1VERSION = (0, 1, 1)
33__version__ = ".".join(map(str, VERSION)) 2__version__ = ".".join(map(str, VERSION))
diff --git a/djangopypi/__init__.py b/djangopypi/__init__.py
index 6eddff3..b32a761 100644
--- a/djangopypi/__init__.py
+++ b/djangopypi/__init__.py
@@ -1,33 +1,2 @@
1""" djangopypi.py
2Copyright (c) 2009, Ask Solem
3All rights reserved.
4
5Redistribution and use in source and binary forms, with or without
6modification, are permitted provided that the following conditions are met:
7
8 * Redistributions of source code must retain the above copyright notice,
9 this list of conditions and the following disclaimer.
10 * Redistributions in binary form must reproduce the above copyright
11 notice, this list of conditions and the following disclaimer in the
12 documentation and/or other materials provided with the distribution.
13
14Neither the name of Ask Solem nor the names of its contributors may be used
15to endorse or promote products derived from this software without specific
16prior written permission.
17
18THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
19AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,
20THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
21PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS
22BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
23CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
24SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
25INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
26CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
27ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
28POSSIBILITY OF SUCH DAMAGE.
29
30"""
31
32VERSION = (0, 2, 0) 1VERSION = (0, 2, 0)
33__version__ = ".".join(map(str, VERSION)) 2__version__ = ".".join(map(str, VERSION))
diff --git a/djangopypi/admin.py b/djangopypi/admin.py
index 30290e0..6f994e8 100644
--- a/djangopypi/admin.py
+++ b/djangopypi/admin.py
@@ -1,35 +1,3 @@
1""" admin.py
2
3Copyright (c) 2009, Ask Solem
4All rights reserved.
5
6Redistribution and use in source and binary forms, with or without
7modification, are permitted provided that the following conditions are met:
8
9 * Redistributions of source code must retain the above copyright notice,
10 this list of conditions and the following disclaimer.
11 * Redistributions in binary form must reproduce the above copyright
12 notice, this list of conditions and the following disclaimer in the
13 documentation and/or other materials provided with the distribution.
14
15Neither the name of Ask Solem nor the names of its contributors may be used
16to endorse or promote products derived from this software without specific
17prior written permission.
18
19THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
20AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,
21THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
22PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS
23BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
24CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
25SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
26INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
27CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
28ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
29POSSIBILITY OF SUCH DAMAGE.
30
31"""
32
33from django.contrib import admin 1from django.contrib import admin
34from djangopypi.models import Project, Release, Classifier 2from djangopypi.models import Project, Release, Classifier
35 3
diff --git a/djangopypi/forms.py b/djangopypi/forms.py
index 7704753..5484747 100644
--- a/djangopypi/forms.py
+++ b/djangopypi/forms.py
@@ -1,35 +1,3 @@
1""" forms.py
2
3Copyright (c) 2009, Ask Solem
4All rights reserved.
5
6Redistribution and use in source and binary forms, with or without
7modification, are permitted provided that the following conditions are met:
8
9 * Redistributions of source code must retain the above copyright notice,
10 this list of conditions and the following disclaimer.
11 * Redistributions in binary form must reproduce the above copyright
12 notice, this list of conditions and the following disclaimer in the
13 documentation and/or other materials provided with the distribution.
14
15Neither the name of Ask Solem nor the names of its contributors may be used
16to endorse or promote products derived from this software without specific
17prior written permission.
18
19THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
20AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,
21THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
22PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS
23BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
24CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
25SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
26INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
27CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
28ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
29POSSIBILITY OF SUCH DAMAGE.
30
31"""
32
33import os 1import os
34from django import forms 2from django import forms
35from django.conf import settings 3from django.conf import settings
diff --git a/djangopypi/http.py b/djangopypi/http.py
index 4dfe636..01081f7 100644
--- a/djangopypi/http.py
+++ b/djangopypi/http.py
@@ -1,36 +1,3 @@
1""" http.py
2
3Copyright (c) 2009, Ask Solem
4All rights reserved.
5
6Redistribution and use in source and binary forms, with or without
7modification, are permitted provided that the following conditions are met:
8
9 * Redistributions of source code must retain the above copyright notice,
10 this list of conditions and the following disclaimer.
11 * Redistributions in binary form must reproduce the above copyright
12 notice, this list of conditions and the following disclaimer in the
13 documentation and/or other materials provided with the distribution.
14
15Neither the name of Ask Solem nor the names of its contributors may be used
16to endorse or promote products derived from this software without specific
17prior written permission.
18
19THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
20AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,
21THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
22PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS
23BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
24CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
25SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
26INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
27CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
28ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
29POSSIBILITY OF SUCH DAMAGE.
30
31"""
32
33
34from django.http import HttpResponse 1from django.http import HttpResponse
35 2
36class HttpResponseNotImplemented(HttpResponse): 3class HttpResponseNotImplemented(HttpResponse):
diff --git a/djangopypi/models.py b/djangopypi/models.py
index fedf184..4d52974 100644
--- a/djangopypi/models.py
+++ b/djangopypi/models.py
@@ -1,35 +1,3 @@
1""" models.py
2
3Copyright (c) 2009, Ask Solem
4All rights reserved.
5
6Redistribution and use in source and binary forms, with or without
7modification, are permitted provided that the following conditions are met:
8
9 * Redistributions of source code must retain the above copyright notice,
10 this list of conditions and the following disclaimer.
11 * Redistributions in binary form must reproduce the above copyright
12 notice, this list of conditions and the following disclaimer in the
13 documentation and/or other materials provided with the distribution.
14
15Neither the name of Ask Solem nor the names of its contributors may be used
16to endorse or promote products derived from this software without specific
17prior written permission.
18
19THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
20AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,
21THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
22PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS
23BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
24CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
25SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
26INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
27CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
28ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
29POSSIBILITY OF SUCH DAMAGE.
30
31"""
32
33import os 1import os
34from django.conf import settings 2from django.conf import settings
35from django.db import models 3from django.db import models
diff --git a/djangopypi/views.py b/djangopypi/views.py
index 784651b..816a170 100644
--- a/djangopypi/views.py
+++ b/djangopypi/views.py
@@ -1,35 +1,3 @@
1""" views.py
2
3Copyright (c) 2009, Ask Solem
4All rights reserved.
5
6Redistribution and use in source and binary forms, with or without
7modification, are permitted provided that the following conditions are met:
8
9 * Redistributions of source code must retain the above copyright notice,
10 this list of conditions and the following disclaimer.
11 * Redistributions in binary form must reproduce the above copyright
12 notice, this list of conditions and the following disclaimer in the
13 documentation and/or other materials provided with the distribution.
14
15Neither the name of Ask Solem nor the names of its contributors may be used
16to endorse or promote products derived from this software without specific
17prior written permission.
18
19THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
20AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,
21THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
22PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS
23BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
24CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
25SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
26INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
27CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
28ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
29POSSIBILITY OF SUCH DAMAGE.
30
31"""
32
33import cgi 1import cgi
34import os 2import os
35 3