Changeset 355


Ignore:
Timestamp:
04/22/08 12:25:28 (16 years ago)
Author:
pinsard
Message:

some improvements in wiki production (hyperlinks)

Location:
trunk/SRC/Documentation/xmldoc
Files:
12 edited

Legend:

Unmodified
Added
Removed
  • trunk/SRC/Documentation/xmldoc/getsaxo.html

    r354 r355  
    165165            
    166166          </li><li> 
    167            <p>any other directory of your choice. In that case, when using IDL, you will need to define the variable <code class="varname">iodir</code> to the directory you choose in order to let IDL find the data tests files. This can be done either through the <code class="filename">init.pro</code> file (see <a href="#generate_init" title="3.  Generate your init.pro file ">Section 3, “ Generate your init.pro file ”</a>) or directly within IDL with the following command: <code class="prompt">idl&gt;</code> <strong class="userinput"><code><span><strong class="command">iodir = <em class="replaceable"><code>the chosen directory</code></em></strong></span></code></strong>. 
     167           <p>any other directory of your choice. In that case, when using IDL, you will need to define the variable <code class="varname">iodir</code> to the directory you choose in order to let IDL find the data tests files. This can be done either through the <code class="filename">init.pro</code> file (see <a href="#generate_init" title="3.  Generate your init.pro file ">Section 3, “ Generate your init.pro file ”</a>) or directly within IDL with the following command:  
     168</p><pre class="screen"> 
     169 <code class="prompt">idl&gt;</code> <strong class="userinput"><code><span><strong class="command">iodir = <em class="replaceable"><code>the chosen directory</code></em></strong></span></code></strong> 
     170</pre><p> 
    168171           </p> 
    169172          </li></ul></div><p> 
  • trunk/SRC/Documentation/xmldoc/getsaxo.xml

    r354 r355  
    215215          </listitem> 
    216216  <listitem> 
    217            <para>any other directory of your choice. In that case, when using IDL, you will need to define the variable <varname>iodir</varname> to the directory you choose in order to let IDL find the data tests files. This can be done either through the <filename>init.pro</filename> file (see <xref linkend="generate_init"/>) or directly within IDL with the following command: <prompt>&promptidl;</prompt> <userinput><command>iodir = <replaceable>the chosen directory</replaceable></command></userinput>. 
     217           <para>any other directory of your choice. In that case, when using IDL, you will need to define the variable <varname>iodir</varname> to the directory you choose in order to let IDL find the data tests files. This can be done either through the <filename>init.pro</filename> file (see <xref linkend="generate_init"/>) or directly within IDL with the following command:  
     218<screen> 
     219 <prompt>&promptidl;</prompt> <userinput><command>iodir = <replaceable>the chosen directory</replaceable></command></userinput> 
     220</screen> 
    218221           </para> 
    219222          </listitem> 
  • trunk/SRC/Documentation/xmldoc/saxo_tracwiki.xsl

    r354 r355  
    161161</xsl:template> 
    162162 
    163 <xsl:template match="d:screen/d:userinput/d:parameter/d:replaceable"> 
    164 <code class="replaceable"><xsl:value-of select="."/></code> 
    165 </xsl:template> 
    166  
    167  
    168163<xsl:template match="d:blockquote"> 
    169164  <xsl:text>  </xsl:text><xsl:apply-templates/> 
     
    201196</xsl:template> 
    202197 
    203 <xsl:template match="d:link[contains(@xl:href,'idldoc_html_output')]"> 
    204  <xsl:text>[http://forge.ipsl.jussieu.fr/saxo/download/idldoc_html_output/</xsl:text> 
    205 <xsl:message><xsl:value-of select="substring-after(@xl:href,'idldoc_html_output/')"/></xsl:message> 
    206 <xsl:message>++Download</xsl:message> 
    207 <!-- ++ 
    208 <xsl:value-of select="substring-after(@xl:href,'idldoc_html_output/')"/> 
    209 --> 
    210 <xsl:text>]</xsl:text> 
    211 </xsl:template> 
    212  
    213 <xsl:template match="d:link[contains(@xl:href,'idlfiles/')]"> 
    214  <xsl:message>++idlfiles</xsl:message> 
    215  <xsl:text>[source:/trunk/SRC/Documentation/idlfiles/</xsl:text><xsl:value-of select="substring-after(@xl:href,'idlfiles/')"/> <xsl:value-of select="normalize-space(.)"/><xsl:text>]</xsl:text> 
    216 </xsl:template> 
    217  
    218  
    219 <xsl:template match="d:para/d:link[@xl:href]"> 
    220 <xsl:variable name="wikilink"> 
     198<xsl:template match="d:link[@xl:href]"> 
     199<xsl:variable name="link"> 
    221200 <xsl:choose> 
    222201  <xsl:when test="contains(@xl:href,'firststeps.html')"> 
     
    258237  <xsl:when test="contains(@xl:href,'websaxo.html')"> 
    259238   <xsl:text>wiki:WikiStart</xsl:text> 
     239  </xsl:when> 
     240  <xsl:when test="contains(@xl:href,'../../Tests/')"> 
     241   <xsl:text>source:/trunk/SRC/Tests/</xsl:text><xsl:value-of select="substring-after(@xl:href,'../../Tests/')"/> 
     242  </xsl:when> 
     243  <xsl:when test="contains(@xl:href,'idldoc_html_output')"> 
     244 <xsl:text>http://forge.ipsl.jussieu.fr/saxo/download/idldoc_html_output/</xsl:text><xsl:value-of select="substring-after(@xl:href,'idldoc_html_output/')"/> 
     245  </xsl:when> 
     246  <xsl:when test="contains(@xl:href,'idlfiles/')"> 
     247 <xsl:text>source:/trunk/SRC/Documentation/xmldoc/idlfiles/</xsl:text><xsl:value-of select="substring-after(@xl:href,'idlfiles/')"/> 
     248  </xsl:when> 
     249  <xsl:when test="contains(@xl:href,'figpng/')"> 
     250   <xsl:text>source:/trunk/SRC/Documentation/xmldoc/figpng/</xsl:text><xsl:value-of select="substring-after(@xl:href,'figpng/')"/> 
    260251  </xsl:when> 
    261252  <xsl:otherwise> 
     
    264255 </xsl:choose> 
    265256</xsl:variable> 
    266 <xsl:text>[</xsl:text><xsl:value-of select="$wikilink"/> <xsl:text> </xsl:text><xsl:value-of select="."/> <xsl:text>]</xsl:text> 
     257<xsl:text>[</xsl:text><xsl:value-of select="$link"/> <xsl:text> </xsl:text><xsl:value-of select="."/> <xsl:text>]</xsl:text> 
    267258</xsl:template> 
    268259 
     
    289280 
    290281<xsl:template match="d:replaceable"> 
    291 <!-- 
    292 +++ pas de ''' dans un truc qui est entre {{{...}}} 
    293 --> 
    294   <xsl:text>'''''</xsl:text><xsl:value-of select="."/><xsl:text>'''''</xsl:text> 
     282 <xsl:choose> 
     283  <xsl:when test="local-name(..)='userinput'"> 
     284   <code class="replaceable"><xsl:value-of select="."/></code> 
     285  </xsl:when> 
     286  <xsl:when test="local-name(..)='parameter'"> 
     287   <code class="replaceable"><xsl:value-of select="."/></code> 
     288  </xsl:when> 
     289  <xsl:otherwise> 
     290   <xsl:text>'''''</xsl:text><xsl:value-of select="."/><xsl:text>'''''</xsl:text> 
     291  </xsl:otherwise> 
     292 </xsl:choose> 
    295293</xsl:template> 
    296294 
     
    331329<xsl:template match="d:xref">  
    332330  <xsl:variable name="target" select="key('id',@linkend)[1]"/> 
    333   <xsl:text>[#</xsl:text><xsl:value-of select="normalize-space(//d:sect1[normalize-space(@xml:id='$target')]/d:title)"/><xsl:text>]</xsl:text> 
     331  <xsl:text>[#</xsl:text><xsl:value-of select="translate(normalize-space(//d:sect1[normalize-space(@xml:id='$target')]/d:title),' ','')"/><xsl:text> </xsl:text> <xsl:value-of select="normalize-space(//d:sect1[normalize-space(@xml:id='$target')]/d:title)"/><xsl:text>]</xsl:text> 
    334332</xsl:template> 
    335333 
  • trunk/SRC/Documentation/xmldoc/wiki/FaqSaxo

    r354 r355  
    127127 
    128128 
    129 Yes, if you use at least IDL 6.2. It is produced by IDLdoc. SAXO and IDL online_help have been merged, you can simply get the help by typing: 
     129Yes, if you use at least IDL 6.2. It is produced by [http://www.ittvis.com/codebank/search.asp?FID=100 IDLdoc]. SAXO and IDL online_help have been merged, you can simply get the help by typing: 
    130130      
    131131{{{ 
     
    256256#!html 
    257257<pre xmlns:xl="http://www.w3.org/1999/xlink" class="screen"> 
    258        <code class="prompt">$</code> <strong class="userinput"><code>find . -name "*.pro" -exec grep -h "'''''misspelled_word'''''" {} \;</code></strong> 
     258       <code class="prompt">$</code> <strong class="userinput"><code>find . -name "*.pro" -exec grep -h "<code class="replaceable">misspelled_word</code>" {} \;</code></strong> 
    259259     </pre> 
    260260}}} 
  • trunk/SRC/Documentation/xmldoc/wiki/FirstSteps

    r354 r355  
    9090   <code class="prompt">idl&gt;</code> <strong class="userinput"><code><span><strong class="command">n = 10</strong></span></code></strong> 
    9191   <code class="prompt">idl&gt;</code> <strong class="userinput"><code><span><strong class="command">y = findgen(n)</strong></span></code></strong> [[Image(source:/trunk/SRC/Documentation/xmldoc/images/callouts/1.png)]]1 
    92    <code class="prompt">idl&gt;</code> <strong class="userinput"><code><span><strong class="command">plot, y</strong></span></code></strong> [[Image(source:/trunk/SRC/Documentation/xmldoc/images/showfig.png)]]show result 
     92   <code class="prompt">idl&gt;</code> <strong class="userinput"><code><span><strong class="command">plot, y</strong></span></code></strong> [source:/trunk/SRC/Documentation/xmldoc/figpng/basic_plot.png show result] 
    9393</pre> 
    9494}}} 
     
    114114#!html 
    115115<pre xmlns:xl="http://www.w3.org/1999/xlink" class="screen"> 
    116   <code class="prompt">idl&gt;</code> <strong class="userinput"><code><span><strong class="command">splot, y</strong></span></code></strong> [[Image(source:/trunk/SRC/Documentation/xmldoc/images/showfig.png)]]show result 
     116  <code class="prompt">idl&gt;</code> <strong class="userinput"><code><span><strong class="command">splot, y</strong></span></code></strong> [source:/trunk/SRC/Documentation/xmldoc/figpng/basic_splot1.png show result] 
    117117  <code class="computeroutput">% Compiled module: SPLOT.</code> 
    118118  <code class="computeroutput">% Compiled module: REINITPLT.</code> 
     
    199199#!html 
    200200<pre xmlns:xl="http://www.w3.org/1999/xlink" class="screen"> 
    201   <code class="prompt">idl&gt;</code> <strong class="userinput"><code><span><strong class="command">splot, y, y^2, linestyle = 2, thick = 2, title = 'y = x^2', /portrait</strong></span></code></strong> [[Image(source:/trunk/SRC/Documentation/xmldoc/images/showfig.png)]]show result 
     201  <code class="prompt">idl&gt;</code> <strong class="userinput"><code><span><strong class="command">splot, y, y^2, linestyle = 2, thick = 2, title = 'y = x^2', /portrait</strong></span></code></strong> [source:/trunk/SRC/Documentation/xmldoc/figpng/basic_splot2.png show result] 
    202202</pre> 
    203203}}} 
     
    207207<pre xmlns:xl="http://www.w3.org/1999/xlink" class="screen"> 
    208208  <code class="prompt">idl&gt;</code> <strong class="userinput"><code><span><strong class="command">splot, y, yrange = [0, (n-1)^2], title = 'x and x^2'</strong></span></code></strong> 
    209   <code class="prompt">idl&gt;</code> <strong class="userinput"><code><span><strong class="command">oplot, y^2, color = 50, linestyle = 2</strong></span></code></strong> [[Image(source:/trunk/SRC/Documentation/xmldoc/images/showfig.png)]]show result 
     209  <code class="prompt">idl&gt;</code> <strong class="userinput"><code><span><strong class="command">oplot, y^2, color = 50, linestyle = 2</strong></span></code></strong> [source:/trunk/SRC/Documentation/xmldoc/figpng/basic_splot4.png show result] 
    210210</pre> 
    211211}}} 
     
    226226  <code class="prompt">idl&gt;</code> <strong class="userinput"><code><span><strong class="command">splot, y, y^2, title = 'y = x^2', psym = 2, small 1 = [1, 2, 1]</strong></span></code></strong> 
    227227  <code class="prompt">idl&gt;</code> <strong class="userinput"><code><span><strong class="command">splot, findgen(360)/36., findgen(360)*2.*!dtor, /polar $</strong></span></code></strong> 
    228   <code class="prompt">idl&gt;</code> <strong class="userinput"><code><span><strong class="command">    , small 1 = [1, 2, 2], /noerase 2</strong></span></code></strong> [[Image(source:/trunk/SRC/Documentation/xmldoc/images/showfig.png)]]show result 
     228  <code class="prompt">idl&gt;</code> <strong class="userinput"><code><span><strong class="command">    , small 1 = [1, 2, 2], /noerase 2</strong></span></code></strong> [source:/trunk/SRC/Documentation/xmldoc/figpng/basic_splot3.png show result] 
    229229</pre> 
    230230}}} 
     
    252252  <code class="prompt">idl&gt;</code> <strong class="userinput"><code><span><strong class="command">z = dist(n)</strong></span></code></strong> 
    253253  <code class="computeroutput">% Compiled module: DIST.</code> 
    254   <code class="prompt">idl&gt;</code> <strong class="userinput"><code><span><strong class="command">scontour, z</strong></span></code></strong> [[Image(source:/trunk/SRC/Documentation/xmldoc/images/showfig.png)]]show result 
     254  <code class="prompt">idl&gt;</code> <strong class="userinput"><code><span><strong class="command">scontour, z</strong></span></code></strong> [source:/trunk/SRC/Documentation/xmldoc/figpng/basic_scontour1.png show result] 
    255255  <code class="computeroutput">% Compiled module: SCONTOUR.</code> 
    256256  <code class="computeroutput">% Compiled module: CHKSTRU.</code> 
     
    263263<pre xmlns:xl="http://www.w3.org/1999/xlink" class="screen"> 
    264264  <code class="prompt">idl&gt;</code> <strong class="userinput"><code><span><strong class="command">scontour, z, /fill, nlevels = 15, subtitle = 'nicer contour' $</strong></span></code></strong> 
    265   <code class="prompt">idl&gt;</code> <strong class="userinput"><code><span><strong class="command">    , xtitle = 'x index', charsize = 1.5</strong></span></code></strong> [[Image(source:/trunk/SRC/Documentation/xmldoc/images/showfig.png)]]show result 
     265  <code class="prompt">idl&gt;</code> <strong class="userinput"><code><span><strong class="command">    , xtitle = 'x index', charsize = 1.5</strong></span></code></strong> [source:/trunk/SRC/Documentation/xmldoc/figpng/basic_scontour2.png show result] 
    266266</pre> 
    267267}}} 
     
    279279  <code class="prompt">idl&gt;</code> <strong class="userinput"><code><span><strong class="command">scontour, z, levels = n*ind, c_orientation = 180*ind, c_spacing = 0.4*ind</strong></span></code></strong> 
    280280  <code class="prompt">idl&gt;</code> <strong class="userinput"><code><span><strong class="command">contour, z, /overplot, c_label = rebin([1, 0], 2, n) 1, levels = n*ind $</strong></span></code></strong> 
    281   <code class="prompt">idl&gt;</code> <strong class="userinput"><code><span><strong class="command">    , c_charthick = 2, c_charsize = 1.5, c_colors = 250*ind</strong></span></code></strong> [[Image(source:/trunk/SRC/Documentation/xmldoc/images/showfig.png)]]show result 
     281  <code class="prompt">idl&gt;</code> <strong class="userinput"><code><span><strong class="command">    , c_charthick = 2, c_charsize = 1.5, c_colors = 250*ind</strong></span></code></strong> [source:/trunk/SRC/Documentation/xmldoc/figpng/basic_scontour3.png show result] 
    282282</pre> 
    283283}}} 
     
    299299   
    300300 
    301 {{{scontour}}} is compatible with the positioning method associated with the small keyword. See for example the test file [../../Tests/tst_basic.pro tst_basic.pro]: 
    302  
    303 {{{ 
    304 #!html 
    305 <pre xmlns:xl="http://www.w3.org/1999/xlink" class="screen"> 
    306   <code class="prompt">idl&gt;</code> <strong class="userinput"><code><span><strong class="command">tst_basic</strong></span></code></strong> [[Image(source:/trunk/SRC/Documentation/xmldoc/images/showfig.png)]]show result 
     301{{{scontour}}} is compatible with the positioning method associated with the small keyword. See for example the test file [source:/trunk/SRC/Tests/tst_basic.pro tst_basic.pro]: 
     302 
     303{{{ 
     304#!html 
     305<pre xmlns:xl="http://www.w3.org/1999/xlink" class="screen"> 
     306  <code class="prompt">idl&gt;</code> <strong class="userinput"><code><span><strong class="command">tst_basic</strong></span></code></strong> [source:/trunk/SRC/Documentation/xmldoc/figpng/tst_basic.png show result] 
    307307</pre> 
    308308}}} 
     
    314314#!html 
    315315<pre xmlns:xl="http://www.w3.org/1999/xlink" class="screen"> 
    316  <code class="prompt">idl&gt;</code> <strong class="userinput"><code><span><strong class="command">tvplus, dist(20)</strong></span></code></strong> [[Image(source:/trunk/SRC/Documentation/xmldoc/images/showfig.png)]]show result 
     316 <code class="prompt">idl&gt;</code> <strong class="userinput"><code><span><strong class="command">tvplus, dist(20)</strong></span></code></strong> [source:/trunk/SRC/Documentation/xmldoc/figpng/tvplus.png show result] 
    317317 <code class="computeroutput">left button  : mouse position and associated array value</code> 
    318318 <code class="computeroutput">middle button: use it twice to define a zoom box</code> 
     
    358358#!html 
    359359<pre xmlns:xl="http://www.w3.org/1999/xlink" class="screen"> 
    360   <code class="prompt">idl&gt;</code> <strong class="userinput"><code><span><strong class="command">pltv, dist(20)</strong></span></code></strong> [[Image(source:/trunk/SRC/Documentation/xmldoc/images/showfig.png)]]show result 
     360  <code class="prompt">idl&gt;</code> <strong class="userinput"><code><span><strong class="command">pltv, dist(20)</strong></span></code></strong> [source:/trunk/SRC/Documentation/xmldoc/figpng/pltv.png show result] 
    361361  </pre> 
    362362}}} 
     
    394394}}} 
    395395 
    396   This [../../Tests/tst_initlev.pro @tst_initlev] command allows us to define: 
     396  This [source:/trunk/SRC/Tests/tst_initlev.pro @tst_initlev] command allows us to define: 
    397397   
    398398 * domain dimensions, stored in {{{jpi, jpj and jpk}}} 
     
    438438  We provide other initialization methods/examples 
    439439   
    440  *  [../../Tests/tst_initorca2_short.pro @tst_initorca2_short] : ORCA2 example 
    441  *  [../../Tests/tst_initorca05_short.pro @tst_initorca05_short] : ORCA05 example 
    442  *  [../../Tests/tst_initlev_stride.pro @tst_initlev_stride] : same as @tst_initlev but we skip on point over 2 in x and y direction 
    443  *  [../../Tests/tst_initorca2_short_stride.pro @tst_initorca2_short_stride] : ORCA2 with stride 
    444  *  [../../Tests/tst_initorca05_short_stride.pro @tst_initorca05_short_stride] : ORCA05 with stride 
    445  *  [../../Tests/tst_initlev_index.pro @tst_initlev_index] : in that case we load the grid using points index as axis instead of the longitude/latitude position 
    446  *  [../../Tests/tst_initorca2_index.pro @tst_initorca2_index] : load ORCA2 as it see by the model 
    447  *  [../../Tests/tst_initorca05_index.pro @tst_initorca05_index] : load ORCA05 as it see by the model 
    448  *  [../../Tests/tst_initlev_index_stride.pro @tst_initlev_index_stride] : @tst_initlev_index with stride 
    449  *  [../../Tests/tst_initorca2_index_stride.pro @tst_initorca2_index_stride] : ORCA2 in index with stride 
    450  *  [../../Tests/tst_initorca05_index_stride.pro @tst_initorca05_index_stride] : ORCA05 in index with stride 
     440 * [source:/trunk/SRC/Tests/tst_initorca2_short.pro @tst_initorca2_short] : ORCA2 example 
     441 * [source:/trunk/SRC/Tests/tst_initorca05_short.pro @tst_initorca05_short] : ORCA05 example 
     442 * [source:/trunk/SRC/Tests/tst_initlev_stride.pro @tst_initlev_stride] : same as @tst_initlev but we skip on point over 2 in x and y direction 
     443 * [source:/trunk/SRC/Tests/tst_initorca2_short_stride.pro @tst_initorca2_short_stride] : ORCA2 with stride 
     444 * [source:/trunk/SRC/Tests/tst_initorca05_short_stride.pro @tst_initorca05_short_stride] : ORCA05 with stride 
     445 * [source:/trunk/SRC/Tests/tst_initlev_index.pro @tst_initlev_index] : in that case we load the grid using points index as axis instead of the longitude/latitude position 
     446 * [source:/trunk/SRC/Tests/tst_initorca2_index.pro @tst_initorca2_index] : load ORCA2 as it see by the model 
     447 * [source:/trunk/SRC/Tests/tst_initorca05_index.pro @tst_initorca05_index] : load ORCA05 as it see by the model 
     448 * [source:/trunk/SRC/Tests/tst_initlev_index_stride.pro @tst_initlev_index_stride] : @tst_initlev_index with stride 
     449 * [source:/trunk/SRC/Tests/tst_initorca2_index_stride.pro @tst_initorca2_index_stride] : ORCA2 in index with stride 
     450 * [source:/trunk/SRC/Tests/tst_initorca05_index_stride.pro @tst_initorca05_index_stride] : ORCA05 in index with stride 
    451451==== Load the grid from OPA meshmask file ==== 
    452452 
    453453  When the grid is really irregular (its abscissa and ordinate cannot be descried by a vector), loading the grid directly from the data forces us to make an approximation when computing the grid corners position and the cells size. In that case, it can be preferable to load the grid from the meshmask file created by OPA. As OPA use a Arakawa-C discretization, loading the grid from the meshmask will also define all parameters related to the U, V and F grids (glam[uv],gphi[uv], e[12][uvf]). Note that, when using a simple grid definition from the data itself (with {{{initncdf}}} or {{{computegrid}}}), adding the keyword /FULLCGRID leads also to the definition of all U, V and F grids parameters. There is the examples to load ORCA grids from OPA meshmask. 
    454454   
    455  *  [../../Tests/tst_initorca2.pro @tst_initorca2] : ORCA2 
    456  *  [../../Tests/tst_initorca05.pro @tst_initorca05] : ORCA05 
    457  *  [../../Tests/tst_initorca2_stride.pro @tst_initorca2_stride] : ORCA2 with stride 
    458  *  [../../Tests/tst_initorca05_stride.pro @tst_initorca05_stride] : ORCA05 with stride 
    459  *  [../../Tests/tst_initorca2_index.pro @tst_initorca2_index] : load ORCA2 as it see by the model 
    460  *  [../../Tests/tst_initorca05_index.pro @tst_initorca05_index] : load ORCA05 as it see by the model 
    461  *  [../../Tests/tst_initorca2_index_stride.pro @tst_initorca2_index_stride] : ORCA2 in index with stride 
    462  *  [../../Tests/tst_initorca05_index_stride.pro @tst_initorca05_index_stride] : ORCA05 in index with stride 
     455 * [source:/trunk/SRC/Tests/tst_initorca2.pro @tst_initorca2] : ORCA2 
     456 * [source:/trunk/SRC/Tests/tst_initorca05.pro @tst_initorca05] : ORCA05 
     457 * [source:/trunk/SRC/Tests/tst_initorca2_stride.pro @tst_initorca2_stride] : ORCA2 with stride 
     458 * [source:/trunk/SRC/Tests/tst_initorca05_stride.pro @tst_initorca05_stride] : ORCA05 with stride 
     459 * [source:/trunk/SRC/Tests/tst_initorca2_index.pro @tst_initorca2_index] : load ORCA2 as it see by the model 
     460 * [source:/trunk/SRC/Tests/tst_initorca05_index.pro @tst_initorca05_index] : load ORCA05 as it see by the model 
     461 * [source:/trunk/SRC/Tests/tst_initorca2_index_stride.pro @tst_initorca2_index_stride] : ORCA2 in index with stride 
     462 * [source:/trunk/SRC/Tests/tst_initorca05_index_stride.pro @tst_initorca05_index_stride] : ORCA05 in index with stride 
    463463=== Horizontal plots and maps === 
    464464 
    465   A quick presentation of horizontal plots and maps is shown in [../../Tests/tst_plt.pro tst_plt]. After loading any of the grid (for example with one of the above examples). Just try: 
     465  A quick presentation of horizontal plots and maps is shown in [source:/trunk/SRC/Tests/tst_plt.pro tst_plt]. After loading any of the grid (for example with one of the above examples). Just try: 
    466466   
    467467{{{ 
     
    474474  See the results with 
    475475   
    476  * @tst_initlev 
    477  [figpng/tst_plt_lev_01.png show result] 
    478  [figpng/tst_plt_lev_02.png show result] 
    479  [figpng/tst_plt_lev_03.png show result] 
    480  [figpng/tst_plt_lev_04.png show result] 
    481  [figpng/tst_plt_lev_05.png show result] 
    482  [figpng/tst_plt_lev_06.png show result] 
    483  [figpng/tst_plt_lev_07.png show result] 
    484  [figpng/tst_plt_lev_08.png show result] 
    485  [figpng/tst_plt_lev_09.png show result] 
    486  [figpng/tst_plt_lev_10.png show result] 
    487  * @tst_initorca2 
    488  [figpng/tst_plt_orca2_01.png show result] 
    489  [figpng/tst_plt_orca2_02.png show result] 
    490  [figpng/tst_plt_orca2_03.png show result] 
    491  [figpng/tst_plt_orca2_04.png show result] 
    492  [figpng/tst_plt_orca2_05.png show result] 
    493  [figpng/tst_plt_orca2_06.png show result] 
    494  [figpng/tst_plt_orca2_07.png show result] 
    495  [figpng/tst_plt_orca2_08.png show result] 
    496  [figpng/tst_plt_orca2_09.png show result] 
    497  [figpng/tst_plt_orca2_10.png show result] 
    498  * @tst_initorca05 
    499  [figpng/tst_plt_orca05_01.png show result] 
    500  [figpng/tst_plt_orca05_02.png show result] 
    501  [figpng/tst_plt_orca05_03.png show result] 
    502  [figpng/tst_plt_orca05_04.png show result] 
    503  [figpng/tst_plt_orca05_05.png show result] 
    504  [figpng/tst_plt_orca05_06.png show result] 
    505  [figpng/tst_plt_orca05_07.png show result] 
    506  [figpng/tst_plt_orca05_08.png show result] 
    507  [figpng/tst_plt_orca05_09.png show result] 
    508  [figpng/tst_plt_orca05_10.png show result] 
    509  * @tst_initlev_stride 
    510  [figpng/tst_plt_lev_stride_01.png show result] 
    511  [figpng/tst_plt_lev_stride_02.png show result] 
    512  [figpng/tst_plt_lev_stride_03.png show result] 
    513  [figpng/tst_plt_lev_stride_04.png show result] 
    514  [figpng/tst_plt_lev_stride_05.png show result] 
    515  [figpng/tst_plt_lev_stride_06.png show result] 
    516  [figpng/tst_plt_lev_stride_07.png show result] 
    517  [figpng/tst_plt_lev_stride_08.png show result] 
    518  [figpng/tst_plt_lev_stride_09.png show result] 
    519  [figpng/tst_plt_lev_stride_10.png show result] 
    520  * @tst_initorca2_stride 
    521  [figpng/tst_plt_orca2_stride_01.png show result] 
    522  [figpng/tst_plt_orca2_stride_02.png show result] 
    523  [figpng/tst_plt_orca2_stride_03.png show result] 
    524  [figpng/tst_plt_orca2_stride_04.png show result] 
    525  [figpng/tst_plt_orca2_stride_05.png show result] 
    526  [figpng/tst_plt_orca2_stride_06.png show result] 
    527  [figpng/tst_plt_orca2_stride_07.png show result] 
    528  [figpng/tst_plt_orca2_stride_08.png show result] 
    529  [figpng/tst_plt_orca2_stride_09.png show result] 
    530  [figpng/tst_plt_orca2_stride_10.png show result] 
    531  * @tst_initorca05_stride 
    532  [figpng/tst_plt_orca05_stride_01.png show result] 
    533  [figpng/tst_plt_orca05_stride_02.png show result] 
    534  [figpng/tst_plt_orca05_stride_03.png show result] 
    535  [figpng/tst_plt_orca05_stride_04.png show result] 
    536  [figpng/tst_plt_orca05_stride_05.png show result] 
    537  [figpng/tst_plt_orca05_stride_06.png show result] 
    538  [figpng/tst_plt_orca05_stride_07.png show result] 
    539  [figpng/tst_plt_orca05_stride_08.png show result] 
    540  [figpng/tst_plt_orca05_stride_09.png show result] 
    541  [figpng/tst_plt_orca05_stride_10.png show result] 
     476 * @tst_initlev[source:/trunk/SRC/Documentation/xmldoc/figpng/tst_plt_lev_01.png show result][source:/trunk/SRC/Documentation/xmldoc/figpng/tst_plt_lev_02.png show result][source:/trunk/SRC/Documentation/xmldoc/figpng/tst_plt_lev_03.png show result][source:/trunk/SRC/Documentation/xmldoc/figpng/tst_plt_lev_04.png show result][source:/trunk/SRC/Documentation/xmldoc/figpng/tst_plt_lev_05.png show result][source:/trunk/SRC/Documentation/xmldoc/figpng/tst_plt_lev_06.png show result][source:/trunk/SRC/Documentation/xmldoc/figpng/tst_plt_lev_07.png show result][source:/trunk/SRC/Documentation/xmldoc/figpng/tst_plt_lev_08.png show result][source:/trunk/SRC/Documentation/xmldoc/figpng/tst_plt_lev_09.png show result][source:/trunk/SRC/Documentation/xmldoc/figpng/tst_plt_lev_10.png show result] 
     477 * @tst_initorca2[source:/trunk/SRC/Documentation/xmldoc/figpng/tst_plt_orca2_01.png show result][source:/trunk/SRC/Documentation/xmldoc/figpng/tst_plt_orca2_02.png show result][source:/trunk/SRC/Documentation/xmldoc/figpng/tst_plt_orca2_03.png show result][source:/trunk/SRC/Documentation/xmldoc/figpng/tst_plt_orca2_04.png show result][source:/trunk/SRC/Documentation/xmldoc/figpng/tst_plt_orca2_05.png show result][source:/trunk/SRC/Documentation/xmldoc/figpng/tst_plt_orca2_06.png show result][source:/trunk/SRC/Documentation/xmldoc/figpng/tst_plt_orca2_07.png show result][source:/trunk/SRC/Documentation/xmldoc/figpng/tst_plt_orca2_08.png show result][source:/trunk/SRC/Documentation/xmldoc/figpng/tst_plt_orca2_09.png show result][source:/trunk/SRC/Documentation/xmldoc/figpng/tst_plt_orca2_10.png show result] 
     478 * @tst_initorca05[source:/trunk/SRC/Documentation/xmldoc/figpng/tst_plt_orca05_01.png show result][source:/trunk/SRC/Documentation/xmldoc/figpng/tst_plt_orca05_02.png show result][source:/trunk/SRC/Documentation/xmldoc/figpng/tst_plt_orca05_03.png show result][source:/trunk/SRC/Documentation/xmldoc/figpng/tst_plt_orca05_04.png show result][source:/trunk/SRC/Documentation/xmldoc/figpng/tst_plt_orca05_05.png show result][source:/trunk/SRC/Documentation/xmldoc/figpng/tst_plt_orca05_06.png show result][source:/trunk/SRC/Documentation/xmldoc/figpng/tst_plt_orca05_07.png show result][source:/trunk/SRC/Documentation/xmldoc/figpng/tst_plt_orca05_08.png show result][source:/trunk/SRC/Documentation/xmldoc/figpng/tst_plt_orca05_09.png show result][source:/trunk/SRC/Documentation/xmldoc/figpng/tst_plt_orca05_10.png show result] 
     479 * @tst_initlev_stride[source:/trunk/SRC/Documentation/xmldoc/figpng/tst_plt_lev_stride_01.png show result][source:/trunk/SRC/Documentation/xmldoc/figpng/tst_plt_lev_stride_02.png show result][source:/trunk/SRC/Documentation/xmldoc/figpng/tst_plt_lev_stride_03.png show result][source:/trunk/SRC/Documentation/xmldoc/figpng/tst_plt_lev_stride_04.png show result][source:/trunk/SRC/Documentation/xmldoc/figpng/tst_plt_lev_stride_05.png show result][source:/trunk/SRC/Documentation/xmldoc/figpng/tst_plt_lev_stride_06.png show result][source:/trunk/SRC/Documentation/xmldoc/figpng/tst_plt_lev_stride_07.png show result][source:/trunk/SRC/Documentation/xmldoc/figpng/tst_plt_lev_stride_08.png show result][source:/trunk/SRC/Documentation/xmldoc/figpng/tst_plt_lev_stride_09.png show result][source:/trunk/SRC/Documentation/xmldoc/figpng/tst_plt_lev_stride_10.png show result] 
     480 * @tst_initorca2_stride[source:/trunk/SRC/Documentation/xmldoc/figpng/tst_plt_orca2_stride_01.png show result][source:/trunk/SRC/Documentation/xmldoc/figpng/tst_plt_orca2_stride_02.png show result][source:/trunk/SRC/Documentation/xmldoc/figpng/tst_plt_orca2_stride_03.png show result][source:/trunk/SRC/Documentation/xmldoc/figpng/tst_plt_orca2_stride_04.png show result][source:/trunk/SRC/Documentation/xmldoc/figpng/tst_plt_orca2_stride_05.png show result][source:/trunk/SRC/Documentation/xmldoc/figpng/tst_plt_orca2_stride_06.png show result][source:/trunk/SRC/Documentation/xmldoc/figpng/tst_plt_orca2_stride_07.png show result][source:/trunk/SRC/Documentation/xmldoc/figpng/tst_plt_orca2_stride_08.png show result][source:/trunk/SRC/Documentation/xmldoc/figpng/tst_plt_orca2_stride_09.png show result][source:/trunk/SRC/Documentation/xmldoc/figpng/tst_plt_orca2_stride_10.png show result] 
     481 * @tst_initorca05_stride[source:/trunk/SRC/Documentation/xmldoc/figpng/tst_plt_orca05_stride_01.png show result][source:/trunk/SRC/Documentation/xmldoc/figpng/tst_plt_orca05_stride_02.png show result][source:/trunk/SRC/Documentation/xmldoc/figpng/tst_plt_orca05_stride_03.png show result][source:/trunk/SRC/Documentation/xmldoc/figpng/tst_plt_orca05_stride_04.png show result][source:/trunk/SRC/Documentation/xmldoc/figpng/tst_plt_orca05_stride_05.png show result][source:/trunk/SRC/Documentation/xmldoc/figpng/tst_plt_orca05_stride_06.png show result][source:/trunk/SRC/Documentation/xmldoc/figpng/tst_plt_orca05_stride_07.png show result][source:/trunk/SRC/Documentation/xmldoc/figpng/tst_plt_orca05_stride_08.png show result][source:/trunk/SRC/Documentation/xmldoc/figpng/tst_plt_orca05_stride_09.png show result][source:/trunk/SRC/Documentation/xmldoc/figpng/tst_plt_orca05_stride_10.png show result] 
    542482=== Vertical sections === 
    543483 
    544   A quick presentation of vertical sections is shown in [../../Tests/tst_pltz.pro tst_pltz]. After loading any of the grid (for example with one of the above examples). Just try: 
     484  A quick presentation of vertical sections is shown in [source:/trunk/SRC/Tests/tst_pltz.pro tst_pltz]. After loading any of the grid (for example with one of the above examples). Just try: 
    545485   
    546486{{{ 
     
    553493  See the results with 
    554494   
    555  * @tst_initlev 
    556  [figpng/tst_pltz_lev_01.png show result] 
    557  [figpng/tst_pltz_lev_02.png show result] 
    558  [figpng/tst_pltz_lev_03.png show result] 
    559  [figpng/tst_pltz_lev_04.png show result] 
    560  [figpng/tst_pltz_lev_05.png show result] 
    561  [figpng/tst_pltz_lev_06.png show result] 
    562  [figpng/tst_pltz_lev_07.png show result] 
    563  [figpng/tst_pltz_lev_08.png show result] 
    564  [figpng/tst_pltz_lev_09.png show result] 
    565  [figpng/tst_pltz_lev_10.png show result] 
    566  [figpng/tst_pltz_lev_11.png show result] 
    567  * @tst_initorca2 
    568  [figpng/tst_pltz_orca2_01.png show result] 
    569  [figpng/tst_pltz_orca2_02.png show result] 
    570  [figpng/tst_pltz_orca2_03.png show result] 
    571  [figpng/tst_pltz_orca2_04.png show result] 
    572  [figpng/tst_pltz_orca2_05.png show result] 
    573  [figpng/tst_pltz_orca2_06.png show result] 
    574  [figpng/tst_pltz_orca2_07.png show result] 
    575  [figpng/tst_pltz_orca2_08.png show result] 
    576  [figpng/tst_pltz_orca2_09.png show result] 
    577  [figpng/tst_pltz_orca2_10.png show result] 
    578  [figpng/tst_pltz_orca2_11.png show result] 
    579  [figpng/tst_pltz_orca2_12.png show result] 
    580  * @tst_initorca05 
    581  [figpng/tst_pltz_orca05_01.png show result] 
    582  [figpng/tst_pltz_orca05_02.png show result] 
    583  [figpng/tst_pltz_orca05_03.png show result] 
    584  [figpng/tst_pltz_orca05_04.png show result] 
    585  [figpng/tst_pltz_orca05_05.png show result] 
    586  [figpng/tst_pltz_orca05_06.png show result] 
    587  [figpng/tst_pltz_orca05_07.png show result] 
    588  [figpng/tst_pltz_orca05_08.png show result] 
    589  [figpng/tst_pltz_orca05_09.png show result] 
    590  [figpng/tst_pltz_orca05_10.png show result] 
    591  [figpng/tst_pltz_orca05_11.png show result] 
    592  [figpng/tst_pltz_orca05_12.png show result] 
    593  * @tst_initlev_stride 
    594  [figpng/tst_pltz_lev_stride_01.png show result] 
    595  [figpng/tst_pltz_lev_stride_02.png show result] 
    596  [figpng/tst_pltz_lev_stride_03.png show result] 
    597  [figpng/tst_pltz_lev_stride_04.png show result] 
    598  [figpng/tst_pltz_lev_stride_05.png show result] 
    599  [figpng/tst_pltz_lev_stride_06.png show result] 
    600  [figpng/tst_pltz_lev_stride_07.png show result] 
    601  [figpng/tst_pltz_lev_stride_08.png show result] 
    602  [figpng/tst_pltz_lev_stride_09.png show result] 
    603  [figpng/tst_pltz_lev_stride_10.png show result] 
    604  [figpng/tst_pltz_lev_stride_11.png show result] 
    605  * @tst_initorca2_stride 
    606  [figpng/tst_pltz_orca2_stride_01.png show result] 
    607  [figpng/tst_pltz_orca2_stride_02.png show result] 
    608  [figpng/tst_pltz_orca2_stride_03.png show result] 
    609  [figpng/tst_pltz_orca2_stride_04.png show result] 
    610  [figpng/tst_pltz_orca2_stride_05.png show result] 
    611  [figpng/tst_pltz_orca2_stride_06.png show result] 
    612  [figpng/tst_pltz_orca2_stride_07.png show result] 
    613  [figpng/tst_pltz_orca2_stride_08.png show result] 
    614  [figpng/tst_pltz_orca2_stride_09.png show result] 
    615  [figpng/tst_pltz_orca2_stride_10.png show result] 
    616  [figpng/tst_pltz_orca2_stride_11.png show result] 
    617  * @tst_initorca05_stride 
    618  [figpng/tst_pltz_orca05_stride_01.png show result] 
    619  [figpng/tst_pltz_orca05_stride_02.png show result] 
    620  [figpng/tst_pltz_orca05_stride_03.png show result] 
    621  [figpng/tst_pltz_orca05_stride_04.png show result] 
    622  [figpng/tst_pltz_orca05_stride_05.png show result] 
    623  [figpng/tst_pltz_orca05_stride_06.png show result] 
    624  [figpng/tst_pltz_orca05_stride_07.png show result] 
    625  [figpng/tst_pltz_orca05_stride_08.png show result] 
    626  [figpng/tst_pltz_orca05_stride_09.png show result] 
    627  [figpng/tst_pltz_orca05_stride_10.png show result] 
    628  [figpng/tst_pltz_orca05_stride_11.png show result] 
     495 * @tst_initlev[source:/trunk/SRC/Documentation/xmldoc/figpng/tst_pltz_lev_01.png show result][source:/trunk/SRC/Documentation/xmldoc/figpng/tst_pltz_lev_02.png show result][source:/trunk/SRC/Documentation/xmldoc/figpng/tst_pltz_lev_03.png show result][source:/trunk/SRC/Documentation/xmldoc/figpng/tst_pltz_lev_04.png show result][source:/trunk/SRC/Documentation/xmldoc/figpng/tst_pltz_lev_05.png show result][source:/trunk/SRC/Documentation/xmldoc/figpng/tst_pltz_lev_06.png show result][source:/trunk/SRC/Documentation/xmldoc/figpng/tst_pltz_lev_07.png show result][source:/trunk/SRC/Documentation/xmldoc/figpng/tst_pltz_lev_08.png show result][source:/trunk/SRC/Documentation/xmldoc/figpng/tst_pltz_lev_09.png show result][source:/trunk/SRC/Documentation/xmldoc/figpng/tst_pltz_lev_10.png show result][source:/trunk/SRC/Documentation/xmldoc/figpng/tst_pltz_lev_11.png show result] 
     496 * @tst_initorca2[source:/trunk/SRC/Documentation/xmldoc/figpng/tst_pltz_orca2_01.png show result][source:/trunk/SRC/Documentation/xmldoc/figpng/tst_pltz_orca2_02.png show result][source:/trunk/SRC/Documentation/xmldoc/figpng/tst_pltz_orca2_03.png show result][source:/trunk/SRC/Documentation/xmldoc/figpng/tst_pltz_orca2_04.png show result][source:/trunk/SRC/Documentation/xmldoc/figpng/tst_pltz_orca2_05.png show result][source:/trunk/SRC/Documentation/xmldoc/figpng/tst_pltz_orca2_06.png show result][source:/trunk/SRC/Documentation/xmldoc/figpng/tst_pltz_orca2_07.png show result][source:/trunk/SRC/Documentation/xmldoc/figpng/tst_pltz_orca2_08.png show result][source:/trunk/SRC/Documentation/xmldoc/figpng/tst_pltz_orca2_09.png show result][source:/trunk/SRC/Documentation/xmldoc/figpng/tst_pltz_orca2_10.png show result][source:/trunk/SRC/Documentation/xmldoc/figpng/tst_pltz_orca2_11.png show result][source:/trunk/SRC/Documentation/xmldoc/figpng/tst_pltz_orca2_12.png show result] 
     497 * @tst_initorca05[source:/trunk/SRC/Documentation/xmldoc/figpng/tst_pltz_orca05_01.png show result][source:/trunk/SRC/Documentation/xmldoc/figpng/tst_pltz_orca05_02.png show result][source:/trunk/SRC/Documentation/xmldoc/figpng/tst_pltz_orca05_03.png show result][source:/trunk/SRC/Documentation/xmldoc/figpng/tst_pltz_orca05_04.png show result][source:/trunk/SRC/Documentation/xmldoc/figpng/tst_pltz_orca05_05.png show result][source:/trunk/SRC/Documentation/xmldoc/figpng/tst_pltz_orca05_06.png show result][source:/trunk/SRC/Documentation/xmldoc/figpng/tst_pltz_orca05_07.png show result][source:/trunk/SRC/Documentation/xmldoc/figpng/tst_pltz_orca05_08.png show result][source:/trunk/SRC/Documentation/xmldoc/figpng/tst_pltz_orca05_09.png show result][source:/trunk/SRC/Documentation/xmldoc/figpng/tst_pltz_orca05_10.png show result][source:/trunk/SRC/Documentation/xmldoc/figpng/tst_pltz_orca05_11.png show result][source:/trunk/SRC/Documentation/xmldoc/figpng/tst_pltz_orca05_12.png show result] 
     498 * @tst_initlev_stride[source:/trunk/SRC/Documentation/xmldoc/figpng/tst_pltz_lev_stride_01.png show result][source:/trunk/SRC/Documentation/xmldoc/figpng/tst_pltz_lev_stride_02.png show result][source:/trunk/SRC/Documentation/xmldoc/figpng/tst_pltz_lev_stride_03.png show result][source:/trunk/SRC/Documentation/xmldoc/figpng/tst_pltz_lev_stride_04.png show result][source:/trunk/SRC/Documentation/xmldoc/figpng/tst_pltz_lev_stride_05.png show result][source:/trunk/SRC/Documentation/xmldoc/figpng/tst_pltz_lev_stride_06.png show result][source:/trunk/SRC/Documentation/xmldoc/figpng/tst_pltz_lev_stride_07.png show result][source:/trunk/SRC/Documentation/xmldoc/figpng/tst_pltz_lev_stride_08.png show result][source:/trunk/SRC/Documentation/xmldoc/figpng/tst_pltz_lev_stride_09.png show result][source:/trunk/SRC/Documentation/xmldoc/figpng/tst_pltz_lev_stride_10.png show result][source:/trunk/SRC/Documentation/xmldoc/figpng/tst_pltz_lev_stride_11.png show result] 
     499 * @tst_initorca2_stride[source:/trunk/SRC/Documentation/xmldoc/figpng/tst_pltz_orca2_stride_01.png show result][source:/trunk/SRC/Documentation/xmldoc/figpng/tst_pltz_orca2_stride_02.png show result][source:/trunk/SRC/Documentation/xmldoc/figpng/tst_pltz_orca2_stride_03.png show result][source:/trunk/SRC/Documentation/xmldoc/figpng/tst_pltz_orca2_stride_04.png show result][source:/trunk/SRC/Documentation/xmldoc/figpng/tst_pltz_orca2_stride_05.png show result][source:/trunk/SRC/Documentation/xmldoc/figpng/tst_pltz_orca2_stride_06.png show result][source:/trunk/SRC/Documentation/xmldoc/figpng/tst_pltz_orca2_stride_07.png show result][source:/trunk/SRC/Documentation/xmldoc/figpng/tst_pltz_orca2_stride_08.png show result][source:/trunk/SRC/Documentation/xmldoc/figpng/tst_pltz_orca2_stride_09.png show result][source:/trunk/SRC/Documentation/xmldoc/figpng/tst_pltz_orca2_stride_10.png show result][source:/trunk/SRC/Documentation/xmldoc/figpng/tst_pltz_orca2_stride_11.png show result] 
     500 * @tst_initorca05_stride[source:/trunk/SRC/Documentation/xmldoc/figpng/tst_pltz_orca05_stride_01.png show result][source:/trunk/SRC/Documentation/xmldoc/figpng/tst_pltz_orca05_stride_02.png show result][source:/trunk/SRC/Documentation/xmldoc/figpng/tst_pltz_orca05_stride_03.png show result][source:/trunk/SRC/Documentation/xmldoc/figpng/tst_pltz_orca05_stride_04.png show result][source:/trunk/SRC/Documentation/xmldoc/figpng/tst_pltz_orca05_stride_05.png show result][source:/trunk/SRC/Documentation/xmldoc/figpng/tst_pltz_orca05_stride_06.png show result][source:/trunk/SRC/Documentation/xmldoc/figpng/tst_pltz_orca05_stride_07.png show result][source:/trunk/SRC/Documentation/xmldoc/figpng/tst_pltz_orca05_stride_08.png show result][source:/trunk/SRC/Documentation/xmldoc/figpng/tst_pltz_orca05_stride_09.png show result][source:/trunk/SRC/Documentation/xmldoc/figpng/tst_pltz_orca05_stride_10.png show result][source:/trunk/SRC/Documentation/xmldoc/figpng/tst_pltz_orca05_stride_11.png show result] 
    629501=== Hovmoellers and time series === 
    630502 
    631   A quick presentation of hovmoellers and time series is shown in [../../Tests/tst_pltt.pro tst_pltt]. After loading any of the grid (for example with one of the above examples). Just try: 
     503  A quick presentation of hovmoellers and time series is shown in [source:/trunk/SRC/Tests/tst_pltt.pro tst_pltt]. After loading any of the grid (for example with one of the above examples). Just try: 
    632504   
    633505{{{ 
     
    640512  See the results with 
    641513   
    642  * @tst_initlev 
    643  [figpng/tst_pltt_lev_01.png show result] 
    644  [figpng/tst_pltt_lev_02.png show result] 
    645  [figpng/tst_pltt_lev_03.png show result] 
    646  [figpng/tst_pltt_lev_04.png show result] 
    647  [figpng/tst_pltt_lev_05.png show result] 
    648  [figpng/tst_pltt_lev_06.png show result] 
    649  * @tst_initorca2 
    650  [figpng/tst_pltt_orca2_01.png show result] 
    651  [figpng/tst_pltt_orca2_02.png show result] 
    652  [figpng/tst_pltt_orca2_03.png show result] 
    653  [figpng/tst_pltt_orca2_04.png show result] 
    654  [figpng/tst_pltt_orca2_05.png show result] 
    655  [figpng/tst_pltt_orca2_06.png show result] 
    656  * @tst_initorca05 
    657  [figpng/tst_pltt_orca05_01.png show result] 
    658  [figpng/tst_pltt_orca05_02.png show result] 
    659  [figpng/tst_pltt_orca05_03.png show result] 
    660  [figpng/tst_pltt_orca05_04.png show result] 
    661  [figpng/tst_pltt_orca05_05.png show result] 
    662  [figpng/tst_pltt_orca05_06.png show result] 
    663  * @tst_initlev_stride 
    664  [figpng/tst_pltt_lev_stride_01.png show result] 
    665  [figpng/tst_pltt_lev_stride_02.png show result] 
    666  [figpng/tst_pltt_lev_stride_03.png show result] 
    667  [figpng/tst_pltt_lev_stride_04.png show result] 
    668  [figpng/tst_pltt_lev_stride_05.png show result] 
    669  [figpng/tst_pltt_lev_stride_06.png show result] 
    670  * @tst_initorca2_stride 
    671  [figpng/tst_pltt_orca2_stride_01.png show result] 
    672  [figpng/tst_pltt_orca2_stride_02.png show result] 
    673  [figpng/tst_pltt_orca2_stride_03.png show result] 
    674  [figpng/tst_pltt_orca2_stride_04.png show result] 
    675  [figpng/tst_pltt_orca2_stride_05.png show result] 
    676  [figpng/tst_pltt_orca2_stride_06.png show result] 
    677  * @tst_initorca05_stride 
    678  [figpng/tst_pltt_orca05_stride_01.png show result] 
    679  [figpng/tst_pltt_orca05_stride_02.png show result] 
    680  [figpng/tst_pltt_orca05_stride_03.png show result] 
    681  [figpng/tst_pltt_orca05_stride_04.png show result] 
    682  [figpng/tst_pltt_orca05_stride_05.png show result] 
    683  [figpng/tst_pltt_orca05_stride_06.png show result] 
     514 * @tst_initlev[source:/trunk/SRC/Documentation/xmldoc/figpng/tst_pltt_lev_01.png show result][source:/trunk/SRC/Documentation/xmldoc/figpng/tst_pltt_lev_02.png show result][source:/trunk/SRC/Documentation/xmldoc/figpng/tst_pltt_lev_03.png show result][source:/trunk/SRC/Documentation/xmldoc/figpng/tst_pltt_lev_04.png show result][source:/trunk/SRC/Documentation/xmldoc/figpng/tst_pltt_lev_05.png show result][source:/trunk/SRC/Documentation/xmldoc/figpng/tst_pltt_lev_06.png show result] 
     515 * @tst_initorca2[source:/trunk/SRC/Documentation/xmldoc/figpng/tst_pltt_orca2_01.png show result][source:/trunk/SRC/Documentation/xmldoc/figpng/tst_pltt_orca2_02.png show result][source:/trunk/SRC/Documentation/xmldoc/figpng/tst_pltt_orca2_03.png show result][source:/trunk/SRC/Documentation/xmldoc/figpng/tst_pltt_orca2_04.png show result][source:/trunk/SRC/Documentation/xmldoc/figpng/tst_pltt_orca2_05.png show result][source:/trunk/SRC/Documentation/xmldoc/figpng/tst_pltt_orca2_06.png show result] 
     516 * @tst_initorca05[source:/trunk/SRC/Documentation/xmldoc/figpng/tst_pltt_orca05_01.png show result][source:/trunk/SRC/Documentation/xmldoc/figpng/tst_pltt_orca05_02.png show result][source:/trunk/SRC/Documentation/xmldoc/figpng/tst_pltt_orca05_03.png show result][source:/trunk/SRC/Documentation/xmldoc/figpng/tst_pltt_orca05_04.png show result][source:/trunk/SRC/Documentation/xmldoc/figpng/tst_pltt_orca05_05.png show result][source:/trunk/SRC/Documentation/xmldoc/figpng/tst_pltt_orca05_06.png show result] 
     517 * @tst_initlev_stride[source:/trunk/SRC/Documentation/xmldoc/figpng/tst_pltt_lev_stride_01.png show result][source:/trunk/SRC/Documentation/xmldoc/figpng/tst_pltt_lev_stride_02.png show result][source:/trunk/SRC/Documentation/xmldoc/figpng/tst_pltt_lev_stride_03.png show result][source:/trunk/SRC/Documentation/xmldoc/figpng/tst_pltt_lev_stride_04.png show result][source:/trunk/SRC/Documentation/xmldoc/figpng/tst_pltt_lev_stride_05.png show result][source:/trunk/SRC/Documentation/xmldoc/figpng/tst_pltt_lev_stride_06.png show result] 
     518 * @tst_initorca2_stride[source:/trunk/SRC/Documentation/xmldoc/figpng/tst_pltt_orca2_stride_01.png show result][source:/trunk/SRC/Documentation/xmldoc/figpng/tst_pltt_orca2_stride_02.png show result][source:/trunk/SRC/Documentation/xmldoc/figpng/tst_pltt_orca2_stride_03.png show result][source:/trunk/SRC/Documentation/xmldoc/figpng/tst_pltt_orca2_stride_04.png show result][source:/trunk/SRC/Documentation/xmldoc/figpng/tst_pltt_orca2_stride_05.png show result][source:/trunk/SRC/Documentation/xmldoc/figpng/tst_pltt_orca2_stride_06.png show result] 
     519 * @tst_initorca05_stride[source:/trunk/SRC/Documentation/xmldoc/figpng/tst_pltt_orca05_stride_01.png show result][source:/trunk/SRC/Documentation/xmldoc/figpng/tst_pltt_orca05_stride_02.png show result][source:/trunk/SRC/Documentation/xmldoc/figpng/tst_pltt_orca05_stride_03.png show result][source:/trunk/SRC/Documentation/xmldoc/figpng/tst_pltt_orca05_stride_04.png show result][source:/trunk/SRC/Documentation/xmldoc/figpng/tst_pltt_orca05_stride_05.png show result][source:/trunk/SRC/Documentation/xmldoc/figpng/tst_pltt_orca05_stride_06.png show result] 
    684520=== 1D plots === 
    685521 
  • trunk/SRC/Documentation/xmldoc/wiki/GetSaxo

    r354 r355  
    157157 * {{{${HOME}/My_IDL}}}. This is the easiest solution but it could be inconvenient if your ${HOME} disk space is limited. 
    158158            
    159  * any other directory of your choice. In that case, when using IDL, you will need to define the variable {{{iodir}}} to the directory you choose in order to let IDL find the data tests files. This can be done either through the {{{init.pro}}} file (see [#Create SAXO environment]) or directly within IDL with the following command: idl&gt;iodir = '''''the chosen directory'''''. 
    160             
     159 * any other directory of your choice. In that case, when using IDL, you will need to define the variable {{{iodir}}} to the directory you choose in order to let IDL find the data tests files. This can be done either through the {{{init.pro}}} file (see [#CreateSAXOenvironment Create SAXO environment]) or directly within IDL with the following command:  
     160 
     161{{{ 
     162#!html 
     163<pre xmlns:xl="http://www.w3.org/1999/xlink" class="screen"> 
     164 <code class="prompt">idl&gt;</code> <strong class="userinput"><code><span><strong class="command">iodir = the chosen directory</strong></span></code></strong> 
     165</pre> 
     166}}} 
     167 
    161168{{{ 
    162169#!html 
     
    239246}}} 
    240247 
    241 There is an example of the kind of [idlfiles/init_example.pro  init.pro] you should get. 
     248There is an example of the kind of [source:/trunk/SRC/Documentation/xmldoc/idlfiles/init_example.pro  init.pro] you should get. 
    242249       
    243250== After this == 
  • trunk/SRC/Documentation/xmldoc/wiki/Mailing

    r354 r355  
    99== saxo-users@forge.ipsl.jussieu.fr == 
    1010 
    11  *  [http://forge.ipsl.jussieu.fr/mailman/listinfo/saxo-users/ Subscription] 
    12  *  [http://forge.ipsl.jussieu.fr/pipermail/saxo-users/ Archives] 
     11 * [http://forge.ipsl.jussieu.fr/mailman/listinfo/saxo-users/ Subscription] 
     12 * [http://forge.ipsl.jussieu.fr/pipermail/saxo-users/ Archives] 
    1313== saxo-dev@forge.ipsl.jussieu.fr == 
    1414 
    15  *  [http://forge.ipsl.jussieu.fr/mailman/listinfo/saxo-dev/ Subscription] 
    16  *  [http://forge.ipsl.jussieu.fr/pipermail/saxo-dev/ Archives] 
     15 * [http://forge.ipsl.jussieu.fr/mailman/listinfo/saxo-dev/ Subscription] 
     16 * [http://forge.ipsl.jussieu.fr/pipermail/saxo-dev/ Archives] 
  • trunk/SRC/Documentation/xmldoc/wiki/MiniNotice

    r354 r355  
    7676     
    7777    Once these two lines have been completed, click on let's go. 
    78   For example, we choose the IDL batch file "tst_initlev". Compare the result with "automatic grid construction with initncdf.pro" checked. Cf [#Launching XXX] 
     78  For example, we choose the IDL batch file "tst_initlev". Compare the result with "automatic grid construction with initncdf.pro" checked. Cf [#LaunchingXXX Launching XXX] 
    7979      Oceania at 125 meters of depth with proper grid initialization 
    8080 
     
    198198 
    199199If the type plt is selected, the selection of plot type 
    200 is made by mouse. Cf [#Launching XXX] 
     200is made by mouse. Cf [#LaunchingXXX Launching XXX] 
    201201 
    202202=== The menu bar made up of 3 sub-menus === 
     
    410410       
    411411   
    412   As you can see, at this depth, we better define a land/sea mask when loading the grid. Cf [#Launching XXX] 
     412  As you can see, at this depth, we better define a land/sea mask when loading the grid. Cf [#LaunchingXXX Launching XXX] 
    413413=== Specify your plot === 
    414414 
     
    710710DCR to erase the problem frame. 
    711711 
    712 change the orientation of the plot by pressing Flag options -&gt; Portrait/Landscape. Cf [#Launching XXX] 
    713 quit XXX cleanly using quit from the File menu. Cf [#Launching XXX] 
     712change the orientation of the plot by pressing Flag options -&gt; Portrait/Landscape. Cf [#LaunchingXXX Launching XXX] 
     713quit XXX cleanly using quit from the File menu. Cf [#LaunchingXXX Launching XXX] 
    714714 
    715715 
  • trunk/SRC/Documentation/xmldoc/wiki/TipLink

    r354 r355  
    1111There is a short selection of useful tips: 
    1212     
    13  *  [http://www.dfanning.com/misc_tips/cursor_on_mac.html Using the Cursor Command on a Macintosh] 
    14  *  [http://www.dfanning.com/widget_tips/mousewheel.html Using the Mouse Wheel in UNIX Widgets] 
     13 * [http://www.dfanning.com/misc_tips/cursor_on_mac.html Using the Cursor Command on a Macintosh] 
     14 * [http://www.dfanning.com/widget_tips/mousewheel.html Using the Mouse Wheel in UNIX Widgets] 
    1515More can been find on [http://www.dfanning.com/documents/tips.html ] 
    1616== Links == 
    1717 
    18  *  [http://www.dfanning.com/ David Fanning] web page 
     18 * [http://www.dfanning.com/ David Fanning] web page 
    1919       
    20  *  [http://www.talkaboutprogramming.com/group/comp.lang.idl-pvwave/ IDL-PVWAVE news group] 
    21  *  [http://www-atm.physics.ox.ac.uk/user/stoned/idl_lib/idl_lib.html IDL routines from the University of Oxford Climate Dynamics Group] 
    22  *  [http://iacweb.ethz.ch/staff/dominik/hiphop/ Handy IDL-Program for HDF-Output Plotting from Dominik Brunner] 
     20 * [http://www.talkaboutprogramming.com/group/comp.lang.idl-pvwave/ IDL-PVWAVE news group] 
     21 * [http://www-atm.physics.ox.ac.uk/user/stoned/idl_lib/idl_lib.html IDL routines from the University of Oxford Climate Dynamics Group] 
     22 * [http://iacweb.ethz.ch/staff/dominik/hiphop/ Handy IDL-Program for HDF-Output Plotting from Dominik Brunner] 
  • trunk/SRC/Documentation/xmldoc/wiki/WhatisSaxo

    r354 r355  
    2323 
    2424 * idl-NetCDF written and maintained by Alan Iwi 
    25  
    26  [http://www.ittvis.com/codebank/search.asp?FID=261 ] 
     25[http://www.ittvis.com/codebank/search.asp?FID=261 ] 
    2726 * IDLdoc written and maintained by Mike Galloy 
    28  
    29  [http://www.ittvis.com/codebank/search.asp?FID=100 ] 
     27[http://www.ittvis.com/codebank/search.asp?FID=100 ] 
    3028 * color24, colorbar, getcolor, binary, different, inter, union, str_size and undefine written and maintained by David Fanning 
    31  
    32  [http://www.dfanning.com ] 
     29[http://www.dfanning.com ] 
    3330 * delchr, getfile, getwrd, isnumber, nwrds and putfile written and maintained by R. Sterner in JHU/APL/S1R IDL Library 
    34  
    35  [http://fermi.jhuapl.edu/s1r/idl/s1rlib/local_idl.html ] 
     31[http://fermi.jhuapl.edu/s1r/idl/s1rlib/local_idl.html ] 
    3632 * cmapply and cmset_op written and maintained by Craig Markwardt 
    37  
    38  [http://cow.physics.wisc.edu/~craigm/idl/ ] 
     33[http://cow.physics.wisc.edu/~craigm/idl/ ] 
    3934 * imdisp, saveimage and showimage written and maintained by Liam E. Gumley 
    40  
    41  [http://cimss.ssec.wisc.edu/~gumley/ ] 
     35[http://cimss.ssec.wisc.edu/~gumley/ ] 
    4236 * make_selection, strrepl, strright, strsci, strwhere and chkstru written and maintained by Martin Schultz 
    4337       
  • trunk/SRC/Documentation/xmldoc/wiki/WhatsNew

    r354 r355  
    2727== Changeset 163 (2006-08-29) == 
    2828 
    29 Last major commit related to the English translation of headers and their format. Better [../idldoc_html_output/index.html idldoc HTML documentation] and introduce SAXO online_help created by idldoc assistant. 
     29Last major commit related to the English translation of headers and their format. Better [http://forge.ipsl.jussieu.fr/saxo/download/idldoc_html_output/index.html idldoc HTML documentation] and introduce SAXO online_help created by idldoc assistant. 
    3030 
    3131Details can be seen in [http://forge.ipsl.jussieu.fr/saxo/changeset/163 Changeset 163]. 
  • trunk/SRC/Documentation/xmldoc/wiki/WikiStart

    r354 r355  
    4343A short overview and [wiki:MiniNotice documentation of xxx widget] is now available. 
    4444 
    45 A complete and convenient description of all SAXO routines can be found in the [../idldoc_html_output/index.html web pages created by IDLdoc]. 
     45A complete and convenient description of all SAXO routines can be found in the [http://forge.ipsl.jussieu.fr/saxo/download/idldoc_html_output/index.html web pages created by IDLdoc]. 
    4646 
    4747Some useful [wiki:TipLink Tips and links]. 
     
    6262 
    6363 
    64 '''Olivier Thauvin''' 
    65  [http://forge.ipsl.jussieu.fr/ IPSL forge] maintainer 
     64'''Olivier Thauvin'''[http://forge.ipsl.jussieu.fr/ IPSL forge] maintainer 
    6665 
    6766 
Note: See TracChangeset for help on using the changeset viewer.