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

Last change on this file since 224 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
RevLine 
[93]1;+
[224]2; @categories
3; Utilities
4;
5; @uses
6; cm_general
7;
8; @version
9; $Id$
[93]10;-
[11]11PRO demomode_compatibility
[114]12;
13  compile_opt idl2, strictarrsubs
14;
[93]15
[11]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
[128]25  IF lmgr(/demo) EQ 1 THEN BEGIN
[11]26     democm = find('cm_demomode')
[128]27     file_copy, democm, myuniquetmpdir + 'cm_demomode_used.pro', /overwrite
28  ENDIF ELSE BEGIN
[11]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)
[128]35    journal
36  ENDELSE
[11]37
38  return
39END
Note: See TracBrowser for help on using the repository browser.