Subversion Repositories wimsdev

Rev

Rev 14279 | Rev 14631 | Go to most recent revision | Blame | Compare with Previous | Last modification | View Log | RSS feed

  1. !!<HTML><HEAD>
  2. !!!if $style != folding
  3. !if $style = $empty
  4.   wims_expire=
  5. !endif
  6. !!$wims_html_header
  7. !!</HEAD>
  8. !!<BODY $wims_htmlbody>
  9. !!!headmenu
  10.  
  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. .wims_command .wimsdoc_tit{margin:0}\
  17. .wims_folding>a::before {margin-right: 1em;content: "+";}\
  18. .wims_folding.is-active>a::before {content: "-";}\
  19. </style> to $wims_html_header
  20.  
  21. !header1
  22. !!!robottrap
  23.  
  24. !read adm/title.phtml 1\
  25. \
  26. $module_title
  27.  
  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
  32.   !if $s != $style
  33.     !if $already != $empty
  34.      or
  35.     !endif
  36.     !href cmd=resume&style=$s $s
  37.     !set already=yes
  38.   !endif
  39. !next s
  40.  style. There is also
  41. !href module=help/main.$lang a general help
  42.  and
  43. <a href="http://wims.unice.fr/paper/wims/wims.html">a paper on WIMS.</a>
  44.  
  45. !if $style=integral or $style=indexed
  46.   <div id="index">
  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>
  59. !else # folding
  60.  <p>Click on a title to expand or fold out its content.</p>
  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
  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/>
  70.      !else
  71.        <h3 id="$i" class="wims_folding">$(ref1)$i$(ref2)$i">$(title_$i)</a></h3>
  72.       !endif
  73.     !next i
  74.  !next set
  75. !endif integral or indexed versus folding
  76.  
  77. !if $style=integral
  78.   !for i in $user_doc,$ref_doc,$dev_doc
  79.     <hr/>
  80.     <h2 id="$i" class="wimscenter">$(title_$i)</h2>
  81.     !read $i.phtml
  82.     <p><a href="#index" class="text_icon toc">Table of Contents</a></p>
  83.   !next i
  84. !endif
  85.  
  86. !if $style=indexed
  87.   !for set in $user_doc,$ref_doc,$dev_doc
  88.     !if $set isin $subject
  89.       <hr/><h2 id="$set" class="wimscenter">$(title_$set)</h2>
  90.       !read $set.phtml
  91.     !endif
  92.   !next set
  93. !endif
  94.  
  95. !tail
  96.