source: trunk/SRC/Utilities/demomode_compatibility.pro @ 227

Last change on this file since 227 was 224, checked in by pinsard, 17 years ago

improvements/corrections of some *.pro headers

  • Property svn:keywords set to Id
File size: 815 bytes
Line 
1;+
2; @categories
3; Utilities
4;
5; @uses
6; cm_general
7;
8; @version
9; $Id$
10;-
11PRO demomode_compatibility
12;
13  compile_opt idl2, strictarrsubs
14;
15
16;
17@cm_general
18;
19; 1) remove all cm_demomode_used.pro found in !path
20  to_rm = find('cm_demomode_used')
21  IF to_rm[0] NE 'NOT FOUND' THEN file_delete, to_rm
22;
23; 2) copy oldcm_full(_empty) to myuniquetmpdir+'oldcm_used.pro'
24; select which file should be copied to oldcm_used.pro
25  IF lmgr(/demo) EQ 1 THEN BEGIN
26     democm = find('cm_demomode')
27     file_copy, democm, myuniquetmpdir + 'cm_demomode_used.pro', /overwrite
28  ENDIF ELSE BEGIN
29; create an empty file...
30; close the journal if already open
31    IF !journal NE 0 THEN journal
32; open a new one
33    journal, myuniquetmpdir + 'cm_demomode_used.pro'
34; close it (-> it will be empty)
35    journal
36  ENDELSE
37
38  return
39END
Note: See TracBrowser for help on using the repository browser.