Last change
on this file since 52 was 51, checked in by Christopher Edwards, 16 years ago |
Added Providers to Vitals section
Fixed hanging : in CCRUTIL (thanks to Skip for more optimized code)
Fixed GPLCCR to write correct time
|
File size:
1.3 KB
|
Rev | Line | |
---|
[40] | 1 | CCRUTIL ;CCRCCD/SMH - Various Utilites for generating the CCR/CCD;06/15/08
|
---|
| 2 | ;;0.1;CCRCCD;;Jun 15, 2008;
|
---|
| 3 |
|
---|
| 4 | W "No Entry at Top!" Q
|
---|
| 5 |
|
---|
| 6 | FMDTOUTC(DATE,FORMAT) ; Convert Fileman Date to UTC Date Format; PUBLIC; Extrinsic
|
---|
| 7 | ; FORMAT is Format of Date. Can be either D (Day) or DT (Date and Time)
|
---|
| 8 | ; If not passed, or passed incorrectly, it's assumed that it is D.
|
---|
| 9 | ; FM Date format is "YYYMMDD.HHMMSS" HHMMSS may not be supplied.
|
---|
| 10 | ; UTC date is formatted as follows: YYYY-MM-DDThh:mm:ss_offsetfromUTC
|
---|
| 11 | ; UTC, Year, Month, Day, Hours, Minutes, Seconds, Time offset (obtained from Mailman Site Parameters)
|
---|
| 12 | N UTC,Y,M,D,H,MM,S,OFF
|
---|
| 13 | S Y=1700+$E(DATE,1,3)
|
---|
| 14 | S M=$E(DATE,4,5)
|
---|
| 15 | S D=$E(DATE,6,7)
|
---|
| 16 | S H=$E(DATE,9,10)
|
---|
| 17 | S MM=$E(DATE,11,12)
|
---|
| 18 | S S=$E(DATE,13,14)
|
---|
| 19 | S OFF=$$TZ^XLFDT ; See Kernel Manual for documentation.
|
---|
| 20 | ; If H, MM and S are empty, it means that the FM date didn't supply the time.
|
---|
| 21 | ; In this case, set H, MM and S to "00"
|
---|
| 22 | S:('$L(H)&'$L(MM)&'$L(S)) (H,MM,S)="00"
|
---|
[51] | 23 | S UTC=Y_"-"_M_"-"_D_"T"_H_":"_MM_$S(S="":"",1:":"_S)_OFF ; Skip's code to fix hanging colon if no seconds
|
---|
[40] | 24 | I $L($G(FORMAT)),FORMAT="DT" Q UTC ; Date with time.
|
---|
| 25 | E Q $P(UTC,"T")
|
---|
| 26 | ;
|
---|
Note:
See
TracBrowser
for help on using the repository browser.