~ubuntu-branches/ubuntu/natty/schooltool.gradebook/natty

« back to all changes in this revision

Viewing changes to src/schooltool/gradebook/generations/evolve2.py

  • Committer: Bazaar Package Importer
  • Author(s): Gediminas Paulauskas
  • Date: 2011-02-24 16:53:53 UTC
  • Revision ID: james.westby@ubuntu.com-20110224165353-hi69ckyal3b8dyns
Tags: upstream-0.9.0~a1
ImportĀ upstreamĀ versionĀ 0.9.0~a1

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) 2009 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
Evolve database to generation 2.
 
21
"""
 
22
 
 
23
from zope.app.generations.utility import getRootFolder
 
24
from zope.security.proxy import removeSecurityProxy
 
25
 
 
26
from schooltool.requirement.interfaces import ICustomScoreSystem
 
27
 
 
28
 
 
29
def evolve(context):
 
30
    """Adds abbreviation column to all custom score systems"""
 
31
 
 
32
    app = getRootFolder(context)
 
33
    sm = app.getSiteManager()
 
34
    for name, util in sorted(sm.getUtilitiesFor(ICustomScoreSystem)):
 
35
        util = removeSecurityProxy(util)
 
36
        if not util.scores or len(util.scores[0]) != 3:
 
37
            continue
 
38
        new_scores = []
 
39
        for score, value, percent in util.scores:
 
40
            new_scores.append([score, '', value, percent])
 
41
        util.scores = new_scores
 
42