Subversion Repositories wimsdev

Rev

Rev 6526 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 6526 Rev 12810
Line 7... Line 7...
7
 error=double_reply
7
 error=double_reply
8
 !exit
8
 !exit
9
!endif
9
!endif
10
 
10
 
11
!if $cmd=reply and $status=waiting
11
!if $cmd=reply and $status=waiting
12
 # Analysis of the reply should be placed here.
12
  # Analysis of the reply should be placed here.
13
 # The following lines are just a template.
13
  # The following lines are just a template.
14
 
14
 
15
 !if $x>$y
15
  !if $x>$y
16
  diagnostics=good
16
    diagnostics=good
17
 !else
17
  !else
18
  diagnostics=bad
18
    diagnostics=bad
19
 !endif
19
  !endif
20
 
20
 
21
 status=done
21
  status=done
22
 !if $diagnostics=good
22
  !if $diagnostics=good
23
  module_score=10
23
    module_score=10
24
 !else
24
  !else
25
  module_score=0
25
    module_score=0
26
 !endif
26
  !endif
27
 wims_module_log=score $module_score/10
27
  wims_module_log=score $module_score/10
28
!endif
28
!endif
29
 
-