Repozytorium Web Developera

Archiwum z lat 2013-2018, treści mogą być nieaktualne.

RSS i Atom

RSS

Przykład

	<?xml version="1.0" encoding="utf-8" ?>
	<rss version="2.0">
	  <channel>
		<title>Lorem ipsum dolor sit amet</title>
		<link>http://www.example.net</link>
		<description>www.example.net - lorem ipsum dolor sit amet</description>
		<language>pl</language>
		<copyright>Jan Kowalski</copyright>

		<item>
		  <title>Lorem</title>
		  <link>http://example.net/lorem.html</link>
		  <pubDate>Mon, 3 January 2010 8:00:00 +0100</pubDate>
		  <description>Opis strony lorem...</description>
		</item>

		<item>
		  <title>Ipsum</title>
		  <link>http://example.net/ipsum.html</link>
		  <pubDate>Mon, 10 January 2010 18:30:00 +0100</pubDate>
		  <description>Opis strony ipsum...</description>
		</item>
		...
	  </channel>
	</rss>

Atom

Przykład

   <?xml version="1.0" encoding="utf-8"?>
   <feed xmlns="http://www.w3.org/2005/Atom">
	 <title>Przykład kanału</title>
	 <subtitle>Podtytuł</subtitle>
	 <link href="http://przyklad.pl/feed/" rel="self" />
	 <link href="http://przyklad.pl/"/>
	 <id>tag:domena.pl,2007-01-25:atom-xxx-xxx-xxx-xxx</id>
	 <updated>2005-06-13T16:20:02Z</updated>
	 <author>
	   <name>Jan</name>
	   <email>john@example.com</email>
	 </author>

	 <entry>
	   <title>Tytuł</title>
	   <link href="http://przyklad.pl/atom01"/>
	   <link rel="alternate" type="text/html" href="http://przyklad.pl/2003/12/13/atom03.html"/>
	   <link rel="edit" href="http://przyklad.pl/2003/12/13/atom03/edit"/>
	   <id>urn:uuid:1225c695-cfb8-4ebb-aaaa-80da344efa6a</id>
	   <updated>2005-06-13T16:20:02Z</updated>
	   <summary>Jakiś tekst.</summary>
	 </entry>

   </feed>