Updated license header.

This commit is contained in:
Emanuel Schuetze 2012-04-25 22:29:19 +02:00
parent c8ceb7ab3d
commit 7ef298881d
62 changed files with 239 additions and 96 deletions

View File

@ -1,8 +1,7 @@
Authors of OpenSlides in alphabetical order:
Authors of OpenSlides in chronological order of first contribution:
Emanuel Schütze <emanuel@intevation.de>
Oskar Hahn <mail@oshahn.de>
Norman Jäckel <mail@normanjaeckel.de>
René Köcher <shirk@bitspin.org>
Thanks:
Norman Jäckel, Leipzig, Germany
Andy Kittner <andkit@gmx.net>

19
THANKS
View File

@ -3,14 +3,23 @@ THANKS file for OpenSlides
OpenSlides uses parts of the following projects:
* Oxygen-Icons
<http://www.oxygen-icons.org/>
* Django
<https://www.djangoproject.com/>
* jQuery
<http://www.jquery.com>
<http://www.jquery.com>
* jQuery UI
<http://jqueryui.com>
* ReportLab
<http://www.reportlab.com/software/opensource/rl-toolkit/>
* Drupal (tabledrag function)
<http://www.drupal.org/>
* Django
<https://www.djangoproject.com/>
* Oxygen-Icons
<http://www.oxygen-icons.org/>
* Ubuntu TrueType Font
<http://font.ubuntu.com/>

View File

@ -1,12 +1,9 @@
#!/usr/bin/env python
# -*- coding: utf-8 -*-
"""
openslides.manage
~~~~~~~~~~~~~~~~~
Django's execute manager.
:copyright: 2011 by the OpenSlides team, see AUTHORS.
:copyright: 2011, 2012 by OpenSlides team, see AUTHORS.
:license: GNU GPL, see LICENSE for more details.
"""

View File

@ -1,3 +1,10 @@
#!/usr/bin/env python
# -*- coding: utf-8 -*-
"""
:copyright: 2011, 2012 by OpenSlides team, see AUTHORS.
:license: GNU GPL, see LICENSE for more details.
"""
VERSION = (1, 2, 0, 'alpha', 0)
def get_version(version=None):

View File

@ -1 +0,0 @@

View File

@ -6,7 +6,7 @@
Forms for the agenda app.
:copyright: 2011 by the OpenSlides team, see AUTHORS.
:copyright: 2011, 2012 by OpenSlides team, see AUTHORS.
:license: GNU GPL, see LICENSE for more details.
"""

View File

@ -6,7 +6,7 @@
Models for the agenda app.
:copyright: 2011 by the OpenSlides team, see AUTHORS.
:copyright: 2011, 2012 by OpenSlides team, see AUTHORS.
:license: GNU GPL, see LICENSE for more details.
"""

View File

@ -1,3 +1,15 @@
#!/usr/bin/env python
# -*- coding: utf-8 -*-
"""
openslides.agenda.slides
~~~~~~~~~~~~~~~~~~~~~~~
Slides for the agenda app.
:copyright: 2011, 2012 by OpenSlides team, see AUTHORS.
:license: GNU GPL, see LICENSE for more details.
"""
from django.utils.translation import ugettext as _
def agenda_show():

View File

@ -1,12 +1,12 @@
#!/usr/bin/env python
# -*- coding: utf-8 -*-
"""
openslides.agenda.test
~~~~~~~~~~~~~~~~~~~~~~
openslides.agenda.tests
~~~~~~~~~~~~~~~~~~~~~~~
Unit test for the agenda app.
:copyright: 2011 by the OpenSlides team, see AUTHORS.
:copyright: 2011, 2012 by OpenSlides team, see AUTHORS.
:license: GNU GPL, see LICENSE for more details.
"""

View File

@ -6,7 +6,7 @@
URL list for the agenda app.
:copyright: 2011 by the OpenSlides team, see AUTHORS.
:copyright: 2011, 2012 by OpenSlides team, see AUTHORS.
:license: GNU GPL, see LICENSE for more details.
"""

View File

@ -6,7 +6,7 @@
Views for the agenda app.
:copyright: 2011 by the OpenSlides team, see AUTHORS.
:copyright: 2011, 2012 by the OpenSlides team, see AUTHORS.
:license: GNU GPL, see LICENSE for more details.
"""
from reportlab.platypus import Paragraph

View File

