Rev 15337 | Details | Compare with Previous | Last modification | View Log | RSS feed
Rev | Author | Line No. | Line |
---|---|---|---|
2071 | zjchen | 1 | <HTML><HEAD> |
2 | !!if $style != folding |
||
3 | !if $style = $empty |
||
4 | wims_expire= |
||
5 | !endif |
||
6 | $wims_html_header |
||
7 | |||
8 | </HEAD> |
||
9 | <BODY $wims_htmlbody> |
||
10 | !robottrap |
||
11 | !headmenu |
||
12 | |||
13 | <CENTER> |
||
5769 | bpr | 14 | <h1> |
2071 | zjchen | 15 | !href cmd=renew&style=$style $module_title |
5769 | bpr | 16 | </h1> |
2071 | zjchen | 17 | </CENTER> <p> |
18 | 本文件目前显示成$emph$style$emphend格式. |
||
19 | 你也可以改成 |
||
20 | !set already= |
||
21 | !for s in integral,indexed,folding |
||
22 | !if $s != $style |
||
23 | !if $already != $empty |
||
24 | 或 |
||
25 | !endif |
||
26 | !href cmd=resume&style=$s $s |
||
27 | !set already=yes |
||
28 | !endif |
||
29 | !next s |
||
30 | 格式. 这里还有 |
||
31 | !href module=help/main.$lang 总帮助 |
||
32 | 以及关于WIMS的 |
||
15337 | bpr | 33 | <a href="https://wims.univ-cotedazur.fr/paper/wims/wims.html">一篇文章</a>. |
2071 | zjchen | 34 | <p> |
35 | |||
36 | !if $style=integral or $style=indexed |
||
3102 | zjchen | 37 | <a name="index"><center><h2>-------- 目 录 --------</h2></center></a><ul> |
2071 | zjchen | 38 | !for set in user,ref |
5769 | bpr | 39 | <li><h4>$(title_$set)</h4> |
2071 | zjchen | 40 | <ol> |
41 | !for i in $($(set)_doc) |
||
42 | <li> |
||
3102 | zjchen | 43 | <a name="toc_$i"></a> |
4564 | bpr | 44 | $(ref1)$i$(ref2)$i">$(title_$i)</a> |
2071 | zjchen | 45 | !next i |
5769 | bpr | 46 | </ol> <p> |
2071 | zjchen | 47 | !next set |
48 | </ul> |
||
49 | !else # folding |
||
50 | <p>在标题上点击可以把它的内容展开或折迭起来. |
||
51 | !for set in user,ref |
||
17228 | bpr | 52 | <p><hr><center><h2>$(title_$set)</h2></center> |
2071 | zjchen | 53 | !for i in $($(set)_doc) |
54 | <a name=$i></a> |
||
55 | !if ,$i isin $expand |
||
17228 | bpr | 56 | <hr><h3> |
2071 | zjchen | 57 | !href cmd=resume&op=close&subject=$i#$i $(title_$i) |
58 | </h3> |
||
59 | !read $i.phtml |
||
17228 | bpr | 60 | <p><hr> |
2071 | zjchen | 61 | !else |
4564 | bpr | 62 | <h4>$(ref1)$i$(ref2)$i">$(title_$i)</a></h4> |
2071 | zjchen | 63 | !endif |
64 | !next i |
||
65 | !next set |
||
66 | !endif integral or indexed versus folding |
||
67 | |||
68 | !if $style=integral |
||
69 | !for i in $user_doc,$ref_doc |
||
70 | <a name=$i> |
||
17228 | bpr | 71 | <hr><center><h3>$(title_$i)</h3></center> |
2071 | zjchen | 72 | </a> |
73 | !read $i.phtml |
||
74 | <p> |
||
75 | <a href=#index>目录</a> |
||
76 | !next i |
||
77 | !endif |
||
78 | |||
79 | !if $style=indexed |
||
80 | !for set in $user_doc,$ref_doc |
||
81 | !if $set isin $subject |
||
82 | <a name=$set></a> |
||
17228 | bpr | 83 | <hr><center><h3>$(title_$set)</h3></center> |
2071 | zjchen | 84 | !read $set.phtml |
85 | <p> |
||
86 | !endif |
||
87 | !next set |
||
88 | !endif |
||
89 | |||
90 | !tail |
||
91 |