~aelkner/schooltool/april_fixes

« back to all changes in this revision

Viewing changes to src/schooltool/generations/evolve34.py

  • Committer: Justas Sadzevicius
  • Date: 2010-03-29 08:14:58 UTC
  • mfrom: (2532.2.20 schooltool_dev)
  • Revision ID: justas@pov.lt-20100329081458-a19tm7q3xgh4qs8t
Merge checkbox to disable mail server and action to send email to student's contacts.
Also, enhanced stub mail utility a bit, for easier functional testing of mailing.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
#
 
2
# SchoolTool - common information systems platform for school administration
 
3
# Copyright (c) 2010 Shuttleworth Foundation
 
4
#
 
5
# This program is free software; you can redistribute it and/or modify
 
6
# it under the terms of the GNU General Public License as published by
 
7
# the Free Software Foundation; either version 2 of the License, or
 
8
# (at your option) any later version.
 
9
#
 
10
# This program is distributed in the hope that it will be useful,
 
11
# but WITHOUT ANY WARRANTY; without even the implied warranty of
 
12
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 
13
# GNU General Public License for more details.
 
14
#
 
15
# You should have received a copy of the GNU General Public License
 
16
# along with this program; if not, write to the Free Software
 
17
# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
 
18
#
 
19
"""
 
20
Upgrade SchoolTool to generation 34.
 
21
 
 
22
Evolution script to set the 'enabled' attribute in existing EmailContainers.
 
23
"""
 
24
from zope.app.generations.utility import findObjectsProviding
 
25
from zope.app.publication.zopepublication import ZopePublication
 
26
 
 
27
from schooltool.app.interfaces import ISchoolToolApplication
 
28
from schooltool.email.interfaces import IEmailContainer
 
29
 
 
30
 
 
31
def evolve(context):
 
32
    root = context.connection.root().get(ZopePublication.root_name, None)
 
33
 
 
34
    apps = findObjectsProviding(root, ISchoolToolApplication)
 
35
    for app in apps:
 
36
        container = IEmailContainer(app, None)
 
37
        if container is None:
 
38
            continue
 
39
        if getattr(container, 'enabled', None) is None:
 
40
            container.enabled = bool(container.hostname)