@ -6,7 +6,7 @@
Forms for the application app.
:copyright: 2011 by the OpenSlides team, see AUTHORS.
:copyright: 2011, 2012 by OpenSlides team, see AUTHORS.
:license: GNU GPL, see LICENSE for more details.
"""

View File

@ -6,7 +6,7 @@
Models for the application app.
:copyright: 2011 by the OpenSlides team, see AUTHORS.
:copyright: 2011, 2012 by OpenSlides team, see AUTHORS.
:license: GNU GPL, see LICENSE for more details.
"""

View File

@ -1,12 +1,12 @@
#!/usr/bin/env python
# -*- coding: utf-8 -*-
"""
openslides.application.test
~~~~~~~~~~~~~~~~~~~~~~~~~~~
openslides.application.tests
~~~~~~~~~~~~~~~~~~~~~~~~~~~~
Unit tests for the application app.
:copyright: 2011 by the OpenSlides team, see AUTHORS.
:copyright: 2011, 2012 by OpenSlides team, see AUTHORS.
:license: GNU GPL, see LICENSE for more details.
"""

View File

@ -6,7 +6,7 @@
URL list for the application app.
:copyright: 2011 by the OpenSlides team, see AUTHORS.
:copyright: 2011, 2012 by OpenSlides team, see AUTHORS.
:license: GNU GPL, see LICENSE for more details.
"""

View File

@ -6,7 +6,7 @@
Views for the application app.
:copyright: 2011 by the OpenSlides team, see AUTHORS.
:copyright: 2011, 2012 by OpenSlides team, see AUTHORS.
:license: GNU GPL, see LICENSE for more details.
"""
from __future__ import with_statement

View File

@ -6,7 +6,7 @@
Forms for the assignment app.
:copyright: 2011 by the OpenSlides team, see AUTHORS.
:copyright: 2011, 2012 by OpenSlides team, see AUTHORS.
:license: GNU GPL, see LICENSE for more details.
"""

View File

@ -6,7 +6,7 @@
Models for the assignment app.
:copyright: 2011 by the OpenSlides team, see AUTHORS.
:copyright: 2011, 2012 by OpenSlides team, see AUTHORS.
:license: GNU GPL, see LICENSE for more details.
"""

View File

@ -2,12 +2,12 @@
# -*- coding: utf-8 -*-
"""
openslides.assignment.test
~~~~~~~~~~~~~~~~~~~~~~~~~~
openslides.assignment.tests
~~~~~~~~~~~~~~~~~~~~~~~~~~~
Unit tests for the assignment app.
:copyright: 2011 by the OpenSlides team, see AUTHORS.
:copyright: 2011, 2012 by OpenSlides team, see AUTHORS.
:license: GNU GPL, see LICENSE for more details.
"""

View File

@ -6,7 +6,7 @@
URL list for the assignment app.
:copyright: 2011 by the OpenSlides team, see AUTHORS.
:copyright: 2011, 2012 by OpenSlides team, see AUTHORS.
:license: GNU GPL, see LICENSE for more details.
"""

View File

@ -6,7 +6,7 @@
Views for the assignment app.
:copyright: 2011 by the OpenSlides team, see AUTHORS.
:copyright: 2011, 2012 by OpenSlides team, see AUTHORS.
:license: GNU GPL, see LICENSE for more details.
"""

View File

@ -1 +0,0 @@

View File

@ -6,7 +6,7 @@
Forms for the config app.
:copyright: 2011 by the OpenSlides team, see AUTHORS.
:copyright: 2011, 2012 by OpenSlides team, see AUTHORS.
:license: GNU GPL, see LICENSE for more details.
"""

View File

@ -6,7 +6,7 @@
Models for the config app.
:copyright: 2011 by the OpenSlides team, see AUTHORS.
:copyright: 2011, 2012 by OpenSlides team, see AUTHORS.
:license: GNU GPL, see LICENSE for more details.
"""
from pickle import dumps, loads

View File

@ -2,11 +2,11 @@
# -*- coding: utf-8 -*-
"""
openslides.config.signals
~~~~~~~~~~~~~~~~~~~~~~~~~~~~
~~~~~~~~~~~~~~~~~~~~~~~~~~
Defines Signals for the config.
:copyright: 2011 by the OpenSlides team, see AUTHORS.
:copyright: 2011, 2012 by OpenSlides team, see AUTHORS.
:license: GNU GPL, see LICENSE for more details.
"""

View File

