Categories:
.NET (961)
C (387)
C++ (185)
CSS (84)
DBA (8)
General (31)
HTML (48)
Java (641)
JavaScript (220)
JSP (109)
JUnit (31)
MySQL (297)
Networking (10)
Oracle (562)
Perl (48)
Perl (9)
PHP (259)
PL/SQL (140)
RSS (51)
Software QA (28)
SQL Server (5)
Struts (20)
Unix (2)
Windows (3)
XHTML (199)
XML (59)
Other Resources:
What Is the Structure of Atom Feed Documents
What Is the Structure of Atom Feed Documents? - RSS FAQs - Atom Feed File Structure and Elements
✍: FYIcenter.com
An Atom feed document must have a root element called "feed". Within in the "feed" element, one or more "entry" elements are enclosed. The high level structure of an Atom feed document looks like:
<?xml version="1.0" encoding="utf-8"?> <feed xmlns="http://www.w3.org/2005/Atom"> (other feed sub-elements) <entry> ... </entry> <entry> ... </entry> (more entry elements) </feed>
2007-05-12, 4990👍, 0💬
Popular Posts:
What Happens If a Hyper Link Points to a Music File? - XHTML 1.0 Tutorials - Understanding Hyper Lin...
When does the compiler not implicitly generate the address of the first element of an array? Wheneve...
What are the core functionalities in XML .NET framework? Can you explain in detail those functionali...
How To Create an Add-to-Netvibes Button on Your Website? - RSS FAQs - Adding Your Feeds to RSS News ...
What will the following piece of code do? int f(unsigned int x) { int i; for (i=0; x!=0; x>&a...