From 61f27d336d6637a9a3927eca4fa7f25c10e72e4c Mon Sep 17 00:00:00 2001 From: Georges Toth Date: Mon, 28 May 2012 23:29:27 +0200 Subject: [PATCH] add copyright --- MeMaTool/bin/mematool_reminders.py | 18 ++++++++++++++ MeMaTool/mematool/controllers/auth.py | 18 ++++++++++++++ MeMaTool/mematool/controllers/error.py | 18 ++++++++++++++ MeMaTool/mematool/controllers/groups.py | 26 +++++++++----------- MeMaTool/mematool/controllers/mails.py | 26 +++++++++----------- MeMaTool/mematool/controllers/members.py | 13 ++++------ MeMaTool/mematool/controllers/payments.py | 26 +++++++++----------- MeMaTool/mematool/controllers/profile.py | 13 ++++------ MeMaTool/mematool/controllers/statistics.py | 13 ++++------ MeMaTool/mematool/model/__init__.py | 18 ++++++++++++++ MeMaTool/mematool/model/alias.py | 26 +++++++++----------- MeMaTool/mematool/model/baseModelFactory.py | 13 ++++------ MeMaTool/mematool/model/domain.py | 26 +++++++++----------- MeMaTool/mematool/model/group.py | 27 +++++++++------------ MeMaTool/mematool/model/ldapModelFactory.py | 13 ++++------ MeMaTool/mematool/model/lechecker.py | 26 +++++++++----------- MeMaTool/mematool/model/member.py | 12 ++++----- MeMaTool/mematool/model/meta.py | 18 ++++++++++++++ MeMaTool/mematool/model/payment.py | 27 +++++++++------------ MeMaTool/mematool/model/paymentmethod.py | 27 +++++++++------------ MeMaTool/mematool/model/tmpmember.py | 27 +++++++++------------ 21 files changed, 240 insertions(+), 191 deletions(-) diff --git a/MeMaTool/bin/mematool_reminders.py b/MeMaTool/bin/mematool_reminders.py index 581a141..be8fe24 100755 --- a/MeMaTool/bin/mematool_reminders.py +++ b/MeMaTool/bin/mematool_reminders.py @@ -1,5 +1,23 @@ #!/usr/bin/python +# +# Copyright (c) 2012 Georges Toth +# +# This file is part of MeMaTool. +# +# MeMaTool is free software: you can redistribute it and/or modify +# it under the terms of the GNU Affero General Public License as published by +# the Free Software Foundation, either version 3 of the License, or +# (at your option) any later version. +# +# MeMaTool 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 Affero General Public License for more details. +# +# You should have received a copy of the GNU Affero General Public License +# along with MeMaTool. If not, see . + import smtplib import string import random diff --git a/MeMaTool/mematool/controllers/auth.py b/MeMaTool/mematool/controllers/auth.py index 9a59f0b..a323e30 100644 --- a/MeMaTool/mematool/controllers/auth.py +++ b/MeMaTool/mematool/controllers/auth.py @@ -1,3 +1,21 @@ +# +# Copyright (c) 2012 Georges Toth +# +# This file is part of MeMaTool. +# +# MeMaTool is free software: you can redistribute it and/or modify +# it under the terms of the GNU Affero General Public License as published by +# the Free Software Foundation, either version 3 of the License, or +# (at your option) any later version. +# +# MeMaTool 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 Affero General Public License for more details. +# +# You should have received a copy of the GNU Affero General Public License +# along with MeMaTool. If not, see . + import logging from pylons import request, response, session, tmpl_context as c, url diff --git a/MeMaTool/mematool/controllers/error.py b/MeMaTool/mematool/controllers/error.py index d6092b4..4254a2e 100644 --- a/MeMaTool/mematool/controllers/error.py +++ b/MeMaTool/mematool/controllers/error.py @@ -1,3 +1,21 @@ +# +# Copyright (c) 2012 Georges Toth +# +# This file is part of MeMaTool. +# +# MeMaTool is free software: you can redistribute it and/or modify +# it under the terms of the GNU Affero General Public License as published by +# the Free Software Foundation, either version 3 of the License, or +# (at your option) any later version. +# +# MeMaTool 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 Affero General Public License for more details. +# +# You should have received a copy of the GNU Affero General Public License +# along with MeMaTool. If not, see . + import cgi from paste.urlparser import PkgResourcesParser diff --git a/MeMaTool/mematool/controllers/groups.py b/MeMaTool/mematool/controllers/groups.py index f6b13f9..ffc04d5 100644 --- a/MeMaTool/mematool/controllers/groups.py +++ b/MeMaTool/mematool/controllers/groups.py @@ -1,22 +1,20 @@ # -# MeMaTool (c) 2010 Georges Toth +# Copyright (c) 2012 Georges Toth # +# This file is part of MeMaTool. # -# This file is part of MeMaTool. +# MeMaTool is free software: you can redistribute it and/or modify +# it under the terms of the GNU Affero General Public License as published by +# the Free Software Foundation, either version 3 of the License, or +# (at your option) any later version. # +# MeMaTool 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 Affero General Public License for more details. # -# MeMaTool 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. -# -# Foobar 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 MeMaTool. If not, see . +# You should have received a copy of the GNU Affero General Public License +# along with MeMaTool. If not, see . import logging log = logging.getLogger(__name__) diff --git a/MeMaTool/mematool/controllers/mails.py b/MeMaTool/mematool/controllers/mails.py index 6cb42c8..f450ce9 100644 --- a/MeMaTool/mematool/controllers/mails.py +++ b/MeMaTool/mematool/controllers/mails.py @@ -1,22 +1,20 @@ # -# MeMaTool (c) 2010 Georges Toth +# Copyright (c) 2012 Georges Toth # +# This file is part of MeMaTool. # -# This file is part of MeMaTool. +# MeMaTool is free software: you can redistribute it and/or modify +# it under the terms of the GNU Affero General Public License as published by +# the Free Software Foundation, either version 3 of the License, or +# (at your option) any later version. # +# MeMaTool 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 Affero General Public License for more details. # -# MeMaTool 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. -# -# Foobar 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 MeMaTool. If not, see . +# You should have received a copy of the GNU Affero General Public License +# along with MeMaTool. If not, see . import logging log = logging.getLogger(__name__) diff --git a/MeMaTool/mematool/controllers/members.py b/MeMaTool/mematool/controllers/members.py index 0433cfb..40a3983 100644 --- a/MeMaTool/mematool/controllers/members.py +++ b/MeMaTool/mematool/controllers/members.py @@ -1,24 +1,21 @@ # -# MeMaTool (c) 2010 Georges Toth -# +# Copyright (c) 2012 Georges Toth # # This file is part of MeMaTool. # -# # MeMaTool is free software: you can redistribute it and/or modify -# it under the terms of the GNU General Public License as published by +# it under the terms of the GNU Affero General Public License as published by # the Free Software Foundation, either version 3 of the License, or # (at your option) any later version. # -# Foobar is distributed in the hope that it will be useful, +# MeMaTool 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. +# GNU Affero General Public License for more details. # -# You should have received a copy of the GNU General Public License +# You should have received a copy of the GNU Affero General Public License # along with MeMaTool. If not, see . - import logging from pylons import request, response, session, tmpl_context as c, url diff --git a/MeMaTool/mematool/controllers/payments.py b/MeMaTool/mematool/controllers/payments.py index 9efa29a..a228268 100644 --- a/MeMaTool/mematool/controllers/payments.py +++ b/MeMaTool/mematool/controllers/payments.py @@ -1,22 +1,20 @@ # -# MeMaTool (c) 2010 Georges Toth +# Copyright (c) 2012 Georges Toth # +# This file is part of MeMaTool. # -# This file is part of MeMaTool. +# MeMaTool is free software: you can redistribute it and/or modify +# it under the terms of the GNU Affero General Public License as published by +# the Free Software Foundation, either version 3 of the License, or +# (at your option) any later version. # +# MeMaTool 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 Affero General Public License for more details. # -# MeMaTool 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. -# -# Foobar 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 MeMaTool. If not, see . +# You should have received a copy of the GNU Affero General Public License +# along with MeMaTool. If not, see . import logging log = logging.getLogger(__name__) diff --git a/MeMaTool/mematool/controllers/profile.py b/MeMaTool/mematool/controllers/profile.py index 8767c4e..8c8150e 100644 --- a/MeMaTool/mematool/controllers/profile.py +++ b/MeMaTool/mematool/controllers/profile.py @@ -1,24 +1,21 @@ # -# MeMaTool (c) 2010 Georges Toth -# +# Copyright (c) 2012 Georges Toth # # This file is part of MeMaTool. # -# # MeMaTool is free software: you can redistribute it and/or modify -# it under the terms of the GNU General Public License as published by +# it under the terms of the GNU Affero General Public License as published by # the Free Software Foundation, either version 3 of the License, or # (at your option) any later version. # -# Foobar is distributed in the hope that it will be useful, +# MeMaTool 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. +# GNU Affero General Public License for more details. # -# You should have received a copy of the GNU General Public License +# You should have received a copy of the GNU Affero General Public License # along with MeMaTool. If not, see . - import logging from pylons import request, response, session, tmpl_context as c, url diff --git a/MeMaTool/mematool/controllers/statistics.py b/MeMaTool/mematool/controllers/statistics.py index c177d2e..2f3b248 100644 --- a/MeMaTool/mematool/controllers/statistics.py +++ b/MeMaTool/mematool/controllers/statistics.py @@ -1,24 +1,21 @@ # -# MeMaTool (c) 2010 Georges Toth -# +# Copyright (c) 2012 Georges Toth # # This file is part of MeMaTool. # -# # MeMaTool is free software: you can redistribute it and/or modify -# it under the terms of the GNU General Public License as published by +# it under the terms of the GNU Affero General Public License as published by # the Free Software Foundation, either version 3 of the License, or # (at your option) any later version. # -# Foobar is distributed in the hope that it will be useful, +# MeMaTool 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. +# GNU Affero General Public License for more details. # -# You should have received a copy of the GNU General Public License +# You should have received a copy of the GNU Affero General Public License # along with MeMaTool. If not, see . - import logging from pylons import request, response, session, tmpl_context as c, url diff --git a/MeMaTool/mematool/model/__init__.py b/MeMaTool/mematool/model/__init__.py index f8eaea2..0113c66 100644 --- a/MeMaTool/mematool/model/__init__.py +++ b/MeMaTool/mematool/model/__init__.py @@ -1,3 +1,21 @@ +# +# Copyright (c) 2012 Georges Toth +# +# This file is part of MeMaTool. +# +# MeMaTool is free software: you can redistribute it and/or modify +# it under the terms of the GNU Affero General Public License as published by +# the Free Software Foundation, either version 3 of the License, or +# (at your option) any later version. +# +# MeMaTool 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 Affero General Public License for more details. +# +# You should have received a copy of the GNU Affero General Public License +# along with MeMaTool. If not, see . + """The application's model objects""" from mematool.model.meta import Session, metadata, Base diff --git a/MeMaTool/mematool/model/alias.py b/MeMaTool/mematool/model/alias.py index d9336b6..4a1b2dc 100644 --- a/MeMaTool/mematool/model/alias.py +++ b/MeMaTool/mematool/model/alias.py @@ -1,22 +1,20 @@ # -# MeMaTool (c) 2010 Georges Toth +# Copyright (c) 2012 Georges Toth # +# This file is part of MeMaTool. # -# This file is part of MeMaTool. +# MeMaTool is free software: you can redistribute it and/or modify +# it under the terms of the GNU Affero General Public License as published by +# the Free Software Foundation, either version 3 of the License, or +# (at your option) any later version. # +# MeMaTool 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 Affero General Public License for more details. # -# MeMaTool 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. -# -# Foobar 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 MeMaTool. If not, see . +# You should have received a copy of the GNU Affero General Public License +# along with MeMaTool. If not, see . class Alias(object): diff --git a/MeMaTool/mematool/model/baseModelFactory.py b/MeMaTool/mematool/model/baseModelFactory.py index e5c1c5d..3009798 100644 --- a/MeMaTool/mematool/model/baseModelFactory.py +++ b/MeMaTool/mematool/model/baseModelFactory.py @@ -1,24 +1,21 @@ # -# MeMaTool (c) 2010 Georges Toth -# +# Copyright (c) 2012 Georges Toth # # This file is part of MeMaTool. # -# # MeMaTool is free software: you can redistribute it and/or modify -# it under the terms of the GNU General Public License as published by +# it under the terms of the GNU Affero General Public License as published by # the Free Software Foundation, either version 3 of the License, or # (at your option) any later version. # -# Foobar is distributed in the hope that it will be useful, +# MeMaTool 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. +# GNU Affero General Public License for more details. # -# You should have received a copy of the GNU General Public License +# You should have received a copy of the GNU Affero General Public License # along with MeMaTool. If not, see . - import logging from pylons import config diff --git a/MeMaTool/mematool/model/domain.py b/MeMaTool/mematool/model/domain.py index 319eccf..54944b2 100644 --- a/MeMaTool/mematool/model/domain.py +++ b/MeMaTool/mematool/model/domain.py @@ -1,22 +1,20 @@ # -# MeMaTool (c) 2010 Georges Toth +# Copyright (c) 2012 Georges Toth # +# This file is part of MeMaTool. # -# This file is part of MeMaTool. +# MeMaTool is free software: you can redistribute it and/or modify +# it under the terms of the GNU Affero General Public License as published by +# the Free Software Foundation, either version 3 of the License, or +# (at your option) any later version. # +# MeMaTool 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 Affero General Public License for more details. # -# MeMaTool 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. -# -# Foobar 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 MeMaTool. If not, see . +# You should have received a copy of the GNU Affero General Public License +# along with MeMaTool. If not, see . class Domain(object): diff --git a/MeMaTool/mematool/model/group.py b/MeMaTool/mematool/model/group.py index 0a0b51d..2223c2f 100644 --- a/MeMaTool/mematool/model/group.py +++ b/MeMaTool/mematool/model/group.py @@ -1,23 +1,20 @@ # -# MeMaTool (c) 2010 Georges Toth +# Copyright (c) 2012 Georges Toth # +# This file is part of MeMaTool. # -# This file is part of MeMaTool. +# MeMaTool is free software: you can redistribute it and/or modify +# it under the terms of the GNU Affero General Public License as published by +# the Free Software Foundation, either version 3 of the License, or +# (at your option) any later version. # +# MeMaTool 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 Affero General Public License for more details. # -# MeMaTool 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. -# -# Foobar 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 MeMaTool. If not, see . - +# You should have received a copy of the GNU Affero General Public License +# along with MeMaTool. If not, see . from sqlalchemy import schema, types, orm, create_engine, Table, Column, Integer, Float, String, MetaData, ForeignKey, Boolean, Date, ForeignKeyConstraint from sqlalchemy.ext.declarative import declarative_base diff --git a/MeMaTool/mematool/model/ldapModelFactory.py b/MeMaTool/mematool/model/ldapModelFactory.py index 5d26283..d1303da 100644 --- a/MeMaTool/mematool/model/ldapModelFactory.py +++ b/MeMaTool/mematool/model/ldapModelFactory.py @@ -1,24 +1,21 @@ # -# MeMaTool (c) 2010 Georges Toth -# +# Copyright (c) 2012 Georges Toth # # This file is part of MeMaTool. # -# # MeMaTool is free software: you can redistribute it and/or modify -# it under the terms of the GNU General Public License as published by +# it under the terms of the GNU Affero General Public License as published by # the Free Software Foundation, either version 3 of the License, or # (at your option) any later version. # -# Foobar is distributed in the hope that it will be useful, +# MeMaTool 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. +# GNU Affero General Public License for more details. # -# You should have received a copy of the GNU General Public License +# You should have received a copy of the GNU Affero General Public License # along with MeMaTool. If not, see . - import logging from pylons import config diff --git a/MeMaTool/mematool/model/lechecker.py b/MeMaTool/mematool/model/lechecker.py index 29f33fb..011d9a0 100644 --- a/MeMaTool/mematool/model/lechecker.py +++ b/MeMaTool/mematool/model/lechecker.py @@ -1,22 +1,20 @@ # -# MeMaTool (c) 2012 Georges Toth +# Copyright (c) 2012 Georges Toth # +# This file is part of MeMaTool. # -# This file is part of MeMaTool. +# MeMaTool is free software: you can redistribute it and/or modify +# it under the terms of the GNU Affero General Public License as published by +# the Free Software Foundation, either version 3 of the License, or +# (at your option) any later version. # +# MeMaTool 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 Affero General Public License for more details. # -# MeMaTool 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. -# -# Foobar 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 MeMaTool. If not, see . +# You should have received a copy of the GNU Affero General Public License +# along with MeMaTool. If not, see . from pylons import request from pylons.i18n.translation import _ diff --git a/MeMaTool/mematool/model/member.py b/MeMaTool/mematool/model/member.py index eb7d035..558cd3d 100644 --- a/MeMaTool/mematool/model/member.py +++ b/MeMaTool/mematool/model/member.py @@ -1,21 +1,19 @@ # -# MeMaTool (c) 2010 Georges Toth -# +# Copyright (c) 2012 Georges Toth # # This file is part of MeMaTool. # -# # MeMaTool is free software: you can redistribute it and/or modify -# it under the terms of the GNU General Public License as published by +# it under the terms of the GNU Affero General Public License as published by # the Free Software Foundation, either version 3 of the License, or # (at your option) any later version. # -# Foobar is distributed in the hope that it will be useful, +# MeMaTool 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. +# GNU Affero General Public License for more details. # -# You should have received a copy of the GNU General Public License +# You should have received a copy of the GNU Affero General Public License # along with MeMaTool. If not, see . # -*- coding: utf-8 -*- diff --git a/MeMaTool/mematool/model/meta.py b/MeMaTool/mematool/model/meta.py index 1dc8bca..091a507 100644 --- a/MeMaTool/mematool/model/meta.py +++ b/MeMaTool/mematool/model/meta.py @@ -1,3 +1,21 @@ +# +# Copyright (c) 2012 Georges Toth +# +# This file is part of MeMaTool. +# +# MeMaTool is free software: you can redistribute it and/or modify +# it under the terms of the GNU Affero General Public License as published by +# the Free Software Foundation, either version 3 of the License, or +# (at your option) any later version. +# +# MeMaTool 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 Affero General Public License for more details. +# +# You should have received a copy of the GNU Affero General Public License +# along with MeMaTool. If not, see . + """SQLAlchemy Metadata and Session object""" from sqlalchemy import MetaData from sqlalchemy.orm import scoped_session, sessionmaker diff --git a/MeMaTool/mematool/model/payment.py b/MeMaTool/mematool/model/payment.py index acdc958..15fb466 100644 --- a/MeMaTool/mematool/model/payment.py +++ b/MeMaTool/mematool/model/payment.py @@ -1,23 +1,20 @@ # -# MeMaTool (c) 2010 Georges Toth +# Copyright (c) 2012 Georges Toth # +# This file is part of MeMaTool. # -# This file is part of MeMaTool. +# MeMaTool is free software: you can redistribute it and/or modify +# it under the terms of the GNU Affero General Public License as published by +# the Free Software Foundation, either version 3 of the License, or +# (at your option) any later version. # +# MeMaTool 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 Affero General Public License for more details. # -# MeMaTool 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. -# -# Foobar 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 MeMaTool. If not, see . - +# You should have received a copy of the GNU Affero General Public License +# along with MeMaTool. If not, see . from sqlalchemy import schema, types, orm, create_engine, Table, Column, Integer, Float, String, MetaData, ForeignKey, Boolean, Date, ForeignKeyConstraint from sqlalchemy.ext.declarative import declarative_base diff --git a/MeMaTool/mematool/model/paymentmethod.py b/MeMaTool/mematool/model/paymentmethod.py index 9bc5672..e6d0ca4 100644 --- a/MeMaTool/mematool/model/paymentmethod.py +++ b/MeMaTool/mematool/model/paymentmethod.py @@ -1,23 +1,20 @@ # -# MeMaTool (c) 2010 Georges Toth +# Copyright (c) 2012 Georges Toth # +# This file is part of MeMaTool. # -# This file is part of MeMaTool. +# MeMaTool is free software: you can redistribute it and/or modify +# it under the terms of the GNU Affero General Public License as published by +# the Free Software Foundation, either version 3 of the License, or +# (at your option) any later version. # +# MeMaTool 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 Affero General Public License for more details. # -# MeMaTool 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. -# -# Foobar 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 MeMaTool. If not, see . - +# You should have received a copy of the GNU Affero General Public License +# along with MeMaTool. If not, see . from sqlalchemy import schema, types, orm, create_engine, Table, Column, Integer, String, MetaData, ForeignKey, Boolean, DateTime, ForeignKeyConstraint from sqlalchemy.ext.declarative import declarative_base diff --git a/MeMaTool/mematool/model/tmpmember.py b/MeMaTool/mematool/model/tmpmember.py index 9b2c9de..eff152d 100644 --- a/MeMaTool/mematool/model/tmpmember.py +++ b/MeMaTool/mematool/model/tmpmember.py @@ -1,23 +1,20 @@ # -# MeMaTool (c) 2010 Georges Toth +# Copyright (c) 2012 Georges Toth # +# This file is part of MeMaTool. # -# This file is part of MeMaTool. +# MeMaTool is free software: you can redistribute it and/or modify +# it under the terms of the GNU Affero General Public License as published by +# the Free Software Foundation, either version 3 of the License, or +# (at your option) any later version. # +# MeMaTool 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 Affero General Public License for more details. # -# MeMaTool 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. -# -# Foobar 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 MeMaTool. If not, see . - +# You should have received a copy of the GNU Affero General Public License +# along with MeMaTool. If not, see . from sqlalchemy import schema, types, orm, create_engine, Table, Column, Integer, String, MetaData, ForeignKey, Boolean, Date, ForeignKeyConstraint from sqlalchemy.types import Unicode