Changeset 327


Ignore:
Timestamp:
12/13/07 17:22:35 (16 years ago)
Author:
pinsard
Message:

modification of headers : mainly blanks around = sign for keywords in declaration of function and pro

Location:
trunk/SRC
Files:
210 edited

Legend:

Unmodified
Added
Removed
  • trunk/SRC/Calendar/caldat.pro

    r325 r327  
    1010; Calendar 
    1111; 
    12 ; @param JULIAN {in}{required} {type=long integer or double-precision floating-point} 
     12; @param julian {in}{required} {type=long integer or double-precision floating-point} 
    1313; contains the Julian Day Number (which begins at noon) of the 
    1414; specified calendar date. 
    1515; 
    16 ; @param MONTH {out} {type=longword integer} 
     16; @param month {out} {type=longword integer} 
    1717; Number of the desired month (1 = January, ..., 12 = December). 
    1818; 
    19 ; @param DAY {out} {type=longword integer} 
     19; @param day {out} {type=longword integer} 
    2020; Number of day of the month. 
    2121; 
    22 ; @param YEAR {out} {type=longword integer} 
     22; @param year {out} {type=longword integer} 
    2323; Number of the desired year. 
    2424; 
    25 ; @param HOUR {out} {type=longword integer} 
     25; @param hour {out} {type=longword integer} 
    2626; Hour of the day 
    2727; 
    28 ; @param MINUTE {out} {type=longword integer} 
     28; @param minute {out} {type=longword integer} 
    2929; Minute of the day 
    3030; 
    31 ; @param SECOND {out} {type=double-precision floating-point} 
     31; @param second {out} {type=double-precision floating-point} 
    3232; Second (and fractions) of the day. 
    3333; 
     
    6464; 
    6565;- 
    66 PRO caldat, julian, month, day, year, hour, minute, second, NDAYSPM = ndayspm 
     66PRO caldat, julian, month, day, year, hour, minute, second, NDAYSPM=ndayspm 
    6767; 
    6868  compile_opt idl2, strictarrsubs 
  • trunk/SRC/Calendar/date2jul.pro

    r325 r327  
    7373; 
    7474;- 
    75 function date2jul, date, GRADS = grads, MONTH = month, DAY = day, YEAR = year $ 
    76                    , HOUR = hour, MINUTE = minute, SECOND = second 
     75FUNCTION date2jul, date, GRADS=grads, MONTH=month, DAY=day, YEAR=year $ 
     76                 , HOUR=hour, MINUTE=minute, SECOND=second 
    7777; 
    7878  compile_opt idl2, strictarrsubs 
    7979; 
    80   usage="res=date2jul, date, GRADS = grads, MONTH = month, DAY = day, YEAR = year , HOUR = hour, MINUTE = minute, SECOND = second" 
     80  usage="res=date2jul, date, GRADS=grads, MONTH=month, DAY=day, YEAR=year , HOUR=hour, MINUTE=minute, SECOND=second" 
    8181; 
    8282; check parameters 
  • trunk/SRC/Calendar/date2string.pro

    r325 r327  
    3333; 
    3434;- 
    35 FUNCTION date2string, yyyymmdd, _EXTRA = ex 
     35FUNCTION date2string, yyyymmdd, _EXTRA=ex 
    3636; 
    3737  compile_opt idl2, strictarrsubs 
  • trunk/SRC/Calendar/jul2date.pro

    r325 r327  
    6969; 
    7070;- 
    71 function jul2date, jday, MONTH = month, DAY = day, YEAR = year $ 
    72                    , HOUR = hour, MINUTE = minute, SECOND = second 
     71function jul2date, jday, MONTH=month, DAY=day, YEAR=year $ 
     72                 , HOUR=hour, MINUTE=minute, SECOND=second 
    7373; 
    7474  compile_opt idl2, strictarrsubs 
  • trunk/SRC/Calendar/julday.pro

    r325 r327  
    1010; Calendar 
    1111; 
    12 ; @param MONTH {in}{optional} {type=scalar (integer or double) or array of scalars} 
     12; @param month {in}{optional} {type=scalar (integer or double) or array of scalars} 
    1313; Number of the desired month (1 = January, ..., 12 = December). 
    1414; 
    15 ; @param DAY {in}{optional} {type=scalar (integer or double) or array of scalars} 
     15; @param day {in}{optional} {type=scalar (integer or double) or array of scalars} 
    1616; Number of day of the month. 
    1717; 
    18 ; @param YEARin {in}{optional} {type=scalar (integer or double) or array of scalars} 
     18; @param yearin {in}{optional} {type=scalar (integer or double) or array of scalars} 
    1919; Number of the desired year.Year parameters must be valid 
    2020; values from the civil calendar.  Years B.C.E. are represented 
     
    2727; <pro>caldat</pro> so caldat, julday(1,1,0) gives you back Jan 1st of year 0) 
    2828; 
    29 ; @param HOUR {in}{optional} {type=scalar (integer or double) or array of scalars} {default=12} 
     29; @param hour {in}{optional} {type=scalar (integer or double) or array of scalars} {default=12} 
    3030; Number of the hour of the day. 
    3131; 
    32 ; @param MINUTE {in}{optional} {type=scalar (integer or double) or array of scalars} {default=0} 
     32; @param minute {in}{optional} {type=scalar (integer or double) or array of scalars} {default=0} 
    3333; Number of the minute of the hour. 
    3434; 
    35 ; @param SECOND {in}{optional} {type=scalar (integer or double) or array of scalars} {default=0} 
     35; @param second {in}{optional} {type=scalar (integer or double) or array of scalars} {default=0} 
    3636; Number of the second of the minute. 
    3737; 
     
    8181; $Id$ 
    8282;- 
    83 FUNCTION julday, month, day, yearin, hour, minute, second, NDAYSPM = ndayspm 
     83FUNCTION julday, month, day, yearin, hour, minute, second, NDAYSPM=ndayspm 
    8484; 
    8585  compile_opt idl2, strictarrsubs 
  • trunk/SRC/Calendar/leapyr.pro

    r325 r327  
    4343; 
    4444;- 
    45 function leapyr, year 
     45FUNCTION leapyr, year 
    4646; 
    4747  compile_opt idl2, strictarrsubs 
  • trunk/SRC/Calendar/monthname.pro

    r325 r327  
    3232; 
    3333;- 
    34 FUNCTION monthname, month, _EXTRA = ex 
     34FUNCTION monthname, month, _EXTRA=ex 
    3535; 
    3636  compile_opt idl2, strictarrsubs 
  • trunk/SRC/Colors/color24.pro

    r325 r327  
    3636;- 
    3737FUNCTION color24, rgb_triple 
     38; 
    3839  compile_opt idl2, strictarrsubs 
    3940; 
  • trunk/SRC/Colors/colorbar.pro

    r325 r327  
    117117; 
    118118;- 
    119 PRO colorbar, BOTTOM=bottom, CB_CHARSIZE=cb_charsize, CB_CHARTHICK=cb_charthick $ 
    120               , CB_COLOR=cb_color, DIVISIONS=divisions, DISCRETE=discrete $ 
    121               , CB_LABEL = cb_label, FORMAT=format, POSITION=position $ 
    122               , MAX = max, MIN = min, NCOLORS = ncolors, PSCOLOR=pscolor $ 
    123               , CB_TITLE = cb_title, VERTICAL = vertical, TOP = top, RIGHT = right $ 
    124               , CB_LOG = CB_log, NOTITLE = notitle, _EXTRA = ex 
     119PRO colorbar, BOTTOM=bottom, CB_CHARSIZE=cb_charsize $ 
     120            , CB_CHARTHICK=cb_charthick $ 
     121            , CB_COLOR=cb_color, DIVISIONS=divisions, DISCRETE=discrete $ 
     122            , CB_LABEL=cb_label, FORMAT=format, POSITION=position $ 
     123            , MAX=max, MIN=min, NCOLORS=ncolors, PSCOLOR=pscolor $ 
     124            , CB_TITLE=cb_title, VERTICAL=vertical, TOP=top, RIGHT=right $ 
     125            , CB_LOG=CB_log, NOTITLE=notitle, _EXTRA=ex 
    125126; 
    126127  compile_opt idl2, strictarrsubs 
  • trunk/SRC/Colors/getcolor.pro

    r325 r327  
    1818; Graphics, Color 
    1919; 
    20 ; @param thisColor {in}{optional} 
     20; @param thiscolor {in}{optional} 
    2121; A string with the "name" of the color. Valid names are: 
    2222;           black 
     
    189189; @version 
    190190; $Id$ 
     191; 
    191192;- 
    192 FUNCTION getcolor, thisColor, index, TRUE=truecolor, $ 
    193    NAMES=colornames, LOAD=load, START=start 
     193FUNCTION getcolor, thiscolor, index, TRUE=truecolor $ 
     194                 , NAMES=colornames, LOAD=load, START=start 
    194195; 
    195196  compile_opt idl2, strictarrsubs 
  • trunk/SRC/Colors/lct.pro

    r325 r327  
    3636; 
    3737;- 
    38 PRO lct, numpal, FILE = file, GET_NAME = get_name, LIGHTNESS = Lightness, _EXTRA = ex 
     38PRO lct, numpal, FILE=file, GET_NAME=get_name, LIGHTNESS=lightness, _EXTRA=ex 
    3939; 
    4040  compile_opt idl2, strictarrsubs 
  • trunk/SRC/Colors/newpalette.pro

    r325 r327  
    3030; 
    3131;- 
    32 pro newpalette, namepal, FILE = file, OVER = over, _EXTRA = ex 
     32PRO newpalette, namepal, FILE=file, OVER=over, _EXTRA=ex 
    3333; 
    3434  compile_opt idl2, strictarrsubs 
  • trunk/SRC/Colors/xlct.pro

    r325 r327  
    44; 
    55;- 
    6 PRO xlct_psave                  ;Save/Restore our plotting state. 
    7 ;  Swaps our state with the current state each time its called. 
     6PRO xlct_psave                   
     7; Save/Restore our plotting state. 
     8; Swaps our state with the current state each time its called. 
    89; 
    910  compile_opt idl2, strictarrsubs 
     
    470471;- 
    471472PRO xlct, SILENT=silent_f, GROUP=group, FILE=file, $ 
    472           USE_CURRENT=use_current, NCOLORS = nc, BOTTOM=bottom, $ 
     473          USE_CURRENT=use_current, NCOLORS=nc, BOTTOM=bottom, $ 
    473474          MODAL=modal, BLOCK=block, UPDATECALLBACK=updt_cb_name, $ 
    474475          UPDATECBDATA=updt_cb_data 
  • trunk/SRC/Computation/curl.pro

    r325 r327  
    7272; 
    7373;- 
    74 FUNCTION curl, uu, vv, DIREC = direc, MILLION = million, _EXTRA = ex 
     74FUNCTION curl, uu, vv, DIREC=direc, MILLION=million, _EXTRA=ex 
    7575; 
    7676  compile_opt idl2, strictarrsubs 
  • trunk/SRC/Computation/div.pro

    r325 r327  
    7070; 
    7171;- 
    72 FUNCTION div, uu, vv, DIREC = direc, MILLION = million, _EXTRA = ex 
     72FUNCTION div, uu, vv, DIREC=direc, MILLION=million, _EXTRA=ex 
    7373; 
    7474  compile_opt idl2, strictarrsubs 
  • trunk/SRC/Computation/grad.pro

    r325 r327  
    5252; 
    5353;- 
    54 FUNCTION grad, field, direc, MILLION = million, _EXTRA = ex 
     54FUNCTION grad, field, direc, MILLION=million, _EXTRA=ex 
    5555; 
    5656  compile_opt idl2, strictarrsubs 
  • trunk/SRC/Computation/norm.pro

    r325 r327  
    6363; 
    6464;- 
    65 FUNCTION norm, uu, vv, DIREC = direc, _EXTRA = ex 
     65FUNCTION norm, uu, vv, DIREC=direc, _EXTRA=ex 
    6666; 
    6767  compile_opt idl2, strictarrsubs 
  • trunk/SRC/Documentation/xmldoc/doidldoc.sh

    r325 r327  
    66# update : 
    77# $Id$ 
     8# fplod 2007-12-12T09:47:04Z aedon.locean-ipsl.upmc.fr (Darwin) 
     9# version 
     10# http://michaelgalloy.com/wp-content/uploads/2007/12/idldoc-3.0b4.zip 
     11# fplod 2007-12-11T09:14:04Z aedon.locean-ipsl.upmc.fr (Darwin) 
     12# version  
     13# http://michaelgalloy.com/wp-content/uploads/2007/12/idldoc-3.0b4-src.zip 
     14# ++ pb path 
     15# beginning of docbook templates writing (from html 3.0b3 tt files) 
     16# fplod 2007-12-10T09:28:11Z aedon.locean-ipsl.upmc.fr (Darwin) 
     17# test with gdl : pas possible car compatibility < 6.1 
    818# fplod 2007-12-04T09:21:18Z aedon.locean-ipsl.upmc.fr (Darwin) 
    919# version 
     
    2535set -x 
    2636set -u 
     37# ++ test si idl (car gdl inutilisable) 
     38application=idl 
    2739assistant=0 
    2840transform=0 
    2941title="SAXO Documentation" # ++ parametre 
    30 root="../../mglib/" # overriding root for test ++ 
    3142root="../../" 
     43root="/Users/fplod/SAXO_DIR_ws/SRC/" #++ à cause du cd pour éviter expand_path 
     44#root="/usr/home/fplod/src/mglib/" # overriding root for test ++ 
     45# 
    3246# 
    3347idldoc_dir="../idldoc/" #  
    34 idldoc_dir="/Users/fplod/Desktop/idldoc-3.0b3" # overriding idldoc_dir for test ++ 
     48idldoc_dir="/usr/home/fplod/src/idldoc-3.0b3/" # overriding idldoc_dir for ctest ++ 
     49#idldoc_dir="/usr/home/fplod/src/idldoc-3.0b4-src/" # overriding idldoc_dir for test ++ 
     50idldoc_dir="/usr/home/fplod/src/idldoc-3.0b4/" # overriding idldoc_dir for test ++ 
     51template_location=${idldoc_dir}/templates/ 
     52#++ pas fini  
     53#template_location=${idldoc_dir}/templates_dbk/ # overriding TEMPLATE_LOCATION++ 
    3554# 
    3655# memorize current directory 
     
    4463log="/tmp/idldochtml_${$}.log" 
    4564pro="/tmp/idldochtml_${$}.pro" 
     65 
     66#+++ a remettre pour dbk template_location="${template_location}", $ 
     67# !path = expand_path('+' + '${idldoc_dir}') 
     68cd ${idldoc_dir} 
     69pwd 
     70read a 
    4671cat <<EOF > ${pro} 
    47 !path = expand_path('+' + '${idldoc_dir}') 
    4872idldoc,root="${root}",title="${title}", $ 
    4973LOG_FILE="${log}", $ 
    5074output="${outputtmp}", $ 
     75template_location="${template_location}", $ 
     76COMMENT_STYLE="latex", $ 
    5177overview="../../overview", /statistics 
    5278exit 
    5379EOF 
     80more ${pro} 
     81read a 
    5482# launch idl with the file built above 
    55 IDL_STARTUP=${pro};${IDL_DIR}/bin/idl 
     83IDL_STARTUP=${pro};${application} 
    5684/bin/rm ${pro} 
    5785# 
  • trunk/SRC/Documentation/xmldoc/mini_notice.xml

    r255 r327  
    123123<sect3 id="initmethodtxt"><title>Grid initialization method</title> 
    124124  <para> 
    125     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). 
     125    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 auxiliary 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). 
    126126  </para> 
    127127</sect3> 
  • trunk/SRC/Documentation/xmldoc/savesaxo.sh

    r325 r327  
    101101set -u 
    102102# 
    103 docompileall=0 
     103docompileall=1 
    104104dohtml=0 
    105105dooldtest=0 
    106106doidlwavedoc=0 
    107 doidldoc=1 
     107doidldoc=0 
    108108doTARsrc=0 
    109109doTARdata=0 
  • trunk/SRC/ForOldVersion/oldcm_empty.pro

    r325 r327  
    11;+ 
     2; 
    23; @file_comments 
    34; For internal use of SAXO 
     
    1819;  IDLDOC: unknown tag "file_comments" in file oldcm_empty.pro 
    1920;  IDLDOC: unknown tag "categories" in file oldcm_empty.pro 
     21; 
    2022;- 
    2123; 
  • trunk/SRC/ForOldVersion/updatenew.pro

    r325 r327  
    1515; @version 
    1616; $Id$ 
     17; 
    1718;- 
    1819IF n_elements(key_forgetold) EQ 0 THEN keep_compatibility 
  • trunk/SRC/Grid/changemsk.pro

    r325 r327  
    3030; 
    3131;- 
    32 FUNCTION changemsk,tab, CELLSIZE = cellsize 
     32FUNCTION changemsk,tab, CELLSIZE=cellsize 
    3333; 
    3434  compile_opt idl2, strictarrsubs 
  • trunk/SRC/Grid/computegrid.pro

    r325 r327  
    9393;             the labels 'longitude', 'latitude' in plots). 
    9494;       The resulting value will be stored in the common (cm_4mesh) variable key_onearth 
    95 ;       ONEARTH = 0 forces PERIODIC = 0, SHIFT = 0 and is cancelling GLAMBOUNDARY 
     95;       ONEARTH=0 forces PERIODIC=0, SHIFT=0 and is cancelling GLAMBOUNDARY 
    9696; 
    9797; @keyword PERIODIC {default=computed by using the first line of glamt}{type=scalar: 0 or 1} 
    9898;       Force the manual definition of the grid zonal periodicity. 
    9999;       The resulting value will be stored in the common (cm_4mesh) variable key_periodic 
    100 ;       PERIODIC = 0 forces SHIFT = 0 
     100;       PERIODIC=0 forces SHIFT=0 
    101101; 
    102102; @keyword PLAIN {default=0}{type=scalar: 0 or 1} 
    103 ;       Force YREVERSE = 0, ZREVERSE = 0, PERIODIC = 0, SHIFT = 0, STRIDE = [1, 1, 1] and 
     103;       Force YREVERSE=0, ZREVERSE=0, PERIODIC=0, SHIFT=0, STRIDE=[1, 1, 1] and 
    104104;       suppress the automatic redefinition of the domain in case of x periodicity overlap, 
    105105;       y periodicity overlap (ORCA type only) and mask border to 0. 
     
    108108;       Force the manual definition of the zonal shift that must be apply to the data. 
    109109;       The resulting value will be stored in the common (cm_4mesh) variable key_shift 
    110 ;       Note that if key_periodic=0 then in any case key_shift = 0. 
     110;       Note that if key_periodic=0 then in any case key_shift=0. 
    111111; 
    112112; @keyword STRCALLING {type=string} 
     
    249249;- 
    250250PRO computegrid, startx, starty, stepxin, stepyin, nxin, nyin $ 
    251                  , XAXIS = xaxis, YAXIS = yaxis, ZAXIS = zaxis $ 
    252                  , MASK = mask, GLAMBOUNDARY = glamboundary $ 
    253                  , XMINMESH = xminmesh, XMAXMESH = xmaxmesh $ 
    254                  , YMINMESH = yminmesh, YMAXMESH = ymaxmesh $ 
    255                  , ZMINMESH = zminmesh, ZMAXMESH = zmaxmesh $ 
    256                  , ONEARTH = onearth, PERIODIC = periodic $ 
    257                  , PLAIN = plain, SHIFT = shift, STRIDE = stride $ 
    258                  , YREVERSE = yreverse, ZREVERSE = zreverse  $ 
    259                  , FULLCGRID = fullcgrid, XYINDEX = xyindex $ 
    260                  , UBASE2TBASE = ubase2tbase, VBASE2TBASE = vbase2tbase $ 
    261                  , FBASE2TBASE = fbase2tbase $ 
    262                  , STRCALLING = strcalling, ROMSH = romsh, _EXTRA = ex 
     251                 , XAXIS=xaxis, YAXIS=yaxis, ZAXIS=zaxis $ 
     252                 , MASK=mask, GLAMBOUNDARY=glamboundary $ 
     253                 , XMINMESH=xminmesh, XMAXMESH=xmaxmesh $ 
     254                 , YMINMESH=yminmesh, YMAXMESH=ymaxmesh $ 
     255                 , ZMINMESH=zminmesh, ZMAXMESH=zmaxmesh $ 
     256                 , ONEARTH=onearth, PERIODIC=periodic $ 
     257                 , PLAIN=plain, SHIFT=shift, STRIDE=stride $ 
     258                 , YREVERSE=yreverse, ZREVERSE=zreverse  $ 
     259                 , FULLCGRID=fullcgrid, XYINDEX=xyindex $ 
     260                 , UBASE2TBASE=ubase2tbase, VBASE2TBASE=vbase2tbase $ 
     261                 , FBASE2TBASE=fbase2tbase $ 
     262                 , STRCALLING=strcalling, ROMSH=romsh, _EXTRA=ex 
    263263; 
    264264  compile_opt idl2, strictarrsubs 
  • trunk/SRC/Grid/micromeshmask.pro

    r325 r327  
    5656; 
    5757;- 
    58 PRO micromeshmask, ncfilein, ncfileout, IODIR = iodir 
     58PRO micromeshmask, ncfilein, ncfileout, IODIR=iodir 
    5959; 
    6060  compile_opt idl2, strictarrsubs 
  • trunk/SRC/Grid/ncdf_meshread.pro

    r325 r327  
    3131;          the labels 'longitude', 'latitude' in plots). 
    3232;    The resulting value will be stored in the common (cm_4mesh) variable key_onearth 
    33 ;    ONEARTH = 0 forces PERIODIC = 0, SHIFT = 0 and is cancelling GLAMBOUNDARY 
     33;    ONEARTH=0 forces PERIODIC=0, SHIFT=0 and is cancelling GLAMBOUNDARY 
    3434; 
    3535; @keyword GETDIMENSIONS {default=0}{type=scalar: 0 or 1} 
     
    4141;    Force the manual definition of the grid zonal periodicity. 
    4242;    The resulting value will be stored in the common (cm_4mesh) variable key_periodic 
    43 ;    PERIODIC = 0 forces SHIFT = 0 
     43;    PERIODIC=0 forces SHIFT=0 
    4444; 
    4545; @keyword SHIFT {default=computed according to glamboundary}{type=scalar} 
     
    8181; 
    8282;- 
    83 PRO ncdf_meshread, filename, GLAMBOUNDARY = glamboundary, CHECKDAT = checkdat $ 
    84                   , ONEARTH = onearth, GETDIMENSIONS = getdimensions $ 
    85                   , PERIODIC = periodic, SHIFT = shift, STRIDE = stride $ 
    86                   , STRCALLING = strcalling, _EXTRA = ex 
     83PRO ncdf_meshread, filename, GLAMBOUNDARY=glamboundary, CHECKDAT=checkdat $ 
     84                  , ONEARTH=onearth, GETDIMENSIONS=getdimensions $ 
     85                  , PERIODIC=periodic, SHIFT=shift, STRIDE=stride $ 
     86                  , STRCALLING=strcalling, _EXTRA=ex 
    8787; 
    8888  compile_opt idl2, strictarrsubs 
  • trunk/SRC/Grid/ncdf_meshroms.pro

    r325 r327  
    2828;          the labels 'longitude', 'latitude' in plots). 
    2929;    The resulting value will be stored in the common (cm_4mesh) variable key_onearth 
    30 ;    ONEARTH = 0 forces PERIODIC = 0, SHIFT = 0 and is cancelling GLAMBOUNDARY 
     30;    ONEARTH=0 forces PERIODIC=0, SHIFT=0 and is cancelling GLAMBOUNDARY 
    3131; 
    3232; @keyword GETDIMENSIONS {default=0}{type=scalar: 0 or 1} 
     
    3838;    Force the manual definition of the grid zonal periodicity. 
    3939;    The resulting value will be stored in the common (cm_4mesh) variable key_periodic 
    40 ;    PERIODIC = 0 forces SHIFT = 0 
     40;    PERIODIC=0 forces SHIFT=0 
    4141; 
    4242; @keyword NRHO {default=1}{type=scalar} 
     
    4747;    Force the manual definition of the zonal shift that must be apply to the data. 
    4848;    The resulting value will be stored in the common (cm_4mesh) variable key_shift 
    49 ;    Note that if key_periodic=0 then in any case key_shift = 0. 
     49;    Note that if key_periodic=0 then in any case key_shift=0. 
    5050; 
    5151; @keyword STRCALLING {type=scalar string} 
     
    8787; 
    8888;- 
    89 PRO ncdf_meshroms, filename, NRHO = nrho, GLAMBOUNDARY = glamboundary $ 
    90                   , ONEARTH = onearth, GETDIMENSIONS = getdimensions $ 
    91                   , PERIODIC = periodic, SHIFT = shift, STRIDE = stride $ 
    92                   , STRCALLING = strcalling, _EXTRA = ex 
     89PRO ncdf_meshroms, filename, NRHO=nrho, GLAMBOUNDARY=glamboundary $ 
     90                  , ONEARTH=onearth, GETDIMENSIONS=getdimensions $ 
     91                  , PERIODIC=periodic, SHIFT=shift, STRIDE=stride $ 
     92                  , STRCALLING=strcalling, _EXTRA=ex 
    9393; 
    9494  compile_opt idl2, strictarrsubs 
  • trunk/SRC/Grid/smallmeshmask.pro

    r325 r327  
    6565; 
    6666;- 
    67 PRO smallmeshmask, ncfilein, ncfileout, IODIR = iodir 
     67PRO smallmeshmask, ncfilein, ncfileout, IODIR=iodir 
    6868; 
    6969  compile_opt idl2, strictarrsubs 
  • trunk/SRC/Interpolation/angle.pro

    r325 r327  
    2323; 
    2424;- 
    25 FUNCTION fsnspp, plam, pphi, DOUBLE = double 
     25FUNCTION fsnspp, plam, pphi, DOUBLE=double 
    2626; 
    2727  compile_opt idl2, strictarrsubs 
     
    103103;- 
    104104PRO angle, fileocemesh, gcosu, gsinu, gcosv, gsinv, gcost, gsint, gcosf, gsinf $ 
    105          , IODIRECTORY = iodirectory, DOUBLE = double 
     105         , IODIRECTORY=iodirectory, DOUBLE=double 
    106106; 
    107107  compile_opt idl2, strictarrsubs 
  • trunk/SRC/Interpolation/clickincell.pro

    r325 r327  
    5959; 
    6060;- 
    61 FUNCTION clickincell, CELLTYPE = celltype, DRAWCELL = drawcell, COLOR = color, ORIGINAL = original, IJ = ij, _EXTRA = extra 
     61FUNCTION clickincell, CELLTYPE=celltype, DRAWCELL=drawcell, COLOR=color $ 
     62                    , ORIGINAL=original, IJ=ij, _EXTRA=extra 
    6263; 
    6364  compile_opt idl2, strictarrsubs 
  • trunk/SRC/Interpolation/compute_fromreg_bilinear_weigaddr.pro

    r325 r327  
    5555PRO compute_fromreg_bilinear_weigaddr, alonin, alatin, olonin, olat $ 
    5656                                     , weig , addr $ 
    57                                      , NONORTHERNLINE = nonorthernline $ 
    58                                      , NOSOUTHERNLINE = nosouthernline 
     57                                     , NONORTHERNLINE=nonorthernline $ 
     58                                     , NOSOUTHERNLINE=nosouthernline 
    5959; 
    6060  compile_opt idl2, strictarrsubs 
  • trunk/SRC/Interpolation/compute_fromreg_imoms3_weigaddr.pro

    r325 r327  
    5858;- 
    5959PRO compute_fromreg_imoms3_weigaddr, alonin, alatin, olonin, olat, weig, addr $ 
    60                                    , NONORTHERNLINE = nonorthernline, $ 
    61                                      NOSOUTHERNLINE = nosouthernline 
     60                                   , NONORTHERNLINE=nonorthernline, $ 
     61                                     NOSOUTHERNLINE=nosouthernline 
    6262; 
    6363  compile_opt idl2, strictarrsubs 
  • trunk/SRC/Interpolation/cutpar.pro

    r325 r327  
    6464; 
    6565;- 
    66 FUNCTION cutpar, x0, y0, x1, y1, x2, y2, x3, y3, n, ENDPOINTS = endpoints, ONSPHERE = onsphere 
     66FUNCTION cutpar, x0, y0, x1, y1, x2, y2, x3, y3, n $ 
     67               , ENDPOINTS=endpoints, ONSPHERE=onsphere 
    6768; 
    6869  compile_opt idl2, strictarrsubs 
  • trunk/SRC/Interpolation/cutsegment.pro

    r325 r327  
    4949; 
    5050;- 
    51 FUNCTION cutsegment, x0, y0, x1, y1, n, ENDPOINTS = endpoints, ONSPHERE = onsphere 
     51FUNCTION cutsegment, x0, y0, x1, y1, n $ 
     52                   , ENDPOINTS=endpoints, ONSPHERE=onsphere 
    5253; 
    5354  compile_opt idl2, strictarrsubs 
  • trunk/SRC/Interpolation/extrapolate.pro

    r325 r327  
    5454; 
    5555;- 
    56 FUNCTION extrapolate, zinput, maskinput, nb_iteration, X_PERIODIC = x_periodic $ 
    57                       , MINVAL = minval, MAXVAL = maxval, GE0 = ge0, _EXTRA = ex 
     56FUNCTION extrapolate, zinput, maskinput, nb_iteration, X_PERIODIC=x_periodic $ 
     57                      , MINVAL=minval, MAXVAL=maxval, GE0=ge0, _EXTRA=ex 
    5858; 
    5959  compile_opt idl2, strictarrsubs 
  • trunk/SRC/Interpolation/extrapsmooth.pro

    r325 r327  
    4949; $Id$ 
    5050;- 
    51 FUNCTION extrapsmooth, in, mskin, X_PERIODIC = x_periodic, MINVAL = minval, MAXVAL = maxval, GE0 = ge0, _EXTRA = ex 
     51FUNCTION extrapsmooth, in, mskin, X_PERIODIC=x_periodic $ 
     52                     , MINVAL=minval, MAXVAL=maxval, GE0=ge0, _EXTRA=ex 
    5253; 
    5354  compile_opt strictarr, strictarrsubs 
  • trunk/SRC/Interpolation/file_interp.pro

    r305 r327  
    44; 
    55;- 
    6 FUNCTION call_interp2d, data, inlon, inlat, inmask, outlon, outlat, INIRR = inirr, METHOD = method, SMOOTH = smooth, WEIG = weig, ADDR = addr, NAN_VALUE = NaN_value, _extra = ex 
     6FUNCTION call_interp2d, data, inlon, inlat, inmask, outlon, outlat $ 
     7                      , INIRR=inirr, METHOD=method, SMOOTH=smooth $ 
     8                      , WEIG=weig, ADDR=addr, NAN_VALUE=NaN_value, _EXTRA=ex 
    79; 
    810  compile_opt idl2, strictarrsubs 
     
    207209; 
    208210;- 
    209 PRO file_interp, filein, fileout, gridout, GRIDIN = gridin, MASKIN = maskin, MASKOUT = maskout $ 
    210                  , KEEP = keep, REMOVE = remove, METHOD = method, SMOOTH = smooth $ 
    211                  , SET_XDIMNAME = set_xdimname, SET_YDIMNAME = set_ydimname $ 
    212                  , SET_XAXISNAME = set_xaxisname, SET_YAXISNAME = set_yaxisname $ 
    213                  , INMASKNAME = inmaskname, ININVMASK = ininvmask, INUSEASMASK = inuseasmask $ 
    214                  , INMISSING_VALUE = inmissing_value, INADDSCL_BEFORE = inaddscl_before $ 
    215                  , OUTMASKNAME = outmaskname, OUTINVMASK = outinvmask, OUTUSEASMASK = outuseasmask $ 
    216                  , OUTMISSING_VALUE = outmissing_value, OUTADDSCL_BEFORE = outaddscl_before $ 
    217                  , NAN_VALUE = NaN_value, WEIG = weig, ADDR = addr $ 
    218                  , INXAXISNAME = inxaxisname, INYAXISNAME = inyaxisname $ 
    219                  , OUTXAXISNAME = outxaxisname, OUTYAXISNAME = outyaxisname, _EXTRA = ex 
     211PRO file_interp, filein, fileout, gridout, GRIDIN=gridin, MASKIN=maskin, MASKOUT=maskout $ 
     212               , KEEP=keep, REMOVE=remove, METHOD=method, SMOOTH=smooth $ 
     213               , SET_XDIMNAME=set_xdimname, SET_YDIMNAME=set_ydimname $ 
     214               , SET_XAXISNAME=set_xaxisname, SET_YAXISNAME=set_yaxisname $ 
     215               , INMASKNAME=inmaskname, ININVMASK=ininvmask $ 
     216               , INUSEASMASK=inuseasmask $ 
     217               , INMISSING_VALUE=inmissing_value $ 
     218               , INADDSCL_BEFORE=inaddscl_before $ 
     219               , OUTMASKNAME=outmaskname, OUTINVMASK=outinvmask $ 
     220               , OUTUSEASMASK=outuseasmask $ 
     221               , OUTMISSING_VALUE=outmissing_value $ 
     222               , OUTADDSCL_BEFORE=outaddscl_before $ 
     223               , NAN_VALUE=NaN_value, WEIG=weig, ADDR=addr $ 
     224               , INXAXISNAME=inxaxisname, INYAXISNAME=inyaxisname $ 
     225               , OUTXAXISNAME=outxaxisname, OUTYAXISNAME=outyaxisname $ 
     226               , _EXTRA=ex 
    220227; 
    221228  compile_opt idl2, strictarrsubs 
  • trunk/SRC/Interpolation/fromirr.pro

    r325 r327  
    9090FUNCTION fromirr, method, datain, lonin, latin, mskin, lonout, latout $ 
    9191                , mskout $ 
    92                 , WEIG = weig, ADDR = addr, _EXTRA = ex 
     92                , WEIG=weig, ADDR=addr, _EXTRA=ex 
    9393; 
    9494  compile_opt strictarr, strictarrsubs 
  • trunk/SRC/Interpolation/fromreg.pro

    r325 r327  
    9090;- 
    9191FUNCTION fromreg, method, datain, lonin, latin, lonout, latout $ 
    92                   , WEIG = weig, ADDR = addr $ 
    93                   , NONORTHERNLINE = nonorthernline $ 
    94                   , NOSOUTHERNLINE = nosouthernline, _EXTRA = ex 
     92                  , WEIG=weig, ADDR=addr $ 
     93                  , NONORTHERNLINE=nonorthernline $ 
     94                  , NOSOUTHERNLINE=nosouthernline, _EXTRA=ex 
    9595; 
    9696  compile_opt idl2, strictarrsubs 
  • trunk/SRC/Interpolation/get_gridparams.pro

    r325 r327  
    7171; 
    7272;- 
    73 PRO get_gridparams, in1,   in2,   in3,     in4, in5, in6, in7, in8, DOUBLE = double 
     73PRO get_gridparams, in1, in2, in3, in4, in5, in6, in7, in8 $ 
     74                  , DOUBLE=double 
     75; 
    7476;                  file, lonname, latname, lon, lat, jpi, jpj, n_dimensions 
    75 ;                   lon,   lat,   jpi,    jpj, n_dimensions 
     77;                  lon,      lat,     jpi, jpj, n_dimensions 
    7678; 
    7779  compile_opt idl2, strictarrsubs 
  • trunk/SRC/Interpolation/inquad.pro

    r325 r327  
    8181; 
    8282;- 
    83 FUNCTION inquad, x, y, x1, y1, x2, y2, x3, y3, x4, y4, ONSPHERE = onsphere,  DOUBLE = double, DELTA = delta, NOPRINT = noprint, NEWCOORD = newcoord 
     83FUNCTION inquad, x, y, x1, y1, x2, y2, x3, y3, x4, y4 $ 
     84               , ONSPHERE=onsphere,  DOUBLE=double, DELTA=delta $ 
     85               , NOPRINT=noprint, NEWCOORD=newcoord 
    8486; 
    8587  compile_opt idl2, strictarrsubs 
  • trunk/SRC/Interpolation/inrecgrid.pro

    r325 r327  
    5555; 
    5656;- 
    57 FUNCTION inrecgrid, x1d, y1d, left, bottom, OUTPUT2D = output2d, CHECKOUT = checkout 
     57FUNCTION inrecgrid, x1d, y1d, left, bottom $ 
     58                  , OUTPUT2D=output2d, CHECKOUT=checkout 
    5859; 
    5960  compile_opt idl2, strictarrsubs 
  • trunk/SRC/Interpolation/lbcorca.pro

    r297 r327  
    4242; 
    4343;- 
    44 FUNCTION lbcorca, arr, grid, psign, VERBOSE = verbose, CORRECTION = correction 
     44FUNCTION lbcorca, arr, grid, psign, VERBOSE=verbose, CORRECTION=correction 
    4545; 
    4646  compile_opt idl2, strictarrsubs 
  • trunk/SRC/Interpolation/ll_narcs_distances.pro

    r325 r327  
    6868; 
    6969;- 
    70 FUNCTION ll_narcs_distances, lon0, lat0, arc_dist, az, DEGREES = degs 
     70FUNCTION ll_narcs_distances, lon0, lat0, arc_dist, az, DEGREES=degs 
    7171; 
    7272  compile_opt idl2, strictarrsubs 
  • trunk/SRC/Interpolation/map_npoints.pro

    r325 r327  
    102102; 
    103103;- 
    104 FUNCTION map_npoints, lon0, lat0, lon1, lat1, AZIMUTH = azimuth $ 
    105  , RADIANS = radians, RADIUS = radius, MIDDLE = middle, TWO_BY_TWO = two_by_two 
     104FUNCTION map_npoints, lon0, lat0, lon1, lat1, AZIMUTH=azimuth $ 
     105                    , RADIANS=radians, RADIUS=radius, MIDDLE=middle $ 
     106                    , TWO_BY_TWO=two_by_two 
    106107; 
    107108 compile_opt idl2, strictarrsubs 
  • trunk/SRC/Interpolation/neighbor.pro

    r325 r327  
    4646; 
    4747;- 
    48 FUNCTION neighbor, p0lon, p0lat, neighlon, neighlat, SPHERE = sphere, DISTANCE = distance, RADIANS = radians 
     48FUNCTION neighbor, p0lon, p0lat, neighlon, neighlat $ 
     49                 , SPHERE=sphere, DISTANCE=distance, RADIANS=radians 
    4950; 
    5051  compile_opt idl2, strictarrsubs 
  • trunk/SRC/Interpolation/quadrilateral2square.pro

    r325 r327  
    7878; 
    7979;- 
    80 FUNCTION quadrilateral2square, x0in, y0in, x1in, y1in, x2in, y2in, x3in, y3in, xxin, yyin, PERF = perf, DOUBLE = double 
     80FUNCTION quadrilateral2square, x0in, y0in, x1in, y1in, x2in, y2in $ 
     81                             , x3in, y3in, xxin, yyin $ 
     82                             , PERF=perf, DOUBLE=double 
    8183; 
    8284  compile_opt idl2, strictarrsubs 
  • trunk/SRC/Interpolation/spl_incr.pro

    r325 r327  
    137137;    boundary is set to zero, resulting in a "natural spline." 
    138138;- 
    139 FUNCTION spl_incr, x, y, x2, YP0 = yp0, YPN_1 = ypn_1 
     139FUNCTION spl_incr, x, y, x2, YP0=yp0, YPN_1=ypn_1 
    140140; 
    141141  compile_opt idl2, strictarrsubs 
  • trunk/SRC/Interpolation/spl_keep_mean.pro

    r325 r327  
    7474; 
    7575;- 
    76 FUNCTION spl_keep_mean, x, yin, x2, YP0 = yp0, YPN_1 = ypn_1, GE0 = ge0 
     76FUNCTION spl_keep_mean, x, yin, x2, YP0=yp0, YPN_1=ypn_1, GE0=ge0 
    7777; 
    7878  compile_opt idl2, strictarrsubs 
  • trunk/SRC/Interpolation/square2quadrilateral.pro

    r325 r327  
    7070; 
    7171;- 
    72 FUNCTION square2quadrilateral, x0in, y0in, x1in, y1in, x2in, y2in, x3in, y3in, xxin, yyin, DOUBLE = double 
     72FUNCTION square2quadrilateral, x0in, y0in, x1in, y1in, x2in, y2in $ 
     73                             , x3in, y3in, xxin, yyin $  
     74                             , DOUBLE=double 
    7375; 
    7476; Warning, wrong definition of (x2,y2) and (x3,y3) at the bottom of 
  • trunk/SRC/Obsolete/cp.pro

    r325 r327  
    2121; 
    2222;- 
    23 PRO cp, filenamein, filenameout, _EXTRA = ex 
     23PRO cp, filenamein, filenameout, _EXTRA=ex 
    2424; 
    2525  compile_opt idl2, strictarrsubs, obsolete 
    2626; 
    27   file_copy, filenamein, filenameout, _extra = ex 
     27  file_copy, filenamein, filenameout, _extra=ex 
    2828  RETURN 
    2929END 
  • trunk/SRC/Obsolete/imprime.pro

    r325 r327  
    2222; 
    2323;- 
    24 PRO imprime, filename, TRANS = trans, NB = nb 
     24PRO imprime, filename, TRANS=trans, NB=nb 
    2525; 
    2626; this is working only with unix/linux/osX machines 
  • trunk/SRC/Obsolete/juldate.pro

    r325 r327  
    4242; 
    4343;- 
    44 function juldate, vvdate, _EXTRA = ex 
     44function juldate, vvdate, _EXTRA=ex 
    4545; 
    4646  compile_opt idl2, strictarrsubs, obsolete 
  • trunk/SRC/Obsolete/lec.pro

    r325 r327  
    9696; @version 
    9797; $Id$ 
     98; 
    9899;- 
    99 function lec, nomchamp,date,nomexp,ECRIT=ecrit,ANOM=anom, BOITE = boite,EXPANOM=expanom, TOUT = tout, GRID = grid, NAME = name, filename = FILENAME 
     100FUNCTION lec, nomchamp,date,nomexp $ 
     101            , ECRIT=ecrit, ANOM=anom, BOITE=boite, EXPANOM=expanom $ 
     102            , TOUT=tout, GRID=grid, NAME=name, filename=FILENAME 
    100103; 
    101104  compile_opt idl2, strictarrsubs, obsolete 
  • trunk/SRC/Obsolete/meshlec.pro

    r325 r327  
    4646; 
    4747;- 
    48 PRO meshlec, nomfich, PASBLABLA = pasblabla,DOUBLE = double, GLAMBOUNDARY = glamboundary, GETDIMENSIONS = GETDIMENSIONS 
     48PRO meshlec, nomfich, PASBLABLA=pasblabla, DOUBLE=double $ 
     49           , GLAMBOUNDARY=glamboundary, GETDIMENSIONS=GETDIMENSIONS 
    4950; 
    5051  compile_opt idl2, strictarrsubs, obsolete 
  • trunk/SRC/Obsolete/ncdf_meshlec.pro

    r325 r327  
    1818; 
    1919;- 
    20 PRO ncdf_meshlec, filename, _EXTRA = ex 
     20PRO ncdf_meshlec, filename, _EXTRA=ex 
    2121; 
    2222  compile_opt idl2, strictarrsubs, obsolete 
  • trunk/SRC/Obsolete/nlec.pro

    r325 r327  
    6060; 
    6161;- 
    62 function nlec,name,debut,fin,nomexperience,BOITE=boite,DIREC=direc,GRILLE=grille,TOUT=tout $ 
    63               , STRUCTURE = structure, SEUILMIN = seuilmin, SEUILMAX = seuilmax, NAN = nan $ 
    64               , _EXTRA = ex 
     62FUNCTION nlec, name, debut, fin, nomexperience $ 
     63             , BOITE=boite, DIREC=direc, GRILLE=grille, TOUT=tout $ 
     64             , STRUCTURE=structure, SEUILMIN=seuilmin, SEUILMAX=seuilmax $ 
     65             , NAN=nan $ 
     66             , _EXTRA=ex 
    6567; 
    6668;------------------------------------------------------------ 
  • trunk/SRC/Obsolete/nlec5j.pro

    r325 r327  
    5555; 
    5656;- 
    57 function nlec5j, nom, numsortie, nbretps,BOITE = boite, GRILLE=grille,TOUT=tout, _EXTRA = ex 
     57function nlec5j, nom, numsortie, nbretps $ 
     58               ,BOITE=boite, GRILLE=grille, TOUT=tout, _EXTRA=ex 
    5859; 
    5960  compile_opt idl2, strictarrsubs, obsolete 
  • trunk/SRC/Obsolete/nlecan.pro

    r325 r327  
    5353; 
    5454;- 
    55 function nlecan, nom, numsortie79, nbretps,BOITE = boite,GRILLE=grille,TOUT=tout, _EXTRA = ex 
     55function nlecan, nom, numsortie79, nbretps $ 
     56               , BOITE=boite, GRILLE=grille, TOUT=tout, _EXTRA=ex 
    5657; 
    5758;------------------------------------------------------------ 
  • trunk/SRC/Obsolete/nlecmois.pro

    r325 r327  
    3131; 
    3232;- 
    33 function nlecmois,nom,numsortie79,nbretps ,BOITE=boite,GRILLE=grille,TOUT=tout, _EXTRA = ex 
     33function nlecmois, nom, numsortie79, nbretps $ 
     34                 , BOITE=boite, GRILLE=grille, TOUT=tout, _EXTRA=ex 
    3435; 
    3536;------------------------------------------------------------ 
  • trunk/SRC/Obsolete/nlecsaison.pro

    r325 r327  
    5454; 
    5555;- 
    56 function nlecsaison, nom, numsortie79, nbretps,BOITE = boite, GRILLE=grille,TOUT=tout, _EXTRA = ex 
     56function nlecsaison, nom, numsortie79, nbretps $ 
     57                   , BOITE=boite, GRILLE=grille, TOUT=tout, _EXTRA=ex 
    5758; 
    5859;------------------------------------------------------------ 
  • trunk/SRC/Obsolete/nlecserie.pro

    r325 r327  
    5151; 
    5252;- 
    53 function nlecserie, nom, date1, date2,BOITE = boite, GRILLE=grille,TOUT=tout, _EXTRA = ex 
     53function nlecserie, nom, date1, date2 $ 
     54                  , BOITE=boite, GRILLE=grille, TOUT=tout, _EXTRA=ex 
    5455; 
    5556;------------------------------------------------------------ 
  • trunk/SRC/Obsolete/norme.pro

    r325 r327  
    6262; 
    6363;- 
    64 FUNCTION norme, composanteu, composantev, BOXZOOM = boxzoom, DIREC = direc, _EXTRA = ex 
     64FUNCTION norme, composanteu, composantev $ 
     65              , BOXZOOM=boxzoom, DIREC=direc, _EXTRA=ex 
    6566; 
    6667  compile_opt idl2, strictarrsubs 
  • trunk/SRC/Obsolete/vairdate.pro

    r325 r327  
    4747; 
    4848;- 
    49 function vairdate, jdate,  ANNUEL = annuel, MENSUEL = mensuel, _EXTRA = ex 
     49function vairdate, jdate,  ANNUEL=annuel, MENSUEL=mensuel, _EXTRA=ex 
    5050; 
    5151  compile_opt idl2, strictarrsubs, obsolete 
  • trunk/SRC/Obsolete/vraidate.pro

    r325 r327  
    3434; 
    3535;- 
    36 function vraidate, date, GRADS = grads, _EXTRA = ex 
     36function vraidate, date, GRADS=grads, _EXTRA=ex 
    3737; 
    3838  compile_opt idl2, strictarrsubs, obsolete 
  • trunk/SRC/Picture/saveimage.pro

    r325 r327  
    9393;- 
    9494PRO saveimage, FILE, BMP=BMP, PNG=PNG, PICT=PICT, JPEG=JPEG, TIFF=TIFF, $ 
    95   QUALITY=QUALITY, DITHER=DITHER, CUBE=CUBE, QUIET=QUIET, MULTIPLE = multiple 
     95  QUALITY=QUALITY, DITHER=DITHER, CUBE=CUBE, QUIET=QUIET, MULTIPLE=multiple 
    9696; 
    9797  compile_opt idl2, strictarrsubs 
  • trunk/SRC/Postscript/closeps.pro

    r325 r327  
    2525; 
    2626;- 
    27 PRO closeps, INFOWIDGET = infowidget 
     27PRO closeps, INFOWIDGET=infowidget 
    2828; 
    2929compile_opt idl2, strictarrsubs 
  • trunk/SRC/Postscript/openps.pro

    r325 r327  
    5252; 
    5353;- 
    54 PRO openps, namepsin, FILENAME = filename, INFOWIDGET = infowidget $ 
    55             , KEEPPFONT = keeppfont, KEEP_PFONT = keep_pfont $ 
    56             , PORTRAIT = portrait, LANDSCAPE = landscape $ 
    57             , LIGHTNESS = Lightness,_EXTRA = ex 
     54PRO openps, namepsin, FILENAME=filename, INFOWIDGET=infowidget $ 
     55            , KEEPPFONT=keeppfont, KEEP_PFONT=keep_pfont $ 
     56            , PORTRAIT=portrait, LANDSCAPE=landscape $ 
     57            , LIGHTNESS=Lightness, _EXTRA=ex 
    5858; 
    5959; 
  • trunk/SRC/ReadWrite/ncdf_getatt.pro

    r325 r327  
    5454; 
    5555;- 
    56 PRO ncdf_getatt, fileid, varid, add_offset = add_offset, scale_factor = scale_factor, missing_value = missing_value, units = units, calendar = calendar 
     56PRO ncdf_getatt, fileid, varid, add_offset=add_offset $ 
     57               , scale_factor=scale_factor, missing_value=missing_value $ 
     58               , units=units, calendar=calendar 
    5759; 
    5860  compile_opt idl2, strictarrsubs 
  • trunk/SRC/ReadWrite/ncdf_getaxis.pro

    r325 r327  
    6262;- 
    6363PRO ncdf_getaxis, fileid, dimidx, dimidy, xaxis, yaxis $ 
    64                   , XAXISNAME = xaxisname, YAXISNAME = yaxisname $ 
    65                   , XDIMNAME = xdimname, YDIMNAME = ydimname $ 
    66                   , XYINDEX = xyindex, START1 = start1 $ 
    67                   , ROMSGRID = romsgrid, _EXTRA = ex 
     64                  , XAXISNAME=xaxisname, YAXISNAME=yaxisname $ 
     65                  , XDIMNAME=xdimname, YDIMNAME=ydimname $ 
     66                  , XYINDEX=xyindex, START1=start1 $ 
     67                  , ROMSGRID=romsgrid, _EXTRA=ex 
    6868; 
    6969  compile_opt idl2, strictarrsubs 
  • trunk/SRC/ReadWrite/ncdf_getmask.pro

    r325 r327  
    5959; 
    6060;- 
    61 FUNCTION ncdf_getmask, fileid, ADDSCL_BEFORE = addscl_before, MASKNAME = maskname, USEASMASK = useasmask $ 
    62               , MISSING_VALUE = missing_value, INVMASK = invmask, _EXTRA = ex 
     61FUNCTION ncdf_getmask, fileid, ADDSCL_BEFORE=addscl_before $ 
     62                     , MASKNAME=maskname, USEASMASK=useasmask $ 
     63                     , MISSING_VALUE=missing_value, INVMASK=invmask $ 
     64                     , _EXTRA=ex 
    6365; 
    6466  compile_opt idl2, strictarrsubs 
  • trunk/SRC/ReadWrite/ncdf_gettime.pro

    r325 r327  
    5252; $Id$ 
    5353;- 
    54 FUNCTION ncdf_gettime, filename, cdfid, TIMEVAR = timevar, CALLER = caller, ERR = err, _EXTRA = ex 
     54FUNCTION ncdf_gettime, filename, cdfid $ 
     55                     , TIMEVAR=timevar, CALLER=caller, ERR=err, _EXTRA=ex 
    5556; 
    5657  compile_opt idl2, strictarrsubs 
  • trunk/SRC/ReadWrite/read_grads.pro

    r325 r327  
    5959; 
    6060;- 
    61 FUNCTION read_grads, var, date1, date2, FILENAME = filename, BOX=box, TIMESTEP = timestep, EVERYTHING = everything, NOSTRUCT = nostruct, _EXTRA = ex 
     61FUNCTION read_grads, var, date1, date2 $ 
     62                   , FILENAME=filename, BOX=box, TIMESTEP=timestep $ 
     63                   , EVERYTHING=everything, NOSTRUCT=nostruct, _EXTRA=ex 
    6264; 
    6365  compile_opt idl2, strictarrsubs 
  • trunk/SRC/ReadWrite/read_oasis.pro

    r325 r327  
    4040; 
    4141;- 
    42 FUNCTION read_oasis, filename, varname, jpi, jpj, I2 = I2, I4 = i4, I8 = i8, R4 = r4 
     42FUNCTION read_oasis, filename, varname, jpi, jpj, I2=I2, I4=i4, I8=i8, R4=r4 
    4343; 
    4444  compile_opt idl2, strictarrsubs 
  • trunk/SRC/ReadWrite/readbat.pro

    r325 r327  
    2424; 
    2525;- 
    26 FUNCTION readbat, filename, ZERO = zero 
     26FUNCTION readbat, filename, ZERO=zero 
    2727; 
    2828  compile_opt idl2, strictarrsubs 
  • trunk/SRC/ReadWrite/readoldopadistcoast.pro

    r325 r327  
    7171; 
    7272;- 
    73 FUNCTION readoldopadistcoast, filename, jpiglo, jpjglo, jpk, IBLOC = ibloc, JPBYT = jpbyt, NUMREC = numrec 
     73FUNCTION readoldopadistcoast, filename, jpiglo, jpjglo, jpk $ 
     74                            , IBLOC=ibloc, JPBYT=jpbyt, NUMREC=numrec 
    7475; 
    7576; 
  • trunk/SRC/ReadWrite/readoldoparestart.pro

    r325 r327  
    134134; $Id$ 
    135135;- 
    136 PRO readoldoparestart, filename, jpiglo, jpjglo, jpk, IBLOC = ibloc, JPBYT = jpbyt, NUMREC = numrec, UB = ub, VB = vb, TB = tb, SB = sb, ROTB = rotb, HDIVB = hdivb, UN = un, VN = vn, TN = tn, SN = sn, ROTN = rotn, HDIVN = hdivn, GCX = gcx, GCXB = gcxb, ETAB = etab, ETAN = etan, BSFB = bsfb, BSFN = bsfn, BSFD = bsfd, EN = en 
     136PRO readoldoparestart, filename, jpiglo, jpjglo, jpk, IBLOC=ibloc, JPBYT=jpbyt, NUMREC=numrec, UB=ub, VB=vb, TB=tb, SB=sb, ROTB=rotb, HDIVB=hdivb, UN=un, VN=vn, TN=tn, SN=sn, ROTN=rotn, HDIVN=hdivn, GCX=gcx, GCXB=gcxb, ETAB=etab, ETAN=etan, BSFB=bsfb, BSFN=bsfn, BSFD=bsfd, EN=en 
    137137; 
    138138  compile_opt idl2, strictarrsubs 
  • trunk/SRC/ReadWrite/scanctl.pro

    r325 r327  
    4040; 
    4141;- 
    42 PRO scanctl, filename, filesname, jpt1file, varsname, varslev, swapbytes, bigendian, littleendian, f77sequential, fileheader, theader, xyheader, VARFMT = varfmt, _EXTRA = ex 
     42PRO scanctl, filename, filesname, jpt1file, varsname, varslev, swapbytes, bigendian, littleendian, f77sequential, fileheader, theader, xyheader, VARFMT=varfmt, _EXTRA=ex 
    4343; 
    4444  compile_opt idl2, strictarrsubs 
  • trunk/SRC/ReadWrite/write_ncdf.pro

    r312 r327  
    3232; cf details plus bas... 
    3333; 
    34 ;---------------------------------------------------------------------------------------------- 
    35  
    36 pro writenc_unlimdim_update, dnames_imposed, unl_imposed, fmtbase, nviv, iidp1st, nn, dst, iid, SUPERTABU=supertab                $    
    37                            , DIMSIZESU=dimsizes, UNLIMTABAU=unlimtaba, UNLIMAU=unlima                                             $ 
    38                            , DIMIDASU=dimidas, NDIMTOTU=ndimtot, DNAMOSSU=dnamoss, DNAMAU=dnama,IMPOSE_DNM_UNLU= impose_dnm_unl  
     34;- 
     35pro writenc_unlimdim_update, dnames_imposed, unl_imposed, fmtbase, nviv $ 
     36    , iidp1st, nn, dst, iid, SUPERTABU=supertab $ 
     37    , DIMSIZESU=dimsizes, UNLIMTABAU=unlimtaba, UNLIMAU=unlima $ 
     38    , DIMIDASU=dimidas, NDIMTOTU=ndimtot, DNAMOSSU=dnamoss, DNAMAU=dnama $ 
     39    , IMPOSE_DNM_UNLU=impose_dnm_unl  
    3940 
    4041 
     
    350351 
    351352 
    352 ;---------------------------------------------------------------------------------------------- 
    353 ; 
    354 ; 
     353; 
     354;+ 
    355355; SUBROUTINE (2)/(3) :  
    356 ; 
    357356; 
    358357; on remplace la 4ieme structure de structa par une liste chainee afin 
     
    362361; est pas active, i.e. cas par defaut) 
    363362; 
    364 ;---------------------------------------------------------------------------------------------- 
    365  
     363;- 
    366364function writenc_str2strlc, structa 
    367365 
     
    431429end 
    432430 
    433 ;---------------------------------------------------------------------------------------------- 
    434  
    435  
    436 ;---------------------------------------------------------------------------------------------- 
    437 ; 
     431;+ 
    438432; 
    439433; SUBROUTINE (3)/(3) :  
     
    446440; 
    447441; 
    448 ;---------------------------------------------------------------------------------------------- 
    449  
     442;- 
    450443function writenc_strlc2str, strwlist 
    451444 
     
    623616;  
    624617; @todo clem  
    625 ;- *  
    626 ; 
    627 ;------------------------------------------------------------ 
    628  
     618; 
     619;-  
    629620pro write_ncdf, var01,var02,var03,var04,var05,var06,var07,var08,var09,var10    $ ; RQ : if more than 30 variables is needed, simply add 
    630621               ,var11,var12,var13,var14,var15,var16,var17,var18,var19,var20    $ ;      var31,var32 etc... here and change nmaxvv to 32 ... 
     
    634625               ,VARNAME=namevquick                                             $ 
    635626                                                                               $ 
    636                ,NOT_SDISV = flag1                                              $ ; mots cles non utiles sauf cas particuliers... 
    637                ,NOT_OUASSALU = flag2                                           $ 
    638                ,OKNAN = oknan 
     627               ,NOT_SDISV=flag1                                              $ ; mots cles non utiles sauf cas particuliers... 
     628               ,NOT_OUASSALU=flag2                                           $ 
     629               ,OKNAN=oknan 
    639630 
    640631; 
  • trunk/SRC/ReadWrite/write_oasis.pro

    r325 r327  
    3434; 
    3535;- 
    36 PRO write_oasis, filename, varname, z2d, I2 = i2, I4 = i4, I8 = i8, R4 = r4, APPEND = append 
     36PRO write_oasis, filename, varname, z2d, I2=i2, I4=i4, I8=i8, R4=r4, APPEND=append 
    3737; 
    3838  compile_opt idl2, strictarrsubs 
  • trunk/SRC/Tests/TestsOld/tst_plt_old.pro

    r325 r327  
    1414; 
    1515;- 
    16 PRO tst_plt_old, IMAGE = image 
     16PRO tst_plt_old, IMAGE=image 
    1717; 
    1818  compile_opt idl2, strictarrsubs 
  • trunk/SRC/Tests/TestsOld/tst_pltt_old.pro

    r325 r327  
    1414; 
    1515;- 
    16 PRO tst_pltt_old, IMAGE = image 
     16PRO tst_pltt_old, IMAGE=image 
    1717; 
    1818  compile_opt idl2, strictarrsubs 
  • trunk/SRC/Tests/TestsOld/tst_pltz_old.pro

    r325 r327  
    1414; 
    1515;- 
    16 PRO tst_pltz_old, IMAGE = image 
     16PRO tst_pltz_old, IMAGE=image 
    1717; 
    1818  compile_opt idl2, strictarrsubs 
  • trunk/SRC/Tests/tst_initorca05_index.pro

    r325 r327  
    11;+ 
    22; 
    3 ; @file_comments 
    43; definition of the domain on ORCA2 but with i/j index instead of 
    54; longitude/latitude 
  • trunk/SRC/Tests/tst_initorca2_index.pro

    r237 r327  
    11;+ 
    22; 
    3 ; @file_comments 
    43; definition of the domain on ORCA2 but with i/j index instead of 
    54; longitude/latitude 
  • trunk/SRC/Tests/tst_plt.pro

    r325 r327  
    1414; 
    1515;- 
    16 PRO tst_plt, IMAGE = image 
     16PRO tst_plt, IMAGE=image 
    1717; 
    1818  compile_opt idl2, strictarrsubs 
  • trunk/SRC/Tests/tst_pltt.pro

    r325 r327  
    1414; 
    1515;- 
    16 PRO tst_pltt, IMAGE = image 
     16PRO tst_pltt, IMAGE=image 
    1717; 
    1818  compile_opt idl2, strictarrsubs 
  • trunk/SRC/Tests/tst_pltz.pro

    r325 r327  
    1414; 
    1515;- 
    16 PRO tst_pltz, IMAGE = image 
     16PRO tst_pltz, IMAGE=image 
    1717; 
    1818  compile_opt idl2, strictarrsubs 
  • trunk/SRC/Textoidl/sub_sup_idl.pro

    r325 r327  
    3232; RELEASE: 
    3333;       $Name: Rel_2_1_2 $ 
     34; 
    3435;- 
    35 FUNCTION Sub_sup_idl, token,  FORCE_UD = force_ud 
     36FUNCTION sub_sup_idl, token,  FORCE_UD=force_ud 
    3637; 
    3738  compile_opt idl2, strictarrsubs 
     
    4950 
    5051END 
    51  
    52  
  • trunk/SRC/Textoidl/translate_sub_super.pro

    r325 r327  
    6464; @version 
    6565; $Id$ 
     66; 
    6667;- 
    67 FUNCTION sub_sup_idl, token,  FORCE_UD = force_ud 
     68FUNCTION sub_sup_idl, token, FORCE_UD=force_ud 
    6869; 
    6970  compile_opt idl2, strictarrsubs 
  • trunk/SRC/ToBeReviewed/CALCULS/depth2floatlevel.pro

    r325 r327  
    3838; 
    3939;- 
    40 FUNCTION depth2floatlevel, tab, NOMASK = nomask 
     40FUNCTION depth2floatlevel, tab, NOMASK=nomask 
    4141; 
    4242  compile_opt idl2, strictarrsubs 
  • trunk/SRC/ToBeReviewed/CALCULS/depth2level.pro

    r325 r327  
    4141; $Id$ 
    4242;- 
    43 FUNCTION depth2level, tab, LOWER = lower, UPPER = upper, CLOSER = closer $ 
    44                       , NOMASK = nomask, _EXTRA = ex 
     43FUNCTION depth2level, tab, LOWER=lower, UPPER=upper, CLOSER=closer $ 
     44                         , NOMASK=nomask, _EXTRA=ex 
    4545; 
    4646  compile_opt idl2, strictarrsubs 
  • trunk/SRC/ToBeReviewed/CALCULS/depth2mask.pro

    r325 r327  
    2828; 
    2929;- 
    30 FUNCTION depth2mask, tab, _EXTRA = ex 
     30FUNCTION depth2mask, tab, _EXTRA=ex 
    3131; 
    3232  compile_opt idl2, strictarrsubs 
  • trunk/SRC/ToBeReviewed/CALCULS/floatlevel2depth.pro

    r325 r327  
    3434; 
    3535;- 
    36 FUNCTION floatlevel2depth, tab, NOMASK = nomask 
     36FUNCTION floatlevel2depth, tab, NOMASK=nomask 
    3737; 
    3838  compile_opt idl2, strictarrsubs 
  • trunk/SRC/ToBeReviewed/CALCULS/grossemoyenne.pro

    r325 r327  
    7777; @version 
    7878; $Id$ 
     79; 
    7980;- 
    80 FUNCTION grossemoyenne, tab, direc, BOXZOOM = boxzoom, INTEGRATION = integration $ 
    81                         , NAN = nan, NODOMDEF = nodomdef, WDEPTH = wdepth $ 
    82                         , SPATIALFIRST = spatialfirst, TEMPORALFIRST = temporalfirst $ 
    83                         , _EXTRA = ex 
     81FUNCTION grossemoyenne, tab, direc, BOXZOOM=boxzoom, INTEGRATION=integration $ 
     82                      , NAN=nan, NODOMDEF=nodomdef, WDEPTH=wdepth $ 
     83                      , SPATIALFIRST=spatialfirst, TEMPORALFIRST=temporalfirst $ 
     84                      , _EXTRA=ex 
    8485; 
    8586  compile_opt idl2, strictarrsubs 
  • trunk/SRC/ToBeReviewed/CALCULS/hdyn.pro

    r325 r327  
    6565; 
    6666;- 
    67 FUNCTION hdyn, tabsn, tabtn, TREF = tref, SREF = sref, PROFREF = profref, LEVEL = level, GILL = gill, SURFACE_LEVEL = surface_level 
     67FUNCTION hdyn, tabsn, tabtn, TREF=tref, SREF=sref $ 
     68             , PROFREF=profref, LEVEL=level, GILL=gill $ 
     69             , SURFACE_LEVEL=surface_level 
    6870; 
    6971  compile_opt idl2, strictarrsubs 
  • trunk/SRC/ToBeReviewed/CALCULS/level2depth.pro

    r325 r327  
    2828; 
    2929;- 
    30 FUNCTION level2depth, tab, NOMASK = nomask 
     30FUNCTION level2depth, tab, NOMASK=nomask 
    3131; 
    3232  compile_opt idl2, strictarrsubs 
  • trunk/SRC/ToBeReviewed/CALCULS/moyenne.pro

    r325 r327  
    6565; 
    6666;- 
    67 FUNCTION moyenne, tab, direc, BOXZOOM = boxzoom, INTEGRATION = integration $ 
    68                   , NAN = nan, NODOMDEF = nodomdef, WDEPTH = wdepth $ 
    69                   , _EXTRA = ex 
     67FUNCTION moyenne, tab, direc, BOXZOOM=boxzoom, INTEGRATION=integration $ 
     68                , NAN=nan, NODOMDEF=nodomdef, WDEPTH=wdepth $ 
     69                , _EXTRA=ex 
    7070; 
    7171  compile_opt idl2, strictarrsubs 
  • trunk/SRC/ToBeReviewed/CALCULS/remplit.pro

    r325 r327  
    5353; 
    5454;- 
    55 FUNCTION remplit, zinput, NAN = nan, NITER = niter, BASIQUE = basique, MASK = mask, FILLXDIR = fillxdir, FILLYDIR = fillydir, FILLVAL = fillval, _EXTRA = ex 
     55FUNCTION remplit, zinput, NAN=nan, NITER=niter $ 
     56                , BASIQUE=basique, MASK=mask $ 
     57                , FILLXDIR=fillxdir, FILLYDIR=fillydir, FILLVAL=fillval $ 
     58                , _EXTRA=ex 
    5659; 
    5760  compile_opt idl2, strictarrsubs 
  • trunk/SRC/ToBeReviewed/CALCULS/rhon.pro

    r325 r327  
    3535; 
    3636;- 
    37 FUNCTION rhon, sn, tn, INSITU = insitu, SIGMA_N = sigma_n 
     37FUNCTION rhon, sn, tn, INSITU=insitu, SIGMA_N=sigma_n 
    3838; 
    3939  compile_opt idl2, strictarrsubs 
  • trunk/SRC/ToBeReviewed/GRILLE/decoupeterre.pro

    r325 r327  
    6262; 
    6363;- 
    64 PRO decoupeterre, mask, glam, gphi, gdep, TYPE = type, TRI = tri, INDICEZOOM = indicezoom, COINMONTE = coinmonte, COINDESCEND = coindescend, WDEPTH = wdepth, REALSECTION = realsection, USETRI = usetri, _EXTRA = ex 
     64PRO decoupeterre, mask, glam, gphi, gdep $ 
     65                , TYPE=type, TRI=tri, INDICEZOOM=indicezoom $ 
     66                , COINMONTE=coinmonte, COINDESCEND=coindescend $ 
     67                , WDEPTH=wdepth, REALSECTION=realsection, USETRI=usetri $ 
     68                , _EXTRA=ex 
    6569; 
    6670  compile_opt idl2, strictarrsubs 
  • trunk/SRC/ToBeReviewed/GRILLE/domdef.pro

    r325 r327  
    9292; seb: output pas clair/ pas d'input required? 
    9393;- 
    94 PRO domdef, x1, x2, y1, y2, z1, z2, FINDALWAYS = findalways $ 
    95             , GRIDTYPE = gridtype, MEMEINDICES = memeindices $ 
    96             , XINDEX = xindex, YINDEX = yindex, ZINDEX = zindex $ 
    97             , ENDPOINTS = endpoints, TYPE = type $ 
    98             , INDEX = index, _EXTRA = ex 
     94PRO domdef, x1, x2, y1, y2, z1, z2, FINDALWAYS=findalways $ 
     95            , GRIDTYPE=gridtype, MEMEINDICES=memeindices $ 
     96            , XINDEX=xindex, YINDEX=yindex, ZINDEX=zindex $ 
     97            , ENDPOINTS=endpoints, TYPE=type $ 
     98            , INDEX=index, _EXTRA=ex 
    9999; 
    100100  compile_opt idl2, strictarrsubs 
  • trunk/SRC/ToBeReviewed/GRILLE/grille.pro

    r325 r327  
    109109; 
    110110;- 
    111 PRO grille, mask, glam, gphi, gdep, nx, ny, nz, firstx, firsty, firstz, lastx, lasty, lastz, e1, e2, e3, TRI = tri, NOTRI = notri, TOUT = tout, FORPLT = forplt, TYPE = type, WDEPTH = wdepth, _EXTRA = ex 
     111PRO grille, mask, glam, gphi, gdep, nx, ny, nz $ 
     112          , firstx, firsty, firstz, lastx, lasty, lastz $ 
     113          , e1, e2, e3 $ 
     114          , TRI=tri, NOTRI=notri, TOUT=tout, FORPLT=forplt $ 
     115          , TYPE=type, WDEPTH=wdepth, _EXTRA=ex 
    112116; 
    113117  compile_opt idl2, strictarrsubs 
  • trunk/SRC/ToBeReviewed/GRILLE/tracegrille.pro

    r325 r327  
    5252; 
    5353;- 
    54 PRO tracegrille, glamin, gphiin, OCEAN = ocean, EARTH = earth $ 
    55                  , XSTRIDE = xstride, YSTRIDE = ystride, RMOUT = rmout $ 
    56                  , _EXTRA = extra 
     54PRO tracegrille, glamin, gphiin, OCEAN=ocean, EARTH=earth $ 
     55                 , XSTRIDE=xstride, YSTRIDE=ystride, RMOUT=rmout $ 
     56                 , _EXTRA=extra 
    5757; 
    5858  compile_opt idl2, strictarrsubs 
  • trunk/SRC/ToBeReviewed/HOPE/computehopegrid.pro

    r325 r327  
    3737; 
    3838;- 
    39 PRO computehopegrid, xaxis, yaxis, zaxis, linetype, FORTHEMASK = forthemask, WPOINT = wpoint, FIRSTS = firsts, LASTS = lasts, PTTYPE = pttype 
     39PRO computehopegrid, xaxis, yaxis, zaxis, linetype $ 
     40                   , FORTHEMASK=forthemask, WPOINT=wpoint $ 
     41                   , FIRSTS=firsts, LASTS=lasts, PTTYPE=pttype 
    4042; 
    4143  compile_opt idl2, strictarrsubs 
  • trunk/SRC/ToBeReviewed/HOPE/cw_selectinterval.pro

    r325 r327  
    4141; 
    4242;+ 
     43; 
    4344; @file_comments 
    4445; 
     
    6364; 
    6465;- 
    65 function cw_selectinterval_get_value, id 
     66FUNCTION cw_selectinterval_get_value, id 
    6667; 
    6768  compile_opt idl2, strictarrsubs 
     
    108109; 
    109110;- 
    110 function cw_selectinterval_event, event 
     111FUNCTION cw_selectinterval_event, event 
    111112; 
    112113  compile_opt idl2, strictarrsubs 
     
    128129; 
    129130;+ 
     131; 
    130132; @file_comments 
    131133; 
     
    155157; 
    156158;- 
    157 FUNCTION cw_selectinterval, parent, vecteur, _EXTRA = ex 
     159FUNCTION cw_selectinterval, parent, vecteur, _EXTRA=ex 
    158160; 
    159161  compile_opt idl2, strictarrsubs 
  • trunk/SRC/ToBeReviewed/HOPE/domainpart.pro

    r231 r327  
    2929; 
    3030;- 
    31 pro domainpart, top_uvalue, basedomain, selected, DESTROY = destroy 
     31PRO domainpart, top_uvalue, basedomain, selected, DESTROY=destroy 
    3232; 
    3333  compile_opt idl2, strictarrsubs 
  • trunk/SRC/ToBeReviewed/HOPE/read_hope.pro

    r325 r327  
    315315; 
    316316;- 
    317 FUNCTION read_hope, typein, varnamein, FILENAME = filename, XLIMITS = xlimits, YLIMITS = ylimits,  ZLIMITS = zlimits, TLIMITS = tlimits, ODDPT = oddpt, ODDEVENPT = oddevenpt, EVENPT = evenpt, _EXTRA = ex 
     317FUNCTION read_hope, typein, varnamein, FILENAME=filename $ 
     318                  , XLIMITS=xlimits, YLIMITS=ylimits, ZLIMITS=zlimits $ 
     319                  , TLIMITS=tlimits, ODDPT=oddpt, ODDEVENPT=oddevenpt $ 
     320                  , EVENPT=evenpt, _EXTRA=ex 
    318321; 
    319322  compile_opt idl2, strictarrsubs 
  • trunk/SRC/ToBeReviewed/HOPE/xrh.pro

    r325 r327  
    2525; 
    2626;- 
    27 PRO xrh, _EXTRA = ex 
     27PRO xrh, _EXTRA=ex 
    2828; 
    2929  compile_opt idl2, strictarrsubs 
  • trunk/SRC/ToBeReviewed/INIT/initncdf.pro

    r325 r327  
    5555;- 
    5656PRO initncdf, ncfilein $ 
    57               , ZAXISNAME = zaxisname, START1 = start1 $ 
    58               , XYINDEX = xyindex, ZINDEX = zindex $ 
    59               , _EXTRA = ex 
     57              , ZAXISNAME=zaxisname, START1=start1 $ 
     58              , XYINDEX=xyindex, ZINDEX=zindex $ 
     59              , _EXTRA=ex 
    6060; 
    6161  compile_opt idl2, strictarrsubs 
  • trunk/SRC/ToBeReviewed/LECTURE/GRIB/bit2int.pro

    r262 r327  
    3434; 
    3535;- 
    36 FUNCTION bit2int, bitin, CHECKNEG = checkneg 
     36FUNCTION bit2int, bitin, CHECKNEG=checkneg 
    3737; 
    3838  compile_opt idl2, strictarrsubs 
  • trunk/SRC/ToBeReviewed/LECTURE/GRIB/read_grib.pro

    r325 r327  
    2727; 
    2828;- 
    29 FUNCTION read_grib, varcode, date1, date2, FILE = file 
     29FUNCTION read_grib, varcode, date1, date2, FILE=file 
    3030; 
    3131  compile_opt idl2, strictarrsubs 
  • trunk/SRC/ToBeReviewed/LECTURE/litchamp.pro

    r325 r327  
    9999; 
    100100;- 
    101 FUNCTION litchamp, struct, GRID = grid, NAME = name, UNIT = unit, EXP = exp, DATE = date $ 
    102                    , LEVEL = level, MASK = mask 
     101FUNCTION litchamp, struct, GRID=grid, NAME=name, UNIT=unit $ 
     102                 , EXP=exp, DATE=date $ 
     103                 , LEVEL=level, MASK=mask 
    103104; 
    104105  compile_opt idl2, strictarrsubs 
  • trunk/SRC/ToBeReviewed/LECTURE/ncdf_lec.pro

    r325 r327  
    4444; 
    4545;- 
    46 FUNCTION ncdf_lec,nom,ATT=att,DIM=dim,VAR=var, IODIR = iodir, _EXTRA = ex 
     46FUNCTION ncdf_lec,nom,ATT=att,DIM=dim,VAR=var, IODIR=iodir, _EXTRA=ex 
    4747; 
    4848  compile_opt idl2, strictarrsubs 
  • trunk/SRC/ToBeReviewed/LECTURE/read_ncdf.pro

    r325 r327  
    9797; 
    9898;- 
    99 FUNCTION read_ncdf, name, beginning, ending, compatibility, BOXZOOM = boxzoom, FILENAME = filename $ 
    100                     , PARENTIN = parentin, TIMESTEP = timestep, ADDSCL_BEFORE = addscl_before $ 
    101                     , TOUT = tout, NOSTRUCT = nostruct, CONT_NOFILL = CONT_NOFILL, INIT = init $ 
    102                     , GRID = grid, CALLITSELF = callitself, DIREC = direc $ 
    103                     , ZETAFILENAME = zetafilename, ZETAZERO = zetazero $ 
    104                     , _EXTRA = ex 
     99FUNCTION read_ncdf, name, beginning, ending, compatibility $ 
     100                  , BOXZOOM=boxzoom, FILENAME=filename $ 
     101                  , PARENTIN=parentin, TIMESTEP=timestep $ 
     102                  , ADDSCL_BEFORE=addscl_before $ 
     103                  , TOUT=tout, NOSTRUCT=nostruct, CONT_NOFILL=CONT_NOFILL, INIT=init $ 
     104                  , GRID=grid, CALLITSELF=callitself, DIREC=direc $ 
     105                  , ZETAFILENAME=zetafilename, ZETAZERO=zetazero $ 
     106                  , _EXTRA=ex 
    105107; 
    106108  compile_opt idl2, strictarrsubs 
  • trunk/SRC/ToBeReviewed/LECTURE/xncdf_lec.pro

    r325 r327  
    6464; @version 
    6565; $Id$ 
     66; 
    6667;- 
    67 FUNCTION xncdf_lec, name, ATT = att, COUNT = count, GROUP = group, OFFSET = offset, IODIR = iodir, SHIFT = shift,  STRIDE = stride, VAR = var 
     68FUNCTION xncdf_lec, name, ATT=att, COUNT=count, GROUP=group, OFFSET=offset $ 
     69                  , IODIR=iodir, SHIFT=shift, STRIDE=stride, VAR=var 
    6870; 
    6971  compile_opt idl2, strictarrsubs 
     
    213215; @version 
    214216; $Id$ 
     217; 
    215218;- 
    216 PRO wid_var_event,  event 
     219PRO wid_var_event, event 
    217220; 
    218221  compile_opt idl2, strictarrsubs 
     
    496499; @version 
    497500; $Id$ 
     501; 
    498502;- 
    499503PRO xncdf_lec_event, event 
  • trunk/SRC/ToBeReviewed/MATRICE/colle.pro

    r325 r327  
    7575; 
    7676;- 
    77 FUNCTION colle, a0, a1, a2, a3, a4, a5, a6, a7, a8, a9, a10, a11, a12, a13, a14, a15, a16, a17, a18, a19, a20, SAUVE = sauve 
     77FUNCTION colle, a0, a1, a2, a3, a4, a5, a6, a7, a8, a9 $ 
     78              , a10, a11, a12, a13, a14, a15, a16, a17, a18, a19, a20 $ 
     79              , SAUVE=sauve 
    7880; 
    7981  compile_opt idl2, strictarrsubs 
  • trunk/SRC/ToBeReviewed/PLOTS/DESSINE/bar_plot.pro

    r325 r327  
    135135          BARWIDTH=barwidth, BARSPACE=barspace, BAROFFSET=baroffset, $ 
    136136          OUTLINE=outline, OVERPLOT=overplot, BACKGROUND=background, $ 
    137           ROTATE=rotate, _EXTRA = ex 
     137          ROTATE=rotate, _EXTRA=ex 
    138138; 
    139139  compile_opt idl2, strictarrsubs 
  • trunk/SRC/ToBeReviewed/PLOTS/DESSINE/plt.pro

    r326 r327  
    195195; "UNVECTSUR"+ quelques trucs dans la routine. 
    196196;- 
    197 PRO plt, tab1, param2, param3, param4, REALCONT = realcont, CONTOUR = contour $ 
    198          , INTERVALLE = intervalle, INV = inv, GRIDTYPE = gridtype, BOXZOOM = boxzoom $ 
    199          , CONTINTERVALLE = contintervalle, LABEL = label, CONTLABEL = contlabel $ 
    200          , STYLE = style, CONTMAX = contmax, CONTMIN = contmin, NLEVEL = nlevel, CONTNLEVEL = contnlevel $ 
    201          , VECTEUR = vecteur, MAP = map, MININ = minin, MAXIN = maxin $ 
    202          , NOFILL = nofill, CONT_NOFILL = cont_nofill $ 
    203          , USETRI = usetri, NOTRI = notri, MASKFILL = maskfill $ 
    204          , DUPLICATE = duplicate, STRICTFILL = strictfill, OVERPLOT = overplot $ 
    205          , DECIMATETRI = decimatetri,  LABMAP = labmap, _EXTRA = ex 
     197PRO plt, tab1, param2, param3, param4, REALCONT=realcont, CONTOUR=contour $ 
     198       , INTERVALLE=intervalle, INV=inv, GRIDTYPE=gridtype, BOXZOOM=boxzoom $ 
     199       , CONTINTERVALLE=contintervalle, LABEL=label, CONTLABEL=contlabel $ 
     200       , STYLE=style, CONTMAX=contmax, CONTMIN=contmin, NLEVEL=nlevel $ 
     201       , CONTNLEVEL=contnlevel $ 
     202       , VECTEUR=vecteur, MAP=map, MININ=minin, MAXIN=maxin $ 
     203       , NOFILL=nofill, CONT_NOFILL=cont_nofill $ 
     204       , USETRI=usetri, NOTRI=notri, MASKFILL=maskfill $ 
     205       , DUPLICATE=duplicate, STRICTFILL=strictfill, OVERPLOT=overplot $ 
     206       , DECIMATETRI=decimatetri,  LABMAP=labmap, _EXTRA=ex 
    206207; 
    207208  compile_opt idl2, strictarrsubs 
  • trunk/SRC/ToBeReviewed/PLOTS/DESSINE/plt1d.pro

    r325 r327  
    104104; 
    105105;- 
    106 PRO plt1d, tab, param2, param3, param4, BOXZOOM = boxzoom, SIN = sin $ 
    107            , MININ = minin, MAXIN = maxin, TYPEIN = typein, ENDPOINTS = endpoints $ 
    108            , COL1D = col1d, STY1D = sty1d, OV1D = ov1d, X = x, Y = y, Z = z, TT = tt $ 
    109            , REVERSE_X = reverse_x, REVERSE_Y = reverse_y, SWITCHXY = switchxy $ 
    110            , _EXTRA = ex 
     106PRO plt1d, tab, param2, param3, param4, BOXZOOM=boxzoom, SIN=sin $ 
     107         , MININ=minin, MAXIN=maxin, TYPEIN=typein, ENDPOINTS=endpoints $ 
     108         , COL1D=col1d, STY1D=sty1d, OV1D=ov1d, X=x, Y=y, Z=z, TT=tt $ 
     109         , REVERSE_X=reverse_x, REVERSE_Y=reverse_y, SWITCHXY=switchxy $ 
     110         , _EXTRA=ex 
    111111; 
    112112  compile_opt idl2, strictarrsubs 
  • trunk/SRC/ToBeReviewed/PLOTS/DESSINE/pltbase.pro

    r325 r327  
    110110; 
    111111;- 
    112 PRO pltbase, z2d, x, y, mask, xm, ym, levels, colors, UNSUR2 = unsur2, CONTOUR = contour $ 
    113              , NOCONTOUR = nocontour, NOFILL = nofill $ 
    114              , TRICHAMP = trichamp, TRIMSK = trimsk $ 
    115              , REALCONT = realcont, NAN = nan, USETRI = usetri $ 
    116              , COLORTRICHAMP = colortrichamp, COLORTRIMASK = colortrimask $ 
    117              , COLORTRINAN = colortrinan $ 
    118              , COLORPOINTS = colorpoints, DRAWPOINTS = drawpoints $ 
    119              , TH_TRICHAMP = th_trichamp, TH_TRIMASK = th_trimask $ 
    120              , DESSTRICHAMP = desstrichamp, DESSTRIMASK = desstrimask $ 
    121              , DESSTRINAN = desstrinan, COLOR_C = color_c $ 
    122              , I_COLORS = i_colors,  CONT_COLOR = CONT_COLOR $ 
    123              , CONT_NOFILL = cont_nofill, UNLABSUR = unlabsur $ 
    124              , COINMONTEMASK = coinmontemask, COINDESCENDMASK = coindescendmask $ 
    125              , COINMONTENAN = coinmontenan, COINDESCENDNAN = coindescendnan $ 
    126              , INDICEZOOMMASK = indicezoommask, INDICEZOOMNAN = indicezoomnan $ 
    127              , MASKORG = maskorg, MASKNAN = masknan, TRINAN = trinan $ 
    128              , FORPLT = forplt, REALSECTION = realsection $ 
    129              , MORE = more, EXCHANGE_XY = exchange_xy $ 
    130              , _EXTRA = ex 
     112PRO pltbase, z2d, x, y, mask, xm, ym, levels, colors $ 
     113           , UNSUR2=unsur2, CONTOUR=contour $ 
     114           , NOCONTOUR=nocontour, NOFILL=nofill $ 
     115           , TRICHAMP=trichamp, TRIMSK=trimsk $ 
     116           , REALCONT=realcont, NAN=nan, USETRI=usetri $ 
     117           , COLORTRICHAMP=colortrichamp, COLORTRIMASK=colortrimask $ 
     118           , COLORTRINAN=colortrinan $ 
     119           , COLORPOINTS=colorpoints, DRAWPOINTS=drawpoints $ 
     120           , TH_TRICHAMP=th_trichamp, TH_TRIMASK=th_trimask $ 
     121           , DESSTRICHAMP=desstrichamp, DESSTRIMASK=desstrimask $ 
     122           , DESSTRINAN=desstrinan, COLOR_C=color_c $ 
     123           , I_COLORS=i_colors,  CONT_COLOR=CONT_COLOR $ 
     124           , CONT_NOFILL=cont_nofill, UNLABSUR=unlabsur $ 
     125           , COINMONTEMASK=coinmontemask, COINDESCENDMASK=coindescendmask $ 
     126           , COINMONTENAN=coinmontenan, COINDESCENDNAN=coindescendnan $ 
     127           , INDICEZOOMMASK=indicezoommask, INDICEZOOMNAN=indicezoomnan $ 
     128           , MASKORG=maskorg, MASKNAN=masknan, TRINAN=trinan $ 
     129           , FORPLT=forplt, REALSECTION=realsection $ 
     130           , MORE=more, EXCHANGE_XY=exchange_xy $ 
     131           , _EXTRA=ex 
    131132; 
    132133  compile_opt idl2, strictarrsubs 
  • trunk/SRC/ToBeReviewed/PLOTS/DESSINE/pltsc.pro

    r325 r327  
    5252; 
    5353;- 
    54 PRO pltsc, tab1, tab2, min1, max1, min2, max2, varname2, BOXZOOM = boxzoom, $ 
    55            COL1D=col1d, STY1D=sty1d, OV1D=ov1d, _EXTRA = ex 
     54PRO pltsc, tab1, tab2, min1, max1, min2, max2, varname2, BOXZOOM=boxzoom, $ 
     55           COL1D=col1d, STY1D=sty1d, OV1D=ov1d, _EXTRA=ex 
    5656; 
    5757; scatter plot (inspired from plt1d) 
  • trunk/SRC/ToBeReviewed/PLOTS/DESSINE/pltt.pro

    r326 r327  
    202202; 
    203203;- 
    204 PRO pltt, tab, giventype, givenmin, givenmax, datmin, datmax, BOXZOOM = boxzoom, CONTOUR = contour $ 
    205           , ENDPOINTS = endpoints, INTERVALLE = intervalle, INV = inv  $ 
    206           , CONTINTERVALLE = contintervalle, LABEL = label, CONTLABEL = contlabel $ 
    207           , STYLE = style, CONTMAX = contmax, CONTMIN = contmin $ 
    208           , NOFILL = nofill, NLEVEL = nlevel, CONTNLEVEL = contnlevel $ 
    209           , COL1D = col1d, STY1D = sty1d, MININ = minin, MAXIN = maxin $ 
    210           , OV1D = ov1d, FILTER = filter, TREND_TYPE = trend_type $ 
    211           , REPEAT_C = repeat_c, TYPEIN = typein, XT = XT, YT = YT, ZT = zt $ 
    212           , TT = tt, STRICTFILL = strictfill, OVERPLOT = overplot $ 
    213           , EXCHANGE_XY = exchange_xy $ 
    214           , _EXTRA = ex 
     204PRO pltt, tab, giventype, givenmin, givenmax, datmin, datmax $ 
     205        , BOXZOOM=boxzoom, CONTOUR=contour $ 
     206        , ENDPOINTS=endpoints, INTERVALLE=intervalle, INV=inv  $ 
     207        , CONTINTERVALLE=contintervalle, LABEL=label, CONTLABEL=contlabel $ 
     208        , STYLE=style, CONTMAX=contmax, CONTMIN=contmin $ 
     209        , NOFILL=nofill, NLEVEL=nlevel, CONTNLEVEL=contnlevel $ 
     210        , COL1D=col1d, STY1D=sty1d, MININ=minin, MAXIN=maxin $ 
     211        , OV1D=ov1d, FILTER=filter, TREND_TYPE=trend_type $ 
     212        , REPEAT_C=repeat_c, TYPEIN=typein, XT=XT, YT=YT, ZT=zt $ 
     213        , TT=tt, STRICTFILL=strictfill, OVERPLOT=overplot $ 
     214        , EXCHANGE_XY=exchange_xy $ 
     215        , _EXTRA=ex 
    215216; 
    216217  compile_opt idl2, strictarrsubs 
  • trunk/SRC/ToBeReviewed/PLOTS/DESSINE/pltv.pro

    r325 r327  
    7373; 
    7474;- 
    75 PRO pltv, data, min, max, BOTTOM = bottom, BOXZOOM = boxzoom $ 
    76           , C_MASK = c_mask, C_NAN = c_nan, INV = inv,  MININ = minin, MAXIN = maxin $ 
    77           , MASKVAL = maskval, NCOLORS = ncolors, NOINTERP = nointerp $ 
    78           , _EXTRA = ex 
     75PRO pltv, data, min, max, BOTTOM=bottom, BOXZOOM=boxzoom $ 
     76        , C_MASK=c_mask, C_NAN=c_nan, INV=inv, MININ=minin, MAXIN=maxin $ 
     77        , MASKVAL=maskval, NCOLORS=ncolors, NOINTERP=nointerp $ 
     78        , _EXTRA=ex 
    7979; 
    8080  compile_opt idl2, strictarrsubs 
  • trunk/SRC/ToBeReviewed/PLOTS/DESSINE/pltz.pro

    r326 r327  
    166166; 
    167167;- 
    168 PRO pltz, tab, giventype, givenmin, givenmax, BOXZOOM = boxzoom, CONTOUR = contour $ 
    169           , ENDPOINTS = endpoints, INTERVALLE = intervalle, INV = inv, ZRATIO = zratio $ 
    170           , CONTINTERVALLE = contintervalle, LABEL = label, CONTLABEL = contlabel $ 
    171           , STYLE = style, CONTMAX = contmax, SIN = sin, TYPEIN = typein $ 
    172           , CONTMIN = contmin, NLEVEL = nlevel, CONTNLEVEL = contnlevel $ 
    173           , NOFILL = nofill, NOTRI = notri, USETRI = usetri, FILLXDIR = fillxdir $ 
    174           , ZOOM = zoom, XZ = xz, YZ = yz, MININ = minin, MAXIN = maxin $ 
    175           , STRICTFILL = strictfill, OVERPLOT = overplot, MASKFILL = maskfill $ 
    176           , WDEPTH = wdepth, REALSECTION = realsection $ 
    177           , _EXTRA = ex 
     168PRO pltz, tab, giventype, givenmin, givenmax $ 
     169        , BOXZOOM=boxzoom, CONTOUR=contour $ 
     170        , ENDPOINTS=endpoints, INTERVALLE=intervalle, INV=inv $ 
     171        , ZRATIO=zratio $ 
     172        , CONTINTERVALLE=contintervalle, LABEL=label, CONTLABEL=contlabel $ 
     173        , STYLE=style, CONTMAX=contmax, SIN=sin, TYPEIN=typein $ 
     174        , CONTMIN=contmin, NLEVEL=nlevel, CONTNLEVEL=contnlevel $ 
     175        , NOFILL=nofill, NOTRI=notri, USETRI=usetri, FILLXDIR=fillxdir $ 
     176        , ZOOM=zoom, XZ=xz, YZ=yz, MININ=minin, MAXIN=maxin $ 
     177        , STRICTFILL=strictfill, OVERPLOT=overplot, MASKFILL=maskfill $ 
     178        , WDEPTH=wdepth, REALSECTION=realsection $ 
     179        , _EXTRA=ex 
    178180; 
    179181  compile_opt idl2, strictarrsubs 
  • trunk/SRC/ToBeReviewed/PLOTS/DESSINE/sbar_plot.pro

    r325 r327  
    4343; 
    4444;- 
    45 PRO sbar_plot, values, COLORS = colors, NOREINITPLT = noreinitplt, _EXTRA = ex 
     45PRO sbar_plot, values, COLORS=colors, NOREINITPLT=noreinitplt, _EXTRA=ex 
    4646; 
    4747  compile_opt idl2, strictarrsubs 
  • trunk/SRC/ToBeReviewed/PLOTS/DESSINE/scontour.pro

    r325 r327  
    3030; 
    3131;- 
    32 PRO scontour, x, y, z, NOREINITPLT = noreinitplt, _EXTRA = ex 
     32PRO scontour, x, y, z, NOREINITPLT=noreinitplt, _EXTRA=ex 
    3333; 
    3434  compile_opt idl2, strictarrsubs 
  • trunk/SRC/ToBeReviewed/PLOTS/DESSINE/splot.pro

    r325 r327  
    3434; 
    3535;- 
    36 PRO splot, x, y, NOREINITPLT = noreinitplt, _EXTRA = ex 
     36PRO splot, x, y, NOREINITPLT=noreinitplt, _EXTRA=ex 
    3737; 
    3838  compile_opt idl2, strictarrsubs 
  • trunk/SRC/ToBeReviewed/PLOTS/DESSINE/tvplus.pro

    r325 r327  
    8787; 
    8888;- 
    89 PRO tvplus, z2d, cellsize, BOTTOM = bottom, C_MASK = c_mask, C_NAN = c_nan, WINDOW = window $ 
    90             , MIN = min, MAX = max, MASK = mask, OFFSET = offset, NOUSEINFOS = NOUSEINFOS $ 
    91             , NCOLORS = ncolors, NOINTERP = nointerp, _EXTRA = ex 
     89PRO tvplus, z2d, cellsize $ 
     90          , BOTTOM=bottom, C_MASK=c_mask, C_NAN=c_nan, WINDOW=window $ 
     91          , MIN=min, MAX=max, MASK=mask, OFFSET=offset $ 
     92          , NOUSEINFOS=NOUSEINFOS $ 
     93          , NCOLORS=ncolors, NOINTERP=nointerp, _EXTRA=ex 
    9294; 
    9395  compile_opt idl2, strictarrsubs 
  • trunk/SRC/ToBeReviewed/PLOTS/DIVERS/addaxe.pro

    r325 r327  
    2929; 
    3030;- 
    31 PRO addaxe, endpoints, type, posfenetre, _EXTRA = ex 
     31PRO addaxe, endpoints, type, posfenetre, _EXTRA=ex 
    3232; 
    3333  compile_opt idl2, strictarrsubs 
  • trunk/SRC/ToBeReviewed/PLOTS/DIVERS/axis4pltz.pro

    r325 r327  
    4343; 
    4444;- 
    45 PRO axis4pltz, type, mask, glam, gphi, z, XXAXIS = xxaxis, ZZAXIS = zzaxis, SIN = sin, ZRATIO = zratio, ZOOM = zoom, PROFMAX = profmax, PROFMIN = profmin, _EXTRA = ex 
     45PRO axis4pltz, type, mask, glam, gphi, z $ 
     46             , XXAXIS=xxaxis, ZZAXIS=zzaxis, SIN=sin, ZRATIO=zratio $ 
     47             , ZOOM=zoom, PROFMAX=profmax, PROFMIN=profmin, _EXTRA=ex 
    4648; 
    4749  compile_opt idl2, strictarrsubs 
  • trunk/SRC/ToBeReviewed/PLOTS/DIVERS/barrecouleur.pro

    r325 r327  
    5353;- 
    5454PRO barrecouleur, colnumb, clbinf, clbsup, clbdiv $ 
    55                   , NOCOLORBAR = nocolorbar, CB_TITLE = cb_title $ 
    56                   , NOFILL = nofill, COLOR_c = color_c $ 
    57                   , MIN = min, MAX = max, divisions = divisions $ 
    58                   , CB_SUBTITLE = cb_subtitle, POST = post, _EXTRA = ex 
     55                  , NOCOLORBAR=nocolorbar, CB_TITLE=cb_title $ 
     56                  , NOFILL=nofill, COLOR_c=color_c $ 
     57                  , MIN=min, MAX=max, divisions=divisions $ 
     58                  , CB_SUBTITLE=cb_subtitle, POST=post, _EXTRA=ex 
    5959; 
    6060  compile_opt idl2, strictarrsubs 
  • trunk/SRC/ToBeReviewed/PLOTS/DIVERS/checkfield.pro

    r325 r327  
    192192; 
    193193;- 
    194 FUNCTION checkfield, field, procedure, TYPE = type, BOXZOOM = boxzoom, DIREC = direc, NOQUESTION = noquestion, VECTEUR = vecteur, WDEPTH = wdepth, _EXTRA = ex 
     194FUNCTION checkfield, field, procedure $ 
     195                   , TYPE=type, BOXZOOM=boxzoom, DIREC=direc $ 
     196                   , NOQUESTION=noquestion, VECTEUR=vecteur, WDEPTH=wdepth $ 
     197                   , _EXTRA=ex 
    195198; 
    196199  compile_opt idl2, strictarrsubs 
  • trunk/SRC/ToBeReviewed/PLOTS/DIVERS/checktypeminmax.pro

    r325 r327  
    5959; @todo seb 
    6060;- 
    61 PRO checktypeminmax, procedure, TYPE = type, MIN = min, MAX = max, XY = xy $ 
    62                      , XZ = xz, YZ = yz, XT = XT, YT = YT, ZT = zt $ 
    63                      , TT = tt, XX = xx, YY = yy, ZZ = zz $ 
    64                      , XINDEX = xindex, YINDEX = yindex $ 
    65                      , ENDPOINTS = endpoints, _EXTRA = ex 
     61PRO checktypeminmax, procedure, TYPE=type, MIN=min, MAX=max, XY=xy $ 
     62                     , XZ=xz, YZ=yz, XT=XT, YT=YT, ZT=zt $ 
     63                     , TT=tt, XX=xx, YY=yy, ZZ=zz $ 
     64                     , XINDEX=xindex, YINDEX=yindex $ 
     65                     , ENDPOINTS=endpoints, _EXTRA=ex 
    6666; 
    6767  compile_opt idl2, strictarrsubs 
  • trunk/SRC/ToBeReviewed/PLOTS/DIVERS/determineminmax.pro

    r325 r327  
    5151; 
    5252;- 
    53 PRO determineminmax, tab, mask, vraimin, vraimax, glam, gphi, MAXIN = maxin, MININ = minin, INTERVALLE = intervalle, USETRI = usetri, ZEROMIDDLE = zeromiddle, _EXTRA = ex 
     53PRO determineminmax, tab, mask, vraimin, vraimax, glam, gphi $ 
     54                   , MAXIN=maxin, MININ=minin, INTERVALLE=intervalle $ 
     55                   , USETRI=usetri, ZEROMIDDLE=zeromiddle, _EXTRA=ex 
    5456; 
    5557  compile_opt idl2, strictarrsubs 
  • trunk/SRC/ToBeReviewed/PLOTS/DIVERS/placecolor.pro

    r325 r327  
    3737; 
    3838;- 
    39 PRO placecolor, pos, _EXTRA = ex 
     39PRO placecolor, pos, _EXTRA=ex 
    4040; 
    4141  compile_opt idl2, strictarrsubs 
  • trunk/SRC/ToBeReviewed/PLOTS/DIVERS/placedessin.pro

    r325 r327  
    127127; 
    128128;- 
    129 PRO placedessin, typedessin, posfenetre, posbar, dtasize, BARMARGES = barmarges $ 
    130                  , NOCOLORBAR = nocolorbar, NOFILL = nofill, COLOR_c = color_c $ 
    131                  , CONTOUR = contour $ 
    132                  , VECTEUR = vecteur, PORTRAIT = portrait, LANDSCAPE = landscape $ 
    133                  , SMALL = small, MARGES = marges, MAP = map $ 
    134                  , REMPLI = REMPLI, POST = post, WINDOW = window $ 
    135                  , ENDPOINTS = endpoints, TYPE = type, BASICMARGES = basicmarges $ 
    136                  , NOERASE = noerase, LCT = lct, DIREC = direc, CB_TITLE = cb_title, _EXTRA = ex 
     129PRO placedessin, typedessin, posfenetre, posbar, dtasize, BARMARGES=barmarges $ 
     130               , NOCOLORBAR=nocolorbar, NOFILL=nofill, COLOR_c=color_c $ 
     131               , CONTOUR=contour $ 
     132               , VECTEUR=vecteur, PORTRAIT=portrait, LANDSCAPE=landscape $ 
     133               , SMALL=small, MARGES=marges, MAP=map $ 
     134               , REMPLI=REMPLI, POST=post, WINDOW=window $ 
     135               , ENDPOINTS=endpoints, TYPE=type, BASICMARGES=basicmarges $ 
     136               , NOERASE=noerase, LCT=lct, DIREC=direc, CB_TITLE=cb_title $ 
     137               , _EXTRA=ex 
    137138; 
    138139  compile_opt idl2, strictarrsubs 
  • trunk/SRC/ToBeReviewed/PLOTS/DIVERS/projsegment.pro

    r325 r327  
    4242; 
    4343;- 
    44 FUNCTION projsegment, vecteur, bornes, MP = mp 
     44FUNCTION projsegment, vecteur, bornes, MP=mp 
    4545; 
    4646  compile_opt idl2, strictarrsubs 
  • trunk/SRC/ToBeReviewed/PLOTS/DIVERS/terminedessin.pro

    r325 r327  
    3939; 
    4040;- 
    41 PRO terminedessin, POST = post, SMALL = small, _EXTRA = ex 
     41PRO terminedessin, POST=post, SMALL=small, _EXTRA=ex 
    4242; 
    4343  compile_opt idl2, strictarrsubs 
  • trunk/SRC/ToBeReviewed/PLOTS/LABEL/label.pro

    r325 r327  
    4747; 
    4848;- 
    49 pro label, cas, min, max, ncontour, level_z2d, colnumb, NLEVEL = nlevel $ 
    50           ,INTERVALLE=intervalle, STRICTFILL = strictfill 
     49PRO label, cas, min, max, ncontour, level_z2d, colnumb, NLEVEL=nlevel $ 
     50          ,INTERVALLE=intervalle, STRICTFILL=strictfill 
    5151; 
    5252  compile_opt idl2, strictarrsubs 
  • trunk/SRC/ToBeReviewed/PLOTS/LABEL/label_date.pro

    r325 r327  
    8787; 
    8888;- 
    89 FUNCTION label_date, axis, index, x, DATE_FORMAT = format, MONTHS = months, $ 
    90               OFFSET= offs, _EXTRA = ex 
     89FUNCTION label_date, axis, index, x, DATE_FORMAT=format, MONTHS=months $ 
     90                   , OFFSET=offs, _EXTRA=ex 
    9191; 
    9292  compile_opt idl2, strictarrsubs 
  • trunk/SRC/ToBeReviewed/PLOTS/VECTEUR/ajoutvect.pro

    r325 r327  
    4646; 
    4747;- 
    48 PRO ajoutvect,vecteur, vectlegende, UNVECTSUR=unvectsur,VECTMIN=vectmin, VECTMAX=vectmax, _EXTRA = ex 
     48PRO ajoutvect,vecteur, vectlegende $ 
     49             , UNVECTSUR=unvectsur,VECTMIN=vectmin, VECTMAX=vectmax, _EXTRA=ex 
    4950; 
    5051  compile_opt idl2, strictarrsubs 
  • trunk/SRC/ToBeReviewed/PLOTS/VECTEUR/vecteur.pro

    r325 r327  
    169169;- 
    170170PRO vecteur, composanteu, composantev, normevecteur, indice2d, reduitindice2d $ 
    171              , CMREF = cmref, MISSING = missing, NORMEREF = normeref $ 
    172              , VECTCOLOR = vectcolor, VECTTHICK = vectthick $ 
    173              , VECTREFPOS = vectrefpos $ 
    174              , VECTREFFORMAT = vectrefformat, NOVECTREF = novectref $ 
    175              , _EXTRA = extra 
     171           , CMREF=cmref, MISSING=missing, NORMEREF=normeref $ 
     172           , VECTCOLOR=vectcolor, VECTTHICK=vectthick $ 
     173           , VECTREFPOS=vectrefpos $ 
     174           , VECTREFFORMAT=vectrefformat, NOVECTREF=novectref $ 
     175           , _EXTRA=extra 
    176176; 
    177177  compile_opt idl2, strictarrsubs 
  • trunk/SRC/ToBeReviewed/PLOTS/VECTEUR/velovect.pro

    r325 r327  
    9292; 
    9393;- 
    94 PRO velovect, u,v,x,y, MISSING = missing, LENGTH = length, DOTS = dots,  $ 
    95         COLOR=color, CLIP=clip, NOCLIP=noclip, OVERPLOT=overplot, _EXTRA=extra 
     94PRO velovect, u,v,x,y, MISSING=missing, LENGTH=length, DOTS=dots $ 
     95            , COLOR=color, CLIP=clip, NOCLIP=noclip, OVERPLOT=overplot $ 
     96            , _EXTRA=extra 
    9697; 
    9798  compile_opt idl2, strictarrsubs 
  • trunk/SRC/ToBeReviewed/PLOTS/axe.pro

    r325 r327  
    5151; 
    5252;- 
    53 PRO axe, coupe, tempsmin, tempsmax, REVERSE_X = reverse_x, REVERSE_Y = reverse_y, SIN = sin, SEPDATE = sepdate, DIGITSYEAR = digitsyear, _EXTRA = ex 
     53PRO axe, coupe, tempsmin, tempsmax $ 
     54       , REVERSE_X=reverse_x, REVERSE_Y=reverse_y, SIN=sin $ 
     55       , SEPDATE=sepdate, DIGITSYEAR=digitsyear, _EXTRA=ex 
    5456; 
    5557  compile_opt idl2, strictarrsubs 
  • trunk/SRC/ToBeReviewed/PLOTS/legende.pro

    r325 r327  
    4343; 
    4444;- 
    45 PRO legende, mi, ma, coupe, CONTOUR = contour, ENDPOINTS = endpoints, DIREC = direc $ 
    46              , VECTLEGENDE = vectlegende $ 
    47              , INTERVALLE = intervalle, TYPE_YZ = type_yz, VARNAME2 = varname2 $ 
    48              , NPTS = npts, _EXTRA = ex 
     45PRO legende, mi, ma, coupe, CONTOUR=contour, ENDPOINTS=endpoints, DIREC=direc $ 
     46           , VECTLEGENDE=vectlegende $ 
     47           , INTERVALLE=intervalle, TYPE_YZ=type_yz, VARNAME2=varname2 $ 
     48           , NPTS=npts, _EXTRA=ex 
    4949; 
    5050  compile_opt idl2, strictarrsubs 
  • trunk/SRC/ToBeReviewed/POSTSCRIPT/calibre.pro

    r325 r327  
    8080;- 
    8181PRO calibre, rapportyx, marge, margebar, smalldraw, posfenetre, posbar $ 
    82              , REMPLI = rempli, YXASPECT = yxaspect, PORTRAIT = portrait $ 
    83              , LANDSCAPE = lanscape, _EXTRA = ex 
     82             , REMPLI=rempli, YXASPECT=yxaspect, PORTRAIT=portrait $ 
     83             , LANDSCAPE=lanscape, _EXTRA=ex 
    8484; 
    8585  compile_opt idl2, strictarrsubs 
  • trunk/SRC/ToBeReviewed/POSTSCRIPT/chcolps.pro

    r325 r327  
    112112; 
    113113;- 
    114 PRO chcolps, n1, n2, file, PALIT1 = palit1, PALIT2 = palit2 
     114PRO chcolps, n1, n2, file, PALIT1=palit1, PALIT2=palit2 
    115115; 
    116116  compile_opt idl2, strictarrsubs 
     
    125125    IF keyword_set(palit2) THEN palit, palit2 
    126126    tvlct, red1, green1, blue1, /get 
    127 ; 
    128 ; 
    129127; 
    130128    filein = file 
     
    189187          ENDIF  
    190188; 
    191 ; Ecrit le fichier de sortie 
     189; write output file 
    192190; 
    193191          printf, numout, ligne, format = '(A)' 
     
    201199 
    202200END  
    203  
  • trunk/SRC/ToBeReviewed/STATISTICS/a_correlate2d.pro

    r325 r327  
    2828; 
    2929;- 
    30 FUNCTION auto_cov2d, x, lag, DOUBLE = double, ZERO2NAN = zero2nan 
     30FUNCTION auto_cov2d, x, lag, DOUBLE=double, ZERO2NAN=zero2nan 
    3131; 
    3232  compile_opt idl2, strictarrsubs 
     
    7777; 
    7878;- 
    79 FUNCTION a_correlate2d, x, lag, COVARIANCE = covariance, DOUBLE = double 
     79FUNCTION a_correlate2d, x, lag, COVARIANCE=covariance, DOUBLE=double 
    8080; 
    8181  compile_opt idl2, strictarrsubs 
  • trunk/SRC/ToBeReviewed/STATISTICS/a_timecorrelate.pro

    r325 r327  
    2828; 
    2929;- 
    30 FUNCTION timeauto_cov, x, m, nt, DOUBLE = double, ZERO2NAN = zero2nan 
     30FUNCTION timeauto_cov, x, m, nt, DOUBLE=double, ZERO2NAN=zero2nan 
    3131; 
    3232  compile_opt idl2, strictarrsubs 
     
    6262; 
    6363; @file_comments 
    64 ; Same function as A_CORRELATE but accept array (until 4 
     64; Same function as <proidl>A_CORRELATE</proidl> but accept array (until 4 
    6565; dimension) for input and do the autocorrelation or the 
    6666; autocovariance along the time dimension which must be the last 
     
    113113; 
    114114;- 
    115 FUNCTION a_timecorrelate, x, lag, COVARIANCE = covariance, DOUBLE = double 
     115FUNCTION a_timecorrelate, x, lag, COVARIANCE=covariance, DOUBLE=double 
    116116; 
    117117  compile_opt idl2, strictarrsubs 
    118118; 
    119119 
    120 ;Compute the sample-autocorrelation or autocovariance of (Xt, Xt+l) 
    121 ;as a function of the lag (l). 
     120; Compute the sample-autocorrelation or autocovariance of (Xt, Xt+l) 
     121; as a function of the lag (l). 
    122122 
    123123   ON_ERROR, 2 
  • trunk/SRC/ToBeReviewed/STATISTICS/c_timecorrelate.pro

    r325 r327  
    3030; 
    3131;- 
    32 FUNCTION timecross_cov, xd, yd, m, nt, ndim, DOUBLE = double, ZERO2NAN = zero2nan 
     32FUNCTION timecross_cov, xd, yd, m, nt, ndim, DOUBLE=double, ZERO2NAN=zero2nan 
    3333; 
    3434  compile_opt hidden 
     
    5959; This function computes the "time cross correlation" Pxy(L) or 
    6060; the "time cross covariance" between 2 arrays (this is some 
    61 ; kind of c_correlate but for multidimensional arrays) as a 
     61; kind of <proidl>C_CORRELATE</proidl> but for multidimensional arrays) as a 
    6262; function of the lag (L). 
    6363; 
     
    114114; 
    115115;- 
    116 FUNCTION c_timecorrelate, x, y, lag, COVARIANCE = covariance, DOUBLE = double 
     116FUNCTION c_timecorrelate, x, y, lag, COVARIANCE=covariance, DOUBLE=double 
    117117; 
    118118 
  • trunk/SRC/ToBeReviewed/STRING/chkeywd.pro

    r325 r327  
    7676; 
    7777;- 
    78 FUNCTION chkeywd, stringin, keywdname, keywdvalue, SEPARATOR = separator, AFTER = after 
     78FUNCTION chkeywd, stringin, keywdname, keywdvalue $ 
     79                , SEPARATOR=separator, AFTER=after 
    7980; 
    8081  compile_opt idl2, strictarrsubs 
  • trunk/SRC/ToBeReviewed/STRING/getfile.pro

    r325 r327  
    5151; 
    5252;- 
    53 FUNCTION getfile, filein, error=err, HELP=hlp, QUIET=quiet, LINES=lines, FIND = find 
     53FUNCTION getfile, filein, error=err $ 
     54                , HELP=hlp, QUIET=quiet, LINES=lines, FIND=find 
    5455; 
    5556  compile_opt idl2, strictarrsubs 
  • trunk/SRC/ToBeReviewed/STRING/strsed.pro

    r325 r327  
    4242; $Id$ 
    4343;- 
    44 FUNCTION strsed, str, exp1, exp2, FOLD_CASE = fold_case 
     44FUNCTION strsed, str, exp1, exp2, FOLD_CASE=fold_case 
    4545; 
    4646  compile_opt idl2, strictarrsubs 
  • trunk/SRC/ToBeReviewed/STRUCTURE/chkstru.pro

    r325 r327  
    6464; 
    6565;- 
    66 FUNCTION chkstru, structure, fields, INDEX=index,VERBOSE=verbose, EXTRACT = extract 
     66FUNCTION chkstru, structure, fields $ 
     67                , INDEX=index, VERBOSE=verbose, EXTRACT=extract 
    6768; 
    6869  compile_opt idl2, strictarrsubs 
  • trunk/SRC/ToBeReviewed/STRUCTURE/extractstru.pro

    r325 r327  
    4747; 
    4848;- 
    49 FUNCTION extractstru, stru, liste, KEEP = keep, DELETE = delete 
     49FUNCTION extractstru, stru, liste, KEEP=keep, DELETE=delete 
    5050; 
    5151  compile_opt idl2, strictarrsubs 
  • trunk/SRC/ToBeReviewed/STRUCTURE/struct2string.pro

    r325 r327  
    4040; 
    4141;- 
    42 FUNCTION struct2string, struct, CUT_IN_STRING = cut_in_string, MAX_STRUCT_LENGTH = max_struct_length, DIRECT2STRING = direct2string 
     42FUNCTION struct2string, struct $ 
     43                      , CUT_IN_STRING=cut_in_string $ 
     44                      , MAX_STRUCT_LENGTH=max_struct_length $ 
     45                      , DIRECT2STRING=direct2string 
    4346; 
    4447  compile_opt idl2, strictarrsubs 
  • trunk/SRC/ToBeReviewed/TRIANGULATION/ciseauxtri.pro

    r325 r327  
    2929; 
    3030;- 
    31 FUNCTION ciseauxtri, triang, glam, gphi, _EXTRA = ex 
     31FUNCTION ciseauxtri, triang, glam, gphi, _EXTRA=ex 
    3232; 
    3333  compile_opt idl2, strictarrsubs 
  • trunk/SRC/ToBeReviewed/TRIANGULATION/completecointerre.pro

    r325 r327  
    2929; 
    3030;- 
    31 PRO draw_corner_triangle, lons, lats, seuil, CONT_COLOR = cont_color, _EXTRA = ex 
     31PRO draw_corner_triangle, lons, lats, seuil, CONT_COLOR=cont_color, _EXTRA=ex 
    3232; 
    3333  compile_opt idl2, strictarrsubs 
     
    8585; 
    8686;- 
    87 PRO completecointerre, COINMONTE = coinmonte, COINDESCEND = coindescend $ 
    88                        , CONT_COLOR = cont_color, INDICEZOOM = indicezoom $ 
    89                        , _EXTRA = ex 
     87PRO completecointerre, COINMONTE=coinmonte, COINDESCEND=coindescend $ 
     88                     , CONT_COLOR=cont_color, INDICEZOOM=indicezoom $ 
     89                     , _EXTRA=ex 
    9090; 
    9191  compile_opt idl2, strictarrsubs 
  • trunk/SRC/ToBeReviewed/TRIANGULATION/definetri_e.pro

    r325 r327  
    7878; 
    7979;- 
    80 FUNCTION definetri_e, nx, ny, singular, SHIFTED = shifted 
     80FUNCTION definetri_e, nx, ny, singular, SHIFTED=shifted 
    8181; 
    8282  compile_opt idl2, strictarrsubs 
  • trunk/SRC/ToBeReviewed/TRIANGULATION/dessinetri.pro

    r325 r327  
    4242; 
    4343;- 
    44 PRO dessinetri, tri, x, y, WAIT = wait, ONEBYONE = onebyone, FILL = fill, CHANGECOLOR = changecolor, _EXTRA = ex 
     44PRO dessinetri, tri, x, y, WAIT=wait, ONEBYONE=onebyone, FILL=fill $ 
     45              , CHANGECOLOR=changecolor, _EXTRA=ex 
    4546; 
    4647  compile_opt idl2, strictarrsubs 
  • trunk/SRC/ToBeReviewed/TRIANGULATION/drawcoast_c.pro

    r325 r327  
    5151; 
    5252;- 
    53 PRO drawcoast_c, mask, xf, yf, nx, ny, COAST_COLOR = coast_color, COAST_THICK = coast_thick, YSEUIL = yseuil, XSEUIL = xseuil, _EXTRA = ex 
     53PRO drawcoast_c, mask, xf, yf, nx, ny $ 
     54               , COAST_COLOR=coast_color, COAST_THICK=coast_thick $ 
     55               , YSEUIL=yseuil, XSEUIL=xseuil, _EXTRA=ex 
    5456; 
    5557  compile_opt idl2, strictarrsubs 
  • trunk/SRC/ToBeReviewed/TRIANGULATION/drawcoast_e.pro

    r325 r327  
    5050; 
    5151;- 
    52 PRO drawcoast_e, mask, xf, yf, nx, ny, COAST_COLOR = coast_color, COAST_THICK = coast_thick, YSEUIL = yseuil, XSEUIL = xseuil, ONEMORE = onemore, _EXTRA = ex 
     52PRO drawcoast_e, mask, xf, yf, nx, ny $ 
     53               , COAST_COLOR=coast_color, COAST_THICK=coast_thick $ 
     54               , YSEUIL=yseuil, XSEUIL=xseuil, ONEMORE=onemore, _EXTRA=ex 
    5355; 
    5456  compile_opt idl2, strictarrsubs 
  • trunk/SRC/ToBeReviewed/TRIANGULATION/drawsectionbottom.pro

    r325 r327  
    4242;- 
    4343PRO drawsectionbottom, maskin, xxaxisin, depthsin $ 
    44                      , COAST_COLOR = coast_color, COAST_THICK = coast_thick $ 
    45                      , CONT_COLOR = cont_color, CONT_NOFILL = cont_nofill $ 
    46                      , OVERPLOT = overplot, _EXTRA = ex 
     44                     , COAST_COLOR=coast_color, COAST_THICK=coast_thick $ 
     45                     , CONT_COLOR=cont_color, CONT_NOFILL=cont_nofill $ 
     46                     , OVERPLOT=overplot, _EXTRA=ex 
    4747; 
    4848  compile_opt idl2, strictarrsubs 
  • trunk/SRC/ToBeReviewed/TRIANGULATION/fillcornermask.pro

    r325 r327  
    2424; 
    2525;- 
    26 PRO fillcornermask, xin, yin, COINMONTE = coinmonte, COINDESCEND = coindescend $ 
    27                     , CONT_COLOR = cont_color, INDICEZOOM = indicezoom $ 
    28                     , _EXTRA = ex 
     26PRO fillcornermask, xin, yin, COINMONTE=coinmonte, COINDESCEND=coindescend $ 
     27                  , CONT_COLOR=cont_color, INDICEZOOM=indicezoom $ 
     28                  , _EXTRA=ex 
    2929; 
    3030  compile_opt idl2, strictarrsubs 
  • trunk/SRC/ToBeReviewed/TRIANGULATION/section.pro

    r325 r327  
    4646; 
    4747;- 
    48 PRO section, field, res, glamaxe, gphiaxe, ENDPOINTS = endpoints $ 
    49              , BOXZOOM = boxzoom, TYPE = type, WDEPTH = wdepth $ 
    50              , DIREC = direc, SHOWBUILD = showbuild, ONLYBOX = onlybox $ 
    51              , _EXTRA = ex 
     48PRO section, field, res, glamaxe, gphiaxe, ENDPOINTS=endpoints $ 
     49             , BOXZOOM=boxzoom, TYPE=type, WDEPTH=wdepth $ 
     50             , DIREC=direc, SHOWBUILD=showbuild, ONLYBOX=onlybox $ 
     51             , _EXTRA=ex 
    5252; 
    5353  compile_opt idl2, strictarrsubs 
  • trunk/SRC/ToBeReviewed/TRIANGULATION/tracecote.pro

    r325 r327  
    2626; 
    2727;- 
    28 PRO tracecote, SURFACE_COASTLINE = surface_coastline, _EXTRA = ex 
     28PRO tracecote, SURFACE_COASTLINE=surface_coastline, _EXTRA=ex 
    2929; 
    3030  compile_opt idl2, strictarrsubs 
  • trunk/SRC/ToBeReviewed/TRIANGULATION/tracemask.pro

    r325 r327  
    3939; 
    4040;- 
    41 PRO tracemask, maskentree, xin, yin, COAST_COLOR = coast_color, COAST_THICK = coast_thick, OVERPLOT = overplot, _EXTRA = ex 
     41PRO tracemask, maskentree, xin, yin $ 
     42             , COAST_COLOR=coast_color, COAST_THICK=coast_thick $ 
     43             , OVERPLOT=overplot, _EXTRA=ex 
    4244; 
    4345  compile_opt idl2, strictarrsubs 
  • trunk/SRC/ToBeReviewed/TRIANGULATION/triangule.pro

    r325 r327  
    4242; 
    4343;- 
    44 FUNCTION triangule, maskentree, BASIC = basic, COINMONTE = coinmonte, COINDESCEND = coindescend, _EXTRA = ex 
     44FUNCTION triangule, maskentree, BASIC=basic $ 
     45                  , COINMONTE=coinmonte, COINDESCEND=coindescend, _EXTRA=ex 
    4546; 
    4647  compile_opt idl2, strictarrsubs 
  • trunk/SRC/ToBeReviewed/TRIANGULATION/triangule_c.pro

    r325 r327  
    7272; seb L.267->268 je ne pense pas que ce soit ce que tu voulais dire mais 
    7373; c'est la traduction de ce qu'il y avait écrit. Correction si besoin. 
     74; 
    7475;- 
    75 FUNCTION triangule_c, maskentree, COINMONTE = coinmonte, COINDESCEND = coindescend, BASIC = basic, KEEP_CONT = keep_cont 
     76FUNCTION triangule_c, maskentree $ 
     77                    , COINMONTE=coinmonte, COINDESCEND=coindescend $ 
     78                    , BASIC=basic, KEEP_CONT=keep_cont 
    7679; 
    7780compile_opt idl2, strictarrsubs 
  • trunk/SRC/ToBeReviewed/TRIANGULATION/triangule_e.pro

    r325 r327  
    4242;- 
    4343FUNCTION triangule_e, maskentree $ 
    44                     , COINMONTE = coinmonte, COINDESCEND = coindescend $ 
    45                     , SHIFTED = shifted, BASIC = basic 
     44                    , COINMONTE=coinmonte, COINDESCEND=coindescend $ 
     45                    , SHIFTED=shifted, BASIC=basic 
    4646; 
    4747  compile_opt idl2, strictarrsubs 
  • trunk/SRC/ToBeReviewed/UTILITAIRE/get_extra.pro

    r325 r327  
    2929; 
    3030;- 
    31 FUNCTION get_extra, _EXTRA = extra 
     31FUNCTION get_extra, _EXTRA=extra 
    3232; 
    3333  compile_opt idl2, strictarrsubs 
  • trunk/SRC/ToBeReviewed/WIDGET/AUTOUR_de_XXX/buildcmd.pro

    r325 r327  
    3030; 
    3131;- 
    32 FUNCTION buildcmd, base, BOXZOOM = boxzoom, FORCETYPE = forcetype 
     32FUNCTION buildcmd, base, BOXZOOM=boxzoom, FORCETYPE=forcetype 
    3333; 
    3434;------------------------------------------------------------ 
  • trunk/SRC/ToBeReviewed/WIDGET/AUTOUR_de_XXX/buildreadcmd.pro

    r325 r327  
    3838; 
    3939;- 
    40 FUNCTION buildreadcmd, base, snameexp, procedure, type, BOXZOOM = boxzoom $ 
    41                        , COMPLETE = complete, NAMEFIELD = namefield 
     40FUNCTION buildreadcmd, base, snameexp, procedure, type, BOXZOOM=boxzoom $ 
     41                     , COMPLETE=complete, NAMEFIELD=namefield 
    4242; 
    4343; 
  • trunk/SRC/ToBeReviewed/WIDGET/AUTOUR_de_XXX/changefield.pro

    r297 r327  
    3838; 
    3939;- 
    40 PRO changefield, base, newfieldname, BOXZOOM = boxzoom 
     40PRO changefield, base, newfieldname, BOXZOOM=boxzoom 
    4141; 
    4242  compile_opt idl2, strictarrsubs 
  • trunk/SRC/ToBeReviewed/WIDGET/AUTOUR_de_XXX/changefile.pro

    r325 r327  
    4444; 
    4545;- 
    46 PRO changefile, base, newfilename, BOXZOOM = boxzoom, DATE1 = date1, DATE2 = date2, FIELDNAME = fieldname 
     46PRO changefile, base, newfilename, BOXZOOM=boxzoom $ 
     47              , DATE1=date1, DATE2=date2, FIELDNAME=fieldname 
    4748; 
    4849; 
  • trunk/SRC/ToBeReviewed/WIDGET/AUTOUR_de_XXX/letsdraw.pro

    r325 r327  
    2727; 
    2828;- 
    29 PRO letsdraw, base, COMMANDE = commande, _EXTRA = ex 
     29PRO letsdraw, base, COMMANDE=commande, _EXTRA=ex 
    3030; 
    3131  compile_opt idl2, strictarrsubs 
  • trunk/SRC/ToBeReviewed/WIDGET/AUTOUR_de_XXX/loadgrid.pro

    r325 r327  
    2727; 
    2828;- 
    29 PRO loadgrid, meshfiletxtin, _EXTRA = ex 
     29PRO loadgrid, meshfiletxtin, _EXTRA=ex 
    3030; 
    3131  meshfilein = strsed(meshfiletxtin,'@@@', '''') 
  • trunk/SRC/ToBeReviewed/WIDGET/AUTOUR_de_XXX/read_vermair.pro

    r325 r327  
    4747; 
    4848;- 
    49 FUNCTION read_vermair, name, debut, fin, nomexp, PARENT = parent, BOXZOOM=boxzoom, _EXTRA = ex 
     49FUNCTION read_vermair, name, debut, fin, nomexp $ 
     50                     , PARENT=parent, BOXZOOM=boxzoom, _EXTRA=ex 
    5051; 
    5152  compile_opt idl2, strictarrsubs 
  • trunk/SRC/ToBeReviewed/WIDGET/AUTOUR_de_XXX/scanfile.pro

    r325 r327  
    3131; 
    3232;- 
    33 FUNCTION scanfile, namefile, GRID = GRID, _EXTRA = ex 
     33FUNCTION scanfile, namefile, GRID=GRID, _EXTRA=ex 
    3434; 
    3535;  liste des presupposes: 
  • trunk/SRC/ToBeReviewed/WIDGET/AUTOUR_de_XXX/selectfile.pro

    r325 r327  
    203203; 
    204204;- 
    205 FUNCTION selectfile, datafilename, idlfile, argspro, _EXTRA = ex 
     205FUNCTION selectfile, datafilename, idlfile, argspro, _EXTRA=ex 
    206206; 
    207207  compile_opt idl2, strictarrsubs 
  • trunk/SRC/ToBeReviewed/WIDGET/AUTOUR_de_XXX/tracecadre.pro

    r325 r327  
    3232; 
    3333;- 
    34 PRO tracecadre, small, OUT = out, ERASE = erase, FILL = fill 
     34PRO tracecadre, small, OUT=out, ERASE=erase, FILL=fill 
    3535; 
    3636  compile_opt idl2, strictarrsubs 
  • trunk/SRC/ToBeReviewed/WIDGET/AUTOUR_de_XXX/updatewidget.pro

    r325 r327  
    3131; 
    3232;- 
    33 PRO updatewidget, base, NOBOXZOOM = noboxzoom, NODATES = nodates, NOTYPE = notype 
     33PRO updatewidget, base, NOBOXZOOM=noboxzoom, NODATES=nodates, NOTYPE=notype 
    3434; 
    3535  compile_opt idl2, strictarrsubs 
  • trunk/SRC/ToBeReviewed/WIDGET/COMPOUND_WIDGET/cw_bgroup.pro

    r325 r327  
    339339;- 
    340340FUNCTION cw_bgroup, parent, names, $ 
    341     BUTTON_UVALUE = button_uvalue, COLUMN=column, EVENT_FUNCT = efun, $ 
     341    BUTTON_UVALUE=button_uvalue, COLUMN=column, EVENT_FUNCT=efun, $ 
    342342    EXCLUSIVE=excl, FONT=font, FRAME=frame, IDS=ids, LABEL_TOP=label_top, $ 
    343343    LABEL_LEFT=label_left, MAP=map, $ 
  • trunk/SRC/ToBeReviewed/WIDGET/COMPOUND_WIDGET/cw_calendar.pro

    r325 r327  
    205205; @param EVENT 
    206206; 
    207 ; 
    208207; @param CASENAME 
    209208; 
    210 ; 
    211209; @param DATE0 
    212210; 
    213 ; 
    214 ; @returns 
    215 ; 
    216 ; @uses 
    217 ; 
    218 ; @restrictions< 
     211; @returns 
     212; 
     213; @uses 
     214; 
     215; @restrictions 
    219216; 
    220217; @examples 
     
    353350   return 
    354351end 
    355 ;---------------------------------------------------------------------- 
    356 ;+ 
    357 ; @file_comments 
    358 ; 
     352 
     353;+ 
     354; 
     355; @file_comments 
    359356; 
    360357; @categories 
     
    422419           , VALUE:infowid.date, FAKECAL: infowid.fakecal} 
    423420end 
    424 ;---------------------------------------------------------------------- 
    425 ;---------------------------------------------------------------------- 
    426 ;+ 
     421; 
     422;+ 
     423; 
    427424; @file_comments 
    428425; 
     
    469466; 
    470467;- 
    471 FUNCTION cw_calendar, parent, calendar, jdate0, CALTYPE = CALTYPE, FAKECAL = fakecal, UVALUE = uvalue, UNAME = uname, _EXTRA = ex 
     468FUNCTION cw_calendar, parent, calendar, jdate0 $ 
     469                    , CALTYPE=CALTYPE, FAKECAL=fakecal $ 
     470                    , UVALUE=uvalue, UNAME=uname, _EXTRA=ex 
    472471; 
    473472@cm_4cal 
  • trunk/SRC/ToBeReviewed/WIDGET/COMPOUND_WIDGET/cw_combobox_pm.pro

    r325 r327  
    247247; 
    248248;- 
    249 FUNCTION cw_combobox_pm, parent, VALUE = value, UVALUE = uvalue, UNAME = uname, ROW = row, COLUMN = column, _EXTRA = ex 
     249FUNCTION cw_combobox_pm, parent, VALUE=value, UVALUE=uvalue, UNAME=uname $ 
     250                       , ROW=row, COLUMN=column, _EXTRA=ex 
    250251; 
    251252  compile_opt idl2, strictarrsubs 
  • trunk/SRC/ToBeReviewed/WIDGET/COMPOUND_WIDGET/cw_domain.pro

    r325 r327  
    539539; 
    540540;- 
    541 FUNCTION cw_domain, parent, BOXZOOM = boxzoom, STRICT = strict, UVALUE = uvalue, UNAME = uname, UNZOOM = unzoom, _EXTRA = ex 
     541FUNCTION cw_domain, parent, BOXZOOM=boxzoom, STRICT=strict $ 
     542                  , UVALUE=uvalue, UNAME=uname, UNZOOM=unzoom, _EXTRA=ex 
    542543; 
    543544; 
  • trunk/SRC/ToBeReviewed/WIDGET/COMPOUND_WIDGET/cw_droplist_pm.pro

    r325 r327  
    234234; 
    235235;- 
    236 FUNCTION cw_droplist_pm, parent,UVALUE = uvalue, UNAME = uname, ROW = row, COLUMN = column, _EXTRA = ex 
     236FUNCTION cw_droplist_pm, parent, UVALUE=uvalue, UNAME=uname $ 
     237                       , ROW=row, COLUMN=column, _EXTRA=ex 
    237238; 
    238239  compile_opt idl2, strictarrsubs 
  • trunk/SRC/ToBeReviewed/WIDGET/COMPOUND_WIDGET/cw_pagelayout.pro

    r325 r327  
    148148; 
    149149;- 
    150 FUNCTION cw_pagelayout, parent, small, UVALUE = uvalue, UNAME = uname, UNZOOM = unzoom, COLUMN = column, ROW = row, _EXTRA = ex 
     150FUNCTION cw_pagelayout, parent, small, UVALUE=uvalue, UNAME=uname $ 
     151                      , UNZOOM=unzoom, COLUMN=column, ROW=row, _EXTRA=ex 
    151152; 
    152153  compile_opt idl2, strictarrsubs 
  • trunk/SRC/ToBeReviewed/WIDGET/COMPOUND_WIDGET/cw_slide_slice.pro

    r325 r327  
    217217; 
    218218;- 
    219 FUNCTION cw_slide_slice, parent, BOXZOOM = boxzoom, UVALUE = uvalue, UNAME = uname, FRAME = frame, ROW = row, COLUMN = column, _EXTRA = ex 
     219FUNCTION cw_slide_slice, parent, BOXZOOM=boxzoom, UVALUE=uvalue, UNAME=uname $ 
     220                       , FRAME=frame, ROW=row, COLUMN=column, _EXTRA=ex 
    220221; 
    221222  compile_opt idl2, strictarrsubs 
  • trunk/SRC/ToBeReviewed/WIDGET/COMPOUND_WIDGET/cw_slider_pm.pro

    r325 r327  
    335335; 
    336336;- 
    337 FUNCTION cw_slider_pm, parent, MAXIMUM = maximum, MINIMUM = minimum $ 
    338                        , STRMINLEN = strminlen, VALUE = value, UVALUE = uvalue $ 
    339                        , UNAME = uname, TITLE = title, _EXTRA = ex 
     337FUNCTION cw_slider_pm, parent, MAXIMUM=maximum, MINIMUM=minimum $ 
     338                     , STRMINLEN=strminlen, VALUE=value, UVALUE=uvalue $ 
     339                     , UNAME=uname, TITLE=title, _EXTRA=ex 
    340340; 
    341341  compile_opt idl2, strictarrsubs 
  • trunk/SRC/ToBeReviewed/WIDGET/COMPOUND_WIDGET/cw_specifie.pro

    r325 r327  
    208208; 
    209209;- 
    210 FUNCTION cw_specifie, parent, ROW = row, COLUMN = column, UVALUE = uvalue, UNAME = uname, FRAME = frame, FORXXX = forxxx, _EXTRA = ex 
     210FUNCTION cw_specifie, parent, ROW=row, COLUMN=column $ 
     211                    , UVALUE=uvalue, UNAME=uname, FRAME=frame $ 
     212                    , FORXXX=forxxx, _EXTRA=ex 
    211213; 
    212214  compile_opt idl2, strictarrsubs 
  • trunk/SRC/ToBeReviewed/WIDGET/slec.pro

    r325 r327  
    4747; 
    4848;- 
    49 FUNCTION slec, name, debut, fin, nomexp, PARENT=parent, BOXZOOM=boxzoom, _EXTRA = ex 
     49FUNCTION slec, name, debut, fin, nomexp $ 
     50             , PARENT=parent, BOXZOOM=boxzoom, _EXTRA=ex 
    5051; 
    5152  compile_opt idl2, strictarrsubs 
  • trunk/SRC/ToBeReviewed/WIDGET/xnotice.pro

    r325 r327  
    3535; 
    3636;- 
    37 FUNCTION xnotice, text, CHKWIDGET = chkwidget 
     37FUNCTION xnotice, text, CHKWIDGET=chkwidget 
    3838; 
    3939; We separate the text in different lines (separated by !C) if it is not done yet... 
  • trunk/SRC/ToBeReviewed/WIDGET/xquestion.pro

    r325 r327  
    8383; 
    8484;- 
    85 FUNCTION xquestion, question, proposedanswer, CHKWIDGET = chkwidget, _EXTRA = ex ; 
     85FUNCTION xquestion, question, proposedanswer, CHKWIDGET=chkwidget, _EXTRA=ex 
    8686; 
    8787  compile_opt idl2, strictarrsubs 
  • trunk/SRC/ToBeReviewed/WIDGET/xx.pro

    r325 r327  
    3535; 
    3636;- 
    37 PRO xx,  JOUR = jour, MESHFILENAME = meshfilename,  LISTVAR = listvar, LISTGRID = listgrid, FUNCLEC_NAME = funclec_name, CALENDAR = calendar, _EXTRA = ex 
     37PRO xx,  JOUR=jour, MESHFILENAME=meshfilename,  LISTVAR=listvar $ 
     38      , LISTGRID=listgrid, FUNCLEC_NAME=funclec_name, CALENDAR=calendar $ 
     39      , _EXTRA=ex 
    3840; 
    3941  compile_opt idl2, strictarrsubs 
  • trunk/SRC/ToBeReviewed/WIDGET/xxx.pro

    r325 r327  
    154154; 
    155155;- 
    156 PRO xxx, datafilename, idlfile, argspro, CALLERWIDID = callerwidid $ 
    157          , REDRAW = redraw, SEPARATE = separate, UVALUE = uvalue $ 
    158          , RESTORE = restore, _EXTRA = ex 
     156PRO xxx, datafilename, idlfile, argspro, CALLERWIDID=callerwidid $ 
     157       , REDRAW=redraw, SEPARATE=separate, UVALUE=uvalue $ 
     158       , RESTORE=restore, _EXTRA=ex 
    159159; 
    160160  compile_opt idl2, strictarrsubs 
  • trunk/SRC/Utilities/createfunc.pro

    r325 r327  
    1616; function definition.  
    1717; Warning: the string must start with a ','  
    18 ; for example: KWDLIST = ', TOTO = toto' 
     18; for example: KWDLIST=', TOTO=toto' 
    1919; 
    2020; @keyword _EXTRA  
     
    3838; 
    3939;- 
    40 FUNCTION createfunc, command, FILENAMEIN = filenamein $ 
    41                , KWDLIST = kwdlist, _EXTRA = ex 
     40FUNCTION createfunc, command, FILENAMEIN=filenamein $ 
     41               , KWDLIST=kwdlist, _EXTRA=ex 
    4242; 
    4343  compile_opt idl2, hidden, strictarrsubs 
  • trunk/SRC/Utilities/createpro.pro

    r325 r327  
    1515; definition.  
    1616; Warning: the string must start with a ','  
    17 ; for example: KWDLIST = ', TOTO = toto' 
     17; for example: KWDLIST=', TOTO = toto' 
    1818; 
    1919; @keyword KWDUSED  
     
    4444; 
    4545;- 
    46 PRO createpro, command, FILENAMEIN = filenamein $ 
    47                , KWDLIST = kwdlist, KWDUSED = kwdused, _EXTRA = ex 
     46PRO createpro, command, FILENAMEIN=filenamein $ 
     47             , KWDLIST=kwdlist, KWDUSED=kwdused, _EXTRA=ex 
    4848; 
    4949  compile_opt idl2, hidden, strictarrsubs 
  • trunk/SRC/Utilities/find.pro

    r325 r327  
    107107; 
    108108;- 
    109 FUNCTION find, filein, IODIRECTORY = iodirectory, RECURSIVE = recursive $ 
    110                , REPERTOIRE = repertoire, NOPRO = nopro, ONLYPRO = onlypro $ 
    111                , ONLYNC = onlync, UNIQUE = unique, FIRSTFOUND = firstfound $ 
    112                , LOOKALLDIR = LOOKALLDIR, TRYFIND = tryfind, _EXTRA = ex 
     109FUNCTION find, filein, IODIRECTORY=iodirectory, RECURSIVE=recursive $ 
     110             , REPERTOIRE=repertoire, NOPRO=nopro, ONLYPRO=onlypro $ 
     111             , ONLYNC=onlync, UNIQUE=unique, FIRSTFOUND=firstfound $ 
     112             , LOOKALLDIR=LOOKALLDIR, TRYFIND=tryfind, _EXTRA=ex 
    113113; 
    114114  compile_opt idl2, strictarrsubs 
  • trunk/SRC/Utilities/fitintobox.pro

    r325 r327  
    120120;- 
    121121FUNCTION fitintobox, field, nx, ny, nz, firstx, firsty $ 
    122                      , firstz, lastx, lasty, lastz, WDEPTH = wdepth 
     122                   , firstz, lastx, lasty, lastz, WDEPTH=wdepth 
    123123; 
    124124  compile_opt idl2, strictarrsubs 
  • trunk/SRC/Utilities/isadirectory.pro

    r325 r327  
    4242; 
    4343;- 
    44 FUNCTION isadirectory, directoryin, TITLE = title, IODIRECTORY = iodirectory, _EXTRA = ex 
     44FUNCTION isadirectory, directoryin, TITLE=title, IODIRECTORY=iodirectory $ 
     45                     , _EXTRA=ex 
    4546; 
    4647  compile_opt idl2, strictarrsubs 
  • trunk/SRC/Utilities/isafile.pro

    r325 r327  
    6666; 
    6767;- 
    68 FUNCTION isafile, filein, FILENAME = filename, IODIRECTORY = iodirectory $ 
    69                   , NEW = new, RECURSIVE = RECURSIVE, ONLYPRO = onlypro $ 
    70                   , ONLYNC = onlync, _EXTRA = ex 
     68FUNCTION isafile, filein, FILENAME=filename, IODIRECTORY=iodirectory $ 
     69                , NEW=new, RECURSIVE=RECURSIVE, ONLYPRO=onlypro $ 
     70                , ONLYNC=onlync, _EXTRA=ex 
    7171; 
    7272  compile_opt idl2, strictarrsubs 
  • trunk/SRC/Utilities/lineintersection.pro

    r325 r327  
    5454; 
    5555;- 
    56 FUNCTION lineintersection, abc1, abc2, FLOAT = float 
     56FUNCTION lineintersection, abc1, abc2, FLOAT=float 
    5757; 
    5858  compile_opt idl2, strictarrsubs 
  • trunk/SRC/Utilities/report.pro

    r325 r327  
    6060; 
    6161;- 
    62 FUNCTION report, textin, DEFAULT_NO = default_no, PARENT = parent $ 
    63                , QUESTION = question, SIMPLE = simple, _EXTRA = ex 
     62FUNCTION report, textin, DEFAULT_NO=default_no, PARENT=parent $ 
     63               , QUESTION=question, SIMPLE=simple, _EXTRA=ex 
    6464; 
    6565  compile_opt idl2, strictarrsubs 
  • trunk/SRC/Utilities/testvar.pro

    r325 r327  
    2828; 
    2929;- 
    30 FUNCTION testvar, VAR = var 
     30FUNCTION testvar, VAR=var 
    3131; 
    3232  compile_opt idl2, strictarrsubs 
  • trunk/SRC/Utilities/text_box.pro

    r325 r327  
    5050; 
    5151;- 
    52 PRO text_box, text, POS=pos, FG_COLOR=fg_color, BG_COLOR=bg_color,$ 
    53                CENTER=center, RIGHT=right, BOX=box, VERT_SPACE=vert_space, _EXTRA = ex 
     52PRO text_box, text, POS=pos, FG_COLOR=fg_color, BG_COLOR=bg_color $ 
     53            , CENTER=center, RIGHT=right, BOX=box, VERT_SPACE=vert_space $ 
     54            , _EXTRA=ex 
    5455; 
    5556  compile_opt idl2, strictarrsubs 
  • trunk/SRC/Utilities/xfile.pro

    r325 r327  
    3434; 
    3535;- 
    36 PRO xfile, filename, _EXTRA = ex 
     36PRO xfile, filename, _EXTRA=ex 
    3737; 
    3838  compile_opt idl2, strictarrsubs 
  • trunk/SRC/Utilities/xhelp.pro

    r325 r327  
    4141  compile_opt idl2, strictarrsubs 
    4242; 
    43   usage="xhelp, filename, _EXTRA = ex" 
     43  usage="xhelp, filename, _EXTRA=ex" 
    4444; 
    4545; check parameters 
  • trunk/SRC/buildinit.pro

    r325 r327  
    22; 
    33; @file_comments 
     4; slightly modified version of cw_field ... 
    45; 
    56; @categories 
    67; 
    7 ; @param PARENT {in}{required} 
     8; @param parent {in}{required} 
    89; The ID of the parent widget. 
    910; 
     
    7475; $Id$ 
    7576;- 
    76 FUNCTION cw_field2, parent, COLUMN=column, ROW=row, $ 
    77 ; slightly modified version of cw_field... 
    78     EVENT_FUNC = efun, $ 
    79     FLOATING=Float, INTEGER=Int, LONG=Long, STRING=String, $ 
    80     FONT=LabelFont, FRAME=Frame, TITLE=Title, UVALUE=UValue, VALUE=TextValueIn, $ 
    81     RETURN_EVENTS=ReturnEvents, ALL_EVENTS=AllUpdates, $ 
    82     FIELDFONT=FieldFont, NOEDIT=NoEdit, TEXT_FRAME=Text_Frame, $ 
    83     XSIZE=XSize, YSIZE=YSize, UNAME=uname 
    84 ;   FLOOR=vmin, CEILING=vmax 
     77FUNCTION cw_field2, parent, COLUMN=column, ROW=row $ 
     78    , EVENT_FUNC=efun $ 
     79    , FLOATING=float, INTEGER=int, LONG=long, STRING=string $ 
     80    , FONT=labelfont, FRAME=frame, TITLE=title, UVALUE=uvalue $ 
     81    , VALUE=textvaluein $ 
     82    , RETURN_EVENTS=returnevents, ALL_EVENTS=allupdates $ 
     83    , FIELDFONT=fieldfont, NOEDIT=noedit, TEXT_FRAME=text_frame $ 
     84    , XSIZE=xsize, YSIZE=ysize, UNAME=uname 
     85;   , FLOOR=vmin, CEILING=vmax 
    8586; 
    8687  compile_opt idl2, strictarrsubs 
     
    151152; 
    152153;+ 
     154; 
    153155; @file_comments 
    154 ; 
     156; get back the ids of the cw_field widgets 
    155157; 
    156158; @categories 
    157159; 
    158 ; 
    159160; @param EVENT 
    160 ; 
    161161; 
    162162; @returns 
     
    172172; @version 
    173173; $Id$ 
     174; 
    174175;- 
    175176PRO printerdef_event, event 
    176 ; get back the ids of the cw_field widgets 
    177177; 
    178178  compile_opt idl2, strictarrsubs 
     
    207207; 
    208208; @file_comments 
     209; get back the ids of the cw_field widgets 
    209210; 
    210211; @categories 
     
    224225; @version 
    225226; $Id$ 
     227; 
    226228;- 
    227229PRO papsize_event, event 
    228 ; get back the ids of the cw_field widgets 
    229230; 
    230231  compile_opt idl2, strictarrsubs 
     
    247248;+ 
    248249; @file_comments 
     250; now we give the answer to buildinit.pro by using the pointer uvalue 
    249251; 
    250252; @categories 
    251253; 
    252 ; @param EVENT 
     254; @param event  
    253255; 
    254256; @returns 
     
    264266; @version 
    265267; $Id$ 
     268; 
    266269;- 
    267270PRO xask_event, event 
    268 ; now we give the answer to buildinit.pro by using the pointer uvalue 
    269271; 
    270272  compile_opt idl2, strictarrsubs 
     
    298300; @version 
    299301; $Id$ 
     302; 
    300303;- 
    301 FUNCTION xask, _EXTRA = ex 
     304FUNCTION xask, _EXTRA=ex 
    302305; 
    303306  compile_opt idl2, strictarrsubs 
     
    341344; @version 
    342345; $Id$ 
     346; 
    343347;- 
    344 FUNCTION getdir, title = title, nomark = nomark, nowrite = nowrite 
     348FUNCTION getdir, TITLE=title, NOMARK=nomark, NOWRITE=nowrite 
    345349; 
    346350  compile_opt idl2, strictarrsubs 
     
    378382; @version 
    379383; $Id$ 
     384; 
    380385;- 
    381386PRO buildinit 
Note: See TracChangeset for help on using the changeset viewer.