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

« back to all changes in this revision

Viewing changes to bin/ivle-cloneworksheets

  • Committer: David Coles
  • Date: 2009-07-21 02:19:56 UTC
  • mto: (1281.1.8 aufsless)
  • mto: This revision was merged to the branch mainline in revision 1300.
  • Revision ID: coles.david@gmail.com-20090721021956-c1jiwu7fhi2dna1g
Updated to work on bind mounts

Show diffs side-by-side

added added

removed removed

Lines of Context:
54
54
if dst.worksheets.count() > 0:
55
55
    die('%r already has worksheets - doing nothing' % dst)
56
56
 
57
 
dst.clone_worksheets(src)
 
57
for oldws in src.worksheets:
 
58
    newws = Worksheet()
 
59
    newws.seq_no = oldws.seq_no
 
60
    newws.identifier = oldws.identifier
 
61
    newws.name = oldws.name
 
62
    newws.assessable = oldws.assessable
 
63
    newws.data = oldws.data
 
64
    newws.format = oldws.format
 
65
    newws.offering = dst
 
66
    store.add(newws)
 
67
    ivle.worksheet.utils.update_exerciselist(newws)
58
68
 
59
69
print >> sys.stderr, 'copied %d worksheets from %r to %r' \
60
70
                     % (dst.worksheets.count(), src, dst)