Rev 5798 | Rev 5920 | Go to most recent revision | Details | Compare with Previous | Last modification | View Log | RSS feed
Rev | Author | Line No. | Line |
---|---|---|---|
1091 | bpr | 1 | !!<HTML><HEAD> |
2 | !!!if $style != folding |
||
32 | reyssat | 3 | !if $style = $empty |
4 | wims_expire= |
||
5 | !endif |
||
1091 | bpr | 6 | !!$wims_html_header |
32 | reyssat | 7 | |
1091 | bpr | 8 | !!</HEAD> |
9 | !!<BODY $wims_htmlbody> |
||
10 | !!!headmenu |
||
11 | !header1 |
||
32 | reyssat | 12 | !robottrap |
5919 | bpr | 13 | |
14 | <h1 class="wimscenter"> |
||
32 | reyssat | 15 | !href cmd=renew&style=$style $module_title |
1091 | bpr | 16 | </h1> |
5919 | bpr | 17 | |
32 | reyssat | 18 | This document is currently under $emph$style$emphend style. |
19 | You may change it to |
||
20 | !set already= |
||
21 | !for s in integral,indexed,folding |
||
22 | !if $s != $style |
||
23 | !if $already != $empty |
||
24 | or |
||
25 | !endif |
||
26 | !href cmd=resume&style=$s $s |
||
27 | !set already=yes |
||
28 | !endif |
||
29 | !next s |
||
30 | style. There is also |
||
31 | !href module=help/main.$lang a general help |
||
32 | and |
||
33 | <a href="http://wims.unice.fr/paper/wims/wims.html">a paper</a> |
||
34 | on WIMS. |
||
35 | |||
36 | !if $style=integral or $style=indexed |
||
5919 | bpr | 37 | <h2 class="wimscenter">-------- Table of Contents --------</h2> |
38 | <a id="index"></a> |
||
5798 | bpr | 39 | <ul> |
32 | reyssat | 40 | !for set in user,ref |
5769 | bpr | 41 | <li><h4>$(title_$set)</h4> |
32 | reyssat | 42 | <ol> |
43 | !for i in $($(set)_doc) |
||
44 | <li> |
||
5919 | bpr | 45 | <a id="toc_$i"></a> |
1091 | bpr | 46 | $(ref1)$i$(ref2)$i">$(title_$i)</a> |
86 | bpr | 47 | </li> |
32 | reyssat | 48 | !next i |
86 | bpr | 49 | </ol> |
50 | </li> |
||
32 | reyssat | 51 | !next set |
52 | </ul> |
||
53 | !else # folding |
||
5919 | bpr | 54 | <p>Click on a title to expand or fold out its content.</p> |
32 | reyssat | 55 | !for set in user,ref |
5919 | bpr | 56 | <hr/><h2 class="wimscenter">$(title_$set)</h2> |
32 | reyssat | 57 | !for i in $($(set)_doc) |
5919 | bpr | 58 | <a id="$i"></a> |
32 | reyssat | 59 | !if ,$i isin $expand |
5766 | bpr | 60 | <hr/><h3> |
32 | reyssat | 61 | !href cmd=resume&op=close&subject=$i#$i $(title_$i) |
62 | </h3> |
||
63 | !read $i.phtml |
||
5919 | bpr | 64 | <hr/> |
32 | reyssat | 65 | !else |
1091 | bpr | 66 | <h4>$(ref1)$i$(ref2)$i">$(title_$i)</a></h4> |
32 | reyssat | 67 | !endif |
68 | !next i |
||
69 | !next set |
||
70 | !endif integral or indexed versus folding |
||
71 | |||
72 | !if $style=integral |
||
73 | !for i in $user_doc,$ref_doc |
||
5919 | bpr | 74 | <hr/> |
75 | <a id="$i"></a> |
||
76 | <h3 class="wimscenter">$(title_$i)</h3> |
||
1091 | bpr | 77 | |
32 | reyssat | 78 | !read $i.phtml |
79 | <p> |
||
1091 | bpr | 80 | <a href="#index">Table of Contents</a> |
5919 | bpr | 81 | </p> |
32 | reyssat | 82 | !next i |
83 | !endif |
||
84 | |||
85 | !if $style=indexed |
||
86 | !for set in $user_doc,$ref_doc |
||
87 | !if $set isin $subject |
||
5919 | bpr | 88 | <p> |
89 | <a id="$set"></a> |
||
90 | <hr/><h3 class="wimscenter">$(title_$set)</h3> |
||
32 | reyssat | 91 | !read $set.phtml |
5919 | bpr | 92 | </p> |
32 | reyssat | 93 | !endif |
94 | !next set |
||
95 | !endif |
||
96 | |||
97 | !tail |
||
98 |