forked from rails/atom_feed_helper
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathREADME
72 lines (59 loc) · 1.92 KB
/
README
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
AtomFeedHelper
==============
Makes it easier to create atom feeds through Builder.
Example
=======
# from PostsController
def index
@posts = Post.find(:all, :limit => 25)
respond_to do |format|
format.html
format.atom
end
end
# from posts/index.atom.builder
atom_feed(:url => formatted_people_url(:atom)) do |feed|
feed.title("Address book")
feed.updated(@people.first ? @people.first.created_at : Time.now.utc)
for post in @posts
feed.entry(post) do |entry|
entry.title(post.title)
entry.content(post.body, :type => 'html')
entry.author do |author|
author.name(post.creator.name)
author.email(post.creator.email_address)
end
end
end
end
...returns:
<?xml version="1.0" encoding="UTF-8"?>
<feed xml:lang="en-US" xmlns="http://www.w3.org/2005/Atom">
<id>tag:localhost:people</id>
<link type="application/atom+xml" rel="self" href="http://example.com/people.atom"/>
<title>Address book</title>
<updated></updated>
<entry>
<id>tag:localhost:3000,2007-05-18T16:35:00-07:00:Person1</id>
<published>2007-05-18T16:35:00-07:00</published>
<link type="text/html" rel="alternate" href="http://example.com/people/1" />
<title>The future is now</title>
<content type="html">Once upon a time</content>
<author>
<name>DHH</name>
<email>[email protected]</email>
</author>
</entry>
<entry>
<id>tag:localhost:3000,2007-05-18T09:36:00-07:00:Person2</id>
<published>2007-05-18T09:36:00-07:00</published>
<link type="text/html" rel="alternate" href="http://example.com/people/1" />
<title>Matz</title>
<content type="html">This is Matz</content>
<author>
<name>Matz</name>
<email>Matz</email>
</author>
</entry>
</feed>
Copyright (c) 2007 David Heinemeier Hansson, released under the MIT license