This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
;############################ | |
; description: Generate JUnit-XML output for Yunit-Framework (https://github.com/Uberi/Yunit) | |
; | |
; author: hoppfrosch | |
; date: 20121207 | |
;############################ | |
class xml{ | |
; Credits:By Maestrith (http://www.autohotkey.com/board/topic/85010-xml-parser/?hl=msxml) | |
__New(param*){ | |
ref:=param.1,root:=param.2,file:=param.3 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
test := GetTimeZones() | |
ExitApp | |
GetTimeZones() { | |
; Taken from: http://www.autohotkey.com/community/viewtopic.php?t=73951 | |
OutputDebug % "**** GetTimeZones START ****" | |
; Get the "Time Zones" entries from registry | |
RegRoot := "HKEY_LOCAL_MACHINE" | |
RegKey := "SOFTWARE\Microsoft\Windows NT\CurrentVersion\Time Zones" |
NewerOlder