@ -6,7 +6,7 @@
URL list for the config app.
:copyright: 2011 by the OpenSlides team, see AUTHORS.
:copyright: 2011, 2012 by OpenSlides team, see AUTHORS.
:license: GNU GPL, see LICENSE for more details.
"""

View File

@ -6,7 +6,7 @@
Views for the config app.
:copyright: 2011 by the OpenSlides team, see AUTHORS.
:copyright: 2011, 2012 by OpenSlides team, see AUTHORS.
:license: GNU GPL, see LICENSE for more details.
"""

View File

@ -6,7 +6,7 @@
Global settings file.
:copyright: 2011 by the OpenSlides team, see AUTHORS.
:copyright: 2011, 2012 by OpenSlides team, see AUTHORS.
:license: GNU GPL, see LICENSE for more details.
"""

View File

@ -1,17 +1,16 @@
# SOME DESCRIPTIVE TITLE.
# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
# This file is distributed under the same license as the PACKAGE package.
# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
# German translations for OpenSlides package.
# Copyright (C) 2011, 2012 by OpenSlides team, see AUTHORS.
# This file is distributed under the same license as the OpenSlides package.
#
msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Project-Id-Version: OpenSlides 1.x\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2012-04-23 22:16+0200\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: \n"
"Last-Translator: Emanuel Schuetze <emanuel@intevation.de>\n"
"Language-Team: German <LL@li.org>\n"
"Language: de\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"

View File

@ -1,3 +1,15 @@
#!/usr/bin/env python
# -*- coding: utf-8 -*-
"""
openslides.main
~~~~~~~~~~~~~~~
Main script to start and set up OpenSlides.
:copyright: 2011, 2012 by OpenSlides team, see AUTHORS.
:license: GNU GPL, see LICENSE for more details.
"""
from __future__ import with_statement
import os

View File

@ -1,14 +1,15 @@
#!/usr/bin/env python
# -*- coding: utf-8 -*-
"""
openslides.opennslides_settings
~~~~~~~~~~~~~~~~~~~~~~~~~~~
openslides.openslides_settings
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
OpenSlides default settings.
:copyright: 2011 by the OpenSlides team, see AUTHORS.
:copyright: 2011, 2012 by OpenSlides team, see AUTHORS.
:license: GNU GPL, see LICENSE for more details.
"""
import os
from django.conf.global_settings import *

View File

@ -6,9 +6,10 @@
Useful functions for the participant app.
:copyright: 2011 by the OpenSlides team, see AUTHORS.
:copyright: 2011, 2012 by OpenSlides team, see AUTHORS.
:license: GNU GPL, see LICENSE for more details.
"""
from random import choice
import string

View File

@ -6,7 +6,7 @@
Forms for the participant app.
:copyright: 2011 by the OpenSlides team, see AUTHORS.
:copyright: 2011, 2012 by OpenSlides team, see AUTHORS.
:license: GNU GPL, see LICENSE for more details.
"""

View File

@ -6,7 +6,7 @@
Models for the participant app.
:copyright: 2011 by the OpenSlides team, see AUTHORS.
:copyright: 2011, 2012 by OpenSlides team, see AUTHORS.
:license: GNU GPL, see LICENSE for more details.
"""

View File

@ -6,7 +6,7 @@
Unit tests for the participant app.
:copyright: 2011 by the OpenSlides team, see AUTHORS.
:copyright: 2011, 2012 by OpenSlides team, see AUTHORS.
:license: GNU GPL, see LICENSE for more details.
"""

View File

@ -6,7 +6,7 @@
URL list for the participant app.
:copyright: 2011 by the OpenSlides team, see AUTHORS.
:copyright: 2011, 2012 by OpenSlides team, see AUTHORS.
:license: GNU GPL, see LICENSE for more details.
"""

View File

@ -6,7 +6,7 @@
Views for the participant app.
:copyright: 2011 by the OpenSlides team, see AUTHORS.
:copyright: 2011, 2012 by OpenSlides team, see AUTHORS.
:license: GNU GPL, see LICENSE for more details.
"""

View File

@ -1,13 +0,0 @@
## from django.utils.translation import ugettext as _
##
## from models import BasePoll
## from views import PollFormView
##
##
## class DesicionPoll(PollFormView):
## vote_values = [_('yes'), _('no'), _('contained')]
## poll_class = BasePoll
##
##
## class ChoicePoll(PollFormView):
## poll_class = BasePoll

View File

@ -1,3 +1,15 @@
#!/usr/bin/env python
# -*- coding: utf-8 -*-
"""
openslides.poll.forms
~~~~~~~~~~~~~~~~~~~~~
Forms for the poll app.
:copyright: 2011, 2012 by OpenSlides team, see AUTHORS.
:license: GNU GPL, see LICENSE for more details.
"""
from django import forms
from django.utils.translation import ugettext as _

View File

@ -6,7 +6,7 @@
Models for the poll app.
:copyright: 2011 by the OpenSlides team, see AUTHORS.
:copyright: 2011, 2012 by OpenSlides team, see AUTHORS.
:license: GNU GPL, see LICENSE for more details.
"""

