Ignore:
Timestamp:
07/10/06 17:20:19 (18 years ago)
Author:
pinsard
Message:

some improvements and corrections in some .pro file according to
aspell and idldoc log file

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/SRC/Utilities/report.pro

    r134 r136  
    99; To ask a question whose answer is not yes/no,use xquestion. 
    1010; 
    11 ; @param text {in}{required} un string on un vecteur de string. Si le string ne 
     11; @param text {in}{required}  
     12; one string or one vector of string. Si le string ne 
    1213; comporte qu''un element, on cherche les eventuels characteres de 
    1314; retour a la ligne: '!C'. If text is set to an array of strings, each 
    1415; array element is displayed as a separate line of text. 
    1516; 
    16 ; @keyword SIMPLE activate to print only the message without the name 
    17 ;             and the line of the routine (defined by calling routine_name) 
     17; @keyword SIMPLE  
     18; activate to print only the message without the name 
     19; and the line of the routine (defined by calling routine_name) 
    1820; 
    19 ; @keyword _extra used to pass keywords from dialog_message.pro and message.pro 
     21; @keyword _extra  
     22; used to pass keywords from dialog_message.pro and message.pro 
    2023; 
    21 ; @keyword PARENT same as DIALOG_PARENT de dialog_message.pro 
     24; @keyword PARENT  
     25; same as DIALOG_PARENT de dialog_message.pro 
    2226; 
    23 ; @keyword QUESTION Set this keyword to create a "Question" dialog. 
    24 ;                   The default dialog type is "Warning" 
     27; @keyword QUESTION {default="Warning"} 
     28; Set this keyword to create a "Question" dialog. 
    2529; 
    26 ; @keyword DEFAULT_NO Set this keyword to make the "No" button the default  
    27 ;                     selection for "Question" dialog. Normally, the default is yes. 
     30; @keyword DEFAULT_NO {default="Yes"} 
     31; Set this keyword to make the "No" button the default selection for  
     32; "Question" dialog.  
    2833; 
    29 ; @keyword SIMPLE Activate to print the error message without printing  
    30 ;                 the routine name with its full path. 
     34; @keyword SIMPLE  
     35; Activate to print the error message without printing  the routine name with  
     36; its full path. 
    3137; 
    32 ; @returns -1 if the keyword QUESTION is not activated 
    33 ;          If the keyword is activated, return 1 for yes and 0 for no. 
     38; @returns  
     39; -1 if the keyword QUESTION is not activated 
     40; If the keyword is activated, return 1 for yes and 0 for no. 
    3441;  
    35 ; @example If there is not any widget activated: 
     42; @examples  
     43; If there is not any widget activated: 
    3644; 
    37 ;     IDL> help, report('toto tata') 
    38 ;     % $MAIN$: toto tata 
    39 ;     <Expression>    INT       =       -1 
    40 ;     IDL> help, report('does it works ?',/question) 
    41 ;     does it works ? y/n (default answer is y) 
    42 ;     <Expression>    BYTE      =    1 
    43 ;     IDL> help, report('question1: !C does it works ?',/question) 
    44 ;     question1: 
    45 ;     does it works ? y/n (default answer is y) 
    46 ;     <Expression>    BYTE      =    1 
     45; IDL> help, report('toto tata') 
     46; % $MAIN$: toto tata 
     47; <Expression>    INT       =       -1 
     48; IDL> help, report('does it works ?',/question) 
     49; does it works ? y/n (default answer is y) 
     50; <Expression>    BYTE      =    1 
     51; IDL> help, report('question1: !C does it works ?',/question) 
     52; question1: 
     53; does it works ? y/n (default answer is y) 
     54; <Expression>    BYTE      =    1 
    4755; 
    4856; If widgets are already activated, it is the same thing but with widgets! 
    4957; 
    50 ; @history Sebastien Masson (smasson@lodyc.jussieu.fr) 
     58; @history Sebastien Masson (smasson\@lodyc.jussieu.fr) 
    5159;                      21/10/1999 
    5260; 
    53 ; @version $ID$ 
     61; @version $Id$ 
    5462; 
    5563;- 
Note: See TracChangeset for help on using the changeset viewer.