~azzar1/unity/add-show-desktop-key

« back to all changes in this revision

Viewing changes to ivle/webapp/admin/breadcrumbs.py

  • Committer: William Grant
  • Date: 2009-12-10 04:35:39 UTC
  • mto: This revision was merged to the branch mainline in revision 1398.
  • Revision ID: grantw@unimelb.edu.au-20091210043539-lvfr4o480wrhbhs5
python-console will now substitute a FakeObject when it sees a PicklingError, not just a TypeError.

Show diffs side-by-side

added added

removed removed

Lines of Context:
15
15
# along with this program; if not, write to the Free Software
16
16
# Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA
17
17
 
18
 
 
19
 
class UsersBreadcrumb(object):
20
 
    @property
21
 
    def url(self):
22
 
        return '/users'
23
 
 
24
 
    @property
25
 
    def text(self):
26
 
        return 'Users'
27
 
 
28
 
 
29
18
class UserBreadcrumb(object):
30
19
    def __init__(self, req, context):
31
20
        self.req = req
39
28
    def text(self):
40
29
        return self.context.nick
41
30
 
42
 
    @property
43
 
    def extra_breadcrumbs_before(self):
44
 
        return [UsersBreadcrumb()]
45
 
 
46
 
 
47
31
class SubjectBreadcrumb(object):
48
32
    def __init__(self, req, context):
49
33
        self.req = req
53
37
    def text(self):
54
38
        return self.context.name
55
39
 
56
 
 
57
40
class OfferingBreadcrumb(object):
58
41
    def __init__(self, req, context):
59
42
        self.req = req
68
51
        return '%s semester %s' % (self.context.semester.year,
69
52
                                   self.context.semester.semester)
70
53
 
71
 
 
72
 
class ProjectsBreadcrumb(object):
73
 
    """Static 'Projects' breadcrumb to precede ProjectBreadcrumb."""
74
 
    def __init__(self, req, context):
75
 
        self.req = req
76
 
        self.context = context
77
 
 
78
 
    @property
79
 
    def url(self):
80
 
        return self.req.publisher.generate(self.context, None, '+projects')
81
 
 
82
 
    @property
83
 
    def text(self):
84
 
        return 'Projects'
85
 
 
 
54
    @property
 
55
    def menu(self):
 
56
        return {
 
57
            'Worksheets': self.req.publisher.generate(self.context, None,
 
58
                                                   ('+worksheets')),
 
59
            }
86
60
 
87
61
class ProjectBreadcrumb(object):
88
62
    def __init__(self, req, context):
97
71
    def text(self):
98
72
        return self.context.name
99
73
 
100
 
    @property
101
 
    def extra_breadcrumbs_before(self):
102
 
        return [ProjectsBreadcrumb(self.req, self.context.project_set.offering)]
103
 
 
104
 
 
105
 
class EnrolmentsBreadcrumb(object):
106
 
    """Static 'Enrolments' breadcrumb to precede EnrolmentBreadcrumb."""
107
 
    def __init__(self, req, context):
108
 
        self.req = req
109
 
        self.context = context
110
 
 
111
 
    @property
112
 
    def url(self):
113
 
        return self.req.publisher.generate(self.context, None, '+enrolments')
114
 
 
115
 
    @property
116
 
    def text(self):
117
 
        return 'Enrolments'
118
 
 
119
 
 
120
 
class EnrolmentBreadcrumb(object):
121
 
    def __init__(self, req, context):
122
 
        self.req = req
123
 
        self.context = context
124
 
 
125
 
    @property
126
 
    def text(self):
127
 
        return self.context.user.fullname
128
 
 
129
 
    @property
130
 
    def extra_breadcrumbs_before(self):
131
 
        return [EnrolmentsBreadcrumb(self.req, self.context.offering)]