01-20-2009, 08:18 PM
Macro
out
str s
IntGetFile "http://www.google.com/calendar/feeds/jimmyvig%40gmail.com/private-661ba1b5c50277e97b2193b8418fce64/basic" s
;out s
IXml xml=CreateXml
xml.FromString(s)
;xml.ToString(s); out s ;;debug (this shows better formatted xml)
ARRAY(IXmlNode) a; int i
xml.Path("feed/entry" a)
for i 0 a.len
,IXmlNode& n=a[i]
,out n.ChildValue("title")
,