Subversion Repositories wimsdev

Rev

Rev 6586 | Details | Compare with Previous | Last modification | View Log | RSS feed

Rev Author Line No. Line
3263 bpr 1
!readproc tabletheme
2
 
8558 bpr 3
!if $lang notwordof de ca
3263 bpr 4
  !set ll=$lang
5
!else
6
  !set ll=en
7
!endif
8
 
3478 bpr 9
!set p=oefcommand
3282 bpr 10
!record 0 of help/$ll/$p
6133 bpr 11
!reset table_center
3263 bpr 12
$table_header
3282 bpr 13
!set caption=!record 1 of help/$ll/$p
3263 bpr 14
<caption>$caption</caption>
3282 bpr 15
!set header=!record 2 of help/$ll/$p
3263 bpr 16
$table_tr<th>$(header[1])</th><th>$(header[2])</th><th>$(header[3])</th>
17
<th>$(header[4])</th><th>$(header[5])</th></tr>
18
 
3282 bpr 19
!set cnt_record=!recordcnt help/$ll/$p
3263 bpr 20
!for u= 3 to $cnt_record
3282 bpr 21
  !set l_=!record $u of help/$ll/$p
3263 bpr 22
  !set help=!getopt help in $l_
6133 bpr 23
$table_tr<td class="tt wims_code_words">
3263 bpr 24
 !set l_1=!line 1 of $l_
25
 !if $help!=$empty and $l_1!=help
26
   !href module=$module&cmd=help&special_parm=$help $l_1
27
 !else
28
   !line 1 of $l_
29
 !endif
6133 bpr 30
</td><td class="wimscenter">
3263 bpr 31
!line 2 of $l_
32
</td><td>
33
!line 3 of $l_
6133 bpr 34
</td><td class="tt wims_code_words">
3263 bpr 35
!line 4 of $l_
36
</td>
6586 bpr 37
<td class="tt wims_code_words">
3263 bpr 38
!line 5 of $l_
6133 bpr 39
</td></tr>
3263 bpr 40
!next
41
$table_end
42
 
43
!exit
3758 czzmrn 44
!endif