Details | Last modification | View Log | RSS feed
Rev | Author | Line No. | Line |
---|---|---|---|
20 | reyssat | 1 | !if $datacnt<1 |
2 | !exit |
||
3 | !endif |
||
4 | |||
5 | deffile=wimshome/log/classes/$wims_class/.def |
||
6 | !if class notwordof $wims_prefix |
||
7 | wims_prefix=$wims_prefix class |
||
8 | !endif |
||
9 | !readdef $deffile |
||
10 | |||
11 | !for i=1 to $datacnt |
||
12 | l_=!line $i of $cn_data |
||
13 | l_=!translate = to $\ |
||
14 | $ in $l_ |
||
15 | !distribute lines $l_ into n_,v_ |
||
16 | !if $n_ iswordof password supervisor description institution email\ |
||
17 | lang limit level secure expiration\ |
||
18 | homepage bgcolor bgimg css refcolor\ |
||
19 | and $v_!=$(class_$n_) |
||
20 | !setdef !set class_$n_=$v_ in $deffile |
||
21 | !endif |
||
22 | !if $n_ iswordof userlist usercount |
||
23 | class_$n_=$v_ |
||
24 | !endif |
||
25 | !next i |
||
26 |