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

Last change on this file since 277 was 274, checked in by smasson, 17 years ago

bugfix for demo mode

  • Property svn:keywords set to Id
File size: 892 bytes
Line 
1;+
2;
3; @categories
4; Utilities
5;
6; @uses
7; cm_general
8;
9; @version
10; $Id$
11;-
12;
13PRO demomode_compatibility
14;
15  compile_opt idl2, strictarrsubs
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; update the path cache to include cm_demomode_used
38  path_cache, /rebuild
39 
40  return
41END
Note: See TracBrowser for help on using the repository browser.