channel 엘리먼트에 대한 구성은 아래와 같다.
channel에 반드시 필요한
element는 titiel, link. description 이다.
|
<rss version="2.0"><SCRIPT/><channel><title>Liftoff News</title><link>http://liftoff.msfc.nasa.gov/</link><description>Liftoff to Space Exploration.</description>
<language>en-us</language> <pubDate>Tue, 10 Jun 2003 04:00:00 GMT</pubDate> <lastBuildDate>Tue, 10 Jun 2003 09:41:01 GMT</lastBuildDate> <generator>Weblog Editor 2.0</generator> <managingEditor>editor@example.com</managingEditor> <webMaster>webmaster@example.com</webMaster> <item>...</item><item>...</item><item>...</item><item>...</item></channel></rss><rss version="2.0"> |
rss 버전이 2.0 이라는 선언.
<channel>태그는 rss 정보가 시작됨을 의미한다.
<title>Liftoff News</title>
rss 제공 사이트의 타이틀을 기록
rss 제공 사이트의 url을 기록
<description>Liftoff to Space Exploration.</description>
rss 제공 사이트의 간단한 설명이고
<language>en-us</language>
rss 문서에서 사용되는 국가 언어를 선언한것이다.
<pubDate>Tue, 10 Jun 2003 04:00:00 GMT</pubDate>
채널의 내용에 대한 출판일을 의미한다.
<lastBuildDate>Tue, 10 Jun 2003 09:41:01 GMT</lastBuildDate>
채널의 컨텐츠가 변경된 마지막 시간이다.
A URL that points to the documentation for the format used in the RSS file.
<generator>Weblog Editor 2.0</generator>
A string indicating the program used to generate the channel.
<managingEditor>editor@example.com</managingEditor>
편집 내용에 대한 책임을 가진 사람의 이메일 주소
<webMaster>webmaster@example.com</webMaster>
채널과 관련된 기술적 이슈에 대한 책임을 가진 사람의 이메일 주소
item 엘리먼트
A channel may contain any number of<item>s. An item may represent a "story" -- much like a story in a newspaper or magazine;
<item><title>Astronauts' Dirty Laundry</title><link>
http://liftoff.msfc.nasa.gov/news/2003/news-laundry.asp
</link><description>
Compared to earlier spacecraft, the International Space Station has many luxuries, but laundry facilities are not one of them. Instead, astronauts have other options.
</description><pubDate>Tue, 20 May 2003 08:56:02 GMT</pubDate><guid>
http://liftoff.msfc.nasa.gov/2003/05/20.html#item570
</guid><source>is an optional sub-element of<item><enclosure>is an optional sub-element of<item><comments>is an optional sub-element of<item><category>is an optional sub-element of<item><author>is an optional sub-element of</author></item><title>Astronauts' Dirty Laundry</title>
item에 title을 말한다.
<link>
http://liftoff.msfc.nasa.gov/news/2003/news-laundry.asp
</link><description>
Compared to earlier spacecraft, the International Space Station has many luxuries, but laundry facilities are not one of them. Instead, astronauts have other options.
</description><pubDate>Tue, 20 May 2003 08:56:02 GMT</pubDate><guid>
http://liftoff.msfc.nasa.gov/2003/05/20.html#item570
</guid><source>is an optional sub-element of<item><enclosure>is an optional sub-element of<item><comments>is an optional sub-element of<item><category>is an optional sub-element of<item><author>is an optional sub-element of</author></item><title>Astronauts' Dirty Laundry</title>
item에 title을 말한다.
<link>
item에 url을 말한다
<description>
item에
synopsis. 글의 내용 일부 또는 전문을 담고 있다.
<pubDate>Tue, 20 May 2003 08:56:02 GMT</pubDate>
<pubDate>Tue, 20 May 2003 08:56:02 GMT</pubDate>
item에 publish 일을 말한다.
<guid>
guid stands for globally unique identifier.
'이것저것(독후감같은거)' 카테고리의 다른 글
mysql 퍼포먼스 최적화를 읽고.. (0) | 2015.11.10 |
---|---|
코딩호러의 이펙티브 프로그래밍을 읽고 (0) | 2015.11.10 |
(git flow) delete local branch : git branch -D feature/nflash (0) | 2015.11.10 |
git merge to feature/blabla from develop (0) | 2015.11.10 |
git tag 삭제 + 같은 tag 명으로 다시 생성 (0) | 2015.11.10 |