View File

@ -1,3 +1,15 @@
#!/usr/bin/env python
# -*- coding: utf-8 -*-
"""
openslides.poll.views
~~~~~~~~~~~~~~~~~~~~~
Views for the poll app.
:copyright: 2011, 2012 by OpenSlides team, see AUTHORS.
:license: GNU GPL, see LICENSE for more details.
"""
from django.http import HttpResponseRedirect
from django.forms.models import modelform_factory

View File

@ -1,3 +1,15 @@
#!/usr/bin/env python
# -*- coding: utf-8 -*-
"""
openslides.projector.api
~~~~~~~~~~~~~~~~~~~~~~~~
Useful functions for the projector app.
:copyright: 2011, 2012 by OpenSlides team, see AUTHORS.
:license: GNU GPL, see LICENSE for more details.
"""
from config.models import config
from projector import SLIDE, Slide
from django.template.loader import render_to_string

View File

@ -1,3 +1,14 @@
#!/usr/bin/env python
# -*- coding: utf-8 -*-
"""
openslides.projector.models
~~~~~~~~~~~~~~~~~~~~~~~~
Models for the projector app.
:copyright: 2011, 2012 by OpenSlides team, see AUTHORS.
:license: GNU GPL, see LICENSE for more details.
"""
from django.db import models
from django.dispatch import receiver

View File

@ -1,3 +1,15 @@
#!/usr/bin/env python
# -*- coding: utf-8 -*-
"""
openslides.projector.projector
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
Slide functions for the projector app.
:copyright: 2011, 2012 by OpenSlides team, see AUTHORS.
:license: GNU GPL, see LICENSE for more details.
"""
from time import time
from django.dispatch import receiver

View File

@ -6,7 +6,7 @@
Defines Signals for the projector.
:copyright: 2011 by the OpenSlides team, see AUTHORS.
:copyright: 2011, 2012 by OpenSlides team, see AUTHORS.
:license: GNU GPL, see LICENSE for more details.
"""

View File

@ -1,8 +1,13 @@
#!/usr/bin/env python
# -*- coding: utf-8 -*-
"""
This file demonstrates writing tests using the unittest module. These will pass
when you run "manage.py test".
openslides.projector.tests
~~~~~~~~~~~~~~~~~~~~~~~~~~
Replace this with more appropriate tests for your application.
Unit tests for the projector app.
:copyright: 2011, 2012 by OpenSlides team, see AUTHORS.
:license: GNU GPL, see LICENSE for more details.
"""
from django.test import TestCase

View File

@ -2,11 +2,11 @@
# -*- coding: utf-8 -*-
"""
openslides.projector.urls
~~~~~~~~~~~~~~~~~~~~~~
~~~~~~~~~~~~~~~~~~~~~~~~
URL list for the projector app.
:copyright: 2011 by the OpenSlides team, see AUTHORS.
:copyright: 2011, 2012 by OpenSlides team, see AUTHORS.
:license: GNU GPL, see LICENSE for more details.
"""

View File

@ -2,13 +2,14 @@
# -*- coding: utf-8 -*-
"""
openslides.projector.views
~~~~~~~~~~~~~~~~~~~~~~~
~~~~~~~~~~~~~~~~~~~~~~~~~
Views for the projector app.
:copyright: 2011 by the OpenSlides team, see AUTHORS.
:copyright: 2011, 2012 by OpenSlides team, see AUTHORS.
:license: GNU GPL, see LICENSE for more details.
"""
from datetime import datetime
from time import time

View File

@ -6,7 +6,7 @@
Global URL list for OpenSlides.
:copyright: 2011 by the OpenSlides team, see AUTHORS.
:copyright: 2011, 2012 by OpenSlides team, see AUTHORS.
:license: GNU GPL, see LICENSE for more details.
"""

View File

@ -1,3 +1,15 @@
#!/usr/bin/env python
# -*- coding: utf-8 -*-
"""
openslides.utils.auth.AnonymousAuth
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
Functions for authenticate anonymous user.
:copyright: 2011, 2012 by OpenSlides team, see AUTHORS.
:license: GNU GPL, see LICENSE for more details.
"""
from django.contrib.auth.models import Permission
from config.models import config

