author | Lennard de Rijk <ljvderijk@gmail.com> |
Sat, 24 Jan 2009 10:19:17 +0000 | |
changeset 944 | 5ea2bd9e3fa6 |
parent 883 | 1e0af43577ee |
child 970 | 8b5611d5b053 |
permissions | -rw-r--r-- |
181
fdd29818a954
Remove Author model (use Person instead). Update models after removing Author. Add new Sponsor, Organization models.
Pawel Solyga <Pawel.Solyga@gmail.com>
parents:
diff
changeset
|
1 |
#!/usr/bin/python2.5 |
fdd29818a954
Remove Author model (use Person instead). Update models after removing Author. Add new Sponsor, Organization models.
Pawel Solyga <Pawel.Solyga@gmail.com>
parents:
diff
changeset
|
2 |
# |
fdd29818a954
Remove Author model (use Person instead). Update models after removing Author. Add new Sponsor, Organization models.
Pawel Solyga <Pawel.Solyga@gmail.com>
parents:
diff
changeset
|
3 |
# Copyright 2008 the Melange authors. |
fdd29818a954
Remove Author model (use Person instead). Update models after removing Author. Add new Sponsor, Organization models.
Pawel Solyga <Pawel.Solyga@gmail.com>
parents:
diff
changeset
|
4 |
# |
fdd29818a954
Remove Author model (use Person instead). Update models after removing Author. Add new Sponsor, Organization models.
Pawel Solyga <Pawel.Solyga@gmail.com>
parents:
diff
changeset
|
5 |
# Licensed under the Apache License, Version 2.0 (the "License"); |
fdd29818a954
Remove Author model (use Person instead). Update models after removing Author. Add new Sponsor, Organization models.
Pawel Solyga <Pawel.Solyga@gmail.com>
parents:
diff
changeset
|
6 |
# you may not use this file except in compliance with the License. |
fdd29818a954
Remove Author model (use Person instead). Update models after removing Author. Add new Sponsor, Organization models.
Pawel Solyga <Pawel.Solyga@gmail.com>
parents:
diff
changeset
|
7 |
# You may obtain a copy of the License at |
fdd29818a954
Remove Author model (use Person instead). Update models after removing Author. Add new Sponsor, Organization models.
Pawel Solyga <Pawel.Solyga@gmail.com>
parents:
diff
changeset
|
8 |
# |
fdd29818a954
Remove Author model (use Person instead). Update models after removing Author. Add new Sponsor, Organization models.
Pawel Solyga <Pawel.Solyga@gmail.com>
parents:
diff
changeset
|
9 |
# http://www.apache.org/licenses/LICENSE-2.0 |
fdd29818a954
Remove Author model (use Person instead). Update models after removing Author. Add new Sponsor, Organization models.
Pawel Solyga <Pawel.Solyga@gmail.com>
parents:
diff
changeset
|
10 |
# |
fdd29818a954
Remove Author model (use Person instead). Update models after removing Author. Add new Sponsor, Organization models.
Pawel Solyga <Pawel.Solyga@gmail.com>
parents:
diff
changeset
|
11 |
# Unless required by applicable law or agreed to in writing, software |
fdd29818a954
Remove Author model (use Person instead). Update models after removing Author. Add new Sponsor, Organization models.
Pawel Solyga <Pawel.Solyga@gmail.com>
parents:
diff
changeset
|
12 |
# distributed under the License is distributed on an "AS IS" BASIS, |
fdd29818a954
Remove Author model (use Person instead). Update models after removing Author. Add new Sponsor, Organization models.
Pawel Solyga <Pawel.Solyga@gmail.com>
parents:
diff
changeset
|
13 |
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
fdd29818a954
Remove Author model (use Person instead). Update models after removing Author. Add new Sponsor, Organization models.
Pawel Solyga <Pawel.Solyga@gmail.com>
parents:
diff
changeset
|
14 |
# See the License for the specific language governing permissions and |
fdd29818a954
Remove Author model (use Person instead). Update models after removing Author. Add new Sponsor, Organization models.
Pawel Solyga <Pawel.Solyga@gmail.com>
parents:
diff
changeset
|
15 |
# limitations under the License. |
fdd29818a954
Remove Author model (use Person instead). Update models after removing Author. Add new Sponsor, Organization models.
Pawel Solyga <Pawel.Solyga@gmail.com>
parents:
diff
changeset
|
16 |
|
775
d18d286df40f
Fixed missing import in soc/models/organization.py.
Lennard de Rijk <ljvderijk@gmail.com>
parents:
773
diff
changeset
|
17 |
"""This module contains the Organization Model. |
d18d286df40f
Fixed missing import in soc/models/organization.py.
Lennard de Rijk <ljvderijk@gmail.com>
parents:
773
diff
changeset
|
18 |
""" |
181
fdd29818a954
Remove Author model (use Person instead). Update models after removing Author. Add new Sponsor, Organization models.
Pawel Solyga <Pawel.Solyga@gmail.com>
parents:
diff
changeset
|
19 |
|
fdd29818a954
Remove Author model (use Person instead). Update models after removing Author. Add new Sponsor, Organization models.
Pawel Solyga <Pawel.Solyga@gmail.com>
parents:
diff
changeset
|
20 |
__authors__ = [ |
fdd29818a954
Remove Author model (use Person instead). Update models after removing Author. Add new Sponsor, Organization models.
Pawel Solyga <Pawel.Solyga@gmail.com>
parents:
diff
changeset
|
21 |
'"Pawel Solyga" <pawel.solyga@gmail.com>', |
fdd29818a954
Remove Author model (use Person instead). Update models after removing Author. Add new Sponsor, Organization models.
Pawel Solyga <Pawel.Solyga@gmail.com>
parents:
diff
changeset
|
22 |
] |
fdd29818a954
Remove Author model (use Person instead). Update models after removing Author. Add new Sponsor, Organization models.
Pawel Solyga <Pawel.Solyga@gmail.com>
parents:
diff
changeset
|
23 |
|
316
9efdc7bc3565
Add missing blank lines between imports and sort all of the imports.
Pawel Solyga <Pawel.Solyga@gmail.com>
parents:
244
diff
changeset
|
24 |
|
775
d18d286df40f
Fixed missing import in soc/models/organization.py.
Lennard de Rijk <ljvderijk@gmail.com>
parents:
773
diff
changeset
|
25 |
from google.appengine.ext import db |
d18d286df40f
Fixed missing import in soc/models/organization.py.
Lennard de Rijk <ljvderijk@gmail.com>
parents:
773
diff
changeset
|
26 |
|
d18d286df40f
Fixed missing import in soc/models/organization.py.
Lennard de Rijk <ljvderijk@gmail.com>
parents:
773
diff
changeset
|
27 |
from django.utils.translation import ugettext_lazy |
d18d286df40f
Fixed missing import in soc/models/organization.py.
Lennard de Rijk <ljvderijk@gmail.com>
parents:
773
diff
changeset
|
28 |
|
181
fdd29818a954
Remove Author model (use Person instead). Update models after removing Author. Add new Sponsor, Organization models.
Pawel Solyga <Pawel.Solyga@gmail.com>
parents:
diff
changeset
|
29 |
import soc.models.group |
fdd29818a954
Remove Author model (use Person instead). Update models after removing Author. Add new Sponsor, Organization models.
Pawel Solyga <Pawel.Solyga@gmail.com>
parents:
diff
changeset
|
30 |
|
316
9efdc7bc3565
Add missing blank lines between imports and sort all of the imports.
Pawel Solyga <Pawel.Solyga@gmail.com>
parents:
244
diff
changeset
|
31 |
|
208
e076aee6e90f
Take advantage of the Model inheritance provided by polymodel.PolyModel to
Todd Larsen <tlarsen@google.com>
parents:
181
diff
changeset
|
32 |
class Organization(soc.models.group.Group): |
181
fdd29818a954
Remove Author model (use Person instead). Update models after removing Author. Add new Sponsor, Organization models.
Pawel Solyga <Pawel.Solyga@gmail.com>
parents:
diff
changeset
|
33 |
"""Organization details. |
fdd29818a954
Remove Author model (use Person instead). Update models after removing Author. Add new Sponsor, Organization models.
Pawel Solyga <Pawel.Solyga@gmail.com>
parents:
diff
changeset
|
34 |
|
fdd29818a954
Remove Author model (use Person instead). Update models after removing Author. Add new Sponsor, Organization models.
Pawel Solyga <Pawel.Solyga@gmail.com>
parents:
diff
changeset
|
35 |
A Organization entity participates in the following relationships implemented |
fdd29818a954
Remove Author model (use Person instead). Update models after removing Author. Add new Sponsor, Organization models.
Pawel Solyga <Pawel.Solyga@gmail.com>
parents:
diff
changeset
|
36 |
as a db.ReferenceProperty elsewhere in another db.Model: |
fdd29818a954
Remove Author model (use Person instead). Update models after removing Author. Add new Sponsor, Organization models.
Pawel Solyga <Pawel.Solyga@gmail.com>
parents:
diff
changeset
|
37 |
|
208
e076aee6e90f
Take advantage of the Model inheritance provided by polymodel.PolyModel to
Todd Larsen <tlarsen@google.com>
parents:
181
diff
changeset
|
38 |
reviewers) a many:1 relationship associating Reviewers with |
181
fdd29818a954
Remove Author model (use Person instead). Update models after removing Author. Add new Sponsor, Organization models.
Pawel Solyga <Pawel.Solyga@gmail.com>
parents:
diff
changeset
|
39 |
a specific Organization. This relation is implemented as the |
208
e076aee6e90f
Take advantage of the Model inheritance provided by polymodel.PolyModel to
Todd Larsen <tlarsen@google.com>
parents:
181
diff
changeset
|
40 |
'reviewers' back-reference Query of the Organization model 'org' |
e076aee6e90f
Take advantage of the Model inheritance provided by polymodel.PolyModel to
Todd Larsen <tlarsen@google.com>
parents:
181
diff
changeset
|
41 |
reference. |
181
fdd29818a954
Remove Author model (use Person instead). Update models after removing Author. Add new Sponsor, Organization models.
Pawel Solyga <Pawel.Solyga@gmail.com>
parents:
diff
changeset
|
42 |
""" |
745
ed3b545a9c14
Remove not used TYPE_NAME, TYPE_NAME_SHORT and TYPE_NAME_PLURAL consts in all Group models.
Pawel Solyga <Pawel.Solyga@gmail.com>
parents:
682
diff
changeset
|
43 |
|
772
a91f7856754e
Add IRC channel and mailing list properties to the Group and Organization
Todd Larsen <tlarsen@google.com>
parents:
748
diff
changeset
|
44 |
#: Optional development mailing list. |
773
fefaf4628a4d
Mailing list EmailProperty should be StringProperty instead, so that it is
Todd Larsen <tlarsen@google.com>
parents:
772
diff
changeset
|
45 |
dev_mailing_list = db.StringProperty(required=False, |
772
a91f7856754e
Add IRC channel and mailing list properties to the Group and Organization
Todd Larsen <tlarsen@google.com>
parents:
748
diff
changeset
|
46 |
verbose_name=ugettext_lazy('Development Mailing List')) |
a91f7856754e
Add IRC channel and mailing list properties to the Group and Organization
Todd Larsen <tlarsen@google.com>
parents:
748
diff
changeset
|
47 |
dev_mailing_list.help_text = ugettext_lazy( |
a91f7856754e
Add IRC channel and mailing list properties to the Group and Organization
Todd Larsen <tlarsen@google.com>
parents:
748
diff
changeset
|
48 |
'Mailing list email address, URL to sign-up page, etc.') |
834
b60c9ccbeaa5
Move member_template property from Group to Organization model since it's Organization specific property.
Pawel Solyga <Pawel.Solyga@gmail.com>
parents:
775
diff
changeset
|
49 |
|
b60c9ccbeaa5
Move member_template property from Group to Organization model since it's Organization specific property.
Pawel Solyga <Pawel.Solyga@gmail.com>
parents:
775
diff
changeset
|
50 |
member_template = db.ReferenceProperty( |
b60c9ccbeaa5
Move member_template property from Group to Organization model since it's Organization specific property.
Pawel Solyga <Pawel.Solyga@gmail.com>
parents:
775
diff
changeset
|
51 |
reference_class=soc.models.document.Document, required=False, |
883
1e0af43577ee
Changed the collection name and help text for Organization member template.
Lennard de Rijk <ljvderijk@gmail.com>
parents:
834
diff
changeset
|
52 |
collection_name='org_app_member_template', |
834
b60c9ccbeaa5
Move member_template property from Group to Organization model since it's Organization specific property.
Pawel Solyga <Pawel.Solyga@gmail.com>
parents:
775
diff
changeset
|
53 |
verbose_name=ugettext_lazy('Application template')) |
b60c9ccbeaa5
Move member_template property from Group to Organization model since it's Organization specific property.
Pawel Solyga <Pawel.Solyga@gmail.com>
parents:
775
diff
changeset
|
54 |
member_template.help_text = ugettext_lazy( |
b60c9ccbeaa5
Move member_template property from Group to Organization model since it's Organization specific property.
Pawel Solyga <Pawel.Solyga@gmail.com>
parents:
775
diff
changeset
|
55 |
'This template will be presented to potential members when they' |
883
1e0af43577ee
Changed the collection name and help text for Organization member template.
Lennard de Rijk <ljvderijk@gmail.com>
parents:
834
diff
changeset
|
56 |
' apply to the organization.') |
772
a91f7856754e
Add IRC channel and mailing list properties to the Group and Organization
Todd Larsen <tlarsen@google.com>
parents:
748
diff
changeset
|
57 |