Rev 12014 | Rev 14064 | 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 |
7 | !!</HEAD> |
||
8 | !!<BODY $wims_htmlbody> |
||
9 | !!!headmenu |
||
9291 | obado | 10 | |
13470 | obado | 11 | !set wims_html_header=!append line <link rel="stylesheet" href="html/themes/_css/tech_doc.css" />\ |
12 | <style>\ |
||
13 | /* prevent table for being larger than a small screen */\ |
||
14 | .wimstable{table-layout: fixed;}\ |
||
15 | .wimstable td{word-wrap:break-word;}\ |
||
16 | </style> to $wims_html_header |
||
9291 | obado | 17 | |
1091 | bpr | 18 | !header1 |
32 | reyssat | 19 | !robottrap |
5919 | bpr | 20 | |
9291 | obado | 21 | !read adm/title.phtml 1\ |
22 | \ |
||
23 | $module_title |
||
5919 | bpr | 24 | |
32 | reyssat | 25 | This document is currently under $emph$style$emphend style. |
26 | You may change it to |
||
27 | !set already= |
||
28 | !for s in integral,indexed,folding |
||
29 | !if $s != $style |
||
30 | !if $already != $empty |
||
31 | or |
||
32 | !endif |
||
33 | !href cmd=resume&style=$s $s |
||
34 | !set already=yes |
||
35 | !endif |
||
36 | !next s |
||
37 | style. There is also |
||
38 | !href module=help/main.$lang a general help |
||
9291 | obado | 39 | and |
40 | <a href="http://wims.unice.fr/paper/wims/wims.html">a paper on WIMS.</a> |
||
32 | reyssat | 41 | |
42 | !if $style=integral or $style=indexed |
||
9291 | obado | 43 | <h2>-- Table of Contents --</h2> |
44 | <div id="index"> |
||
12014 | bpr | 45 | !for set in user,ref,dev |
9291 | obado | 46 | <h3>$(title_$set)</h3> |
47 | <ol> |
||
48 | !for i in $($(set)_doc) |
||
49 | <li id="toc_$i"> |
||
50 | $(ref1)$i$(ref2)$i">$(title_$i)</a> |
||
51 | </li> |
||
52 | !next i |
||
53 | </ol> |
||
32 | reyssat | 54 | !next set |
55 | !else # folding |
||
5919 | bpr | 56 | <p>Click on a title to expand or fold out its content.</p> |
12014 | bpr | 57 | !for set in user,ref,dev |
5919 | bpr | 58 | <hr/><h2 class="wimscenter">$(title_$set)</h2> |
32 | reyssat | 59 | !for i in $($(set)_doc) |
5919 | bpr | 60 | <a id="$i"></a> |
32 | reyssat | 61 | !if ,$i isin $expand |
5766 | bpr | 62 | <hr/><h3> |
32 | reyssat | 63 | !href cmd=resume&op=close&subject=$i#$i $(title_$i) |
64 | </h3> |
||
65 | !read $i.phtml |
||
5919 | bpr | 66 | <hr/> |
32 | reyssat | 67 | !else |
1091 | bpr | 68 | <h4>$(ref1)$i$(ref2)$i">$(title_$i)</a></h4> |
32 | reyssat | 69 | !endif |
70 | !next i |
||
71 | !next set |
||
72 | !endif integral or indexed versus folding |
||
11282 | bpr | 73 | </div> |
32 | reyssat | 74 | !if $style=integral |
12014 | bpr | 75 | !for i in $user_doc,$ref_doc,$dev_doc |
5919 | bpr | 76 | <hr/> |
9291 | obado | 77 | <h3 id="$i" class="wimscenter">$(title_$i)</h3> |
1091 | bpr | 78 | |
32 | reyssat | 79 | !read $i.phtml |
9291 | obado | 80 | <p><a href="#index">Table of Contents</a></p> |
32 | reyssat | 81 | !next i |
82 | !endif |
||
83 | |||
84 | !if $style=indexed |
||
12014 | bpr | 85 | !for set in $user_doc,$ref_doc,$dev_doc |
32 | reyssat | 86 | !if $set isin $subject |
9291 | obado | 87 | <hr/><h3 id="$set" class="wimscenter">$(title_$set)</h3> |
32 | reyssat | 88 | !read $set.phtml |
89 | !endif |
||
90 | !next set |
||
91 | !endif |
||
92 | |||
93 | !tail |
||
94 |