View File

@ -1 +1,8 @@
#!/usr/bin/env python
# -*- coding: utf-8 -*-
"""
:copyright: 2011, 2012 by OpenSlides team, see AUTHORS.
:license: GNU GPL, see LICENSE for more details.
"""
from AnonymousAuth import *

View File

@ -6,7 +6,7 @@
Additional dialect definitions for pythons CSV module.
:copyright: 2011 by the OpenSlides team, see AUTHORS.
:copyright: 2011, 2012 by OpenSlides team, see AUTHORS.
:license: GNU GPL, see LICENSE for more details.
"""

View File

@ -1,3 +1,15 @@
#!/usr/bin/env python
# -*- coding: utf-8 -*-
"""
openslides.utils.forms
~~~~~~~~~~~~~~~~~~~~~~
Additional definitions for OpenSlides forms.
:copyright: 2011, 2012 by OpenSlides team, see AUTHORS.
:license: GNU GPL, see LICENSE for more details.
"""
class CssClassMixin(object):
error_css_class = 'error'
required_css_class = 'required'

View File

@ -4,9 +4,9 @@
openslides.utils.pdf
~~~~~~~~~~~~~~~~~~~~
Print PDF functions for all OpenSlides apps.
Additional definitions for creating PDF documents.
:copyright: 2011 by the OpenSlides team, see AUTHORS.
:copyright: 2011, 2012 by OpenSlides team, see AUTHORS.
:license: GNU GPL, see LICENSE for more details.
"""

View File

@ -4,9 +4,9 @@
openslides.utils.signals
~~~~~~~~~~~~~~~~~~~~~~~~~~~~
Defines Signals for the openslides-project.
Defines Signals for OpenSlides.
:copyright: 2011 by the OpenSlides team, see AUTHORS.
:copyright: 2011, 2012 by OpenSlides team, see AUTHORS.
:license: GNU GPL, see LICENSE for more details.
"""

View File

@ -4,9 +4,9 @@
openslides.template
~~~~~~~~~~~~~~~~~~~
Useful template functions.
Useful template functions for OpenSlides.
:copyright: 2011 by the OpenSlides team, see AUTHORS.
:copyright: 2011, 2012 by OpenSlides team, see AUTHORS.
:license: GNU GPL, see LICENSE for more details.
"""

View File

@ -1,5 +1,14 @@
#!/usr/bin/env python
# -*- coding: utf-8 -*-
"""
openslides.utils.templatetags.tags
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
Template tags for OpenSlides
:copyright: 2011, 2012 by OpenSlides team, see AUTHORS.
:license: GNU GPL, see LICENSE for more details.
"""
from django import template
from config.models import config

View File

@ -2,11 +2,11 @@
# -*- coding: utf-8 -*-
"""
openslides.utils.translation_ext
~~~~~~~~~~~~~~~~~~~~~~~~
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
Localizable descriptions for django permissions.
:copyright: 2011 by the OpenSlides team, see AUTHORS.
:copyright: 2011, 2012 by OpenSlides team, see AUTHORS.
:license: GNU GPL, see LICENSE for more details.
"""

View File

@ -4,9 +4,9 @@
openslides.utils.urls
~~~~~~~~~~~~~~~~~~~~~
URL list for utils.
URL functions for OpenSlides.
:copyright: 2011 by the OpenSlides team, see AUTHORS.
:copyright: 2011, 2012 by OpenSlides team, see AUTHORS.
:license: GNU GPL, see LICENSE for more details.
"""

View File

@ -4,9 +4,9 @@
openslides.utils.views
~~~~~~~~~~~~~~~~~~~~~~
Views for utils.
Views for OpenSlides.
:copyright: 2011 by the OpenSlides team, see AUTHORS.
:copyright: 2011, 2012 by OpenSlides team, see AUTHORS.
:license: GNU GPL, see LICENSE for more details.
"""

View File

@ -1,3 +1,12 @@
#!/usr/bin/env python
# -*- coding: utf-8 -*-
"""
Setup script for OpenSlides.
:copyright: 2011, 2012 by OpenSlides team, see AUTHORS.
:license: GNU GPL, see LICENSE for more details.
"""
from setuptools import setup
from setuptools import find_packages
from openslides import get_version

View File

@ -1,4 +1,11 @@
#!/usr/bin/env python
# -*- coding: utf-8 -*-
"""
Start script for OpenSlides.
:copyright: 2011, 2012 by OpenSlides team, see AUTHORS.
:license: GNU GPL, see LICENSE for more details.
"""
import openslides.main