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

« back to all changes in this revision

Viewing changes to bin/ivle-showenrolment

  • Committer: William Grant
  • Date: 2009-02-23 23:47:02 UTC
  • mfrom: (1099.1.211 new-dispatch)
  • Revision ID: grantw@unimelb.edu.au-20090223234702-db4b1llly46ignwo
Merge from lp:~ivle-dev/ivle/new-dispatch.

Pretty much everything changes. Reread the setup docs. Backup your databases.
Every file is now in a different installed location, the configuration system
is rewritten, the dispatch system is rewritten, URLs are different, the
database is different, worksheets and exercises are no longer on the
filesystem, we use a templating engine, jail service protocols are rewritten,
we don't repeat ourselves, we have authorization rewritten, phpBB is gone,
and probably lots of other things that I cannot remember.

This is certainly the biggest commit I have ever made, and hopefully
the largest I ever will.

Show diffs side-by-side

added added

removed removed

Lines of Context:
25
25
import os
26
26
import sys
27
27
 
28
 
import ivle.config
29
28
import ivle.database
30
29
 
31
30
if len(sys.argv) != 2:
32
31
    print >> sys.stderr, "usage: %s <login>" % os.path.basename(sys.argv[0])
33
32
    sys.exit(1)
34
33
 
35
 
store = ivle.database.get_store(ivle.config.Config())
 
34
store = ivle.database.get_store()
36
35
user = ivle.database.User.get_by_login(store, sys.argv[1])
37
36
 
38
37
if not user:
41
40
 
42
41
if user.enrolments.count() > 0:
43
42
    print 'IVLE enrolment for %s (%s):' % (user.login, user.fullname)
44
 
    print '    Code       Name Year Semester     Role'
45
 
    print '-------- ---------- ---- -------- --------'
 
43
    print '    Code       Name Semester Year'
 
44
    print '-------- ---------- -------- ----'
46
45
    for e in user.enrolments:
47
 
        print '%8s %10s %4s %8s %8s' % (
 
46
        print '%8s %10s %8s %4s' % (
48
47
                e.offering.subject.code, e.offering.subject.short_name,
49
 
                e.offering.semester.year, e.offering.semester.semester,
50
 
                e.role
 
48
                e.offering.semester.semester, e.offering.semester.year
51
49
                )
52
50
else:
53
51
    print '%s (%s) is not enrolled in any IVLE offerings' % (