3 messages in com.googlegroups.bloggerdevHow to Format Return Result
FromSent OnAttachments
Jimmy28 Aug 2007 11:44 
Jimmy04 Sep 2007 08:39 
loghound (John McLaughlin)11 Sep 2007 22:24 
Subject:How to Format Return Result
From:Jimmy (ashi@gmail.com)
Date:08/28/2007 11:44:38 AM
List:com.googlegroups.bloggerdev

My question is related in this context ( http://code.google.com/apis/blogger/developers_guide_protocol.html#GettingBlogs )

Lets suppose I send a HTTP GET to the following URL to retrieve the list of blogs with the following URL:

http://www.blogger.com/feeds/userID/blogs

and get the following result :

<entry> <id>tag:blogger.com,1999:blog-blogID.post-postID</id> <published>2006-08-02T18:44:43.089-07:00</published> <updated>2006-11-08T18:10:23.020-08:00</updated> <title type='text'>Lizzy's Diary</title> <summary type='html'>Being the journal of Elizabeth Bennet</summary> <link rel='alternate' type='text/html' href='http://blogName.blogspot.com/'> </link> <link rel='http://schemas.google.com/g/2005#feed' type='application/atom+xml' href='http://blogName.blogspot.com/feeds/posts/default'> </link> <link rel='http://schemas.google.com/g/2005#post' type='application/atom+xml' href='http://www.blogger.com/feeds/blogID/posts/default'> </link> <link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/userID/blogs/blogID'> </link> <link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/userID/blogs/blogID'> </link> <author> <name>Elizabeth Bennet</name> <email>l.@gmail.com</email> </author> </entry>

Now can you please tell me how can I format this result so that I can display it in a webpage which is well formatted.

Thanks in advance