Atom
위키백과 ― 우리 모두의 백과사전.
href="http://ko.wikipedia.org/wiki/Atom#column-one">navigation, 찾기Atom은 웹로그나 최신 소식과 같은 웹 컨텐츠의 신디케이션을 위한 XML 기반의 문서 포맷이자, 웹로그 편집을 위한 HTTP 기반의 프로토콜이다.
[편집] 역사
2003년 6월에 샘 루비는 무엇이 "체계적인 로그"를 만드는가에 대한 논의를 위한 위키를 만들었다. 사람들은 곧 RSS를 대체하기 위한 새로운 신디케이션 포맷을 논의하기 시작했다. 얼마 후에 로드맵(RoadMap) 프로젝트[1]가 만들어졌고, 상당한 참여자들의 주목을 끌었다. 이 새로운 포맷은 블로거 API나 라이브저널 XML-RPC 클라이언트/서버 프로토콜과 같은 블로그 편집 프로토콜의 대안의 역할도 할 수 있도록 방향이 정해졌다.
이 시점에서, 결정 절차의 부재로 인해 논의가 다소 산만하게 진행되었다. 명칭도 문제가 되었는데, Atom으로 확실히 결정되기 전에는 파이(Pie), 에코(Echo), 네코(Necho) 등의 명칭이 혼재했다. 7월 초, 'Atom 0.2'로 알려진 중간 결과물이 나온 후부터 메일링 리스트를 통해 논의가 이루어졌다. 이 단계에서 마지막 중간 결과물인 'Atom 0.3'이 12월에 공개되었다. 이 버전은 여러 신디케이션 도구에 광범위하게 적용되었으며, 특히 블로거나 G메일 같은 구글 관련 서비스에도 사용되기 시작했다.
2004년에는 프로젝트를 W3C나 IETF 같은 표준화 단체로 옮기는 것을 검토하기 시작했다. 논의 끝에 IETF로 결정이 났으며, 애텀펍 워킹 그룹(Atompub Working Group)이 2004년 6월에 조직돼 헌장을 만들고 절차를 세웠다. 초기의 작업은 신디케이션 포맷에 중점을 두었고, 몇 번의 초안이 나온 후에 'Atom 1.0'이 2005년 7월 발표되어, 8월에 RFC 인터넷 표준이 되기 전의 마지막 단계인 "제안 표준"(proposed standard)으로 인정받았다.
2005년 8월 현재에는 출판 프로토콜과 신디케이션 포맷의 다양한 확장에 대한 작업이 진행 중이다. 최근의 개발과 논의에 대해서는 Atom 위키에서 찾아볼 수가 있다.
[편집] 예
다음은 Atom 피드 문서의 한 예이다.
<?xml version="1.0" encoding="utf-8"?> <feed xmlns="http://www.w3.org/2005/Atom"> <title>견본 피드</title> <subtitle>재치 있고 통찰력 있는 촌평을 기입해보라</subtitle> <link href="http://example.org/"/> <updated>2003-12-13T18:30:02Z</updated> <author> <name>아무개</name> <email>ahmooge@example.com</email> </author> <id>urn:uuid:60a76c80-d399-11d9-b91C-0003939e0af6</id> <entry> <title>Atom 기반의 로봇이 이리저리 헤집고 있다</title> <link href="http://example.org/2003/12/13/atom03"/> <id>urn:uuid:1225c695-cfb8-4ebb-aaaa-80da344efa6a</id> <updated>2003-12-13T18:30:02Z</updated> <summary>내용 요약</summary> </entry> </feed>
Atom Syndication Format - Introduction
Contents
- What is Atom?
- Feed Elements
- Entry Elements
- Common Constructs
- Extending Atom
- See Also
What is Atom?
Atom is the name of an XML-based Web content and metadata syndication format, and an application-level protocol for publishing and editing Web resources belonging to periodically updated websites.
All Atom feeds must be well-formed XML documents, and are identified with the application/atom+xml
media type.
About this document
This document focuses on The Atom Syndication Format produced by the IETF AtomPub Working Group. In the event that this document differs from the Internet Draft, the Internet Draft is to be considered authoritative.
General considerations:
- All elements described in this document must be in the http://www.w3.org/2005/Atom namespace.
- All timestamps in Atom must conform to RFC 3339.
- Unless otherwise specified, all values must be plain text (i.e., no entity-encoded html).
xml:lang
may be used to identify the language of any human readable text.xml:base
may be used to control how relative URIs are resolved.
Sample feed
<?xml version="1.0" encoding="utf-8"?> <feed xmlns="http://www.w3.org/2005/Atom"> <title>Example Feed</title> <link href="http://example.org/"/> <updated>2003-12-13T18:30:02Z</updated> <author> <name>John Doe</name> </author> <id>urn:uuid:60a76c80-d399-11d9-b93C-0003939e0af6</id> <entry> <title>Atom-Powered Robots Run Amok</title> <link href="http://example.org/2003/12/13/atom03"/> <id>urn:uuid:1225c695-cfb8-4ebb-aaaa-80da344efa6a</id> <updated>2003-12-13T18:30:02Z</updated> <summary>Some text.</summary> </entry> </feed>Elements of <feed>
A Feed consists of some metadata, followed by any number of entries.Required feed elements
Here's a list of the required feed elements, each with a brief description, and an example.
Element | Description |
---|---|
id | Identifies the feed using a universally unique and permanent URI. If you have a long-term, renewable lease on your Internet domain name, then you can feel free to use your website's address. <id>http://example.com/</id> |
title | Contains a human readable title for the feed. Often the same as the title of the associated website. This value should not be blank. <title>Example, Inc.</title> |
updated | Indicates the last time the feed was modified in a significant way. <updated>2003-12-13T18:30:02Z</updated> |
Recommended feed elements
Atom makes a number of additional requirements and recommendations for feed elements that you should to be aware of. They are as follows:Element | Description |
---|---|
author | Names one author of the feed. A feed may have multiple author elements. A feed must contain at least one author element unless all of the entry elements contain at least one author element. More info here. <author> <name>John Doe</name> <email>JohnDoe@example.com</email> <uri>http://example.com/~johndoe</uri> </author> |
link | Identifies a related Web page. The type of relation is defined by the rel attribute. A feed is limited to one alternate per type and hreflang . A feed should contain a link back to the feed itself. More info here. <link rel="self" href="/feed" /> |
Optional feed elements
Here's a list of optional feed elements.
Element | Description |
---|---|
category | Specifies a category that the feed belongs to. A feed may have multiple category elements. More info here. <category term="sports"/> |
contributor | Names one contributor to the feed. An feed may have multiple contributor elements. More info here. <contributor> <name>Jane Doe</name> </contributor> |
generator | Identifies the software used to generate the feed, for debugging and other purposes. Both the uri and version attributes are optional. <generator uri="/myblog.php" version="1.0"> Example Toolkit </generator> |
icon | Identifies a small image which provides iconic visual identification for the feed. Icons should be square. <icon>/icon.jpg</icon> |
logo | Identifies a larger image which provides visual identification for the feed. Images should be twice as wide as they are tall. <logo>/logo.jpg</logo> |
rights | Conveys information about rights, e.g. copyrights, held in and over the feed. More info here. <rights> © 2005 John Doe </rights> |
subtitle | Contains a human-readable description or subtitle for the feed. More info here. <subtitle>all your examples are belong to us</subtitle> |
Elements of <entry>
An example of an entry would be a single post on a weblog.Required Elements of <entry>
Here's a list of the required feed elements, each with a brief description, and an example.
Element | Description |
---|---|
id | Identifies the entry using a universally unique and permanent URI. Suggestions on how to make a good id can be found here. Two entries in a feed can have the same value for id if they represent the same entry at different points in time. <id>http://example.com/blog/1234</id> |
title | Contains a human readable title for the entry. This value should not be blank. <title>Atom-Powered Robots Run Amok</title> |
updated | Indicates the last time the entry was modified in a significant way. This value need not change after a typo is fixed, only after a substantial modification. Generally, different entries in a feed will have different updated timestamps. <updated>2003-12-13T18:30:02-05:00</updated> |
Recommended elements of <entry>
Atom makes a number of additional requirements and recommendations for entry elements that you should to be aware of. They are as follows:Element | Description |
---|---|
author | Names one author of the entry. An entry may have multiple authors. An entry must contain at least one author element unless there is an author element in the enclosing feed , or there is an author element in the enclosed source element. More info here. <author> <name>John Doe</name> </author> |
content | Contains or links to the complete content of the entry. Content must be provided if there is no alternate link, and should be provided if there is no summary . More info here. <content>complete story here</content> |
link | Identifies a related Web page. The type of relation is defined by the rel attribute. An entry is limited to one alternate per type and hreflang . An entry must contain an alternate link if there is no content element. More info here. <link rel="alternate" href="/blog/1234"/> |
summary | Conveys a short summary, abstract, or excerpt of the entry. Summary should be provided if there either is no content provided for the entry, or that content is not inline (i.e., contains a src attribute), or if the content is encoded in base64. More info here. <summary>Some text.</summary> |
Optional elements of <entry>
Here's a list of optional feed elements.
Element | Description |
---|---|
category | Specifies a category that the entry belongs to. A entry may have multiple category elements. More info here. <category term="technology"/> |
contributor | Names one contributor to the entry. An entry may have multiple contributor elements. More info here. <contributor> <name>Jane Doe</name> </contributor> |
published | Contains the time of the initial creation or first availability of the entry. <published>2003-12-13T09:17:51-08:00</published> |
source | If an entry is copied from one feed into another feed, then the source feed 's metadata (all child elements of feed other than the entry elements) should be preserved if the source feed contains any of the child elements author, contributor, rights, or category and those child elements are not present in the source entry . <source> <id>http://example.org/</id> <title>Fourty-Two</title> <updated>2003-12-13T18:30:02Z</updated> <rights>© 2005 Example, Inc.</rights> </source> |
rights | Conveys information about rights, e.g. copyrights, held in and over the entry. More info here. <rights type="html"> &copy; 2005 John Doe </rights> |
Common Constructs
Category
<category>
has one required attribute, term
, and two optional attributes, scheme
and label
.
term
identifies the category
scheme
identifies the categorization scheme via a URI.
label
provides a human-readable label for display
Content
<content>
either contains, or links to, the complete content of the entry.
In the most common case, the type
attribute is either text
, html
, xhtml
, in which case the content element is defined identically to other text constructs, which are described here.
Otherwise, if the src
attribute is present, it represents the URI of where the content can be found. The type
attribute, if present, is the media type of the content.
Otherwise, if the type
attribute ends in +xml
or /xml
, then an xml document of this type is contained inline.
Otherwise, if the type
attribute starts with text
, then an escaped document of this type is contained inline.
Otherwise, a base64 encoded document of the indicated media type is contained inline.
Link
<link>
is patterned after html's link element. It has one required attribute, href
, and five optional attributes: rel
, type
, hreflang
, title
, and length
.
href
is the URI of the referenced resource (typically a Web page)
rel
contains a single link relationship type. It can be a full URI (see extensibility), or one of the following predefined values (default=alternate)
:
alternate
: an alternate representation of the entry or feed, for example a permalink to the html version of the entry, or the front page of the weblog.enclosure
: a related resource which is potentially large in size and might require special handling, for example an audio or video recording.related
: an document related to the entry or feed.self
: the feed itself.via
: the source of the information provided in the entry.
type
indicates the media type of the resource.
hreflang
indicates the language of the referenced resource.
title
human readable information about the link, typically for display purposes.
length
the length of the resource, in bytes.
Person
<author>
and <contributor>
describe a person, corporation, or similar entity. It has one required element, name
, and two optional elements: uri
, email
.
<name>
conveys a human-readable name for the person.
<uri>
contains a home page for the person.
<email>
contains an email address for the person.
Text
<title>
, <summary>
, <content>
, and <rights>
contain human-readable text, usually in small quantities. The type
attribute determines how this information is encoded (default="text")
If type="text"
, then this element contains plain text with no entity escaped html.
If type="html"
, then this element contains entity escaped html.
If type="xhtml"
, then this element contains inline xhtml, wrapped in a div element.
Extending Atom
The atom content element is designed to support the direct inclusion of other XML vocabularies.
Any fully qualified URI may be used a value for the rel attribute of link
elements.
Elements from other namespaces may be included pretty much anywhere. This means that most RSS 1.0 and RSS 2.0 modules may be used in Atom.
원자 신디케이트 조직 체재 - 소개
목차
원자는 무엇인가?
원자는 XML 근거한 웹 내용 및 메타-데이터 신디케이트 조직 체재의 이름, 및 정기적으로 개정하는 웹사이트에 속하는 웹 자원 간행하고 편집하기를 위한 신청 수준 의정서이다.
모든 원자 급식은 적격 XML 문서이어야 하고, 신청 또는 atom+xml
미디어 타입으로 확인된다.
이 문서에 관하여
이 문서는 IETF AtomPub 집단 작업에 의해 일어난 원자 신디케이트 조직 체재에 집중한다. 이 문서가 인터넷 초안과 다르면 일 경우에는, 인터넷 초안은 권위있는 여겨질 것이다.
일반적인 고려사항:
- 이 문서에서 기술된 모든 성분은 http://www.w3.org/2005/Atom namespace에 있어야 한다.
- 원자에 있는 모든 타임 스탬프는 RFC 3339에 따라야 한다.
- 특별한 다른 규정이 없는한, 모든 가치는 평문 (i.e, 실재물 암호로 고쳐 쓴 html 없음)이어야 한다.
xml: lang는
어떤 인간 판독형 원본든지의 언어를 확인하기 위하여 이용될지도 모른다.xml: 기초는
관계되는 URIs가 단호한 어떻게 지 통제하기 위하여 이용될지도 모른다.
견본 급식
<? xml version= " 1.0 " encoding= " utf-8 "? > xmlns= " http://www.w3.org/2005/Atom "를 > <title>Example Feed</title> <link href= " http://example.org/ "/> <updated>2003-12-13T18 <feed: 30: 02Z</updated> <author> <name>John Doe</name> </author> <id>urn: uuid: 60a76c80-d399-11d9-b93C-0003939e0af6</id> <entry>는 로봇 뛰기 Amok</title> <link href= " http://example.org/2003/12/13/atom03 "/> <id>urn를 <title>Atom-Powered: uuid: 1225c695-cfb8-4ebb-aaaa-80da344efa6a</id> <updated>2003-12-13T18: 30: 02Z</updated> <summary>Some text.</summary> </entry> </feed><feed>의 성분
입장의 어떤 수든지에 선행된 몇몇 메타-데이터가 급식에 의하여 이루어져 있다.필수 급식 성분
필수 급식 성분, 간단한 설명에 각각, 및 보기의 명부는 여기에서 있다.
성분 | 묘사 |
---|---|
I.D | 보편적으로 유일하고 영원한 URI를 사용하여 급식을 확인한다. 당신은 장기가, 당신의 인터넷 도메인 이름에 갱신할 수 있는 빌림 있는 경우에, 당신은 당신의 웹사이트의 주소를 사용하게 자유롭게 느낄 수 있다. <id> http://example.com/ </id> |
제목 | 급식을 위한 인간 판독형 제목을 포함한다. 연합되는 웹사이트의 제목과 수시로 같 것. 이 가치는 공백 이면 안된다. <title>Example, Inc.</title> |
개정하는 | 최후 급식이 뜻깊은 방법으로 변경되었다는 것을 나타낸다. <updated>2003-12-13T18: 30: 02Z</updated> |
추천된 급식 성분
원자는 당신이 알고 있 일 것이는 급식 성분을 위한 다수 추가적인 필요조건 그리고 추천한다. 그들은 다음과 같이 이다:성분 | 묘사 |
---|---|
저자 | 이름 급식의 1명의 저자. 급식에는 다수 저자 성분이 있을지도 모른다. 급식은 입장 성분 전부가 적어도 1 저자 성분을 포함하면 않는 한 적어도 1개의 저자 성분을 포함해야 한다. 여기에서 정보 더. <author> <name>John Doe</name> <email>JohnDoe@example.com</email> <uri> http://example.com/~johndoe </uri> </author> |
연결 | 관련 웹 페이지를 확인한다. 관계의 유형은 rel 속성에 의해 정의된다. 급식은 유형 과 hreflang 당 1개의 대체 로 제한된다. 급식은 급식 등을 맞댄 자체를 연결 포함해야 한다. 여기에서 정보 더. <link rel= " 각자 " href= " /feed "/> |
선택 급식 성분
선택 급식 성분의 명부는 여기에서 있다.
성분 | 묘사 |
---|---|
종류 | 급식이에 속한다 종류를 지정한다. 급식에는 다수 종류 성분이 있을지도 모른다. 여기에서 정보 더. />가 <category term=에 의하여 " " |
헌납자 | 이름 급식에 1명의 헌납자. 급식에는 다수 헌납자 성분이 있을지도 모른다. 여기에서 정보 더. <contributor> <name>Jane Doe</name> </contributor> |
발전기 | 벌레잡기와 다른 목적을 위한 급식을, 생성하기 위하여 이용된 소프트웨어를 확인한다. uri와 버전 속성은 둘 다 선택 이다. <generator uri= " /myblog.php " version= " 1.0 " > 보기 툴키트 </generator> |
아이콘 | 급식을 상 시각적인 ID를 제공하는 작은 심상을 확인한다. 아이콘은 사각이어야 한다. <icon>/icon.jpg</icon> |
로고 | 급식을 시각적인 ID를 제공하는 더 큰 심상을 확인한다. 심상은 키 크다 두번 넓어야 한다. <logo>/logo.jpg</logo> |
권리 | 권리, 급식에서 그리고에 보전된 예를들면 저작권에 관하여 정보를 전한다. 여기에서 정보 더. <rights> © 2005년 아무개 </rights> |
부제 | 급식을 위한 인간 판독형 묘사 또는 부제를 포함한다. 여기에서 정보 더. <subtitle>all는 us</subtitle>에 당신의 보기 속한다 이다 |
<entry>의 성분
입장의 보기는 weblog에 단 하나 포스트일 것입니다.<entry>의 필수 성분
필수 급식 성분, 간단한 설명에 각각, 및 보기의 명부는 여기에서 있다.
성분 | 묘사 |
---|---|
I.D | 보편적으로 유일하고 영원한 URI를 사용하여 입장을 확인한다. 좋은 I.D를 만드는 방법에 관한 제안은 여기에서 찾아낼 수 있다. 때 맞추어 다른 점에 동일한 입장을 대표하는 경우에 급식에 있는 2개의 입장에는 I.D를 위한 동일한 가치가 있을 수 있다. <id> http://example.com/blog/1234 </id> |
제목 | 입장을 위한 인간 판독형 제목을 포함한다. 이 가치는 공백 이면 안된다. 로봇 뛰기 Amok</title>를 <title>Atom-Powered |
개정하는 | 최후 입장이 뜻깊은 방법으로 변경되었다는 것을 나타낸다. 이 가치는 오식이 조정 인 내용이 풍부한 수정 직후에 후에 변화할 필요가 없는다. 일반적으로, 급식에 있는 다른 입장에는 다른 개정하는 타임 스탬프가 있을 것이다. <updated>2003-12-13T18: 30: 02-05: 00</updated> |
<entry>의 추천된 성분
원자는 당신이 알고 있 일 것이는 입장 성분을 위한 다수 추가적인 필요조건 그리고 추천한다. 그들은 다음과 같이 이다:성분 | 묘사 |
---|---|
저자 | 이름 입장의 1명의 저자. 입장에는 다수 저자가 있을지도 모른다. 입장은 둘러싸는 급식 에 있는 저자 성분이 있으면 않는 한 적어도 1개의 저자 성분을 포함해야 한다, 또는 동봉하는 근원 성분에 있는 저자 성분이 있다. 여기에서 정보 더. <author> <name>John Doe</name> </author> |
내용 | 입장의 완전한 내용에 포함하거나 연결한다. 내용은 아무 개요도 없는 경우에 교체 연결이 없는 경우에 제공되어야 하고, 제공되어야 한다. 여기에서 정보 더. <content>complete 이야기 here</content> |
연결 | 관련 웹 페이지를 확인한다. 관계의 유형은 rel 속성에 의해 정의된다. 입장은 유형 과 hreflang 당 1개의 대체 로 제한된다. 입장은 만약에 만족한 성분이 없으면 교체 연결을 포함해야 한다. 여기에서 정보 더. <link rel= " 대체 " href= " /blog/1234 "/> |
개요 | 입장의 요약, 요약, 또는 발췌를 전한다. 개요는 저 내용이 인라인 (i.e, src 속성을 포함한다) 없거나, 내용이 base64에서 이지 않는 경우에 입장을 제공된 아무 내용도, 암호로 고쳐 쓰는지 제공되어야 한다. 여기에서 정보 더. <summary>Some text.</summary> |
<entry>의 옵션 요소
선택 급식 성분의 명부는 여기에서 있다.
성분 | 묘사 |
---|---|
종류 | 입장이에 속한다 종류를 지정한다. 입장에는 다수 종류 성분이 있을지도 모른다. 여기에서 정보 더. <category term= " 기술 "/> |
헌납자 | 이름 입장에 1명의 헌납자. 입장에는 다수 헌납자 성분이 있을지도 모른다. 여기에서 정보 더. <contributor> <name>Jane Doe</name> </contributor> |
간행하는 | 입장의 처음 창조 첫번째 가용성의 시간을 포함한다. <published>2003-12-13T09: 17: 51-08: 00</published> |
근원 | 입장이 다른 급식으로 1 급식에서 베껴지는 경우에, 근원 급식이 아이 성분 저자 의 무엇이든을 포함하는 경우에 근원 급식의 메타-데이터 (입장 성분 이외에 급식 의 모든 아이 성분)는, 헌납자, 권리, 또는 종류 그리고 그 성분에 의하여 근원 입장 에서 출석하지 않는 아이 보존되어야 한다. <source> <id> http://example.org/ </id> <title>Fourty-Two</title> <updated>2003-12-13T18: 30: 02Z</updated> <rights>© 2005년 보기, Inc.</rights> </source> |
권리 | 권리, 입장에서 그리고에 보전된 예를들면 저작권에 관하여 정보를 전한다. 여기에서 정보 더. <rights type= " html " > & 사본; 2005년 아무개 </rights> |
일반적인 구조물
종류
<category>
있 1 required 필수 속성, 기간
, 그리고 2 선택 속성, 계획
그리고 상표
.
기간은
종류를 확인한다
계획은
URI를 통해 분류 계획을 확인한다.
상표는
전시를 인간 판독형 상표를 제공한다
내용
<content>는
포함하거나, 에, 입장의 완전한 내용 연결한다.
일반적인 케이스에서는, 만족한 성분이 여기에서 기술되는 다른 원본 구조물과 동일하게 정의되면 어떤 경우에는, Type 속성 어느 것이든 원본
, html
의 xhtml
이다.
그렇지 않으면, src
속성이 경우에 출석하면, 내용이 찾아낼 수 있는 URI를 대표한다. Type 속성, 현재, 내용의 미디어 타입인 경우에.
그렇지 않으면, +xml /xml
에 있는 Type 속성 끝, 그 때 이 유형의 xml 문서 인라인으로 포함되는 경우에.
이 유형의 그렇지 않으면 Type 속성 원본
에서 시작하는 경우에, 그 후에 도주된 문서 인라인으로 포함된다.
그렇지 않으면, 나타난 미디어 타입의 base64에 의하여 암호로 고쳐 쓴 문서는 인라인으로 포함된다.
연결
<link>는
html의 연결 성분 후에 모방된다. 그것에는 1개의 필수 속성, href
및 5개의 선택 속성이 있다: rel
, 유형
, hreflang
, 제목
및 길이
.
href는
이다 참조 사항를 붙인 자원 (전형적으로 웹 페이지)의 URI
rel는
단 하나 연결 관계 유형을 포함한다. 가득 차있는 URI (신장성을 보십시오), 또는 뒤에 오는 미리 정의한 가치 (default=alternate)
의 한일 수 있다:
대체
: 입장 급식 의 입장의 html 버전, weblog의 중요한 것에 예를 들면 permalink의 교체 대표.울안
: 크기에서 잠재적으로 크 특별한 취급을 의 예를 들면 오디오 비디오 녹화 요구할지도 모른 관련 자원.관련되
: 문서는 입장 또는 급식과 관련되었다.각자
: 급식 자체.를 통해
: 정보의 근원은 입장에서 제공했다.
유형은
자원의 미디어 타입을 나타낸다.
hreflang는
참조 사항를 붙인 자원의 언어를 나타낸다.
전시를 위한 연결에 관하여 제목
인간 판독형 정보는, 전형적으로 작정한다.
길이
바이트에서 자원의 길이.
사람
<author>
와 <contributor>는
사람, 기업, 또는 유사한 실재물을 기술한다. 그것에는 1개의 요구한 성분, 이름
및 2개의 옵션 요소가 있다: uri
, 전자 우편
.
<name>는
사람의 인간 판독형 이름을 전한다.
<uri>는
사람을 위한 홈 페이지를 포함한다.
<email>는
사람을 위한 이메일 주소를 포함한다.
원본
<title>
, <summary>
, <content>
및 <rights>는
인간 판독형 원본을, 보통 소량으로 포함한다. 이 정보가 어떻게 암호로 고쳐 쓰는지 Type 속성 결정한다 (default= " 원본 ")
type= " 원본 "가
실재물에 의하여 도주된 html 없이, 그 때 이 성분 평문을 포함하는 경우에.
type= " html "가
, 그 때 이 성분 실재물에 의하여 도주된 html를 포함하는 경우에.
type= " xhtml "가
, 그 때 이 성분 인라인 xhtml를 포함하는 경우에, DIV 성분에서 감싸이는.
늘이는 원자
원자 내용 성분은 다른 XML 어휘의 직접적인 포함을 지원하기 위하여 디자인된다.
어떤 완전히 자격이 된 URI는 연결
성분의 rel 속성을 위해 가치 사용될지도 모른다.
다른 namespaces에서 성분은 거의 어느 곳에서든지 포함될지도 모른다. 이것은 대부분의 RSS 1.0와 RSS 2.0 단위가 원자에서 사용될지도 모른다 의미한다.