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:
How To Write a Minimum Atom 1.0 Feed File
How To Write a Minimum Atom 1.0 Feed File? - RSS FAQs - Atom Feed Introduction and File Generation
✍: FYIcenter.com
If you want your Website to support a minimum Atom 1.0 feed, you can follow the tutorial exercise bellow.
1. First create a file called "atom.xml" with the following content:
<?xml version="1.0" encoding="utf-8"?> <feed xmlns="http://www.w3.org/2005/Atom"> <title>Webmaster FYI Center</title> <subtitle>A place to find information for Webmasters </subtitle> <link rel="self" href="http://dev.fyicenter.com/atom.xml"/> <id>http://dev.fyicenter.com/</id> <updated>2005-07-13T18:30:02Z</updated> <author> <name>FYIcenter.com</name> <email>noreply@fyicenter.com</email> </author> <entry> <title>Webmaster FAQ Collection</title> <link href="http://dev.fyicenter.com/faq/"/> <id>http://dev.fyicenter.com/faq/</id> <updated>2005-07-13T18:30:02Z</updated> <summary>A massive collection of FAQs for Webmasters. </summary> </entry> </feed>
2. Relace domain name "fyicenter.com" with your domain name.
3. Upload "atom.xml" to your Website.
4. Your Website supports Atom 1.0 syndication feed now.
2007-05-12, 6521👍, 0💬
Popular Posts:
What is the concept of XPOINTER? XPOINTER is used to locate data within XML document. XPOINTER can p...
How To Assign Query Results to Variables? - Oracle DBA FAQ - Working with Database Objects in PL/SQL...
Can two catch blocks be executed? No, once the proper catch section is executed the control goes fin...
From performance point of view how do they rate ? Repeater is fastest followed by Datalist and final...
What is the main difference between a Vector and an ArrayList? Java Vector class is internally synch...