We Recommend

Beginning XML Beginning XML
The perfect resource for beginning XML programmers, this guidebook shows you what XML is, how to use it, and what technologies surround it. The authors build on the strengths of previous editions while covering the latest changes in the XML landscape such as XQuery, RSS and Atom, and Ajax.


Posted By

qrist0ph on 09/27/08


Tagged

atom helloworld


Versions (?)


GData HelloWorld


Published in: XML 


  1. <?xml version="1.0"?>
  2. <feed xmlns="http://www.w3.org/2005/Atom">
  3. <title>Foo</title>
  4. <updated>2006-01-23T16:26:03-08:00</updated>
  5. <id>http://www.example.com/myFeed</id>
  6. <author>
  7. <name>Jo March</name>
  8. </author>
  9. <link href="/myFeed" rel="self"/>
  10. <entry>
  11. <id>1</id>
  12. <link rel="edit" href="http://example.com/myFeed/1/1/"/>
  13. <updated>2006-01-23T16:26:03-08:00</updated>
  14. <author>
  15. <name>Elizabeth Bennet</name>
  16. <email>liz@gmail.com</email>
  17. </author>
  18. <title type="text">Entry 1</title>
  19. <content type="text">This is my entry</content>
  20. <g:item_type>Recipes</g:item_type>
  21. <g:cooking_time>30</g:cooking_time>
  22. <g:main_ingredient>chicken</g:main_ingredient>
  23. <g:main_ingredient>chili peppers</g:main_ingredient>
  24. <g:main_ingredient>peanuts</g:main_ingredient>
  25. <g:spices_used>Szechuan peppercorn</g:spices_used>
  26. <g:cook_technique>blackened</g:cook_technique>
  27. </entry>
  28. </feed>

Report this snippet 

You need to login to post a comment.