Rev 14064 | Rev 14535 | 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;}\ |
||
14279 | obado | 16 | .wims_command .wimsdoc_tit{margin:0}\ |
17 | .wims_folding>a::before {margin-right: 1em;content: "+";}\ |
||
18 | .wims_folding.is-active>a::before {content: "-";}\ |
||
13470 | obado | 19 | </style> to $wims_html_header |
9291 | obado | 20 | |
1091 | bpr | 21 | !header1 |
32 | reyssat | 22 | !robottrap |
5919 | bpr | 23 | |
9291 | obado | 24 | !read adm/title.phtml 1\ |
25 | \ |
||
26 | $module_title |
||
5919 | bpr | 27 | |
32 | reyssat | 28 | This document is currently under $emph$style$emphend style. |
29 | You may change it to |
||
30 | !set already= |
||
31 | !for s in integral,indexed,folding |
||
14064 | bpr | 32 | !if $s != $style |
33 | !if $already != $empty |
||
34 | or |
||
35 | !endif |
||
36 | !href cmd=resume&style=$s $s |
||
37 | !set already=yes |
||
32 | reyssat | 38 | !endif |
39 | !next s |
||
40 | style. There is also |
||
14279 | obado | 41 | !href module=help/main.$lang a general help |
9291 | obado | 42 | and |
43 | <a href="http://wims.unice.fr/paper/wims/wims.html">a paper on WIMS.</a> |
||
32 | reyssat | 44 | |
45 | !if $style=integral or $style=indexed |
||
14064 | bpr | 46 | <div id="index"> |
14279 | obado | 47 | <h2>-- Table of Contents --</h2> |
48 | !for set in user,ref,dev |
||
49 | <h3>$(title_$set)</h3> |
||
50 | <ol> |
||
51 | !for i in $($(set)_doc) |
||
52 | <li id="toc_$i"> |
||
53 | $(ref1)$i$(ref2)$i">$(title_$i)</a> |
||
54 | </li> |
||
55 | !next i |
||
56 | </ol> |
||
57 | !next set |
||
58 | </div> |
||
32 | reyssat | 59 | !else # folding |
14279 | obado | 60 | <p>Click on a title to expand or fold out its content.</p> |
14064 | bpr | 61 | !for set in user,ref,dev |
62 | <hr/><h2 class="wimscenter">$(title_$set)</h2> |
||
63 | !for i in $($(set)_doc) |
||
64 | !if ,$i isin $expand |
||
14279 | obado | 65 | <hr/><h3 id="$i" class="wims_folding is-active"> |
66 | !href cmd=resume&op=close&subject=$i#$i $(title_$i) |
||
67 | </h3> |
||
68 | !read $i.phtml |
||
69 | <hr/> |
||
14064 | bpr | 70 | !else |
14279 | obado | 71 | <h3 id="$i" class="wims_folding">$(ref1)$i$(ref2)$i">$(title_$i)</a></h3> |
14064 | bpr | 72 | !endif |
73 | !next i |
||
32 | reyssat | 74 | !next set |
75 | !endif integral or indexed versus folding |
||
14279 | obado | 76 | |
32 | reyssat | 77 | !if $style=integral |
14064 | bpr | 78 | !for i in $user_doc,$ref_doc,$dev_doc |
79 | <hr/> |
||
14279 | obado | 80 | <h2 id="$i" class="wimscenter">$(title_$i)</h2> |
14064 | bpr | 81 | !read $i.phtml |
14279 | obado | 82 | <p><a href="#index" class="text_icon toc">Table of Contents</a></p> |
14064 | bpr | 83 | !next i |
32 | reyssat | 84 | !endif |
85 | |||
86 | !if $style=indexed |
||
14064 | bpr | 87 | !for set in $user_doc,$ref_doc,$dev_doc |
88 | !if $set isin $subject |
||
14279 | obado | 89 | <hr/><h2 id="$set" class="wimscenter">$(title_$set)</h2> |
14064 | bpr | 90 | !read $set.phtml |
91 | !endif |
||
92 | !next set |
||
32 | reyssat | 93 | !endif |
94 | |||
95 | !tail |