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

DIALOGU.m

Go to the documentation of this file.
  1. DIALOGU ;SFISC/MMW - FUNCTIONS FOR DIALOGS ;11/21/94 13:26
  1. ;;22.0;VA FileMan;;Mar 30, 1999
  1. ;Per VHA Directive 10-93-142, this routine should not be modified.
  1. Q ;not for interactive use
  1. OUT(Y,DIALF,%F) ;convert FileMan Data to language dependant output format
  1. ;Y is the value to transform, DIALF is the type of data
  1. ;%F Only for "FMTE" node. Passed from FMTE^DILIBF, indicates date format.
  1. ;DIALF must correspond to at least a subscript in the language file
  1. ;for the english language (entry #1) but may also have corresponding
  1. ;entries for other languages
  1. I $D(Y)[0!($G(DIALF)="") Q ""
  1. N DINAKED,DIY S DINAKED=$$LGR^%ZOSV
  1. N DILANG S DILANG=+$G(DUZ("LANG")) S:DILANG<1 DILANG=1
  1. S DIY=$G(^DI(.85,DILANG,DIALF)) I DIY="" S:DILANG'=1 DIY=$G(^DI(.85,1,DIALF)) I DIY="" S Y="" G Q
  1. X DIY
  1. Q D:DINAKED]""
  1. . I DINAKED["(" Q:$O(@(DINAKED)) Q
  1. . I $D(@(DINAKED))
  1. . Q
  1. Q Y
  1. ;
  1. PRS(D0,X) ;parse language dependant user input
  1. ;D0 is an entry in the DIALOG file
  1. ;X is the user input
  1. ;the function returns the number of the matching command word
  1. ;plus the corresponding english text. If no match was found -1 will
  1. ;be returned. If there is no user input the function returns the
  1. ;null string.
  1. N DINAKED,Y S DINAKED=$$LGR^%ZOSV
  1. I '$D(^DI(.84,+$G(D0)))!($G(X)']"") S Y=0 G Q
  1. N R,I,I1,IL,T,W,%,DILANG
  1. S DILANG=+$G(DUZ("LANG")) S:DILANG<1 DILANG=1
  1. I DILANG>1,'$O(^DI(.84,D0,4,DILANG,1,0)) S DILANG=1
  1. S X=$$OUT(X,"UC"),U="^"
  1. S R=$S(DILANG=1:"^DI(.84,"_D0_",2)",1:"^DI(.84,"_D0_",4,"_DILANG_",1)")
  1. S (I,I1,%)=0 F S I=$O(@R@(I)) Q:'I!% S T=$$OUT(@R@(I,0),"UC") D
  1. .F IL=1:1 S W=$P(T,U,IL) Q:W=""!% S I1=I1+1 S:$E(W,1,$L(X))=X %=I1_U_$P(@R@(I,0),U,IL)
  1. I '% S Y=-1 G Q
  1. I DILANG=1 S Y=% G Q
  1. S (I,I1)=0,%=+% F S I=$O(^DI(.84,D0,2,I)) Q:'I!(I1=%) S T=^(I,0) D
  1. .F IL=1:1 Q:$P(T,U,IL)=""!(I1=%) S I1=I1+1,W=$P(T,U,IL)
  1. S Y=%_U_$G(W) G Q