Rev 2247 | Rev 15726 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed
Rev 2247 | Rev 2939 | ||
---|---|---|---|
Line 1... | Line -... | ||
1 | - | ||
2 | # class exercise sheet |
1 | # class exercise sheet |
3 | !if $wims_read_parm > 0 && $wims_class > 0 |
2 | !if $wims_read_parm > 0 && $wims_class > 0 |
4 | s_=wimshome/log/classes/$wims_class/sheets/.sheet$wims_read_parm |
3 | s_=wimshome/log/classes/$wims_class/sheets/.sheet$wims_read_parm |
5 | ecnt_=!recordcnt $s_ |
4 | ecnt_=!recordcnt $s_ |
6 | !endif |
5 | !endif |
Line 17... | Line 16... | ||
17 | 16 | ||
18 | !for i=1 to $ecnt_ |
17 | !for i=1 to $ecnt_ |
19 | a_$i=!word $i of $scores |
18 | a_$i=!word $i of $scores |
20 | b_$i=!word $i of $means |
19 | b_$i=!word $i of $means |
21 | c_$i=!word $i of $requires |
20 | c_$i=!word $i of $requires |
22 | !next i |
21 | !next i |
23 | 22 | ||
24 | !for i=1 to $ecnt_ |
23 | !for i=1 to $ecnt_ |
25 | l_=!record $i of $s_ |
24 | l_=!record $i of $s_ |
26 | d_=!line 7 of $l_ |
25 | d_=!line 7 of $l_ |
27 | d_=!trim $d_ |
26 | d_=!trim $d_ |
28 | C_= |
27 | C_= |
Line 54... | Line 53... | ||
54 | C_=!listuniq $C_ |
53 | C_=!listuniq $C_ |
55 | !endif |
54 | !endif |
56 | !appendfile $depfile :$C_ |
55 | !appendfile $depfile :$C_ |
57 | deps=$deps$C_; |
56 | deps=$deps$C_; |
58 | !next i |
57 | !next i |
59 | - |