Home   Package List   Routine Alphabetical List   Global Alphabetical List   FileMan Files List   FileMan Sub-Files List   Package Component Lists   Package-Namespace Mapping  
Routine: XOBUPRE

XOBUPRE.m

Go to the documentation of this file.
  1. XOBUPRE ;; mjk,ld/alb - Foundations Pre-Init ; 07/27/2002 13:00
  1. ;;1.6;Foundations;;May 08, 2009;Build 15
  1. ;Per VHA directive 2004-038, this routine should not be modified.
  1. QUIT
  1. ;
  1. EN ; -- pre-init code
  1. ;
  1. ; -- change package file name entry from XOBS VISTALINK SECURITY to VISTALINK SECURITY
  1. DO PKGCHG
  1. ;
  1. ; -- delete obsolete SYSTEM file (18) if it exists
  1. DO DEL(18,"SYSTEM")
  1. ;
  1. ; -- delete VISTALINK PERSON file (18.09) if it exists (interim file used in early developers' previews)
  1. DO DEL(18.09,"VISTALINK PERSON")
  1. ;
  1. IF $$CHK() QUIT
  1. ;
  1. ; -- delete FOUNDATIONS SITE PARAMETERS file (18.01)
  1. DO DEL(18.01,"FOUNDATIONS SITE PARAMETERS")
  1. ;
  1. ; -- delete FOUNDATIONS SECURITY PROVIDER file (18.02)
  1. DO DEL(18.02,"FOUNDATIONS SECURITY PROVIDER")
  1. ;
  1. QUIT
  1. ;
  1. PKGCHG ; -- change package file name
  1. ;
  1. ; -- change package file name entry to VISTALINK SECURITY
  1. ; (should only affect VistALink v1.0 test sites)
  1. NEW DA,DIC,DIE,DR,X,Y
  1. SET DIC="^DIC(9.4,",DIC(0)="X",X="XOBS VISTALINK SECURITY" DO ^DIC
  1. IF +Y>0 SET DIE=DIC,DA=+Y,DR=".01///VISTALINK SECURITY" DO ^DIE
  1. ;
  1. ; -- change package PREFIX for entry FOUNDATIONS
  1. ; (should only affect VistALink v1.0 test sites)
  1. NEW DA,DIC,DIE,DR,X,Y
  1. SET DIC="^DIC(9.4,",DIC(0)="X",X="FOUNDATIONS",DIC("S")="IF $P(^(0),U,2)=""XOB""" DO ^DIC
  1. IF +Y>0 SET DIE=DIC,DA=+Y,DR="1///XOBU" DO ^DIE
  1. ;
  1. QUIT
  1. ;
  1. CHK() ; -- is newer version present
  1. NEW XOBRES
  1. ;
  1. ; -- check if new configuration file is present
  1. DO FILE^DID(18.03,"","NAME","XOBRES")
  1. ;
  1. ; -- if config file present than newer version installed
  1. QUIT $GET(XOBRES("NAME"))="VISTALINK LISTENER CONFIGURATION"
  1. ;
  1. DEL(XOBFILE,XOBNAME) ; -- delete file
  1. NEW DIU,XOBRES
  1. ;
  1. DO FILE^DID(XOBFILE,"","NAME","XOBRES")
  1. ;
  1. ; -- if file present then delete
  1. IF $GET(XOBRES("NAME"))=XOBNAME DO
  1. . ; -- delete file and data
  1. . SET DIU=XOBFILE,DIU(0)="TD" DO EN^DIU2
  1. ;
  1. QUIT
  1. ;