XML_RSSの導入
Resource Description Framework(RDF)とSite_Summary(RSS)ドキュメントは
XMLドキュメントです。
それは、軽量で多目的の拡張可能なメタデータ記述および、
組織化フォーマットを提供します。
RSSファイルはポータルサイト
(例えばSlashdotあるいはfreshmeat.net)
あるいはweblogsからのニュース、
あるいはヘッドラインをシンジケートにするためにしばしば使用されます。
RSSについてより詳細な情報は、
RSSワーキンググループのウェブサイト
(http://tech.groups.yahoo.com/group/rss-dev/files/specification.html)
を見てください。
例 68-1RSSファイル <?xml version="1.0"?>
<rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns="http://my.netscape.com/rdf/simple/0.9/">
<channel>
<title>FooBar Inc.</title>
<link>http://example.com/</link>
<description>abcd, xyz, 123</description>
</channel>
<image>
<title>FooBar</title>
<url>http://example.com/images/rssicon.gif</url>
<link>http://example.com/</link>
</image>
<item>
<title>Headline 1</title>
<link>http://example.com/news.php?h=1</link>
</item>
<item>
<title>Headline 2</title>
<link>http://example.com/news.php?h=2</link>
</item>
<textinput>
<title>Search FooBar Inc.</title>
<description>Search FooBar Inc. headlines</description>
<name>q</name>
<link>http://example.com/search.php</link>
</textinput>
</rdf:RDF> |
|