From 5c5e5fac8a670b2f9851a1e9a2f2ad4490dffa11 Mon Sep 17 00:00:00 2001 From: Martin Bley Date: Fri, 29 Jan 2016 14:12:55 +0100 Subject: [PATCH] deleted files --- tipp/__init__.py | 0 tipp/admin.py | 20 ++++++++++++++++++++ tipp/forms.py | 20 ++++++++++++++++++++ tipp/models.py | 20 ++++++++++++++++++++ tipp/openliga.py | 20 +++++++++++--------- tipp/updateMatch.py | 3 --- tipp/views.py | 19 +++++++++++++++++++ 7 files changed, 90 insertions(+), 12 deletions(-) delete mode 100644 tipp/__init__.py delete mode 100644 tipp/updateMatch.py diff --git a/tipp/__init__.py b/tipp/__init__.py deleted file mode 100644 index e69de29..0000000 diff --git a/tipp/admin.py b/tipp/admin.py index 6e36dc3..276fb46 100644 --- a/tipp/admin.py +++ b/tipp/admin.py @@ -1,3 +1,23 @@ +# -*- coding: utf-8 -*- +""" +Copyright (c) 2015-2016 by Martin Bley (martin@mb-oss.de) + +This file is part of TipPy. + +TipPy is free software: you can redistribute it and/or modify +it under the terms of the GNU General Public License as published by +the Free Software Foundation, either version 3 of the License, or +(at your option) any later version. + +TipPy is distributed in the hope that it will be useful, +but WITHOUT ANY WARRANTY; without even the implied warranty of +MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +GNU General Public License for more details. + +You should have received a copy of the GNU General Public License +along with TipPy. If not, see . + +""" from tipp.models import Team, Match, Tipp, Score, Mandant, RelUserMandant, Competition, Post, UserProfile from django.contrib import admin diff --git a/tipp/forms.py b/tipp/forms.py index b242e8d..c2a0ed7 100644 --- a/tipp/forms.py +++ b/tipp/forms.py @@ -1,3 +1,23 @@ +# -*- coding: utf-8 -*- +""" +Copyright (c) 2015-2016 by Martin Bley (martin@mb-oss.de) + +This file is part of TipPy. + +TipPy is free software: you can redistribute it and/or modify +it under the terms of the GNU General Public License as published by +the Free Software Foundation, either version 3 of the License, or +(at your option) any later version. + +TipPy is distributed in the hope that it will be useful, +but WITHOUT ANY WARRANTY; without even the implied warranty of +MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +GNU General Public License for more details. + +You should have received a copy of the GNU General Public License +along with TipPy. If not, see . + +""" from django import forms from django.forms import ModelForm from django.contrib.auth.models import User diff --git a/tipp/models.py b/tipp/models.py index 3759ec9..67fdda4 100644 --- a/tipp/models.py +++ b/tipp/models.py @@ -1,3 +1,23 @@ +# -*- coding: utf-8 -*- +""" +Copyright (c) 2015-2016 by Martin Bley (martin@mb-oss.de) + +This file is part of TipPy. + +TipPy is free software: you can redistribute it and/or modify +it under the terms of the GNU General Public License as published by +the Free Software Foundation, either version 3 of the License, or +(at your option) any later version. + +TipPy is distributed in the hope that it will be useful, +but WITHOUT ANY WARRANTY; without even the implied warranty of +MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +GNU General Public License for more details. + +You should have received a copy of the GNU General Public License +along with TipPy. If not, see . + +""" from django.db import models from django.core.urlresolvers import reverse from django.contrib.auth.models import User diff --git a/tipp/openliga.py b/tipp/openliga.py index 2eb9b48..61ffa77 100755 --- a/tipp/openliga.py +++ b/tipp/openliga.py @@ -1,21 +1,23 @@ #!/usr/bin/env python +# -*- coding: utf-8 -*- # -# Copyright 2013 by Martin Bley -# -# tippy.py is free software: you can redistribute it and/or modify +# Copyright (c) 2015-2016 by Martin Bley (martin@mb-oss.de) +# +# This file is part of TipPy. +# +# TipPy is free software: you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by # the Free Software Foundation, either version 3 of the License, or # (at your option) any later version. -# -# tippy.py is distributed in the hope that it will be useful, +# +# TipPy is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. -# +# # You should have received a copy of the GNU General Public License -# along with tippy.py. If not, see . -# - +# along with TipPy. If not, see . +# import sys, locale, suds, urllib2, psycopg2 class OpenLiga(object): diff --git a/tipp/updateMatch.py b/tipp/updateMatch.py deleted file mode 100644 index a3bc37b..0000000 --- a/tipp/updateMatch.py +++ /dev/null @@ -1,3 +0,0 @@ -from tipp.models import Match - - diff --git a/tipp/views.py b/tipp/views.py index 1add4ea..7fe0ee2 100644 --- a/tipp/views.py +++ b/tipp/views.py @@ -1,4 +1,23 @@ # -*- coding: utf-8 -*- +""" +Copyright (c) 2015-2016 by Martin Bley (martin@mb-oss.de) + +This file is part of TipPy. + +TipPy is free software: you can redistribute it and/or modify +it under the terms of the GNU General Public License as published by +the Free Software Foundation, either version 3 of the License, or +(at your option) any later version. + +TipPy is distributed in the hope that it will be useful, +but WITHOUT ANY WARRANTY; without even the implied warranty of +MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +GNU General Public License for more details. + +You should have received a copy of the GNU General Public License +along with TipPy. If not, see . + +""" from django.http import HttpResponse from django.shortcuts import render_to_response, redirect, render, get_object_or_404 from django.contrib.auth import authenticate, login