lotus 0.0.12
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- data/.gitignore +6 -0
- data/.travis.yml +9 -0
- data/Gemfile +16 -0
- data/README.md +233 -0
- data/Rakefile +7 -0
- data/lib/lotus.rb +232 -0
- data/lib/lotus/activity.rb +134 -0
- data/lib/lotus/atom/account.rb +50 -0
- data/lib/lotus/atom/address.rb +56 -0
- data/lib/lotus/atom/author.rb +167 -0
- data/lib/lotus/atom/category.rb +41 -0
- data/lib/lotus/atom/entry.rb +159 -0
- data/lib/lotus/atom/feed.rb +174 -0
- data/lib/lotus/atom/generator.rb +40 -0
- data/lib/lotus/atom/link.rb +79 -0
- data/lib/lotus/atom/name.rb +57 -0
- data/lib/lotus/atom/organization.rb +62 -0
- data/lib/lotus/atom/portable_contacts.rb +117 -0
- data/lib/lotus/atom/source.rb +168 -0
- data/lib/lotus/atom/thread.rb +60 -0
- data/lib/lotus/author.rb +177 -0
- data/lib/lotus/category.rb +45 -0
- data/lib/lotus/crypto.rb +146 -0
- data/lib/lotus/feed.rb +190 -0
- data/lib/lotus/generator.rb +53 -0
- data/lib/lotus/identity.rb +59 -0
- data/lib/lotus/link.rb +56 -0
- data/lib/lotus/notification.rb +220 -0
- data/lib/lotus/publisher.rb +40 -0
- data/lib/lotus/subscription.rb +117 -0
- data/lib/lotus/version.rb +3 -0
- data/lotus.gemspec +27 -0
- data/spec/activity_spec.rb +84 -0
- data/spec/atom/feed_spec.rb +681 -0
- data/spec/author_spec.rb +150 -0
- data/spec/crypto_spec.rb +138 -0
- data/spec/feed_spec.rb +252 -0
- data/spec/helper.rb +8 -0
- data/spec/identity_spec.rb +67 -0
- data/spec/link_spec.rb +30 -0
- data/spec/notification_spec.rb +77 -0
- data/test/example_feed.atom +393 -0
- data/test/example_feed_empty_author.atom +336 -0
- data/test/example_feed_false_connected.atom +359 -0
- data/test/example_feed_link_without_href.atom +134 -0
- data/test/example_page.html +4 -0
- data/test/mime_type_bug_feed.atom +874 -0
- metadata +204 -0
@@ -0,0 +1,336 @@
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8"?>
|
2
|
+
<feed xml:lang="en-US" xmlns="http://www.w3.org/2005/Atom" xmlns:thr="http://purl.org/syndication/thread/1.0" xmlns:georss="http://www.georss.org/georss" xmlns:activity="http://activitystrea.ms/spec/1.0/" xmlns:media="http://purl.org/syndication/atommedia" xmlns:poco="http://portablecontacts.net/spec/1.0" xmlns:ostatus="http://ostatus.org/schema/1.0" xmlns:statusnet="http://status.net/schema/api/1/">
|
3
|
+
<generator uri="http://status.net" version="0.9.7beta3">StatusNet</generator>
|
4
|
+
<id>http://identi.ca/api/statuses/user_timeline/141464.atom</id>
|
5
|
+
<title>greenmanspirit timeline</title>
|
6
|
+
<subtitle>Updates from greenmanspirit on Identi.ca!</subtitle>
|
7
|
+
<logo>http://avatar.identi.ca/141464-96-20100607212940.jpeg</logo>
|
8
|
+
<updated>2011-03-12T22:10:24+00:00</updated>
|
9
|
+
<author>
|
10
|
+
<activity:object-type>http://activitystrea.ms/schema/1.0/person</activity:object-type>
|
11
|
+
<link rel="alternate" type="text/html" href="http://identi.ca/greenmanspirit"/>
|
12
|
+
<link rel="avatar" type="image/jpeg" media:width="480" media:height="480" href="http://avatar.identi.ca/141464-480-20100607212940.jpeg"/>
|
13
|
+
<link rel="avatar" type="image/jpeg" media:width="96" media:height="96" href="http://avatar.identi.ca/141464-96-20100607212940.jpeg"/>
|
14
|
+
<link rel="avatar" type="image/jpeg" media:width="48" media:height="48" href="http://avatar.identi.ca/141464-48-20100607212940.jpeg"/>
|
15
|
+
<link rel="avatar" type="image/jpeg" media:width="24" media:height="24" href="http://avatar.identi.ca/141464-24-20100607212940.jpeg"/>
|
16
|
+
<georss:point>0 0</georss:point>
|
17
|
+
<statusnet:profile_info local_id="141464"></statusnet:profile_info>
|
18
|
+
</author>
|
19
|
+
<!--Deprecation warning: activity:subject is present only for backward compatibility. It will be removed in the next version of StatusNet.-->
|
20
|
+
<activity:subject>
|
21
|
+
<activity:object-type>http://activitystrea.ms/schema/1.0/person</activity:object-type>
|
22
|
+
<id>http://identi.ca/user/141464</id>
|
23
|
+
<title>Adam Hobaugh</title>
|
24
|
+
<link rel="alternate" type="text/html" href="http://identi.ca/greenmanspirit"/>
|
25
|
+
<link rel="avatar" type="image/jpeg" media:width="480" media:height="480" href="http://avatar.identi.ca/141464-480-20100607212940.jpeg"/>
|
26
|
+
<link rel="avatar" type="image/jpeg" media:width="96" media:height="96" href="http://avatar.identi.ca/141464-96-20100607212940.jpeg"/>
|
27
|
+
<link rel="avatar" type="image/jpeg" media:width="48" media:height="48" href="http://avatar.identi.ca/141464-48-20100607212940.jpeg"/>
|
28
|
+
<link rel="avatar" type="image/jpeg" media:width="24" media:height="24" href="http://avatar.identi.ca/141464-24-20100607212940.jpeg"/>
|
29
|
+
<georss:point>0 0</georss:point>
|
30
|
+
<poco:preferredUsername>greenmanspirit</poco:preferredUsername>
|
31
|
+
<poco:displayName>Adam Hobaugh</poco:displayName>
|
32
|
+
<poco:urls>
|
33
|
+
<poco:type>homepage</poco:type>
|
34
|
+
<poco:value>http://adamhobaugh.com</poco:value>
|
35
|
+
<poco:primary>true</poco:primary>
|
36
|
+
|
37
|
+
</poco:urls>
|
38
|
+
<statusnet:profile_info local_id="141464"></statusnet:profile_info>
|
39
|
+
</activity:subject>
|
40
|
+
<link href="http://identi.ca/greenmanspirit" rel="alternate" type="text/html"/>
|
41
|
+
<link href="http://identi.ca/main/sup#141464" rel="http://api.friendfeed.com/2008/03#sup" type="application/json"/>
|
42
|
+
<link href="http://identi.ca/api/statuses/user_timeline/141464.atom?max_id=51327114" rel="next" type="application/atom+xml"/>
|
43
|
+
<link href="http://identi.ca/main/push/hub" rel="hub"/>
|
44
|
+
<link href="http://identi.ca/main/salmon/user/141464" rel="salmon"/>
|
45
|
+
<link href="http://identi.ca/main/salmon/user/141464" rel="http://salmon-protocol.org/ns/salmon-replies"/>
|
46
|
+
<link href="http://identi.ca/main/salmon/user/141464" rel="http://salmon-protocol.org/ns/salmon-mention"/>
|
47
|
+
<link href="http://identi.ca/api/statuses/user_timeline/141464.atom" rel="self" type="application/atom+xml"/>
|
48
|
+
<entry>
|
49
|
+
<activity:object-type>http://activitystrea.ms/schema/1.0/note</activity:object-type>
|
50
|
+
<activity:object>Foobar</activity:object>
|
51
|
+
<activity:target>Barbaz</activity:target>
|
52
|
+
<id>http://identi.ca/notice/64991641</id>
|
53
|
+
<title>staples come out of the head tomorrow, oh yeah</title>
|
54
|
+
<content type="html">staples come out of the head tomorrow, oh yeah</content>
|
55
|
+
<link rel="alternate" type="text/html" href="http://identi.ca/notice/64991641"/>
|
56
|
+
<activity:verb>http://activitystrea.ms/schema/1.0/post</activity:verb>
|
57
|
+
<published>2011-02-21T02:15:14+00:00</published>
|
58
|
+
<updated>2011-03-22T02:15:14+00:00</updated>
|
59
|
+
<link rel="ostatus:conversation" href="http://identi.ca/conversation/64239058"/>
|
60
|
+
<link rel="self" type="application/atom+xml" href="http://identi.ca/api/statuses/show/64991641.atom"/>
|
61
|
+
<link rel="edit" type="application/atom+xml" href="http://identi.ca/api/statuses/show/64991641.atom"/>
|
62
|
+
<statusnet:notice_info local_id="64991641" source="xmpp" favorite="false" repeated="false"></statusnet:notice_info>
|
63
|
+
|
64
|
+
</entry>
|
65
|
+
<entry>
|
66
|
+
<id>http://identi.ca/notice/64985575</id>
|
67
|
+
<title>getting back into applying for jobs now that I have my debt back under control from unemployment</title>
|
68
|
+
<content type="html">getting back into applying for jobs now that I have my debt back under control from unemployment</content>
|
69
|
+
<link rel="alternate" type="text/html" href="http://identi.ca/notice/64985575"/>
|
70
|
+
<published>2011-02-21T00:41:24+00:00</published>
|
71
|
+
<updated>2011-03-22T00:41:24+00:00</updated>
|
72
|
+
<link rel="ostatus:conversation" href="http://identi.ca/conversation/64233166"/>
|
73
|
+
<link rel="self" type="application/atom+xml" href="http://identi.ca/api/statuses/show/64985575.atom"/>
|
74
|
+
<link rel="edit" type="application/atom+xml" href="http://identi.ca/api/statuses/show/64985575.atom"/>
|
75
|
+
<statusnet:notice_info local_id="64985575" source="xmpp" favorite="false" repeated="false"></statusnet:notice_info>
|
76
|
+
|
77
|
+
</entry>
|
78
|
+
<entry>
|
79
|
+
<activity:object-type>http://activitystrea.ms/schema/1.0/note</activity:object-type>
|
80
|
+
<id>http://identi.ca/notice/61452377</id>
|
81
|
+
<title>It's times like this I wish I had sleepytime tea</title>
|
82
|
+
<content type="html">It's times like this I wish I had sleepytime tea</content>
|
83
|
+
<link rel="alternate" type="text/html" href="http://identi.ca/notice/61452377"/>
|
84
|
+
<activity:verb>http://activitystrea.ms/schema/1.0/post</activity:verb>
|
85
|
+
<published>2011-01-03T05:11:50+00:00</published>
|
86
|
+
<updated>2011-01-03T05:11:50+00:00</updated>
|
87
|
+
<link rel="ostatus:conversation" href="http://identi.ca/conversation/60809276"/>
|
88
|
+
<link rel="self" type="application/atom+xml" href="http://identi.ca/api/statuses/show/61452377.atom"/>
|
89
|
+
<link rel="edit" type="application/atom+xml" href="http://identi.ca/api/statuses/show/61452377.atom"/>
|
90
|
+
<statusnet:notice_info local_id="61452377" source="<a href="http://mustard.macno.org" rel="nofollow">mustard</a>" source_link="http://mustard.macno.org" favorite="false" repeated="false"></statusnet:notice_info>
|
91
|
+
|
92
|
+
</entry>
|
93
|
+
<entry>
|
94
|
+
<activity:object-type>http://activitystrea.ms/schema/1.0/note</activity:object-type>
|
95
|
+
<id>http://identi.ca/notice/61441098</id>
|
96
|
+
<title>My latest accomplishment - http://ravel.me/greenmanspirit/ro20b</title>
|
97
|
+
<content type="html">My latest accomplishment - <a href="http://ravel.me/greenmanspirit/ro20b" title="http://www.ravelry.com/projects/greenmanspirit/reversible-strands-for-men-and-women-too" rel="nofollow external">http://ravel.me/greenmanspirit/ro20b</a></content>
|
98
|
+
<link rel="alternate" type="text/html" href="http://identi.ca/notice/61441098"/>
|
99
|
+
<activity:verb>http://activitystrea.ms/schema/1.0/post</activity:verb>
|
100
|
+
<published>2011-01-02T22:49:44+00:00</published>
|
101
|
+
<updated>2011-01-02T22:49:44+00:00</updated>
|
102
|
+
<link rel="ostatus:conversation" href="http://identi.ca/conversation/60798524"/>
|
103
|
+
<link rel="self" type="application/atom+xml" href="http://identi.ca/api/statuses/show/61441098.atom"/>
|
104
|
+
<link rel="edit" type="application/atom+xml" href="http://identi.ca/api/statuses/show/61441098.atom"/>
|
105
|
+
<statusnet:notice_info local_id="61441098" source="web" favorite="false" repeated="false"></statusnet:notice_info>
|
106
|
+
|
107
|
+
</entry>
|
108
|
+
<entry>
|
109
|
+
<activity:object-type>http://activitystrea.ms/schema/1.0/note</activity:object-type>
|
110
|
+
<id>http://identi.ca/notice/60190679</id>
|
111
|
+
<title>First field trip today, and its to the mall</title>
|
112
|
+
<content type="html">First field trip today, and its to the mall</content>
|
113
|
+
<link rel="alternate" type="text/html" href="http://identi.ca/notice/60190679"/>
|
114
|
+
<activity:verb>http://activitystrea.ms/schema/1.0/post</activity:verb>
|
115
|
+
<published>2010-12-10T18:50:20+00:00</published>
|
116
|
+
<updated>2010-12-10T18:50:20+00:00</updated>
|
117
|
+
<link rel="ostatus:conversation" href="http://identi.ca/conversation/59590921"/>
|
118
|
+
<link rel="self" type="application/atom+xml" href="http://identi.ca/api/statuses/show/60190679.atom"/>
|
119
|
+
<link rel="edit" type="application/atom+xml" href="http://identi.ca/api/statuses/show/60190679.atom"/>
|
120
|
+
<statusnet:notice_info local_id="60190679" source="<a href="http://mustard.macno.org" rel="nofollow">mustard</a>" source_link="http://mustard.macno.org" favorite="false" repeated="false"></statusnet:notice_info>
|
121
|
+
|
122
|
+
</entry>
|
123
|
+
<entry>
|
124
|
+
<activity:object-type>http://activitystrea.ms/schema/1.0/note</activity:object-type>
|
125
|
+
<id>http://identi.ca/notice/59612332</id>
|
126
|
+
<title>bacon makes everything better</title>
|
127
|
+
<content type="html">bacon makes everything better</content>
|
128
|
+
<link rel="alternate" type="text/html" href="http://identi.ca/notice/59612332"/>
|
129
|
+
<activity:verb>http://activitystrea.ms/schema/1.0/post</activity:verb>
|
130
|
+
<published>2010-12-02T02:33:38+00:00</published>
|
131
|
+
<updated>2010-12-02T02:33:38+00:00</updated>
|
132
|
+
<link rel="ostatus:conversation" href="http://identi.ca/conversation/59031019"/>
|
133
|
+
<link rel="self" type="application/atom+xml" href="http://identi.ca/api/statuses/show/59612332.atom"/>
|
134
|
+
<link rel="edit" type="application/atom+xml" href="http://identi.ca/api/statuses/show/59612332.atom"/>
|
135
|
+
<statusnet:notice_info local_id="59612332" source="xmpp" favorite="false" repeated="false"></statusnet:notice_info>
|
136
|
+
|
137
|
+
</entry>
|
138
|
+
<entry>
|
139
|
+
<activity:object-type>http://activitystrea.ms/schema/1.0/note</activity:object-type>
|
140
|
+
<id>http://identi.ca/notice/57207676</id>
|
141
|
+
<title>I am now a professional driver, will post my cdl once I'm not to lazy to scratch off personal info</title>
|
142
|
+
<content type="html">I am now a professional driver, will post my cdl once I'm not to lazy to scratch off personal info</content>
|
143
|
+
<link rel="alternate" type="text/html" href="http://identi.ca/notice/57207676"/>
|
144
|
+
<activity:verb>http://activitystrea.ms/schema/1.0/post</activity:verb>
|
145
|
+
<published>2010-10-23T00:53:05+00:00</published>
|
146
|
+
<updated>2010-10-23T00:53:05+00:00</updated>
|
147
|
+
<link rel="ostatus:conversation" href="http://identi.ca/conversation/56711855"/>
|
148
|
+
<link rel="self" type="application/atom+xml" href="http://identi.ca/api/statuses/show/57207676.atom"/>
|
149
|
+
<link rel="edit" type="application/atom+xml" href="http://identi.ca/api/statuses/show/57207676.atom"/>
|
150
|
+
<statusnet:notice_info local_id="57207676" source="<a href="http://mustard.macno.org" rel="nofollow">mustard</a>" source_link="http://mustard.macno.org" favorite="false" repeated="false"></statusnet:notice_info>
|
151
|
+
|
152
|
+
</entry>
|
153
|
+
<entry>
|
154
|
+
<activity:object-type>http://activitystrea.ms/schema/1.0/note</activity:object-type>
|
155
|
+
<id>http://identi.ca/notice/56394008</id>
|
156
|
+
<title>Has anyone ever used a pedometer to guide a workout plan, I have one laying around but need a workout plan to go with it and if its worth it</title>
|
157
|
+
<content type="html">Has anyone ever used a pedometer to guide a workout plan, I have one laying around but need a workout plan to go with it and if its worth it</content>
|
158
|
+
<link rel="alternate" type="text/html" href="http://identi.ca/notice/56394008"/>
|
159
|
+
<activity:verb>http://activitystrea.ms/schema/1.0/post</activity:verb>
|
160
|
+
<published>2010-10-16T20:29:50+00:00</published>
|
161
|
+
<updated>2010-10-16T20:29:50+00:00</updated>
|
162
|
+
<link rel="ostatus:conversation" href="http://identi.ca/conversation/55912537"/>
|
163
|
+
<link rel="self" type="application/atom+xml" href="http://identi.ca/api/statuses/show/56394008.atom"/>
|
164
|
+
<link rel="edit" type="application/atom+xml" href="http://identi.ca/api/statuses/show/56394008.atom"/>
|
165
|
+
<statusnet:notice_info local_id="56394008" source="<a href="http://mustard.macno.org" rel="nofollow">mustard</a>" source_link="http://mustard.macno.org" favorite="false" repeated="false"></statusnet:notice_info>
|
166
|
+
|
167
|
+
</entry>
|
168
|
+
<entry>
|
169
|
+
<activity:object-type>http://activitystrea.ms/schema/1.0/note</activity:object-type>
|
170
|
+
<id>http://identi.ca/notice/56176750</id>
|
171
|
+
<title>Stargate Universe is by far my favorite show, its what Voyager should have been</title>
|
172
|
+
<content type="html">Stargate Universe is by far my favorite show, its what Voyager should have been</content>
|
173
|
+
<link rel="alternate" type="text/html" href="http://identi.ca/notice/56176750"/>
|
174
|
+
<activity:verb>http://activitystrea.ms/schema/1.0/post</activity:verb>
|
175
|
+
<published>2010-10-14T23:24:48+00:00</published>
|
176
|
+
<updated>2010-10-14T23:24:48+00:00</updated>
|
177
|
+
<link rel="ostatus:conversation" href="http://identi.ca/conversation/55699029"/>
|
178
|
+
<link rel="self" type="application/atom+xml" href="http://identi.ca/api/statuses/show/56176750.atom"/>
|
179
|
+
<link rel="edit" type="application/atom+xml" href="http://identi.ca/api/statuses/show/56176750.atom"/>
|
180
|
+
<statusnet:notice_info local_id="56176750" source="<a href="http://mustard.macno.org" rel="nofollow">mustard</a>" source_link="http://mustard.macno.org" favorite="false" repeated="false"></statusnet:notice_info>
|
181
|
+
|
182
|
+
</entry>
|
183
|
+
<entry>
|
184
|
+
<activity:object-type>http://activitystrea.ms/schema/1.0/note</activity:object-type>
|
185
|
+
<id>http://identi.ca/notice/54276991</id>
|
186
|
+
<title>Anyone have 500 I can borrow to cover till my bus job pays, I will to pay $50 in interest, payments 45 for 11, 55 month 12, will pay notary</title>
|
187
|
+
<content type="html">Anyone have 500 I can borrow to cover till my bus job pays, I will to pay $50 in interest, payments 45 for 11, 55 month 12, will pay notary</content>
|
188
|
+
<link rel="alternate" type="text/html" href="http://identi.ca/notice/54276991"/>
|
189
|
+
<activity:verb>http://activitystrea.ms/schema/1.0/post</activity:verb>
|
190
|
+
<published>2010-10-05T15:48:37+00:00</published>
|
191
|
+
<updated>2010-10-05T15:48:37+00:00</updated>
|
192
|
+
<link rel="ostatus:conversation" href="http://identi.ca/conversation/53821805"/>
|
193
|
+
<link rel="self" type="application/atom+xml" href="http://identi.ca/api/statuses/show/54276991.atom"/>
|
194
|
+
<link rel="edit" type="application/atom+xml" href="http://identi.ca/api/statuses/show/54276991.atom"/>
|
195
|
+
<statusnet:notice_info local_id="54276991" source="<a href="http://mustard.macno.org" rel="nofollow">mustard</a>" source_link="http://mustard.macno.org" favorite="false" repeated="false"></statusnet:notice_info>
|
196
|
+
|
197
|
+
</entry>
|
198
|
+
<entry>
|
199
|
+
<activity:object-type>http://activitystrea.ms/schema/1.0/note</activity:object-type>
|
200
|
+
<id>http://identi.ca/notice/54003337</id>
|
201
|
+
<title>First day of bus driver training</title>
|
202
|
+
<content type="html">First day of bus driver training</content>
|
203
|
+
<link rel="alternate" type="text/html" href="http://identi.ca/notice/54003337"/>
|
204
|
+
<activity:verb>http://activitystrea.ms/schema/1.0/post</activity:verb>
|
205
|
+
<published>2010-10-04T11:33:04+00:00</published>
|
206
|
+
<updated>2010-10-04T11:33:04+00:00</updated>
|
207
|
+
<link rel="ostatus:conversation" href="http://identi.ca/conversation/53550533"/>
|
208
|
+
<link rel="self" type="application/atom+xml" href="http://identi.ca/api/statuses/show/54003337.atom"/>
|
209
|
+
<link rel="edit" type="application/atom+xml" href="http://identi.ca/api/statuses/show/54003337.atom"/>
|
210
|
+
<statusnet:notice_info local_id="54003337" source="<a href="http://mustard.macno.org" rel="nofollow">mustard</a>" source_link="http://mustard.macno.org" favorite="false" repeated="false"></statusnet:notice_info>
|
211
|
+
|
212
|
+
</entry>
|
213
|
+
<entry>
|
214
|
+
<activity:object-type>http://activitystrea.ms/schema/1.0/note</activity:object-type>
|
215
|
+
<id>http://identi.ca/notice/53268824</id>
|
216
|
+
<title>my car is 300 pounds lighter, just returned all my asbestos stuff!</title>
|
217
|
+
<content type="html">my car is 300 pounds lighter, just returned all my asbestos stuff!</content>
|
218
|
+
<link rel="alternate" type="text/html" href="http://identi.ca/notice/53268824"/>
|
219
|
+
<activity:verb>http://activitystrea.ms/schema/1.0/post</activity:verb>
|
220
|
+
<published>2010-09-30T18:47:35+00:00</published>
|
221
|
+
<updated>2010-09-30T18:47:35+00:00</updated>
|
222
|
+
<link rel="ostatus:conversation" href="http://identi.ca/conversation/52822605"/>
|
223
|
+
<link rel="self" type="application/atom+xml" href="http://identi.ca/api/statuses/show/53268824.atom"/>
|
224
|
+
<link rel="edit" type="application/atom+xml" href="http://identi.ca/api/statuses/show/53268824.atom"/>
|
225
|
+
<statusnet:notice_info local_id="53268824" source="xmpp" favorite="false" repeated="false"></statusnet:notice_info>
|
226
|
+
|
227
|
+
</entry>
|
228
|
+
<entry>
|
229
|
+
<activity:object-type>http://activitystrea.ms/schema/1.0/note</activity:object-type>
|
230
|
+
<id>http://identi.ca/notice/53053891</id>
|
231
|
+
<title>Got the job as a school bus driver, I start cdl class next week</title>
|
232
|
+
<content type="html">Got the job as a school bus driver, I start cdl class next week</content>
|
233
|
+
<link rel="alternate" type="text/html" href="http://identi.ca/notice/53053891"/>
|
234
|
+
<activity:verb>http://activitystrea.ms/schema/1.0/post</activity:verb>
|
235
|
+
<published>2010-09-29T16:34:59+00:00</published>
|
236
|
+
<updated>2010-09-29T16:34:59+00:00</updated>
|
237
|
+
<link rel="ostatus:conversation" href="http://identi.ca/conversation/52610163"/>
|
238
|
+
<link rel="self" type="application/atom+xml" href="http://identi.ca/api/statuses/show/53053891.atom"/>
|
239
|
+
<link rel="edit" type="application/atom+xml" href="http://identi.ca/api/statuses/show/53053891.atom"/>
|
240
|
+
<statusnet:notice_info local_id="53053891" source="<a href="http://mustard.macno.org" rel="nofollow">mustard</a>" source_link="http://mustard.macno.org" favorite="false" repeated="false"></statusnet:notice_info>
|
241
|
+
|
242
|
+
</entry>
|
243
|
+
<entry>
|
244
|
+
<activity:object-type>http://activitystrea.ms/schema/1.0/note</activity:object-type>
|
245
|
+
<id>http://identi.ca/notice/52674737</id>
|
246
|
+
<title>My bro is selling a nook and kindle for a friend, much fun shall be had by me</title>
|
247
|
+
<content type="html">My bro is selling a nook and kindle for a friend, much fun shall be had by me</content>
|
248
|
+
<link rel="alternate" type="text/html" href="http://identi.ca/notice/52674737"/>
|
249
|
+
<activity:verb>http://activitystrea.ms/schema/1.0/post</activity:verb>
|
250
|
+
<published>2010-09-27T16:04:44+00:00</published>
|
251
|
+
<updated>2010-09-27T16:04:44+00:00</updated>
|
252
|
+
<link rel="ostatus:conversation" href="http://identi.ca/conversation/52235564"/>
|
253
|
+
<link rel="self" type="application/atom+xml" href="http://identi.ca/api/statuses/show/52674737.atom"/>
|
254
|
+
<link rel="edit" type="application/atom+xml" href="http://identi.ca/api/statuses/show/52674737.atom"/>
|
255
|
+
<statusnet:notice_info local_id="52674737" source="<a href="http://mustard.macno.org" rel="nofollow">mustard</a>" source_link="http://mustard.macno.org" favorite="false" repeated="false"></statusnet:notice_info>
|
256
|
+
|
257
|
+
</entry>
|
258
|
+
<entry>
|
259
|
+
<activity:object-type>http://activitystrea.ms/schema/1.0/note</activity:object-type>
|
260
|
+
<id>http://identi.ca/notice/52400602</id>
|
261
|
+
<title>Made mozzarella today, woot, next step, Swiss or Cheddar? Hmm</title>
|
262
|
+
<content type="html">Made mozzarella today, woot, next step, Swiss or Cheddar? Hmm</content>
|
263
|
+
<link rel="alternate" type="text/html" href="http://identi.ca/notice/52400602"/>
|
264
|
+
<activity:verb>http://activitystrea.ms/schema/1.0/post</activity:verb>
|
265
|
+
<published>2010-09-25T23:54:10+00:00</published>
|
266
|
+
<updated>2010-09-25T23:54:10+00:00</updated>
|
267
|
+
<link rel="ostatus:conversation" href="http://identi.ca/conversation/51964154"/>
|
268
|
+
<link rel="self" type="application/atom+xml" href="http://identi.ca/api/statuses/show/52400602.atom"/>
|
269
|
+
<link rel="edit" type="application/atom+xml" href="http://identi.ca/api/statuses/show/52400602.atom"/>
|
270
|
+
<statusnet:notice_info local_id="52400602" source="<a href="http://mustard.macno.org" rel="nofollow">mustard</a>" source_link="http://mustard.macno.org" favorite="false" repeated="false"></statusnet:notice_info>
|
271
|
+
|
272
|
+
</entry>
|
273
|
+
<entry>
|
274
|
+
<activity:object-type>http://activitystrea.ms/schema/1.0/note</activity:object-type>
|
275
|
+
<id>http://identi.ca/notice/52201233</id>
|
276
|
+
<title>RT @candrews #Facebook went down yesterday, taking 1,000s of sites down with it. Is this single point of failure really worth it? http:/ ...</title>
|
277
|
+
<content type="html">RT @<span class="vcard"><a href="http://identi.ca/user/12287" class="url" title="Craig Andrews"><span class="fn nickname">candrews</span></a></span> #<span class="tag"><a href="http://identi.ca/tag/facebook" rel="tag">Facebook</a></span> went down yesterday, taking 1,000s of sites down with it. Is this single point of failure really worth it? http:/ ...</content>
|
278
|
+
<link rel="alternate" type="text/html" href="http://identi.ca/notice/52201233"/>
|
279
|
+
<activity:verb>http://activitystrea.ms/schema/1.0/post</activity:verb>
|
280
|
+
<published>2010-09-24T18:40:10+00:00</published>
|
281
|
+
<updated>2010-09-24T18:40:10+00:00</updated>
|
282
|
+
<link rel="ostatus:conversation" href="http://identi.ca/conversation/51766744"/>
|
283
|
+
<ostatus:forward ref="http://identi.ca/notice/52180213" href="http://identi.ca/notice/52180213"></ostatus:forward>
|
284
|
+
<category term="facebook"></category>
|
285
|
+
<link rel="self" type="application/atom+xml" href="http://identi.ca/api/statuses/show/52201233.atom"/>
|
286
|
+
<link rel="edit" type="application/atom+xml" href="http://identi.ca/api/statuses/show/52201233.atom"/>
|
287
|
+
<statusnet:notice_info local_id="52201233" source="web" favorite="false" repeated="false" repeat_of="52180213"></statusnet:notice_info>
|
288
|
+
|
289
|
+
</entry>
|
290
|
+
<entry>
|
291
|
+
<activity:object-type>http://activitystrea.ms/schema/1.0/note</activity:object-type>
|
292
|
+
<id>http://identi.ca/notice/52198476</id>
|
293
|
+
<title>anyone with an iphone want to trade a 15 dollar gift card for 15 cash, I got this as a gift and it is useless to me</title>
|
294
|
+
<content type="html">anyone with an iphone want to trade a 15 dollar gift card for 15 cash, I got this as a gift and it is useless to me</content>
|
295
|
+
<link rel="alternate" type="text/html" href="http://identi.ca/notice/52198476"/>
|
296
|
+
<activity:verb>http://activitystrea.ms/schema/1.0/post</activity:verb>
|
297
|
+
<published>2010-09-24T18:20:10+00:00</published>
|
298
|
+
<updated>2010-09-24T18:20:10+00:00</updated>
|
299
|
+
<link rel="ostatus:conversation" href="http://identi.ca/conversation/51764033"/>
|
300
|
+
<link rel="self" type="application/atom+xml" href="http://identi.ca/api/statuses/show/52198476.atom"/>
|
301
|
+
<link rel="edit" type="application/atom+xml" href="http://identi.ca/api/statuses/show/52198476.atom"/>
|
302
|
+
<statusnet:notice_info local_id="52198476" source="xmpp" favorite="false" repeated="false"></statusnet:notice_info>
|
303
|
+
|
304
|
+
</entry>
|
305
|
+
<entry>
|
306
|
+
<activity:object-type>http://activitystrea.ms/schema/1.0/note</activity:object-type>
|
307
|
+
<id>http://identi.ca/notice/52078750</id>
|
308
|
+
<title>everytime the compressor for my air conditioner shuts off, my dog jumps thinking someone is at the door</title>
|
309
|
+
<content type="html">everytime the compressor for my air conditioner shuts off, my dog jumps thinking someone is at the door</content>
|
310
|
+
<link rel="alternate" type="text/html" href="http://identi.ca/notice/52078750"/>
|
311
|
+
<activity:verb>http://activitystrea.ms/schema/1.0/post</activity:verb>
|
312
|
+
<published>2010-09-24T02:40:22+00:00</published>
|
313
|
+
<updated>2010-09-24T02:40:22+00:00</updated>
|
314
|
+
<link rel="ostatus:conversation" href="http://identi.ca/conversation/51645609"/>
|
315
|
+
<link rel="self" type="application/atom+xml" href="http://identi.ca/api/statuses/show/52078750.atom"/>
|
316
|
+
<link rel="edit" type="application/atom+xml" href="http://identi.ca/api/statuses/show/52078750.atom"/>
|
317
|
+
<statusnet:notice_info local_id="52078750" source="xmpp" favorite="false" repeated="false"></statusnet:notice_info>
|
318
|
+
|
319
|
+
</entry>
|
320
|
+
<entry>
|
321
|
+
<activity:object-type>http://activitystrea.ms/schema/1.0/note</activity:object-type>
|
322
|
+
<id>http://identi.ca/notice/51893773</id>
|
323
|
+
<title>5.5 hours without power</title>
|
324
|
+
<content type="html">5.5 hours without power</content>
|
325
|
+
<link rel="alternate" type="text/html" href="http://identi.ca/notice/51893773"/>
|
326
|
+
<activity:verb>http://activitystrea.ms/schema/1.0/post</activity:verb>
|
327
|
+
<published>2010-09-23T02:15:02+00:00</published>
|
328
|
+
<updated>2010-09-23T02:15:02+00:00</updated>
|
329
|
+
<link rel="ostatus:conversation" href="http://identi.ca/conversation/51462564"/>
|
330
|
+
<link rel="self" type="application/atom+xml" href="http://identi.ca/api/statuses/show/51893773.atom"/>
|
331
|
+
<link rel="edit" type="application/atom+xml" href="http://identi.ca/api/statuses/show/51893773.atom"/>
|
332
|
+
<statusnet:notice_info local_id="51893773" source="<a href="http://mustard.macno.org" rel="nofollow">mustard</a>" source_link="http://mustard.macno.org" favorite="false" repeated="false"></statusnet:notice_info>
|
333
|
+
|
334
|
+
</entry>
|
335
|
+
</feed>
|
336
|
+
|
@@ -0,0 +1,359 @@
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8"?>
|
2
|
+
<feed xml:lang="en-US" xmlns="http://www.w3.org/2005/Atom" xmlns:thr="http://purl.org/syndication/thread/1.0" xmlns:georss="http://www.georss.org/georss" xmlns:activity="http://activitystrea.ms/spec/1.0/" xmlns:media="http://purl.org/syndication/atommedia" xmlns:poco="http://portablecontacts.net/spec/1.0" xmlns:ostatus="http://ostatus.org/schema/1.0" xmlns:statusnet="http://status.net/schema/api/1/">
|
3
|
+
<generator uri="http://status.net" version="0.9.7beta3">StatusNet</generator>
|
4
|
+
<id>http://identi.ca/api/statuses/user_timeline/141464.atom</id>
|
5
|
+
<title>greenmanspirit timeline</title>
|
6
|
+
<subtitle>Updates from greenmanspirit on Identi.ca!</subtitle>
|
7
|
+
<logo>http://avatar.identi.ca/141464-96-20100607212940.jpeg</logo>
|
8
|
+
<updated>2011-03-12T22:10:24+00:00</updated>
|
9
|
+
<author>
|
10
|
+
<activity:object-type>http://activitystrea.ms/schema/1.0/person</activity:object-type>
|
11
|
+
<uri>http://identi.ca/user/141464</uri>
|
12
|
+
<name>greenmanspirit</name>
|
13
|
+
<email>foo@example.com</email>
|
14
|
+
<link rel="alternate" type="text/html" href="http://identi.ca/greenmanspirit"/>
|
15
|
+
<link rel="avatar" type="image/jpeg" media:width="480" media:height="480" href="http://avatar.identi.ca/141464-480-20100607212940.jpeg"/>
|
16
|
+
<link rel="avatar" type="image/jpeg" media:width="96" media:height="96" href="http://avatar.identi.ca/141464-96-20100607212940.jpeg"/>
|
17
|
+
<link rel="avatar" type="image/jpeg" media:width="48" media:height="48" href="http://avatar.identi.ca/141464-48-20100607212940.jpeg"/>
|
18
|
+
<link rel="avatar" type="image/jpeg" media:width="24" media:height="24" href="http://avatar.identi.ca/141464-24-20100607212940.jpeg"/>
|
19
|
+
<georss:point>0 0</georss:point>
|
20
|
+
<poco:preferredUsername>greenmanspirit</poco:preferredUsername>
|
21
|
+
<poco:displayName>Adam Hobaugh</poco:displayName>
|
22
|
+
<poco:id>foobar</poco:id>
|
23
|
+
<poco:name>barbaz</poco:name>
|
24
|
+
<poco:nickname>spaz</poco:nickname>
|
25
|
+
<poco:published>2012-02-21T02:15:14+00:00</poco:published>
|
26
|
+
<poco:updated>2013-02-21T02:15:14+00:00</poco:updated>
|
27
|
+
<poco:birthday>2014-02-21</poco:birthday>
|
28
|
+
<poco:anniversary>2015-02-21</poco:anniversary>
|
29
|
+
<poco:gender>male</poco:gender>
|
30
|
+
<poco:note>foo
|
31
|
+
bar</poco:note>
|
32
|
+
<poco:utcOffset>-08:00</poco:utcOffset>
|
33
|
+
<poco:connected>false</poco:connected>
|
34
|
+
<poco:urls>
|
35
|
+
<poco:type>homepage</poco:type>
|
36
|
+
<poco:value>http://adamhobaugh.com</poco:value>
|
37
|
+
<poco:primary>true</poco:primary>
|
38
|
+
|
39
|
+
</poco:urls>
|
40
|
+
<statusnet:profile_info local_id="141464"></statusnet:profile_info>
|
41
|
+
</author>
|
42
|
+
<!--Deprecation warning: activity:subject is present only for backward compatibility. It will be removed in the next version of StatusNet.-->
|
43
|
+
<activity:subject>
|
44
|
+
<activity:object-type>http://activitystrea.ms/schema/1.0/person</activity:object-type>
|
45
|
+
<id>http://identi.ca/user/141464</id>
|
46
|
+
<title>Adam Hobaugh</title>
|
47
|
+
<link rel="alternate" type="text/html" href="http://identi.ca/greenmanspirit"/>
|
48
|
+
<link rel="avatar" type="image/jpeg" media:width="480" media:height="480" href="http://avatar.identi.ca/141464-480-20100607212940.jpeg"/>
|
49
|
+
<link rel="avatar" type="image/jpeg" media:width="96" media:height="96" href="http://avatar.identi.ca/141464-96-20100607212940.jpeg"/>
|
50
|
+
<link rel="avatar" type="image/jpeg" media:width="48" media:height="48" href="http://avatar.identi.ca/141464-48-20100607212940.jpeg"/>
|
51
|
+
<link rel="avatar" type="image/jpeg" media:width="24" media:height="24" href="http://avatar.identi.ca/141464-24-20100607212940.jpeg"/>
|
52
|
+
<georss:point>0 0</georss:point>
|
53
|
+
<poco:preferredUsername>greenmanspirit</poco:preferredUsername>
|
54
|
+
<poco:displayName>Adam Hobaugh</poco:displayName>
|
55
|
+
<poco:urls>
|
56
|
+
<poco:type>homepage</poco:type>
|
57
|
+
<poco:value>http://adamhobaugh.com</poco:value>
|
58
|
+
<poco:primary>true</poco:primary>
|
59
|
+
|
60
|
+
</poco:urls>
|
61
|
+
<statusnet:profile_info local_id="141464"></statusnet:profile_info>
|
62
|
+
</activity:subject>
|
63
|
+
<link href="http://identi.ca/greenmanspirit" rel="alternate" type="text/html"/>
|
64
|
+
<link href="http://identi.ca/main/sup#141464" rel="http://api.friendfeed.com/2008/03#sup" type="application/json"/>
|
65
|
+
<link href="http://identi.ca/api/statuses/user_timeline/141464.atom?max_id=51327114" rel="next" type="application/atom+xml"/>
|
66
|
+
<link href="http://identi.ca/main/push/hub" rel="hub"/>
|
67
|
+
<link href="http://identi.ca/main/salmon/user/141464" rel="salmon"/>
|
68
|
+
<link href="http://identi.ca/main/salmon/user/141464" rel="http://salmon-protocol.org/ns/salmon-replies"/>
|
69
|
+
<link href="http://identi.ca/main/salmon/user/141464" rel="http://salmon-protocol.org/ns/salmon-mention"/>
|
70
|
+
<link href="http://identi.ca/api/statuses/user_timeline/141464.atom" rel="self" type="application/atom+xml"/>
|
71
|
+
<entry>
|
72
|
+
<activity:object-type>http://activitystrea.ms/schema/1.0/note</activity:object-type>
|
73
|
+
<activity:object>Foobar</activity:object>
|
74
|
+
<activity:target>Barbaz</activity:target>
|
75
|
+
<id>http://identi.ca/notice/64991641</id>
|
76
|
+
<title>staples come out of the head tomorrow, oh yeah</title>
|
77
|
+
<content type="html">staples come out of the head tomorrow, oh yeah</content>
|
78
|
+
<link rel="alternate" type="text/html" href="http://identi.ca/notice/64991641"/>
|
79
|
+
<activity:verb>http://activitystrea.ms/schema/1.0/post</activity:verb>
|
80
|
+
<published>2011-02-21T02:15:14+00:00</published>
|
81
|
+
<updated>2011-03-22T02:15:14+00:00</updated>
|
82
|
+
<link rel="ostatus:conversation" href="http://identi.ca/conversation/64239058"/>
|
83
|
+
<link rel="self" type="application/atom+xml" href="http://identi.ca/api/statuses/show/64991641.atom"/>
|
84
|
+
<link rel="edit" type="application/atom+xml" href="http://identi.ca/api/statuses/show/64991641.atom"/>
|
85
|
+
<statusnet:notice_info local_id="64991641" source="xmpp" favorite="false" repeated="false"></statusnet:notice_info>
|
86
|
+
|
87
|
+
</entry>
|
88
|
+
<entry>
|
89
|
+
<id>http://identi.ca/notice/64985575</id>
|
90
|
+
<title>getting back into applying for jobs now that I have my debt back under control from unemployment</title>
|
91
|
+
<content type="html">getting back into applying for jobs now that I have my debt back under control from unemployment</content>
|
92
|
+
<link rel="alternate" type="text/html" href="http://identi.ca/notice/64985575"/>
|
93
|
+
<published>2011-02-21T00:41:24+00:00</published>
|
94
|
+
<updated>2011-03-22T00:41:24+00:00</updated>
|
95
|
+
<link rel="ostatus:conversation" href="http://identi.ca/conversation/64233166"/>
|
96
|
+
<link rel="self" type="application/atom+xml" href="http://identi.ca/api/statuses/show/64985575.atom"/>
|
97
|
+
<link rel="edit" type="application/atom+xml" href="http://identi.ca/api/statuses/show/64985575.atom"/>
|
98
|
+
<statusnet:notice_info local_id="64985575" source="xmpp" favorite="false" repeated="false"></statusnet:notice_info>
|
99
|
+
|
100
|
+
</entry>
|
101
|
+
<entry>
|
102
|
+
<activity:object-type>http://activitystrea.ms/schema/1.0/note</activity:object-type>
|
103
|
+
<id>http://identi.ca/notice/61452377</id>
|
104
|
+
<title>It's times like this I wish I had sleepytime tea</title>
|
105
|
+
<content type="html">It's times like this I wish I had sleepytime tea</content>
|
106
|
+
<link rel="alternate" type="text/html" href="http://identi.ca/notice/61452377"/>
|
107
|
+
<activity:verb>http://activitystrea.ms/schema/1.0/post</activity:verb>
|
108
|
+
<published>2011-01-03T05:11:50+00:00</published>
|
109
|
+
<updated>2011-01-03T05:11:50+00:00</updated>
|
110
|
+
<link rel="ostatus:conversation" href="http://identi.ca/conversation/60809276"/>
|
111
|
+
<link rel="self" type="application/atom+xml" href="http://identi.ca/api/statuses/show/61452377.atom"/>
|
112
|
+
<link rel="edit" type="application/atom+xml" href="http://identi.ca/api/statuses/show/61452377.atom"/>
|
113
|
+
<statusnet:notice_info local_id="61452377" source="<a href="http://mustard.macno.org" rel="nofollow">mustard</a>" source_link="http://mustard.macno.org" favorite="false" repeated="false"></statusnet:notice_info>
|
114
|
+
|
115
|
+
</entry>
|
116
|
+
<entry>
|
117
|
+
<activity:object-type>http://activitystrea.ms/schema/1.0/note</activity:object-type>
|
118
|
+
<id>http://identi.ca/notice/61441098</id>
|
119
|
+
<title>My latest accomplishment - http://ravel.me/greenmanspirit/ro20b</title>
|
120
|
+
<content type="html">My latest accomplishment - <a href="http://ravel.me/greenmanspirit/ro20b" title="http://www.ravelry.com/projects/greenmanspirit/reversible-strands-for-men-and-women-too" rel="nofollow external">http://ravel.me/greenmanspirit/ro20b</a></content>
|
121
|
+
<link rel="alternate" type="text/html" href="http://identi.ca/notice/61441098"/>
|
122
|
+
<activity:verb>http://activitystrea.ms/schema/1.0/post</activity:verb>
|
123
|
+
<published>2011-01-02T22:49:44+00:00</published>
|
124
|
+
<updated>2011-01-02T22:49:44+00:00</updated>
|
125
|
+
<link rel="ostatus:conversation" href="http://identi.ca/conversation/60798524"/>
|
126
|
+
<link rel="self" type="application/atom+xml" href="http://identi.ca/api/statuses/show/61441098.atom"/>
|
127
|
+
<link rel="edit" type="application/atom+xml" href="http://identi.ca/api/statuses/show/61441098.atom"/>
|
128
|
+
<statusnet:notice_info local_id="61441098" source="web" favorite="false" repeated="false"></statusnet:notice_info>
|
129
|
+
|
130
|
+
</entry>
|
131
|
+
<entry>
|
132
|
+
<activity:object-type>http://activitystrea.ms/schema/1.0/note</activity:object-type>
|
133
|
+
<id>http://identi.ca/notice/60190679</id>
|
134
|
+
<title>First field trip today, and its to the mall</title>
|
135
|
+
<content type="html">First field trip today, and its to the mall</content>
|
136
|
+
<link rel="alternate" type="text/html" href="http://identi.ca/notice/60190679"/>
|
137
|
+
<activity:verb>http://activitystrea.ms/schema/1.0/post</activity:verb>
|
138
|
+
<published>2010-12-10T18:50:20+00:00</published>
|
139
|
+
<updated>2010-12-10T18:50:20+00:00</updated>
|
140
|
+
<link rel="ostatus:conversation" href="http://identi.ca/conversation/59590921"/>
|
141
|
+
<link rel="self" type="application/atom+xml" href="http://identi.ca/api/statuses/show/60190679.atom"/>
|
142
|
+
<link rel="edit" type="application/atom+xml" href="http://identi.ca/api/statuses/show/60190679.atom"/>
|
143
|
+
<statusnet:notice_info local_id="60190679" source="<a href="http://mustard.macno.org" rel="nofollow">mustard</a>" source_link="http://mustard.macno.org" favorite="false" repeated="false"></statusnet:notice_info>
|
144
|
+
|
145
|
+
</entry>
|
146
|
+
<entry>
|
147
|
+
<activity:object-type>http://activitystrea.ms/schema/1.0/note</activity:object-type>
|
148
|
+
<id>http://identi.ca/notice/59612332</id>
|
149
|
+
<title>bacon makes everything better</title>
|
150
|
+
<content type="html">bacon makes everything better</content>
|
151
|
+
<link rel="alternate" type="text/html" href="http://identi.ca/notice/59612332"/>
|
152
|
+
<activity:verb>http://activitystrea.ms/schema/1.0/post</activity:verb>
|
153
|
+
<published>2010-12-02T02:33:38+00:00</published>
|
154
|
+
<updated>2010-12-02T02:33:38+00:00</updated>
|
155
|
+
<link rel="ostatus:conversation" href="http://identi.ca/conversation/59031019"/>
|
156
|
+
<link rel="self" type="application/atom+xml" href="http://identi.ca/api/statuses/show/59612332.atom"/>
|
157
|
+
<link rel="edit" type="application/atom+xml" href="http://identi.ca/api/statuses/show/59612332.atom"/>
|
158
|
+
<statusnet:notice_info local_id="59612332" source="xmpp" favorite="false" repeated="false"></statusnet:notice_info>
|
159
|
+
|
160
|
+
</entry>
|
161
|
+
<entry>
|
162
|
+
<activity:object-type>http://activitystrea.ms/schema/1.0/note</activity:object-type>
|
163
|
+
<id>http://identi.ca/notice/57207676</id>
|
164
|
+
<title>I am now a professional driver, will post my cdl once I'm not to lazy to scratch off personal info</title>
|
165
|
+
<content type="html">I am now a professional driver, will post my cdl once I'm not to lazy to scratch off personal info</content>
|
166
|
+
<link rel="alternate" type="text/html" href="http://identi.ca/notice/57207676"/>
|
167
|
+
<activity:verb>http://activitystrea.ms/schema/1.0/post</activity:verb>
|
168
|
+
<published>2010-10-23T00:53:05+00:00</published>
|
169
|
+
<updated>2010-10-23T00:53:05+00:00</updated>
|
170
|
+
<link rel="ostatus:conversation" href="http://identi.ca/conversation/56711855"/>
|
171
|
+
<link rel="self" type="application/atom+xml" href="http://identi.ca/api/statuses/show/57207676.atom"/>
|
172
|
+
<link rel="edit" type="application/atom+xml" href="http://identi.ca/api/statuses/show/57207676.atom"/>
|
173
|
+
<statusnet:notice_info local_id="57207676" source="<a href="http://mustard.macno.org" rel="nofollow">mustard</a>" source_link="http://mustard.macno.org" favorite="false" repeated="false"></statusnet:notice_info>
|
174
|
+
|
175
|
+
</entry>
|
176
|
+
<entry>
|
177
|
+
<activity:object-type>http://activitystrea.ms/schema/1.0/note</activity:object-type>
|
178
|
+
<id>http://identi.ca/notice/56394008</id>
|
179
|
+
<title>Has anyone ever used a pedometer to guide a workout plan, I have one laying around but need a workout plan to go with it and if its worth it</title>
|
180
|
+
<content type="html">Has anyone ever used a pedometer to guide a workout plan, I have one laying around but need a workout plan to go with it and if its worth it</content>
|
181
|
+
<link rel="alternate" type="text/html" href="http://identi.ca/notice/56394008"/>
|
182
|
+
<activity:verb>http://activitystrea.ms/schema/1.0/post</activity:verb>
|
183
|
+
<published>2010-10-16T20:29:50+00:00</published>
|
184
|
+
<updated>2010-10-16T20:29:50+00:00</updated>
|
185
|
+
<link rel="ostatus:conversation" href="http://identi.ca/conversation/55912537"/>
|
186
|
+
<link rel="self" type="application/atom+xml" href="http://identi.ca/api/statuses/show/56394008.atom"/>
|
187
|
+
<link rel="edit" type="application/atom+xml" href="http://identi.ca/api/statuses/show/56394008.atom"/>
|
188
|
+
<statusnet:notice_info local_id="56394008" source="<a href="http://mustard.macno.org" rel="nofollow">mustard</a>" source_link="http://mustard.macno.org" favorite="false" repeated="false"></statusnet:notice_info>
|
189
|
+
|
190
|
+
</entry>
|
191
|
+
<entry>
|
192
|
+
<activity:object-type>http://activitystrea.ms/schema/1.0/note</activity:object-type>
|
193
|
+
<id>http://identi.ca/notice/56176750</id>
|
194
|
+
<title>Stargate Universe is by far my favorite show, its what Voyager should have been</title>
|
195
|
+
<content type="html">Stargate Universe is by far my favorite show, its what Voyager should have been</content>
|
196
|
+
<link rel="alternate" type="text/html" href="http://identi.ca/notice/56176750"/>
|
197
|
+
<activity:verb>http://activitystrea.ms/schema/1.0/post</activity:verb>
|
198
|
+
<published>2010-10-14T23:24:48+00:00</published>
|
199
|
+
<updated>2010-10-14T23:24:48+00:00</updated>
|
200
|
+
<link rel="ostatus:conversation" href="http://identi.ca/conversation/55699029"/>
|
201
|
+
<link rel="self" type="application/atom+xml" href="http://identi.ca/api/statuses/show/56176750.atom"/>
|
202
|
+
<link rel="edit" type="application/atom+xml" href="http://identi.ca/api/statuses/show/56176750.atom"/>
|
203
|
+
<statusnet:notice_info local_id="56176750" source="<a href="http://mustard.macno.org" rel="nofollow">mustard</a>" source_link="http://mustard.macno.org" favorite="false" repeated="false"></statusnet:notice_info>
|
204
|
+
|
205
|
+
</entry>
|
206
|
+
<entry>
|
207
|
+
<activity:object-type>http://activitystrea.ms/schema/1.0/note</activity:object-type>
|
208
|
+
<id>http://identi.ca/notice/54276991</id>
|
209
|
+
<title>Anyone have 500 I can borrow to cover till my bus job pays, I will to pay $50 in interest, payments 45 for 11, 55 month 12, will pay notary</title>
|
210
|
+
<content type="html">Anyone have 500 I can borrow to cover till my bus job pays, I will to pay $50 in interest, payments 45 for 11, 55 month 12, will pay notary</content>
|
211
|
+
<link rel="alternate" type="text/html" href="http://identi.ca/notice/54276991"/>
|
212
|
+
<activity:verb>http://activitystrea.ms/schema/1.0/post</activity:verb>
|
213
|
+
<published>2010-10-05T15:48:37+00:00</published>
|
214
|
+
<updated>2010-10-05T15:48:37+00:00</updated>
|
215
|
+
<link rel="ostatus:conversation" href="http://identi.ca/conversation/53821805"/>
|
216
|
+
<link rel="self" type="application/atom+xml" href="http://identi.ca/api/statuses/show/54276991.atom"/>
|
217
|
+
<link rel="edit" type="application/atom+xml" href="http://identi.ca/api/statuses/show/54276991.atom"/>
|
218
|
+
<statusnet:notice_info local_id="54276991" source="<a href="http://mustard.macno.org" rel="nofollow">mustard</a>" source_link="http://mustard.macno.org" favorite="false" repeated="false"></statusnet:notice_info>
|
219
|
+
|
220
|
+
</entry>
|
221
|
+
<entry>
|
222
|
+
<activity:object-type>http://activitystrea.ms/schema/1.0/note</activity:object-type>
|
223
|
+
<id>http://identi.ca/notice/54003337</id>
|
224
|
+
<title>First day of bus driver training</title>
|
225
|
+
<content type="html">First day of bus driver training</content>
|
226
|
+
<link rel="alternate" type="text/html" href="http://identi.ca/notice/54003337"/>
|
227
|
+
<activity:verb>http://activitystrea.ms/schema/1.0/post</activity:verb>
|
228
|
+
<published>2010-10-04T11:33:04+00:00</published>
|
229
|
+
<updated>2010-10-04T11:33:04+00:00</updated>
|
230
|
+
<link rel="ostatus:conversation" href="http://identi.ca/conversation/53550533"/>
|
231
|
+
<link rel="self" type="application/atom+xml" href="http://identi.ca/api/statuses/show/54003337.atom"/>
|
232
|
+
<link rel="edit" type="application/atom+xml" href="http://identi.ca/api/statuses/show/54003337.atom"/>
|
233
|
+
<statusnet:notice_info local_id="54003337" source="<a href="http://mustard.macno.org" rel="nofollow">mustard</a>" source_link="http://mustard.macno.org" favorite="false" repeated="false"></statusnet:notice_info>
|
234
|
+
|
235
|
+
</entry>
|
236
|
+
<entry>
|
237
|
+
<activity:object-type>http://activitystrea.ms/schema/1.0/note</activity:object-type>
|
238
|
+
<id>http://identi.ca/notice/53268824</id>
|
239
|
+
<title>my car is 300 pounds lighter, just returned all my asbestos stuff!</title>
|
240
|
+
<content type="html">my car is 300 pounds lighter, just returned all my asbestos stuff!</content>
|
241
|
+
<link rel="alternate" type="text/html" href="http://identi.ca/notice/53268824"/>
|
242
|
+
<activity:verb>http://activitystrea.ms/schema/1.0/post</activity:verb>
|
243
|
+
<published>2010-09-30T18:47:35+00:00</published>
|
244
|
+
<updated>2010-09-30T18:47:35+00:00</updated>
|
245
|
+
<link rel="ostatus:conversation" href="http://identi.ca/conversation/52822605"/>
|
246
|
+
<link rel="self" type="application/atom+xml" href="http://identi.ca/api/statuses/show/53268824.atom"/>
|
247
|
+
<link rel="edit" type="application/atom+xml" href="http://identi.ca/api/statuses/show/53268824.atom"/>
|
248
|
+
<statusnet:notice_info local_id="53268824" source="xmpp" favorite="false" repeated="false"></statusnet:notice_info>
|
249
|
+
|
250
|
+
</entry>
|
251
|
+
<entry>
|
252
|
+
<activity:object-type>http://activitystrea.ms/schema/1.0/note</activity:object-type>
|
253
|
+
<id>http://identi.ca/notice/53053891</id>
|
254
|
+
<title>Got the job as a school bus driver, I start cdl class next week</title>
|
255
|
+
<content type="html">Got the job as a school bus driver, I start cdl class next week</content>
|
256
|
+
<link rel="alternate" type="text/html" href="http://identi.ca/notice/53053891"/>
|
257
|
+
<activity:verb>http://activitystrea.ms/schema/1.0/post</activity:verb>
|
258
|
+
<published>2010-09-29T16:34:59+00:00</published>
|
259
|
+
<updated>2010-09-29T16:34:59+00:00</updated>
|
260
|
+
<link rel="ostatus:conversation" href="http://identi.ca/conversation/52610163"/>
|
261
|
+
<link rel="self" type="application/atom+xml" href="http://identi.ca/api/statuses/show/53053891.atom"/>
|
262
|
+
<link rel="edit" type="application/atom+xml" href="http://identi.ca/api/statuses/show/53053891.atom"/>
|
263
|
+
<statusnet:notice_info local_id="53053891" source="<a href="http://mustard.macno.org" rel="nofollow">mustard</a>" source_link="http://mustard.macno.org" favorite="false" repeated="false"></statusnet:notice_info>
|
264
|
+
|
265
|
+
</entry>
|
266
|
+
<entry>
|
267
|
+
<activity:object-type>http://activitystrea.ms/schema/1.0/note</activity:object-type>
|
268
|
+
<id>http://identi.ca/notice/52674737</id>
|
269
|
+
<title>My bro is selling a nook and kindle for a friend, much fun shall be had by me</title>
|
270
|
+
<content type="html">My bro is selling a nook and kindle for a friend, much fun shall be had by me</content>
|
271
|
+
<link rel="alternate" type="text/html" href="http://identi.ca/notice/52674737"/>
|
272
|
+
<activity:verb>http://activitystrea.ms/schema/1.0/post</activity:verb>
|
273
|
+
<published>2010-09-27T16:04:44+00:00</published>
|
274
|
+
<updated>2010-09-27T16:04:44+00:00</updated>
|
275
|
+
<link rel="ostatus:conversation" href="http://identi.ca/conversation/52235564"/>
|
276
|
+
<link rel="self" type="application/atom+xml" href="http://identi.ca/api/statuses/show/52674737.atom"/>
|
277
|
+
<link rel="edit" type="application/atom+xml" href="http://identi.ca/api/statuses/show/52674737.atom"/>
|
278
|
+
<statusnet:notice_info local_id="52674737" source="<a href="http://mustard.macno.org" rel="nofollow">mustard</a>" source_link="http://mustard.macno.org" favorite="false" repeated="false"></statusnet:notice_info>
|
279
|
+
|
280
|
+
</entry>
|
281
|
+
<entry>
|
282
|
+
<activity:object-type>http://activitystrea.ms/schema/1.0/note</activity:object-type>
|
283
|
+
<id>http://identi.ca/notice/52400602</id>
|
284
|
+
<title>Made mozzarella today, woot, next step, Swiss or Cheddar? Hmm</title>
|
285
|
+
<content type="html">Made mozzarella today, woot, next step, Swiss or Cheddar? Hmm</content>
|
286
|
+
<link rel="alternate" type="text/html" href="http://identi.ca/notice/52400602"/>
|
287
|
+
<activity:verb>http://activitystrea.ms/schema/1.0/post</activity:verb>
|
288
|
+
<published>2010-09-25T23:54:10+00:00</published>
|
289
|
+
<updated>2010-09-25T23:54:10+00:00</updated>
|
290
|
+
<link rel="ostatus:conversation" href="http://identi.ca/conversation/51964154"/>
|
291
|
+
<link rel="self" type="application/atom+xml" href="http://identi.ca/api/statuses/show/52400602.atom"/>
|
292
|
+
<link rel="edit" type="application/atom+xml" href="http://identi.ca/api/statuses/show/52400602.atom"/>
|
293
|
+
<statusnet:notice_info local_id="52400602" source="<a href="http://mustard.macno.org" rel="nofollow">mustard</a>" source_link="http://mustard.macno.org" favorite="false" repeated="false"></statusnet:notice_info>
|
294
|
+
|
295
|
+
</entry>
|
296
|
+
<entry>
|
297
|
+
<activity:object-type>http://activitystrea.ms/schema/1.0/note</activity:object-type>
|
298
|
+
<id>http://identi.ca/notice/52201233</id>
|
299
|
+
<title>RT @candrews #Facebook went down yesterday, taking 1,000s of sites down with it. Is this single point of failure really worth it? http:/ ...</title>
|
300
|
+
<content type="html">RT @<span class="vcard"><a href="http://identi.ca/user/12287" class="url" title="Craig Andrews"><span class="fn nickname">candrews</span></a></span> #<span class="tag"><a href="http://identi.ca/tag/facebook" rel="tag">Facebook</a></span> went down yesterday, taking 1,000s of sites down with it. Is this single point of failure really worth it? http:/ ...</content>
|
301
|
+
<link rel="alternate" type="text/html" href="http://identi.ca/notice/52201233"/>
|
302
|
+
<activity:verb>http://activitystrea.ms/schema/1.0/post</activity:verb>
|
303
|
+
<published>2010-09-24T18:40:10+00:00</published>
|
304
|
+
<updated>2010-09-24T18:40:10+00:00</updated>
|
305
|
+
<link rel="ostatus:conversation" href="http://identi.ca/conversation/51766744"/>
|
306
|
+
<ostatus:forward ref="http://identi.ca/notice/52180213" href="http://identi.ca/notice/52180213"></ostatus:forward>
|
307
|
+
<category term="facebook"></category>
|
308
|
+
<link rel="self" type="application/atom+xml" href="http://identi.ca/api/statuses/show/52201233.atom"/>
|
309
|
+
<link rel="edit" type="application/atom+xml" href="http://identi.ca/api/statuses/show/52201233.atom"/>
|
310
|
+
<statusnet:notice_info local_id="52201233" source="web" favorite="false" repeated="false" repeat_of="52180213"></statusnet:notice_info>
|
311
|
+
|
312
|
+
</entry>
|
313
|
+
<entry>
|
314
|
+
<activity:object-type>http://activitystrea.ms/schema/1.0/note</activity:object-type>
|
315
|
+
<id>http://identi.ca/notice/52198476</id>
|
316
|
+
<title>anyone with an iphone want to trade a 15 dollar gift card for 15 cash, I got this as a gift and it is useless to me</title>
|
317
|
+
<content type="html">anyone with an iphone want to trade a 15 dollar gift card for 15 cash, I got this as a gift and it is useless to me</content>
|
318
|
+
<link rel="alternate" type="text/html" href="http://identi.ca/notice/52198476"/>
|
319
|
+
<activity:verb>http://activitystrea.ms/schema/1.0/post</activity:verb>
|
320
|
+
<published>2010-09-24T18:20:10+00:00</published>
|
321
|
+
<updated>2010-09-24T18:20:10+00:00</updated>
|
322
|
+
<link rel="ostatus:conversation" href="http://identi.ca/conversation/51764033"/>
|
323
|
+
<link rel="self" type="application/atom+xml" href="http://identi.ca/api/statuses/show/52198476.atom"/>
|
324
|
+
<link rel="edit" type="application/atom+xml" href="http://identi.ca/api/statuses/show/52198476.atom"/>
|
325
|
+
<statusnet:notice_info local_id="52198476" source="xmpp" favorite="false" repeated="false"></statusnet:notice_info>
|
326
|
+
|
327
|
+
</entry>
|
328
|
+
<entry>
|
329
|
+
<activity:object-type>http://activitystrea.ms/schema/1.0/note</activity:object-type>
|
330
|
+
<id>http://identi.ca/notice/52078750</id>
|
331
|
+
<title>everytime the compressor for my air conditioner shuts off, my dog jumps thinking someone is at the door</title>
|
332
|
+
<content type="html">everytime the compressor for my air conditioner shuts off, my dog jumps thinking someone is at the door</content>
|
333
|
+
<link rel="alternate" type="text/html" href="http://identi.ca/notice/52078750"/>
|
334
|
+
<activity:verb>http://activitystrea.ms/schema/1.0/post</activity:verb>
|
335
|
+
<published>2010-09-24T02:40:22+00:00</published>
|
336
|
+
<updated>2010-09-24T02:40:22+00:00</updated>
|
337
|
+
<link rel="ostatus:conversation" href="http://identi.ca/conversation/51645609"/>
|
338
|
+
<link rel="self" type="application/atom+xml" href="http://identi.ca/api/statuses/show/52078750.atom"/>
|
339
|
+
<link rel="edit" type="application/atom+xml" href="http://identi.ca/api/statuses/show/52078750.atom"/>
|
340
|
+
<statusnet:notice_info local_id="52078750" source="xmpp" favorite="false" repeated="false"></statusnet:notice_info>
|
341
|
+
|
342
|
+
</entry>
|
343
|
+
<entry>
|
344
|
+
<activity:object-type>http://activitystrea.ms/schema/1.0/note</activity:object-type>
|
345
|
+
<id>http://identi.ca/notice/51893773</id>
|
346
|
+
<title>5.5 hours without power</title>
|
347
|
+
<content type="html">5.5 hours without power</content>
|
348
|
+
<link rel="alternate" type="text/html" href="http://identi.ca/notice/51893773"/>
|
349
|
+
<activity:verb>http://activitystrea.ms/schema/1.0/post</activity:verb>
|
350
|
+
<published>2010-09-23T02:15:02+00:00</published>
|
351
|
+
<updated>2010-09-23T02:15:02+00:00</updated>
|
352
|
+
<link rel="ostatus:conversation" href="http://identi.ca/conversation/51462564"/>
|
353
|
+
<link rel="self" type="application/atom+xml" href="http://identi.ca/api/statuses/show/51893773.atom"/>
|
354
|
+
<link rel="edit" type="application/atom+xml" href="http://identi.ca/api/statuses/show/51893773.atom"/>
|
355
|
+
<statusnet:notice_info local_id="51893773" source="<a href="http://mustard.macno.org" rel="nofollow">mustard</a>" source_link="http://mustard.macno.org" favorite="false" repeated="false"></statusnet:notice_info>
|
356
|
+
|
357
|
+
</entry>
|
358
|
+
</feed>
|
359
|
+
|