Differences

This shows you the differences between two versions of the page.

Link to this comparison view

Both sides previous revisionPrevious revision
Next revision
Previous revision
Last revisionBoth sides next revision
playground:features [2013/05/12 17:51] – external edit 127.0.0.1playground:features [2017/11/10 09:25] – external edit 127.0.0.1
Line 3: Line 3:
 This page demonstrates the use of installed plug-ins of the dokuwiki running on the ENVI-met server. This page demonstrates the use of installed plug-ins of the dokuwiki running on the ENVI-met server.
 If you think that an important plug-in is missing, please send a mail If you think that an important plug-in is missing, please send a mail
 +
 +===== Top Menues =====
 +The top menue is controlled by a file "topbar" which can be different in every namspace.
 +
 +The format is like in a list 
 +  * [[root:start|→Main Index V4]]
 +
 +  * [[kb:start|→Knowledgebase]]
 +    * [[kb:modellayout|Model Layout]] 
 +    * [[kb:dataflow|Model DataFlow]] 
 +
 +The topbar page should not be linked on the pages themselves, hence it's adress must be typed in manually in the browsers URL.
 +
 +
  
 ===== Math type ===== ===== Math type =====
Line 31: Line 45:
  
 ===== dokuwiki theme ===== ===== dokuwiki theme =====
-For the moment we use the "round" theme ([[http://www.dokuwiki.org/template:roundtheme]] +For the moment we use a mofified "simple" theme calles envimet_simple.  
 + 
 +===== Using wow slider ===== 
 + 
 + 
 +Add (or modify)  meta.html in /lib/tpl/<template name> 
 +Add 
 + <!-- Start WOWSlider.com HEAD section --> 
 + <link rel="stylesheet" type="text/css" href="engine1/style.css" /> 
 + <script type="text/javascript" src="engine1/jquery.js"></script> 
 + <!-- End WOWSlider.com HEAD section --> 
 + 
 +(as produced in the HTML file if exported to folder in the WowSlider program) 
 +This will add the lines above into the <HEAD> section of any dokuwiki 
 + 
 +Copy folder "engine1" to main folder of the wiki. If a different folder should be used, modify the path above. 
 + 
 +Copy "data1" folder to the main folder of the wiki. If different slider should be used, use a different name for the folder for each slider set.
  
-It looks much better and more straight than the others (especially the original one) and it also adds a good TOC+Copy the main html parts from the generated file into the Dokuwiki page, where the slider should appear
-Other suggestions might be:+Use HTML Tag in Dokuwiki
  
-(... none so far...)+<!-- Start WOWSlider.com BODY section --> 
 + <div id="wowslider-container1"> 
 + <div class="ws_images"><ul> 
 +<li><img src="data1/images/titel3.jpg" alt="Vektors" title="Vektors" id="wows1_0"/>Showing the vectors and the colors</li> 
 +<li><img src="data1/images/titel3d.jpg" alt="titel3d" title="titel3d" id="wows1_1"/></li> 
 +</ul></div> 
 +<div class="ws_bullets"><div> 
 +<a href="#" title="Vektors"><img src="data1/tooltips/titel3.jpg" alt="Vektors"/>1</a> 
 +<a href="#" title="titel3d"><img src="data1/tooltips/titel3d.jpg" alt="titel3d"/>2</a> 
 +</div></div> 
 +<span class="wsl"><a href="http://wowslider.com">Slideshows for Websites</a> by WOWSlider.com v4.0</span> 
 + <div class="ws_shadow"></div> 
 + </div> 
 + <script type="text/javascript" src="engine1/wowslider.js"></script> 
 + <script type="text/javascript" src="engine1/script.js"></script> 
 + <!-- End WOWSlider.com BODY section -->
  
 +Rename "data1" if images are stored somewhere else. If "engine1" has been copied to a different folder, rename this path as well...
 +That's it