Ignore:
Timestamp:
09/21/06 14:59:48 (18 years ago)
Author:
pinsard
Message:

remove format=raw in all html files 1/2

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

Legend:

Unmodified
Added
Removed
  • trunk/SRC/Documentation/xmldoc/faqsaxo.xml

    r186 r188  
    7070<answer> 
    7171<para> 
    72 see document <ulink url="./whatissaxo.html?format=raw">What is SAXO</ulink>. 
     72see document <ulink url="./whatissaxo.html">What is SAXO</ulink>. 
    7373</para> 
    7474</answer> 
     
    8282<answer> 
    8383<para> 
    84 see Support in document <ulink url="./websaxo.html?format=raw">Main page of SAXO</ulink>. 
     84see Support in document <ulink url="./websaxo.html">Main page of SAXO</ulink>. 
    8585</para> 
    8686</answer> 
     
    9494<answer> 
    9595<para> 
    96 see document <ulink url="./getsaxo.html?format=raw">Get SAXO</ulink>. 
     96see document <ulink url="./getsaxo.html">Get SAXO</ulink>. 
    9797</para> 
    9898</answer> 
     
    195195<answer> 
    196196<para> 
    197 There is a template for header <ulink url="../new_header.txt?format=raw">new_header.txt</ulink> 
     197There is a template for header <ulink url="../new_header.txt">new_header.txt</ulink> 
    198198which can be parsed by <application>IDLdoc</application>. 
    199199</para> 
  • trunk/SRC/Documentation/xmldoc/firststeps.xml

    r183 r188  
    44[ 
    55<!ENTITY promptidl "idl&gt;"> 
    6 <!ENTITY numb1 '<inlinemediaobject><imageobject><imagedata fileref="images/callouts/1.png?format=raw" format="PNG"/></imageobject><textobject><phrase>1</phrase></textobject></inlinemediaobject>'> 
    7 <!ENTITY numb2 '<inlinemediaobject><imageobject><imagedata fileref="images/callouts/2.png?format=raw" format="PNG"/></imageobject><textobject><phrase>2</phrase></textobject></inlinemediaobject>'> 
    8 <!ENTITY showfig '<inlinemediaobject><imageobject><imagedata fileref="images/showfig.png?format=raw" format="PNG"/></imageobject><textobject><phrase>show result</phrase></textobject></inlinemediaobject>'> 
     6<!ENTITY numb1 '<inlinemediaobject><imageobject><imagedata fileref="images/callouts/1.png" format="PNG"/></imageobject><textobject><phrase>1</phrase></textobject></inlinemediaobject>'> 
     7<!ENTITY numb2 '<inlinemediaobject><imageobject><imagedata fileref="images/callouts/2.png" format="PNG"/></imageobject><textobject><phrase>2</phrase></textobject></inlinemediaobject>'> 
     8<!ENTITY showfig '<inlinemediaobject><imageobject><imagedata fileref="images/showfig.png" format="PNG"/></imageobject><textobject><phrase>show result</phrase></textobject></inlinemediaobject>'> 
    99]> 
    1010 
     
    6767<title>Before this</title> 
    6868<para> 
    69 In this document, we supposed that you followed <ulink url="getsaxo.html">Get SAXO</ulink> recommendations.  
     69In this document, we supposed that you followed <ulink url="./getsaxo.html">Get SAXO</ulink> recommendations.  
    7070</para> 
    7171</sect1> 
     
    137137   <prompt>&promptidl;</prompt> <userinput><command>n = 10</command></userinput> 
    138138   <prompt>&promptidl;</prompt> <userinput><command>y = findgen(n)</command></userinput> &numb1; 
    139    <prompt>&promptidl;</prompt> <userinput><command>plot, y</command></userinput> <ulink url="figpng/basic_plot.png?format=raw">&showfig;</ulink> 
     139   <prompt>&promptidl;</prompt> <userinput><command>plot, y</command></userinput> <ulink url="./figpng/basic_plot.png">&showfig;</ulink> 
    140140        </screen> 
    141141          <calloutlist> 
     
    157157        Using IDL <command>plot</command> command is quite inconvenient to save the figure as a postscript. In addition, positioning the figure on the window/page by using <varname>!p.position</varname>, <varname>!p.region</varname> and <varname>!p.multi</varname> is often a nightmare. That's why we developed <command>splot</command> (like super-plot) which can be used in the same way as plot but is much more convenient to make postscript and position the figure. 
    158158        <screen format="linespecific"> 
    159   <prompt>&promptidl;</prompt> <userinput><command>splot, y</command></userinput> <ulink url="figpng/basic_splot1.png?format=raw">&showfig;</ulink> 
     159  <prompt>&promptidl;</prompt> <userinput><command>splot, y</command></userinput> <ulink url="./figpng/basic_splot1.png">&showfig;</ulink> 
    160160  <computeroutput>% Compiled module: SPLOT.</computeroutput> 
    161161  <computeroutput>% Compiled module: REINITPLT.</computeroutput> 
     
    233233      <para> 
    234234        <screen format="linespecific"> 
    235   <prompt>&promptidl;</prompt> <userinput><command>splot, y, y^2, linestyle = 2, thick = 2, title = 'y = x^2', /portrait</command></userinput> <ulink url="figpng/basic_splot2.png?format=raw">&showfig;</ulink> 
     235  <prompt>&promptidl;</prompt> <userinput><command>splot, y, y^2, linestyle = 2, thick = 2, title = 'y = x^2', /portrait</command></userinput> <ulink url="./figpng/basic_splot2.png">&showfig;</ulink> 
    236236        </screen> 
    237237        <command>splot</command> can be used to setup the graphic environment (<varname>!p</varname>, <varname>!x</varname>, <varname>!y</varname>, <varname>!z</varname> variables) needed by procedures like <command>oplot</command> 
    238238        <screen format="linespecific"> 
    239239  <prompt>&promptidl;</prompt> <userinput><command>splot, y, yrange = [0, (n-1)^2], title = 'x and x^2'</command></userinput> 
    240   <prompt>&promptidl;</prompt> <userinput><command>oplot, y^2, color = 50, linestyle = 2</command></userinput> <ulink url="figpng/basic_splot4.png?format=raw">&showfig;</ulink> 
     240  <prompt>&promptidl;</prompt> <userinput><command>oplot, y^2, color = 50, linestyle = 2</command></userinput> <ulink url="./figpng/basic_splot4.png">&showfig;</ulink> 
    241241        </screen> 
    242242        Use the keyword small to produce multi plots figures.  
     
    252252  <prompt>&promptidl;</prompt> <userinput><command>splot, y, y^2, title = 'y = x^2', psym = 2, small &numb1; = [1, 2, 1]</command></userinput> 
    253253  <prompt>&promptidl;</prompt> <userinput><command>splot, findgen(360)/36., findgen(360)*2.*!dtor, /polar $</command></userinput> 
    254   <prompt>&promptidl;</prompt> <userinput><command>    , small &numb1; = [1, 2, 2], /noerase &numb2;</command></userinput> <ulink url="figpng/basic_splot3.png?format=raw">&showfig;</ulink> 
     254  <prompt>&promptidl;</prompt> <userinput><command>    , small &numb1; = [1, 2, 2], /noerase &numb2;</command></userinput> <ulink url="./figpng/basic_splot3.png">&showfig;</ulink> 
    255255        </screen> 
    256256          <calloutlist> 
     
    280280  <prompt>&promptidl;</prompt> <userinput><command>z = dist(n)</command></userinput> 
    281281  <computeroutput>% Compiled module: DIST.</computeroutput> 
    282   <prompt>&promptidl;</prompt> <userinput><command>scontour, z</command></userinput> <ulink url="figpng/basic_scontour1.png?format=raw">&showfig;</ulink> 
     282  <prompt>&promptidl;</prompt> <userinput><command>scontour, z</command></userinput> <ulink url="./figpng/basic_scontour1.png">&showfig;</ulink> 
    283283  <computeroutput>% Compiled module: SCONTOUR.</computeroutput> 
    284284  <computeroutput>% Compiled module: CHKSTRU.</computeroutput> 
     
    290290        <screen format="linespecific"> 
    291291  <prompt>&promptidl;</prompt> <userinput><command>scontour, z, /fill, nlevels = 15, subtitle = 'nicer contour' $</command></userinput> 
    292   <prompt>&promptidl;</prompt> <userinput><command>    , xtitle = 'x index', charsize = 1.5</command></userinput> <ulink url="figpng/basic_scontour2.png?format=raw">&showfig;</ulink> 
     292  <prompt>&promptidl;</prompt> <userinput><command>    , xtitle = 'x index', charsize = 1.5</command></userinput> <ulink url="./figpng/basic_scontour2.png">&showfig;</ulink> 
    293293        </screen> 
    294294It can be used in combination with contour to make more complex plots: 
     
    301301  <prompt>&promptidl;</prompt> <userinput><command>scontour, z, levels = n*ind, c_orientation = 180*ind, c_spacing = 0.4*ind</command></userinput> 
    302302  <prompt>&promptidl;</prompt> <userinput><command>contour, z, /overplot, c_label = rebin([1, 0], 2, n) &numb1;, levels = n*ind $</command></userinput> 
    303   <prompt>&promptidl;</prompt> <userinput><command>    , c_charthick = 2, c_charsize = 1.5, c_colors = 250*ind</command></userinput> <ulink url="figpng/basic_scontour3.png?format=raw">&showfig;</ulink> 
     303  <prompt>&promptidl;</prompt> <userinput><command>    , c_charthick = 2, c_charsize = 1.5, c_colors = 250*ind</command></userinput> <ulink url="./figpng/basic_scontour3.png">&showfig;</ulink> 
    304304        </screen> 
    305305        <calloutlist> 
     
    317317        </calloutlist> 
    318318        </screenco> 
    319         <command>scontour</command> is compatible with the positioning method associated with the <computeroutput>small</computeroutput> keyword. See for example the test file <ulink url="../../Tests/tst_basic.pro?format=raw"><filename>tst_basic.pro</filename></ulink>: 
    320         <screen format="linespecific"> 
    321   <prompt>&promptidl;</prompt> <userinput><command>tst_basic</command></userinput> <ulink url="figpng/tst_basic.png?format=raw">&showfig;</ulink> 
     319        <command>scontour</command> is compatible with the positioning method associated with the <computeroutput>small</computeroutput> keyword. See for example the test file <ulink type="text" url="../../Tests/tst_basic.pro"><filename>tst_basic.pro</filename></ulink>: 
     320        <screen format="linespecific"> 
     321  <prompt>&promptidl;</prompt> <userinput><command>tst_basic</command></userinput> <ulink url="./figpng/tst_basic.png">&showfig;</ulink> 
    322322        </screen> 
    323323      </para> 
     
    331331          <command>tvplus</command> is a enhanced version of tvscl and allow you to have a quick look and perform basic exploration of 2D arrays. 
    332332          <screen format="linespecific"> 
    333   <prompt>&promptidl;</prompt> <userinput><command>tvplus, dist(20)</command></userinput> <ulink url="figpng/tvplus.png?format=raw">&showfig;</ulink> 
     333  <prompt>&promptidl;</prompt> <userinput><command>tvplus, dist(20)</command></userinput> <ulink url="./figpng/tvplus.png">&showfig;</ulink> 
    334334  <computeroutput>left button  : mouse position and associated array value</computeroutput> 
    335335  <computeroutput>middle button: use it twice to define a zoom box</computeroutput> 
     
    362362          <command>pltv</command> is a mix between <link linkend="tvplus">tvplus</link> and <link linkend="plt">plt</link> and allow you to have formal quick look of 2D arrays. 
    363363          <screen format="linespecific"> 
    364   <prompt>&promptidl;</prompt> <userinput><command>pltv, dist(20)</command></userinput> <ulink url="figpng/pltv.png?format=raw">&showfig;</ulink> 
     364  <prompt>&promptidl;</prompt> <userinput><command>pltv, dist(20)</command></userinput> <ulink url="./figpng/pltv.png">&showfig;</ulink> 
    365365          </screen> 
    366366        </para> 
     
    406406  <computeroutput>% Compiled module: DEFINETRI.</computeroutput> 
    407407          </screen> 
    408           This <ulink url="../../Tests/tst_initlev.pro?format=raw"><command>@tst_initlev</command></ulink> command allows us to define: 
     408          This <ulink type="text" url="../../Tests/tst_initlev.pro"><command>@tst_initlev</command></ulink> command allows us to define: 
    409409          <itemizedlist> 
    410410            <listitem><simpara>domain dimensions, stored in <varname>jpi, jpj and jpk</varname></simpara></listitem> 
     
    448448          We provide other initialization methods/examples 
    449449          <itemizedlist> 
    450             <listitem><simpara><ulink url="../../Tests/tst_initorca2_short.pro?format=raw">@tst_initorca2_short</ulink> : ORCA2 example</simpara></listitem> 
    451             <listitem><simpara><ulink url="../../Tests/tst_initorca05_short.pro?format=raw">@tst_initorca05_short</ulink> : ORCA05 example</simpara></listitem> 
    452             <listitem><simpara><ulink url="../../Tests/tst_initlev_stride.pro?format=raw">@tst_initlev_stride</ulink> : same as @tst_initlev but we skip on point over 2 in x and y direction</simpara></listitem> 
    453             <listitem><simpara><ulink url="../../Tests/tst_initorca2_short_stride.pro?format=raw">@tst_initorca2_short_stride</ulink> : ORCA2 with stride</simpara></listitem> 
    454             <listitem><simpara><ulink url="../../Tests/tst_initorca05_short_stride.pro?format=raw">@tst_initorca05_short_stride</ulink> : ORCA05 with stride</simpara></listitem> 
    455             <listitem><simpara><ulink url="../../Tests/tst_initlev_index.pro?format=raw">@tst_initlev_index</ulink> : in that case we load the grid using points index as axis instead of the longitude/latitude position</simpara></listitem> 
    456             <listitem><simpara><ulink url="../../Tests/tst_initorca2_index.pro?format=raw">@tst_initorca2_index</ulink> : load ORCA2 as it see by the model</simpara></listitem> 
    457             <listitem><simpara><ulink url="../../Tests/tst_initorca05_index.pro?format=raw">@tst_initorca05_index</ulink> : load ORCA05 as it see by the model</simpara></listitem> 
    458             <listitem><simpara><ulink url="../../Tests/tst_initlev_index_stride.pro?format=raw">@tst_initlev_index_stride</ulink> : @tst_initlev_index with stride</simpara></listitem> 
    459             <listitem><simpara><ulink url="../../Tests/tst_initorca2_index_stride.pro?format=raw">@tst_initorca2_index_stride</ulink> : ORCA2 in index with stride</simpara></listitem> 
    460             <listitem><simpara><ulink url="../../Tests/tst_initorca05_index_stride.pro?format=raw">@tst_initorca05_index_stride</ulink> : ORCA05 in index with stride</simpara></listitem> 
     450            <listitem><simpara><ulink type="text" url="../../Tests/tst_initorca2_short.pro">@tst_initorca2_short</ulink> : ORCA2 example</simpara></listitem> 
     451            <listitem><simpara><ulink type="text" url="../../Tests/tst_initorca05_short.pro">@tst_initorca05_short</ulink> : ORCA05 example</simpara></listitem> 
     452            <listitem><simpara><ulink type="text" url="../../Tests/tst_initlev_stride.pro">@tst_initlev_stride</ulink> : same as @tst_initlev but we skip on point over 2 in x and y direction</simpara></listitem> 
     453            <listitem><simpara><ulink type="text" url="../../Tests/tst_initorca2_short_stride.pro">@tst_initorca2_short_stride</ulink> : ORCA2 with stride</simpara></listitem> 
     454            <listitem><simpara><ulink type="text" url="../../Tests/tst_initorca05_short_stride.pro">@tst_initorca05_short_stride</ulink> : ORCA05 with stride</simpara></listitem> 
     455            <listitem><simpara><ulink type="text" url="../../Tests/tst_initlev_index.pro">@tst_initlev_index</ulink> : in that case we load the grid using points index as axis instead of the longitude/latitude position</simpara></listitem> 
     456            <listitem><simpara><ulink type="text" url="../../Tests/tst_initorca2_index.pro">@tst_initorca2_index</ulink> : load ORCA2 as it see by the model</simpara></listitem> 
     457            <listitem><simpara><ulink type="text" url="../../Tests/tst_initorca05_index.pro">@tst_initorca05_index</ulink> : load ORCA05 as it see by the model</simpara></listitem> 
     458            <listitem><simpara><ulink type="text" url="../../Tests/tst_initlev_index_stride.pro">@tst_initlev_index_stride</ulink> : @tst_initlev_index with stride</simpara></listitem> 
     459            <listitem><simpara><ulink type="text" url="../../Tests/tst_initorca2_index_stride.pro">@tst_initorca2_index_stride</ulink> : ORCA2 in index with stride</simpara></listitem> 
     460            <listitem><simpara><ulink type="text" url="../../Tests/tst_initorca05_index_stride.pro">@tst_initorca05_index_stride</ulink> : ORCA05 in index with stride</simpara></listitem> 
    461461          </itemizedlist> 
    462462        </para> 
     
    469469          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 <link linkend="load_fromdata">grid definition from the data itself</link> (with <filename>initncdf</filename> or <filename>computegrid</filename>), 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. 
    470470          <itemizedlist> 
    471             <listitem><simpara><ulink url="../../Tests/tst_initorca2.pro?format=raw">@tst_initorca2</ulink> : ORCA2</simpara></listitem> 
    472             <listitem><simpara><ulink url="../../Tests/tst_initorca05.pro?format=raw">@tst_initorca05</ulink> : ORCA05</simpara></listitem> 
    473             <listitem><simpara><ulink url="../../Tests/tst_initorca2_stride.pro?format=raw">@tst_initorca2_stride</ulink> : ORCA2 with stride</simpara></listitem> 
    474             <listitem><simpara><ulink url="../../Tests/tst_initorca05_stride.pro?format=raw">@tst_initorca05_stride</ulink> : ORCA05 with stride</simpara></listitem> 
    475             <listitem><simpara><ulink url="../../Tests/tst_initorca2_index.pro?format=raw">@tst_initorca2_index</ulink> : load ORCA2 as it see by the model</simpara></listitem> 
    476             <listitem><simpara><ulink url="../../Tests/tst_initorca05_index.pro?format=raw">@tst_initorca05_index</ulink> : load ORCA05 as it see by the model</simpara></listitem> 
    477             <listitem><simpara><ulink url="../../Tests/tst_initorca2_index_stride.pro?format=raw">@tst_initorca2_index_stride</ulink> : ORCA2 in index with stride</simpara></listitem> 
    478             <listitem><simpara><ulink url="../../Tests/tst_initorca05_index_stride.pro?format=raw">@tst_initorca05_index_stride</ulink> : ORCA05 in index with stride</simpara></listitem> 
     471            <listitem><simpara><ulink type="text" url="../../Tests/tst_initorca2.pro">@tst_initorca2</ulink> : ORCA2</simpara></listitem> 
     472            <listitem><simpara><ulink type="text" url="../../Tests/tst_initorca05.pro">@tst_initorca05</ulink> : ORCA05</simpara></listitem> 
     473            <listitem><simpara><ulink type="text" url="../../Tests/tst_initorca2_stride.pro">@tst_initorca2_stride</ulink> : ORCA2 with stride</simpara></listitem> 
     474            <listitem><simpara><ulink type="text" url="../../Tests/tst_initorca05_stride.pro">@tst_initorca05_stride</ulink> : ORCA05 with stride</simpara></listitem> 
     475            <listitem><simpara><ulink type="text" url="../../Tests/tst_initorca2_index.pro">@tst_initorca2_index</ulink> : load ORCA2 as it see by the model</simpara></listitem> 
     476            <listitem><simpara><ulink type="text" url="../../Tests/tst_initorca05_index.pro">@tst_initorca05_index</ulink> : load ORCA05 as it see by the model</simpara></listitem> 
     477            <listitem><simpara><ulink type="text" url="../../Tests/tst_initorca2_index_stride.pro">@tst_initorca2_index_stride</ulink> : ORCA2 in index with stride</simpara></listitem> 
     478            <listitem><simpara><ulink type="text" url="../../Tests/tst_initorca05_index_stride.pro">@tst_initorca05_index_stride</ulink> : ORCA05 in index with stride</simpara></listitem> 
    479479          </itemizedlist> 
    480480        </para> 
     
    487487      </title> 
    488488        <para> 
    489           A quick presentation of horizontal plots and maps is shown in <ulink url="../../Tests/tst_plt.pro?format=raw">tst_plt</ulink>. After loading any of the grid (for example with one of the <link linkend="load_grid">above examples</link>). Just try: 
     489          A quick presentation of horizontal plots and maps is shown in <ulink type="text" url="../../Tests/tst_plt.pro">tst_plt</ulink>. After loading any of the grid (for example with one of the <link linkend="load_grid">above examples</link>). Just try: 
    490490          <screen format="linespecific"> 
    491491  <prompt>&promptidl;</prompt> <userinput><command>tst_plt</command></userinput> 
     
    511511      </title> 
    512512        <para> 
    513           A quick presentation of vertical sections is shown in <ulink url="../../Tests/tst_pltz.pro?format=raw">tst_pltz</ulink>. After loading any of the grid (for example with one of the <link linkend="load_grid">above examples</link>). Just try: 
     513          A quick presentation of vertical sections is shown in <ulink type="text" url="../../Tests/tst_pltz.pro">tst_pltz</ulink>. After loading any of the grid (for example with one of the <link linkend="load_grid">above examples</link>). Just try: 
    514514          <screen format="linespecific"> 
    515515  <prompt>&promptidl;</prompt> <userinput><command>tst_pltz</command></userinput> 
     
    535535      </title> 
    536536        <para> 
    537           A quick presentation of hovmoellers and time series is shown in <ulink url="../../Tests/tst_pltt.pro?format=raw">tst_pltt</ulink>. After loading any of the grid (for example with one of the <link linkend="load_grid">above examples</link>). Just try: 
     537          A quick presentation of hovmoellers and time series is shown in <ulink type="text" url="../../Tests/tst_pltt.pro">tst_pltt</ulink>. After loading any of the grid (for example with one of the <link linkend="load_grid">above examples</link>). Just try: 
    538538          <screen format="linespecific"> 
    539539  <prompt>&promptidl;</prompt> <userinput><command>tst_pltt</command></userinput> 
  • trunk/SRC/Documentation/xmldoc/getsaxo.xml

    r183 r188  
    334334   <prompt>&promptidl;</prompt> <userinput><command>exit</command></userinput> 
    335335        </screen> 
    336         There is an example of the kind of <ulink url="idlfiles/init_example.pro?format=raw"> <filename>init.pro</filename></ulink> you should get. 
     336        There is an example of the kind of <ulink url="idlfiles/init_example.pro"> <filename>init.pro</filename></ulink> you should get. 
    337337      </para> 
    338338    </sect1> 
     
    341341<para> 
    342342You are now ready to do your  
    343 <ulink url="firststeps.html?format=raw">First steps with SAXO</ulink>. 
     343<ulink url="./firststeps.html">First steps with SAXO</ulink>. 
    344344</para> 
    345345</sect1> 
  • trunk/SRC/Documentation/xmldoc/makehtml.sh

    r185 r188  
    88# released on 1 September 2005) doesn't handle carriage returns 
    99# 
     10# fplod 2006-09-20T16:28:32Z aedon.locean-ipsl.upmc.fr (Darwin) 
     11# remove ?format=raw 
    1012# fplod 2006-09-18T12:53:07Z aedon.locean-ipsl.upmc.fr (Darwin) 
    1113# add status checking in xml processing 
     
    112114for i in tst_plt_lev_[0-9][0-9].png 
    113115do 
    114   figsplt_lev="${figsplt_lev} \<ulink url=\"figpng\/${i}?format=raw\"\>\&showfig\;\<\/ulink\>" 
     116  figsplt_lev="${figsplt_lev} \<ulink url=\"figpng\/${i}\"\>\&showfig\;\<\/ulink\>" 
    115117done 
    116118figspltz_lev="" 
    117119for i in tst_pltz_lev_[0-9][0-9].png 
    118120do 
    119   figspltz_lev="${figspltz_lev} \<ulink url=\"figpng\/${i}?format=raw\"\>\&showfig\;\<\/ulink\>" 
     121  figspltz_lev="${figspltz_lev} \<ulink url=\"figpng\/${i}\"\>\&showfig\;\<\/ulink\>" 
    120122done 
    121123figspltt_lev="" 
    122124for i in tst_pltt_lev_[0-9][0-9].png 
    123125do 
    124   figspltt_lev="${figspltt_lev} \<ulink url=\"figpng\/${i}?format=raw\"\>\&showfig\;\<\/ulink\>" 
     126  figspltt_lev="${figspltt_lev} \<ulink url=\"figpng\/${i}\"\>\&showfig\;\<\/ulink\>" 
    125127done 
    126128# 
     
    128130for i in tst_plt_orca2_[0-9][0-9].png 
    129131do 
    130   figsplt_orca2="${figsplt_orca2} \<ulink url=\"figpng\/${i}?format=raw\"\>\&showfig\;\<\/ulink\>" 
     132  figsplt_orca2="${figsplt_orca2} \<ulink url=\"figpng\/${i}\"\>\&showfig\;\<\/ulink\>" 
    131133done 
    132134figspltz_orca2="" 
    133135for i in tst_pltz_orca2_[0-9][0-9].png 
    134136do 
    135   figspltz_orca2="${figspltz_orca2} \<ulink url=\"figpng\/${i}?format=raw\"\>\&showfig\;\<\/ulink\>" 
     137  figspltz_orca2="${figspltz_orca2} \<ulink url=\"figpng\/${i}\"\>\&showfig\;\<\/ulink\>" 
    136138done 
    137139figspltt_orca2="" 
    138140for i in tst_pltt_orca2_[0-9][0-9].png 
    139141do 
    140   figspltt_orca2="${figspltt_orca2} \<ulink url=\"figpng\/${i}?format=raw\"\>\&showfig\;\<\/ulink\>" 
     142  figspltt_orca2="${figspltt_orca2} \<ulink url=\"figpng\/${i}\"\>\&showfig\;\<\/ulink\>" 
    141143done 
    142144# 
     
    144146for i in tst_plt_orca05_[0-9][0-9].png 
    145147do 
    146   figsplt_orca05="${figsplt_orca05} \<ulink url=\"figpng\/${i}?format=raw\"\>\&showfig\;\<\/ulink\>" 
     148  figsplt_orca05="${figsplt_orca05} \<ulink url=\"figpng\/${i}\"\>\&showfig\;\<\/ulink\>" 
    147149done 
    148150figspltz_orca05="" 
    149151for i in tst_pltz_orca05_[0-9][0-9].png 
    150152do 
    151   figspltz_orca05="${figspltz_orca05} \<ulink url=\"figpng\/${i}?format=raw\"\>\&showfig\;\<\/ulink\>" 
     153  figspltz_orca05="${figspltz_orca05} \<ulink url=\"figpng\/${i}\"\>\&showfig\;\<\/ulink\>" 
    152154done 
    153155figspltt_orca05="" 
    154156for i in tst_pltt_orca05_[0-9][0-9].png 
    155157do 
    156   figspltt_orca05="${figspltt_orca05} \<ulink url=\"figpng\/${i}?format=raw\"\>\&showfig\;\<\/ulink\>" 
     158  figspltt_orca05="${figspltt_orca05} \<ulink url=\"figpng\/${i}\"\>\&showfig\;\<\/ulink\>" 
    157159done 
    158160## 
     
    161163for i in tst_plt_lev_stride_[0-9][0-9].png 
    162164do 
    163   figsplt_lev_stride="${figsplt_lev_stride} \<ulink url=\"figpng\/${i}?format=raw\"\>\&showfig\;\<\/ulink\>" 
     165  figsplt_lev_stride="${figsplt_lev_stride} \<ulink url=\"figpng\/${i}\"\>\&showfig\;\<\/ulink\>" 
    164166done 
    165167figspltz_lev_stride="" 
    166168for i in tst_pltz_lev_stride_[0-9][0-9].png 
    167169do 
    168   figspltz_lev_stride="${figspltz_lev_stride} \<ulink url=\"figpng\/${i}?format=raw\"\>\&showfig\;\<\/ulink\>" 
     170  figspltz_lev_stride="${figspltz_lev_stride} \<ulink url=\"figpng\/${i}\"\>\&showfig\;\<\/ulink\>" 
    169171done 
    170172figspltt_lev_stride="" 
    171173for i in tst_pltt_lev_stride_[0-9][0-9].png 
    172174do 
    173   figspltt_lev_stride="${figspltt_lev_stride} \<ulink url=\"figpng\/${i}?format=raw\"\>\&showfig\;\<\/ulink\>" 
     175  figspltt_lev_stride="${figspltt_lev_stride} \<ulink url=\"figpng\/${i}\"\>\&showfig\;\<\/ulink\>" 
    174176done 
    175177# 
     
    177179for i in tst_plt_orca2_stride_[0-9][0-9].png 
    178180do 
    179   figsplt_orca2_stride="${figsplt_orca2_stride} \<ulink url=\"figpng\/${i}?format=raw\"\>\&showfig\;\<\/ulink\>" 
     181  figsplt_orca2_stride="${figsplt_orca2_stride} \<ulink url=\"figpng\/${i}\"\>\&showfig\;\<\/ulink\>" 
    180182done 
    181183figspltz_orca2_stride="" 
    182184for i in tst_pltz_orca2_stride_[0-9][0-9].png 
    183185do 
    184   figspltz_orca2_stride="${figspltz_orca2_stride} \<ulink url=\"figpng\/${i}?format=raw\"\>\&showfig\;\<\/ulink\>" 
     186  figspltz_orca2_stride="${figspltz_orca2_stride} \<ulink url=\"figpng\/${i}\"\>\&showfig\;\<\/ulink\>" 
    185187done 
    186188figspltt_orca2_stride="" 
    187189for i in tst_pltt_orca2_stride_[0-9][0-9].png 
    188190do 
    189   figspltt_orca2_stride="${figspltt_orca2_stride} \<ulink url=\"figpng\/${i}?format=raw\"\>\&showfig\;\<\/ulink\>" 
     191  figspltt_orca2_stride="${figspltt_orca2_stride} \<ulink url=\"figpng\/${i}\"\>\&showfig\;\<\/ulink\>" 
    190192done 
    191193# 
     
    193195for i in tst_plt_orca05_stride_[0-9][0-9].png 
    194196do 
    195   figsplt_orca05_stride="${figsplt_orca05_stride} \<ulink url=\"figpng\/${i}?format=raw\"\>\&showfig\;\<\/ulink\>" 
     197  figsplt_orca05_stride="${figsplt_orca05_stride} \<ulink url=\"figpng\/${i}\"\>\&showfig\;\<\/ulink\>" 
    196198done 
    197199figspltz_orca05_stride="" 
    198200for i in tst_pltz_orca05_stride_[0-9][0-9].png 
    199201do 
    200   figspltz_orca05_stride="${figspltz_orca05_stride} \<ulink url=\"figpng\/${i}?format=raw\"\>\&showfig\;\<\/ulink\>" 
     202  figspltz_orca05_stride="${figspltz_orca05_stride} \<ulink url=\"figpng\/${i}\"\>\&showfig\;\<\/ulink\>" 
    201203done 
    202204figspltt_orca05_stride="" 
    203205for i in tst_pltt_orca05_stride_[0-9][0-9].png 
    204206do 
    205   figspltt_orca05_stride="${figspltt_orca05_stride} \<ulink url=\"figpng\/${i}?format=raw\"\>\&showfig\;\<\/ulink\>" 
     207  figspltt_orca05_stride="${figspltt_orca05_stride} \<ulink url=\"figpng\/${i}\"\>\&showfig\;\<\/ulink\>" 
    206208done 
    207209## 
     
    307309case "${1}" in 
    308310   firststeps) 
     311      # process all_plots 
    309312      java com.icl.saxon.StyleSheet -o all_plots_${$}.xml ${1}_${$}.xml  \ 
    310313      all_plots_docbook.xsl 
     
    313316      section.autolabel=1 html.stylesheet="style.css saxo.css" css.decoration=1 
    314317      rm -f all_plots_${$}.xml 
    315 # not very nice... but useful !! 
    316       sed -e s/".png\""/".png?format=raw\""/g ${1}.html > ${1}_${$}.html 
    317       mv ${1}_${$}.html ${1}.html 
    318318      ;; 
    319319   websaxo) 
     
    324324      mv ${1}_${$}.html ${1}.html 
    325325      ;; 
    326     mini_notice) 
    327 # not very nice... but useful !! 
    328         sed -e s/".png\""/".png?format=raw\""/g ${1}.html > ${1}_${$}.html 
    329         mv ${1}_${$}.html ${1}.html 
    330         ;; 
    331326esac 
    332327#  
  • trunk/SRC/Documentation/xmldoc/mini_notice.xml

    r183 r188  
    122122<sect3 id="initmethodtxt"><title>Grid initialization method</title> 
    123123  <para> 
    124     For visualising grilled data, you need to <ulink url="firststeps.html?format=raw#load_grid">define the grid</ulink> on which are located the data. By default, "automatic grid construction with initncdf.pro" is checked. This means that the grid will be defined by using the informations contained in the data file (through the IDL prodecure <command>initncdf</command>) without needing any other auxillary file. If you checked "grid construction with other IDL batch or procedure", this means that you don't want to use the default <command>initncdf</command> procedure to define the grid and you will provide your own IDL procedure or the so-called IDL batch file (a file which is called by using @, see IDL documentation). 
     124    For visualising grilled data, you need to <ulink url="./firststeps.html#load_grid">define the grid</ulink> on which are located the data. By default, "automatic grid construction with initncdf.pro" is checked. This means that the grid will be defined by using the informations contained in the data file (through the IDL prodecure <command>initncdf</command>) without needing any other auxillary file. If you checked "grid construction with other IDL batch or procedure", this means that you don't want to use the default <command>initncdf</command> procedure to define the grid and you will provide your own IDL procedure or the so-called IDL batch file (a file which is called by using @, see IDL documentation). 
    125125  </para> 
    126126</sect3> 
     
    503503  </figure> 
    504504  You can restore configuration by default by pressing the <menuchoice><guibutton>Default</guibutton></menuchoice> button. 
    505   <note><para>The path of the file <ulink url="../../ToBeReviewed/WIDGET/AUTOUR_de_XXX/definedefaultextra.pro?format=raw"><filename>definedefaultextra.pro</filename></ulink> that defines the default values for each variable names is displayed when the cursor hovers over the button <menuchoice><guibutton>Default</guibutton></menuchoice>. This file contains a case statement based on the name of the variable and defining the min, max, contour interval and other keywords that should be used as default for the specified variable. You can copy this file in your own <filename class="directory"><envar>${HOME}</envar>/My_IDL/</filename> directory and easily modify it to suit your favorite default values.</para></note> 
     505  <note><para>The path of the file <ulink type="text" url="../../ToBeReviewed/WIDGET/AUTOUR_de_XXX/definedefaultextra.pro"><filename>definedefaultextra.pro</filename></ulink> that defines the default values for each variable names is displayed when the cursor hovers over the button <menuchoice><guibutton>Default</guibutton></menuchoice>. This file contains a case statement based on the name of the variable and defining the min, max, contour interval and other keywords that should be used as default for the specified variable. You can copy this file in your own <filename class="directory"><envar>${HOME}</envar>/My_IDL/</filename> directory and easily modify it to suit your favorite default values.</para></note> 
    506506</para> 
    507507</sect3> 
  • trunk/SRC/Documentation/xmldoc/savesaxo.sh

    r187 r188  
    33# update : 
    44# $Id$ 
     5# fplod 2006-09-20T16:34:38Z aedon.locean-ipsl.upmc.fr (Darwin) 
     6# suppress ?format=raw 
     7# fplod 2006-09-20T15:30:15Z aedon.locean-ipsl.upmc.fr (Darwin) 
     8# add copy of html files unedr xmldoc and idldoc_htlm_output on  
     9# saxo@forge.ipsl.jussieu.fr:/ipsl/forge/projets/saxo/download/ 
     10# see dodocdownload 
    511# fplod 2006-09-20T11:05:23Z aedon.locean-ipsl.upmc.fr (Darwin) 
    612# correction to really suppress date in idldoc assistant outputs (font  
     
    7379set -u 
    7480# 
    75 docompileall=1 
     81docompileall=0 
    7682dohtml=0 
    7783dooldtest=0 
     
    8793doSRCidris=0 
    8894doDTAidris=0 
     95dodocdownload=1 
    8996# 
    9097case $( whoami ) in 
     
    187194      fi 
    188195    done 
    189     exit 0 
    190196fi 
    191197#------------------------------------------------------------------ 
     
    234240    # <td>Source</td> 
    235241    # will be replaced by 
    236     # <td><a href="../../Calendar/caldat.pro?format=raw" title="Source code of a file">Source</a></td> 
     242    # <td><a href="../../Calendar/caldat.pro" title="Source code of a file">Source</a></td> 
    237243    # 
    238244    # - remove date and time of idldoc production 
     
    255261    # should also be removed ++ je ne sais pas dire en sed la ligne 
    256262    # suivant l'occurence de Last modification 
    257     # add ?format=raw to links on html files 
    258263    cat << EOF > /tmp/css_modification 
    259264p.preformat { 
     
    292297     # echo "relpath ${relpath_html}/${bfile}" 
    293298     sed \ 
    294      -e "s@<td >Source<\/td>@<td><a href=\"${relpath_html}/${bfile}.pro?format=raw\" title=\"Source code of a file\">Source<\/a><\/td>@" \ 
     299     -e "s@<td >Source<\/td>@<td><a href=\"${relpath_html}/${bfile}.pro\" title=\"Source code of a file\">Source<\/a><\/td>@" \ 
    295300     -e "s/\(Generated by IDLdoc 2.0\)\( on .*\)\( -->\)/\1\3/" \ 
    296301     -e "s/\(Produced by IDLdoc 2.0\)\( on .*\)\(\.<\/div>\)/\1\3/" \ 
     
    298303     -e "/Last modification:/d" \ 
    299304     -e "/<dd>... ... .* ..:..:.. ....<\/dd>/d" \ 
    300      -e 's@\(href="[^.]*[^h]*[^t]*[^m]*[^l]*[^"]*\)\(\.html\)\("\)@\1\2?format=raw\3@g' \ 
    301      -e 's@\(href="[^.]*[^h]*[^t]*[^m]*[^l]*[^"]*\)\(\.html\)\(#.*"\)@\1\2?format=raw\3@g' \ 
    302      -e 's@\(src="[^.]*[^h]*[^t]*[^m]*[^l]*[^"]*\)\(\.html\)\("\)@\1\2?format=raw\3@g' \ 
    303305     -e 's@<div class="value">@<div class="preformat">@' \ 
    304306     -e 's/div\#file_comments {/div\#file_comments { white-space: pre;/' \ 
     
    361363    # with _keyword_ 
    362364    #++ -e 's@\(href="#_.*\)\(_param_\)\(.*"\)@\1_keyword_\3@g' \ # ++ pb global 
    363     # DON'T add here (in assistant idldoc output) ?format=raw to link because 
    364365    #  ONLINE_HELP, book="../idldoc_assistant_output/idldoc-lib.adp", /full_path    # won't work 
    365366    list_html=$(find ${output} -name "*.html") 
     
    386387      fout=../idldoc_assistant_output/${file_html#../idldoc_html_output/*} 
    387388      fout=${fout%/*}/directory-overview.html 
    388       sed -e 's/?format=raw//g' ${file_html} > ${fout} 
     389      cp ${file_html} ${fout} 
    389390    done 
    390391    echo "iii : you can see log file in ${log}" 
     
    528529fi 
    529530#------------------------------------------------------------------ 
     531if [ ${dodocdownload} -eq 1 ] 
     532then 
     533    # ++ on pourrait peut-etre faire un rsync en enlevant les .sh et le .xsl 
     534    # ++ les .sh et le .xsl sont pour l'instant encore là 
     535    echo "iii : you will be asked ${lgforge}@forge.ipsl.jussieu.fr passwd several times" 
     536    # 
     537    # copy files in a temporary directory 
     538    mkdir /tmp/download_${$}/ 
     539    cp -rp ../xmldoc/ /tmp/download_${$}/ 
     540    cp -rp ../idldoc_html_output /tmp/download_${$}/ 
     541    # 
     542    # remove svn files 
     543    find /tmp/download_${$}/ -name ".svn" -exec rm -rf {} \; 
     544    # 
     545    # replace "../../" by http://forge.ipsl.jussieu.fr/saxo/browser/trunk/SRC/ 
     546    # on ulink lines containing ../../ToBeReviewed/ and ../../Test/ 
     547    list_html=$(find /tmp/download_${$}/ -name "*.html") 
     548    for file_html in ${list_html} 
     549    do 
     550     sed -e "/..\/..\/ToBeReviewed/s+../../+http://forge.ipsl.jussieu.fr/saxo/browser/trunk/SRC/+"  ${file_html}  > ${file_html}_${$} 
     551     mv ${file_html}_${$} ${file_html}  
     552     sed -e "/..\/..\/Test/s+../../+http://forge.ipsl.jussieu.fr/saxo/browser/trunk/SRC/+"  ${file_html}  > ${file_html}_${$} 
     553     mv ${file_html}_${$} ${file_html}  
     554    done 
     555    #++scp -rp /tmp/download_${$}/xmldoc/ ${lgforge}@forge.ipsl.jussieu.fr:/ipsl/forge/projets/saxo/download/ 
     556    scp -rp /tmp/download_${$}/* ${lgforge}@forge.ipsl.jussieu.fr:/ipsl/forge/projets/saxo/download/ 
     557    rm -rf /tmp/download_${$}/ 
     558fi 
     559#------------------------------------------------------------------ 
     560#------------------------------------------------------------------ 
    530561# 
    531562[ -f job_src_$$ ] && rm -f job_src_$$ 
  • trunk/SRC/Documentation/xmldoc/updatesaxo.xml

    r183 r188  
    3636      </title> 
    3737      <para> 
    38         If you <ulink url="getsaxo.html?format=raw#saxo_local">linked</ulink> your <filename class='directory'><envar>${HOME}</envar>/SAXO_DIR</filename> to 
     38        If you <ulink url="./getsaxo.html#saxo_local">linked</ulink> your <filename class='directory'><envar>${HOME}</envar>/SAXO_DIR</filename> to 
    3939        <itemizedlist> 
    4040          <listitem><simpara>IDRIS, on rhodes: <filename class='directory'>/home/rech/eee/reee217/SAXO_DIR</filename></simpara></listitem> 
     
    5050    <sect1 id="saxo_svn"> 
    5151      <title> 
    52         If you got SAXO with <ulink url="getsaxo.html?format=raw#saxo_svn"><application> Subversion (svn)</application></ulink> 
     52        If you got SAXO with <ulink url="./getsaxo.html#saxo_svn"><application> Subversion (svn)</application></ulink> 
    5353      </title> 
    5454      <para> 
     
    8181    <sect1 id="saxo_tar"> 
    8282      <title> 
    83         If you got SAXO from a <ulink url="getsaxo.html?format=raw#saxo_src_tar">tar file</ulink> 
     83        If you got SAXO from a <ulink url="./getsaxo.html#saxo_src_tar">tar file</ulink> 
    8484      </title> 
    8585      <para> 
    86         The only way to update SAXO is to re-download and reinstall the tar file as you done for the <ulink url="getsaxo.html?format=raw#saxo_src_tar">first installation</ulink>. 
     86        The only way to update SAXO is to re-download and reinstall the tar file as you done for the <ulink url="./getsaxo.html#saxo_src_tar">first installation</ulink>. 
    8787      </para>   
    8888    </sect1> 
  • trunk/SRC/Documentation/xmldoc/websaxo.xml

    r183 r188  
    5454 
    5555<para> 
    56 <ulink url="../../saxo/browser/trunk/SRC/Documentation/xmldoc/whatissaxo.html?format=raw">More &hellip;</ulink>  
     56<ulink url="./whatissaxo.html">More &hellip;</ulink>  
    5757</para> 
    5858</sect1> 
     
    7272<listitem> 
    7373<para> 
    74 More details in <ulink url="../../saxo/browser/trunk/SRC/Documentation/xmldoc/whatsnew.html?format=raw">What's new in SAXO</ulink> 
     74More details in <ulink url="./whatsnew.html">What's new in SAXO</ulink> 
    7575</para> 
    7676</listitem> 
     
    8585<itemizedlist> 
    8686<listitem><para> 
    87 <ulink url="../../saxo/browser/trunk/SRC/Documentation/xmldoc/getsaxo.html?format=raw">Get</ulink> SAXO 
     87<ulink url="./getsaxo.html">Get</ulink> SAXO 
    8888</para></listitem> 
    8989<listitem><para> 
    90 <ulink url="../../saxo/browser/trunk/SRC/Documentation/xmldoc/updatesaxo.html?format=raw">Update</ulink> SAXO 
     90<ulink url="./updatesaxo.html">Update</ulink> SAXO 
    9191</para></listitem> 
    9292<listitem><para> 
    93 <ulink url="../../saxo/browser/trunk">Browse</ulink> SAXO 
     93<ulink url="http://forge.ipsl.jussieu.fr/saxo/browser/trunk">Browse</ulink> SAXO 
    9494</para></listitem> 
    9595</itemizedlist> 
     
    101101<listitem> 
    102102<para> 
    103 You like SAXO? Please subscribe to SAXO <ulink url="../../saxo/browser/trunk/SRC/Documentation/xmldoc/mailing.html?format=raw">mailing lists</ulink> (subscription and archives). 
     103You like SAXO? Please subscribe to SAXO <ulink url="./mailing.html">mailing lists</ulink> (subscription and archives). 
    104104</para> 
    105105</listitem> 
    106106<listitem> 
    107107<para> 
    108 <ulink url="http://forge.ipsl.jussieu.fr/saxo/report">Read</ulink> tickets. Because of abusive use of our tickets, <ulink url="http://forge.ipsl.jussieu.fr/saxo/newticket">sending tickets</ulink> is now limited to a registered login accessible if you subscribe to <ulink url="../../saxo/browser/trunk/SRC/Documentation/xmldoc/mailing.html?format=raw">SAXO mailing lists</ulink>. 
     108<ulink url="http://forge.ipsl.jussieu.fr/saxo/report">Read</ulink> tickets. Because of abusive use of our tickets, <ulink url="http://forge.ipsl.jussieu.fr/saxo/newticket">sending tickets</ulink> is now limited to a registered login accessible if you subscribe to <ulink url="./mailing.html">SAXO mailing lists</ulink>. 
    109109</para> 
    110110</listitem> 
    111111<listitem> 
    112112<para> 
    113 <ulink url="../../saxo/browser/trunk/SRC/Documentation/xmldoc/faqsaxo.html?format=raw">FAQ</ulink> 
     113<ulink url="./faqsaxo.html">FAQ</ulink> 
    114114</para> 
    115115</listitem> 
     
    120120<sect1 id="documentation"> 
    121121<title>Documentation</title> 
    122 <!-- 
    123 ++tracwiki Read First Steps with SAXO source:trunk/Documentation/xmldoc/firststeps.html 
    124 ++tracwiki Read First Steps with SAXO attachment:trunk/Documentation/xmldoc/firststeps.html 
    125 ++ docbook Read First Steps with SAXO source:trunk/Documentation/xmldoc/firststeps.html@latest 
    126 ++ docbook Read First Steps with SAXO <ulink url="trunk/Documentation/xmldoc/firststeps.html"/> 
    127  https://forge.ipsl.jussieu.fr/saxo/browser/trunk/Documentation/xmldoc/firststeps.html 
    128 ++ changement de base ? <ulink url="../svn/trunk/SRC/Documentation/xmldoc/firststeps.html">First Steps</ulink> 
    129 --> 
    130122<para> 
    131 <ulink url="../../saxo/browser/trunk/SRC/Documentation/xmldoc/firststeps.html?format=raw">First Steps</ulink> with SAXO. See also plots of First Steps in <ulink url="../../saxo/browser/trunk/SRC/Documentation/xmldoc/all_plots.html?format=raw">All plots</ulink> 
     123<ulink url="./firststeps.html">First Steps</ulink> with SAXO. See also plots of First Steps in <ulink url="./all_plots.html">All plots</ulink> 
    132124</para> 
    133125<para> 
    134 A short overview and <ulink url="../../saxo/browser/trunk/SRC/Documentation/xmldoc/mini_notice.html?format=raw">documentation of xxx widget</ulink> is now available. 
     126A short overview and <ulink url="./mini_notice.html">documentation of xxx widget</ulink> is now available. 
    135127</para> 
    136128<para> 
    137 A complete and convenient description of all SAXO routines can be found in the <ulink url="../../saxo/browser/trunk/SRC/Documentation/idldoc_html_output/index.html?format=raw">web pages created by <application>IDLdoc</application></ulink>. 
     129A complete and convenient description of all SAXO routines can be found in the <ulink url="../idldoc_html_output/index.html">web pages created by <application>IDLdoc</application></ulink>. 
    138130</para> 
    139131<para> 
    140 Some useful <ulink url="../../saxo/browser/trunk/SRC/Documentation/xmldoc/tiplink.html?format=raw">Tips and links</ulink>. 
     132Some useful <ulink url="./tiplink.html">Tips and links</ulink>. 
    141133</para> 
    142134</sect1> 
  • trunk/SRC/Documentation/xmldoc/whatissaxo.xml

    r183 r188  
    7878      <listitem><simpara> 
    7979        <application>cmapply</application> and <application>cmset_op</application> written and maintained by Craig Markwardt 
    80         <ulink url="http://cow.physics.wisc.edu/~craigm/idl"/> 
     80        <ulink url="http://cow.physics.wisc.edu/~craigm/idl/"/> 
    8181      </simpara></listitem> 
    8282      <listitem><simpara> 
  • trunk/SRC/Documentation/xmldoc/whatsnew.xml

    r183 r188  
    6666<title>Changeset 163 (2006-08-29)</title> 
    6767<para> 
    68 Last major commit related to the English translation of headers and their format. Better <ulink url="../idldoc_html_output/index.html?format=raw">idldoc HTML documentation</ulink> and introduce SAXO online_help created by idldoc assistant. 
     68Last major commit related to the English translation of headers and their format. Better <ulink url="../idldoc_html_output/index.html">idldoc HTML documentation</ulink> and introduce SAXO online_help created by idldoc assistant. 
    6969</para> 
    7070<para> 
     
    7676<title>Changeset 152 (2006-08-10)</title> 
    7777<para> 
    78 This revision includes new <ulink url="../../ToBeReviewed/PLOTS/DESSINE/pltv.pro">pltv</ulink> (a mix between plt and tvplus) plotting procedure. 
     78This revision includes new <ulink type="text" url="../../ToBeReviewed/PLOTS/DESSINE/pltv.pro">pltv</ulink> (a mix between plt and tvplus) plotting procedure. 
    7979</para> 
    8080<para> 
     
    119119</para> 
    120120<para> 
    121 See <ulink url="infoupdatekwd.html?format=raw">Keywords translation</ulink> 
    122 and <ulink url="infoupdatecm.html?format=raw">Commons translation</ulink>. 
     121See <ulink url="./infoupdatekwd.html">Keywords translation</ulink> 
     122and <ulink url="./infoupdatecm.html">Commons translation</ulink>. 
    123123</para> 
    124124<para> 
     
    143143</para> 
    144144<para> 
    145 Details can be seen in <ulink url="http:/changeset/forge.ipsl.jussieu.fr/saxo/changeset/2">Changeset 2</ulink>. 
     145Details can be seen in <ulink url="http://forge.ipsl.jussieu.fr/saxo/changeset/2">Changeset 2</ulink>. 
    146146</para> 
    147147</sect1> 
Note: See TracChangeset for help on using the changeset viewer.