Ignore:
Timestamp:
06/27/06 17:47:06 (18 years ago)
Author:
pinsard
Message:

add $ in Calendar, Grid, Interpolation, Obsolete and Postscript *.pro files, add svn:keywords Id to all these files, some improvements in header

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/SRC/Postscript/openps.pro

    • Property svn:keywords changed from Author Date Id Revision to Id
    r114 r118  
    1111; @keyword FILENAME to define the name of the postcript file through 
    1212;                  a keyword rather than with nameps inut argument 
    13 ;                  (in this case the keyword can be pass through  
     13;                  (in this case the keyword can be pass through 
    1414;                  different routines via _extra keyword). 
    1515; 
     
    2121; @keyword KEEP_PFONT activate to suppress the modification of !p.font 
    2222;            (by defaut we force  !p.font = 0  to make smaller postscripts) 
     23; @keyword PORTRAIT 
     24; @keyword LANDSCAPE 
    2325; @keyword KEEPPFONT same as keep_pfont 
    2426; 
    2527; @keyword LIGHTNESS a scalar used to change the Lightness of the color 
    2628;            palette to be abble to adjust according to the printer we use, 
    27 ;            the media (paper or slide)...  
     29;            the media (paper or slide)... 
    2830;               lightness < 1 to get lighter colors 
    2931;                         > 1 to get darker colors 
    3032; 
    31 ; @keyword _EXTRA: used to pass any keyword to device procedure. 
    32 ;   
    33 ; uses cm_4ps 
     33; @keyword _EXTRA used to pass any keyword to device procedure. 
     34; 
     35; @uses cm_4ps 
    3436; 
    3537; @history Sebastien Masson (smasson\@lodyc.jussieu.fr) 
     
    3739; 1/2/98: ajout de nameps en input 
    3840; 1/9/1999: ajout du mot cle FILENAME et du widget 
    39 ; June 2005: Sebastien Masson, cleaning, english version with new commons  
     41; June 2005: Sebastien Masson, cleaning, english version with new commons 
     42; 
     43; @version $Id$ 
     44; 
    4045;- 
    4146;------------------------------------------------------------ 
     
    9297   nameps = isafile(nameps, iodir = psdir, /new) 
    9398;------------------------------------------------------------ 
    94 ; we define xsize, ysize, xoffset et  yoffset  
     99; we define xsize, ysize, xoffset et  yoffset 
    95100;------------------------------------------------------------ 
    96101   IF n_elements(portrait) NE 0 OR n_elements(landscape) NE 0 THEN $ 
     
    102107      xoff = 0. 
    103108      yoff = 0. 
    104    ENDIF ELSE BEGIN  
     109   ENDIF ELSE BEGIN 
    105110      xs = max(page_size) 
    106111      ys = min(page_size) 
    107112      xoff = 0. 
    108113      yoff = max(page_size) 
    109    ENDELSE  
     114   ENDELSE 
    110115;------------------------------------------------------------ 
    111116; We define the device of the postscript mode 
     
    117122; to make smaller postcripts 
    118123   IF NOT (keyword_set(keeppfont) OR keyword_set(keep_pfont)) $ 
    119    THEN !p.font = 0    
     124   THEN !p.font = 0 
    120125; show some informations 
    121126   IF arg_present(infowidget) THEN $ 
Note: See TracChangeset for help on using the changeset viewer.