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

« back to all changes in this revision

Viewing changes to ivle/database.py

  • Committer: Matt Giuca
  • Date: 2010-03-05 06:30:38 UTC
  • Revision ID: matt.giuca@gmail.com-20100305063038-lb8i3n26a7pswzc1
ivle.css: fakelink a elements now have the correct mouse pointer.

Show diffs side-by-side

added added

removed removed

Lines of Context:
26
26
import hashlib
27
27
import datetime
28
28
import os
29
 
import urlparse
30
29
 
31
30
from storm.locals import create_database, Store, Int, Unicode, DateTime, \
32
31
                         Reference, ReferenceSet, Bool, Storm, Desc
230
229
        """Find a user in a store by login name."""
231
230
        return store.find(cls, cls.login == unicode(login)).one()
232
231
 
233
 
    def get_svn_url(self, config, req):
234
 
        """Get the subversion repository URL for this user or group."""
235
 
        login = req.user.login
236
 
        url = urlparse.urlsplit(config['urls']['svn_addr'])
237
 
        url = urlparse.urlunsplit(url[:1] + (login+'@'+url[1],) + url[2:])
238
 
        path = 'users/%s' % self.login
239
 
        return urlparse.urljoin(url, path)
240
 
 
241
232
    def get_permissions(self, user, config):
242
233
        """Determine privileges held by a user over this object.
243
234
 
734
725
            Semester.id == Offering.semester_id,
735
726
            (not active_only) or (Semester.state == u'current'))
736
727
 
737
 
    def get_svn_url(self, config, req):
738
 
        """Get the subversion repository URL for this user or group."""
739
 
        login = req.user.login
740
 
        url = urlparse.urlsplit(config['urls']['svn_addr'])
741
 
        url = urlparse.urlunsplit(url[:1] + (login+'@'+url[1],) + url[2:])
742
 
        path = 'groups/%s_%s_%s_%s' % (
743
 
                self.project_set.offering.subject.short_name,
744
 
                self.project_set.offering.semester.year,
745
 
                self.project_set.offering.semester.semester,
746
 
                self.name
747
 
                )
748
 
        return urlparse.urljoin(url, path)
749
728
 
750
729
    def get_permissions(self, user, config):
751
730
        if user.admin or user in self.members: