muck-raker 0.1.43 → 0.1.45
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/Rakefile +1 -0
- data/VERSION +1 -1
- data/app/controllers/muck/topics_controller.rb +3 -1
- data/app/helpers/muck_raker_google_helper.rb +78 -0
- data/app/models/feed.rb +8 -4
- data/app/views/google/_combined_feed.html.erb +73 -0
- data/app/views/google/_hot_trends.html.erb +5 -0
- data/app/views/google/_search.html.erb +39 -0
- data/app/views/topics/_form.html.erb +1 -1
- data/app/views/topics/show.html.erb +23 -14
- data/db/bootstrap/services.yml +73 -0
- data/db/migrate/20091022150615_add_uri_key_to_services.rb +9 -0
- data/lib/muck_raker.rb +3 -0
- data/locales/en.yml +5 -3
- data/muck-raker.gemspec +11 -2
- data/public/stylesheets/muck-raker.css +14 -1
- data/test/rails_root/app/views/layouts/default.html.erb +2 -0
- data/test/rails_root/db/bootstrap/services.yml +73 -1
- data/test/rails_root/db/migrate/20091022150615_add_uri_key_to_services.rb +9 -0
- data/test/rails_root/public/stylesheets/muck-raker.css +14 -1
- metadata +18 -2
data/lib/muck_raker.rb
CHANGED
@@ -2,6 +2,9 @@ require 'muck_raker/muck_custom_form_builder'
|
|
2
2
|
require 'muck_raker/services'
|
3
3
|
require 'muck_raker/languages'
|
4
4
|
|
5
|
+
require 'nokogiri'
|
6
|
+
require 'httparty'
|
7
|
+
|
5
8
|
ActionController::Base.send :helper, MuckRakerHelper
|
6
9
|
ActionController::Base.send :helper, MuckRakerFeedsHelper
|
7
10
|
ActionController::Base.send :helper, MuckRakerServicesHelper
|
data/locales/en.yml
CHANGED
@@ -169,7 +169,7 @@ en:
|
|
169
169
|
edit_aggregation_title: "Editing {{title}}"
|
170
170
|
cant_modify_aggregation: "You don't have permission to access the specified aggregation."
|
171
171
|
aggregation_deleted: "{{title}} deleted"
|
172
|
-
build_topic: "
|
172
|
+
build_topic: "Live Search"
|
173
173
|
search_for: "Search for:"
|
174
174
|
new_topic_title: "Search for a new topic and build the results page."
|
175
175
|
add_aggregation: "Add Aggregation"
|
@@ -185,9 +185,11 @@ en:
|
|
185
185
|
topic_generated: "Results for `{{terms}}`."
|
186
186
|
no_terms_error: "Please specify a term or list of terms."
|
187
187
|
download_opml: "Download OPML file for {{terms}}"
|
188
|
+
opml_generated: "Feeds for {{terms}}"
|
189
|
+
opml_feeds_for: "Feeds for {{terms}}"
|
188
190
|
generate_new_topic: "Generate a new topic"
|
189
191
|
topic_feeds_for: "Feeds for {{terms}}"
|
190
|
-
generating_topic_message: "
|
192
|
+
generating_topic_message: "Searching. This might take a minute or so...."
|
191
193
|
service_feed_name: "{{term}} on {{service}}"
|
192
194
|
related_feeds: "Related Feeds"
|
193
195
|
no_entries_found: "No entries found"
|
@@ -203,7 +205,7 @@ en:
|
|
203
205
|
photos: "Photos"
|
204
206
|
videos: "Videos"
|
205
207
|
back: "Back"
|
206
|
-
explore: "
|
208
|
+
explore: "Search for {{topic}}"
|
207
209
|
language_not_supported: "The requested language is not supported"
|
208
210
|
comment_entries_count:
|
209
211
|
one: "1 Comment"
|
data/muck-raker.gemspec
CHANGED
@@ -5,11 +5,11 @@
|
|
5
5
|
|
6
6
|
Gem::Specification.new do |s|
|
7
7
|
s.name = %q{muck-raker}
|
8
|
-
s.version = "0.1.
|
8
|
+
s.version = "0.1.45"
|
9
9
|
|
10
10
|
s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
|
11
11
|
s.authors = ["Joel Duffin Justin Ball"]
|
12
|
-
s.date = %q{2009-10-
|
12
|
+
s.date = %q{2009-10-22}
|
13
13
|
s.description = %q{The aggregation and recommendation engine for the muck system.}
|
14
14
|
s.email = %q{justinball@gmail.com}
|
15
15
|
s.extra_rdoc_files = [
|
@@ -101,10 +101,13 @@ Gem::Specification.new do |s|
|
|
101
101
|
"app/views/feeds/new_oai_rss.html.erb",
|
102
102
|
"app/views/feeds/show.html.erb",
|
103
103
|
"app/views/feeds/unban.html.erb",
|
104
|
+
"app/views/google/_combined_feed.html.erb",
|
104
105
|
"app/views/google/_dynamic_feeds_vertical.html.erb",
|
105
106
|
"app/views/google/_feed.html.erb",
|
106
107
|
"app/views/google/_feed_search.html.erb",
|
107
108
|
"app/views/google/_feeds_scripts.html.erb",
|
109
|
+
"app/views/google/_hot_trends.html.erb",
|
110
|
+
"app/views/google/_search.html.erb",
|
108
111
|
"app/views/google/_slide_show.html.erb",
|
109
112
|
"app/views/identity_feeds/_available_service_categories.html.erb",
|
110
113
|
"app/views/identity_feeds/_form.html.erb",
|
@@ -409,6 +412,7 @@ Gem::Specification.new do |s|
|
|
409
412
|
"db/migrate/20090923150807_rename_name_in_aggregation.rb",
|
410
413
|
"db/migrate/20090924200750_add_uri_data_template_to_services.rb",
|
411
414
|
"db/migrate/20091006183742_add_feed_count_to_aggregation.rb",
|
415
|
+
"db/migrate/20091022150615_add_uri_key_to_services.rb",
|
412
416
|
"install.rb",
|
413
417
|
"lib/active_record/acts/muck_aggregation_owner.rb",
|
414
418
|
"lib/active_record/acts/muck_feed_owner.rb",
|
@@ -931,6 +935,7 @@ Gem::Specification.new do |s|
|
|
931
935
|
"test/rails_root/db/migrate/20090923150807_rename_name_in_aggregation.rb",
|
932
936
|
"test/rails_root/db/migrate/20090924200750_add_uri_data_template_to_services.rb",
|
933
937
|
"test/rails_root/db/migrate/20091006183742_add_feed_count_to_aggregation.rb",
|
938
|
+
"test/rails_root/db/migrate/20091022150615_add_uri_key_to_services.rb",
|
934
939
|
"test/rails_root/features/feeds.feature",
|
935
940
|
"test/rails_root/features/step_definitions/common_steps.rb",
|
936
941
|
"test/rails_root/features/step_definitions/visit_steps.rb",
|
@@ -1559,6 +1564,7 @@ Gem::Specification.new do |s|
|
|
1559
1564
|
"test/rails_root/db/migrate/20090923150807_rename_name_in_aggregation.rb",
|
1560
1565
|
"test/rails_root/db/migrate/20090924200750_add_uri_data_template_to_services.rb",
|
1561
1566
|
"test/rails_root/db/migrate/20091006183742_add_feed_count_to_aggregation.rb",
|
1567
|
+
"test/rails_root/db/migrate/20091022150615_add_uri_key_to_services.rb",
|
1562
1568
|
"test/rails_root/features/step_definitions/common_steps.rb",
|
1563
1569
|
"test/rails_root/features/step_definitions/visit_steps.rb",
|
1564
1570
|
"test/rails_root/features/step_definitions/webrat_steps.rb",
|
@@ -1619,6 +1625,7 @@ Gem::Specification.new do |s|
|
|
1619
1625
|
s.add_runtime_dependency(%q<mbleigh-acts-as-taggable-on>, [">= 0"])
|
1620
1626
|
s.add_runtime_dependency(%q<mislav-will_paginate>, [">= 0"])
|
1621
1627
|
s.add_runtime_dependency(%q<httparty>, [">= 0"])
|
1628
|
+
s.add_runtime_dependency(%q<nokogiri>, [">= 0"])
|
1622
1629
|
s.add_runtime_dependency(%q<muck-feedbag>, [">= 0"])
|
1623
1630
|
s.add_runtime_dependency(%q<pauldix-feedzirra>, [">= 0"])
|
1624
1631
|
s.add_runtime_dependency(%q<muck-engine>, [">= 0"])
|
@@ -1629,6 +1636,7 @@ Gem::Specification.new do |s|
|
|
1629
1636
|
s.add_dependency(%q<mbleigh-acts-as-taggable-on>, [">= 0"])
|
1630
1637
|
s.add_dependency(%q<mislav-will_paginate>, [">= 0"])
|
1631
1638
|
s.add_dependency(%q<httparty>, [">= 0"])
|
1639
|
+
s.add_dependency(%q<nokogiri>, [">= 0"])
|
1632
1640
|
s.add_dependency(%q<muck-feedbag>, [">= 0"])
|
1633
1641
|
s.add_dependency(%q<pauldix-feedzirra>, [">= 0"])
|
1634
1642
|
s.add_dependency(%q<muck-engine>, [">= 0"])
|
@@ -1640,6 +1648,7 @@ Gem::Specification.new do |s|
|
|
1640
1648
|
s.add_dependency(%q<mbleigh-acts-as-taggable-on>, [">= 0"])
|
1641
1649
|
s.add_dependency(%q<mislav-will_paginate>, [">= 0"])
|
1642
1650
|
s.add_dependency(%q<httparty>, [">= 0"])
|
1651
|
+
s.add_dependency(%q<nokogiri>, [">= 0"])
|
1643
1652
|
s.add_dependency(%q<muck-feedbag>, [">= 0"])
|
1644
1653
|
s.add_dependency(%q<pauldix-feedzirra>, [">= 0"])
|
1645
1654
|
s.add_dependency(%q<muck-engine>, [">= 0"])
|
@@ -71,7 +71,20 @@ fieldset{border:solid 1px #CCC;margin:0px;padding:10px;}
|
|
71
71
|
.datafeeds .feed-photos {margin:0;}
|
72
72
|
.datafeeds .feed-videos img{width:100px;height:100px;}
|
73
73
|
.datafeeds .feed-videos {margin:0;}
|
74
|
+
/* combined list */
|
75
|
+
ul.combined-feed-list{list-style:none;margin:0;}
|
76
|
+
ul.combined-feed-list .feed-title{margin:0;padding:2px 0 5px 25px;}
|
77
|
+
ul.combined-feed-list .feed-content h3{font-size:1.1em;}
|
78
|
+
ul.combined-feed-list .feed-content h3 a{text-decoration:none;color:000;}
|
79
|
+
ul.combined-feed-list .feed-content h3 a:hover;{text-decoration:underline;}
|
80
|
+
ul.combined-feed-list .feed-content{border:solid 2px #E5E5E5;background-color:#F7F7F7;margin:-15px 0 0 60px;z-index:1;position:absolute;padding:10px;width:500px;-moz-border-radius-bottomleft:6px;-moz-border-radius-bottomright:6px;-moz-border-radius-topleft:6px;-moz-border-radius-topright:6px;}
|
81
|
+
|
74
82
|
.remove-feed{float:right;}
|
75
83
|
.entry-close{float:right;font-size:.8em;}
|
84
|
+
#search-header{margin:20px;}
|
85
|
+
.google-header{background: transparent url(/images/service_icons/24/google.png) no-repeat scroll left top;}
|
86
|
+
ul.google-trends{margin:0;padding:0;list-style:none;}
|
87
|
+
|
88
|
+
.search-container .gsc-control{width:100%;}
|
76
89
|
/* edit aggregation */
|
77
|
-
#edit-aggregation-controls .box{margin:10px 0;}
|
90
|
+
#edit-aggregation-controls .box{margin:10px 0;}
|
@@ -12,6 +12,8 @@
|
|
12
12
|
<!--[if IE]><link rel="stylesheet" href="/stylesheets/blueprint/ie.css" type="text/css" media="screen, projection"><![endif]-->
|
13
13
|
<%= stylesheet_link_tag %W{ reset blueprint/liquid_screen.css jquery/jquery.fancybox.css styles muck-raker muck-activities }, :cache => true %>
|
14
14
|
<%= stylesheet_link_tag 'application' %>
|
15
|
+
<%#= google_load_jquery %>
|
16
|
+
<%#= google_load_jquery_ui %>
|
15
17
|
<%= javascript_include_tag %w{
|
16
18
|
jquery/jquery.js
|
17
19
|
jquery/jquery-ui.js
|
@@ -25,6 +25,7 @@ twitter:
|
|
25
25
|
id: 3
|
26
26
|
name: Twitter
|
27
27
|
uri: "http://www.twitter.com"
|
28
|
+
uri_key: "twitter.com"
|
28
29
|
api_uri:
|
29
30
|
uri_data_template: "http://www.twitter.com/{username}"
|
30
31
|
uri_template: "http://www.twitter.com/{username}"
|
@@ -37,6 +38,7 @@ youtube:
|
|
37
38
|
id: 4
|
38
39
|
name: You Tube
|
39
40
|
uri: "http://www.youtube.com"
|
41
|
+
uri_key: "youtube.com"
|
40
42
|
api_uri:
|
41
43
|
uri_data_template: "http://gdata.youtube.com/feeds/base/users/{username}/uploads?alt=rss&v=2&orderby=published&client=ytapi-youtube-profile"
|
42
44
|
uri_template: "http://www.youtube.com/user/{username}"
|
@@ -49,6 +51,7 @@ flickr:
|
|
49
51
|
id: 5
|
50
52
|
name: Flickr
|
51
53
|
uri: "http://www.flickr.com"
|
54
|
+
uri_key: "flickr.com"
|
52
55
|
api_uri:
|
53
56
|
uri_data_template: "http://www.flickr.com/photos/{username}/"
|
54
57
|
uri_template: "http://www.flickr.com/photos/{username}/"
|
@@ -61,6 +64,7 @@ delicious:
|
|
61
64
|
id: 6
|
62
65
|
name: delicious
|
63
66
|
uri: "http://delicious/"
|
67
|
+
uri_key: "delicious.com"
|
64
68
|
api_uri: "https://api.delicious/v1/"
|
65
69
|
uri_data_template: "http://delicious.com/{username}"
|
66
70
|
uri_template: "http://delicious.com/{username}"
|
@@ -73,6 +77,7 @@ digg:
|
|
73
77
|
id: 7
|
74
78
|
name: Digg
|
75
79
|
uri: "http://www.digg.com"
|
80
|
+
uri_key: "digg.com"
|
76
81
|
api_uri:
|
77
82
|
uri_data_template: "http://digg.com/users/{username}/history.rss"
|
78
83
|
uri_template: "http://digg.com/users/{username}"
|
@@ -85,6 +90,7 @@ yelp:
|
|
85
90
|
id: 8
|
86
91
|
name: Yelp
|
87
92
|
uri: "http://www.yelp.com/"
|
93
|
+
uri_key: "yelp.com"
|
88
94
|
api_uri:
|
89
95
|
uri_data_template: "http://{username}.yelp.com/rss"
|
90
96
|
uri_template: "http://{username}.yelp.com"
|
@@ -97,6 +103,7 @@ stumbleupon:
|
|
97
103
|
id: 9
|
98
104
|
name: StumbleUpon
|
99
105
|
uri: "http://www.stumbleupon.com/"
|
106
|
+
uri_key: "stumbleupon.com"
|
100
107
|
api_uri:
|
101
108
|
uri_data_template: "http://rss.stumbleupon.com/user/{username}/"
|
102
109
|
uri_template: "http://www.stumbleupon.com/stumbler/{username}"
|
@@ -109,6 +116,7 @@ vimeo:
|
|
109
116
|
sort: 10
|
110
117
|
name: Vimeo
|
111
118
|
uri: "http://vimeo.com"
|
119
|
+
uri_key: "vimeo.com"
|
112
120
|
api_uri:
|
113
121
|
uri_data_template: "http://vimeo.com/{username}/videos/rss"
|
114
122
|
uri_template: "http://vimeo.com/{username}"
|
@@ -121,6 +129,7 @@ lastfm:
|
|
121
129
|
sort: 11
|
122
130
|
name: Last.fm
|
123
131
|
uri: "http://www.last.fm"
|
132
|
+
uri_key: "last.fm"
|
124
133
|
api_uri:
|
125
134
|
uri_data_template: "http://ws.audioscrobbler.com/1.0/user/{username}/recenttracks.rss"
|
126
135
|
uri_template: "http://www.last.fm/user/{username}"
|
@@ -133,6 +142,7 @@ livejournal:
|
|
133
142
|
sort: 12
|
134
143
|
name: LiveJournal
|
135
144
|
uri: "http://www.livejournal.com"
|
145
|
+
uri_key: "livejournal.com"
|
136
146
|
api_uri:
|
137
147
|
uri_data_template: "http://{username}.livejournal.com"
|
138
148
|
uri_template: "http://{username}.livejournal.com"
|
@@ -145,6 +155,7 @@ simpy:
|
|
145
155
|
sort: 13
|
146
156
|
name: Simpy
|
147
157
|
uri: "http://www.simpy.com"
|
158
|
+
uri_key: "simpy.com"
|
148
159
|
api_uri:
|
149
160
|
uri_data_template: "http://www.simpy.com/rss/user/{username}/links/"
|
150
161
|
uri_template: "http://www.simpy.com/user/{username}"
|
@@ -157,6 +168,7 @@ wordpress:
|
|
157
168
|
sort: 14
|
158
169
|
name: Wordpress.com
|
159
170
|
uri: "http://www.wordpress.com/"
|
171
|
+
uri_key: "wordpress.com/"
|
160
172
|
api_uri:
|
161
173
|
uri_data_template: "http://{username}.wordpress.com/"
|
162
174
|
uri_template: "http://{username}.wordpress.com/"
|
@@ -169,6 +181,7 @@ xanga:
|
|
169
181
|
sort: 15
|
170
182
|
name: Xanga
|
171
183
|
uri: "http://www.xanga.com"
|
184
|
+
uri_key: "xanga.com"
|
172
185
|
api_uri:
|
173
186
|
uri_data_template: "http://www.xanga.com/{username}/rss"
|
174
187
|
uri_template: "http://{username}.xanga.com"
|
@@ -181,6 +194,7 @@ citeulike:
|
|
181
194
|
sort: 16
|
182
195
|
name: cite u like
|
183
196
|
uri: "http://www.citeulike.org"
|
197
|
+
uri_key: "citeulike.org"
|
184
198
|
api_uri:
|
185
199
|
uri_data_template: "http://www.citeulike.org/rss/user/{username}"
|
186
200
|
uri_template: "http://www.citeulike.org/user/{username}"
|
@@ -193,6 +207,7 @@ googlenews:
|
|
193
207
|
sort: 17
|
194
208
|
name: Google News
|
195
209
|
uri: "http://news.google.com/"
|
210
|
+
uri_key: "news.google.com"
|
196
211
|
icon: google.png
|
197
212
|
use_for: false
|
198
213
|
service_category_id: 4
|
@@ -205,6 +220,7 @@ googleblogsearch:
|
|
205
220
|
sort: 18
|
206
221
|
name: Google Blogs
|
207
222
|
uri: "http://blogsearch.google.com/"
|
223
|
+
uri_key: "blogsearch.google.com"
|
208
224
|
icon: google.png
|
209
225
|
use_for: false
|
210
226
|
service_category_id: 4
|
@@ -233,6 +249,7 @@ odeo:
|
|
233
249
|
sort: 21
|
234
250
|
name: Odeo Podcasts
|
235
251
|
uri: "http://www.odeo.com"
|
252
|
+
uri_key: "odeo.com"
|
236
253
|
icon: odeo.png
|
237
254
|
use_for: false
|
238
255
|
service_category_id: 1
|
@@ -242,6 +259,7 @@ technorati:
|
|
242
259
|
sort: 22
|
243
260
|
name: Technorati
|
244
261
|
uri: "http://www.technorati.com/"
|
262
|
+
uri_key: "technorati.com"
|
245
263
|
api_uri:
|
246
264
|
uri_data_template: "http://feeds.technorati.com/faves/{username}?format=rss"
|
247
265
|
icon: technorati.png
|
@@ -253,6 +271,7 @@ mixx:
|
|
253
271
|
sort: 23
|
254
272
|
name: Mixx
|
255
273
|
uri: "http://www.mixx.com"
|
274
|
+
uri_key: "mixx.com"
|
256
275
|
api_uri:
|
257
276
|
uri_data_template: "http://www.mixx.com/feeds/users/{username}"
|
258
277
|
uri_template: "http://www.mixx.com/users/{username}"
|
@@ -265,6 +284,7 @@ reddit:
|
|
265
284
|
sort: 24
|
266
285
|
name: Reddit
|
267
286
|
uri: "http://www.reddit.com"
|
287
|
+
uri_key: "reddit.com"
|
268
288
|
api_uri:
|
269
289
|
uri_data_template: "http://www.reddit.com/user/{username}/.rss"
|
270
290
|
uri_template: "http://www.reddit.com/user/{username}"
|
@@ -277,6 +297,7 @@ facebook:
|
|
277
297
|
sort: 25
|
278
298
|
name: Facebook
|
279
299
|
uri: "http://www.facebook.com"
|
300
|
+
uri_key: "facebook.com"
|
280
301
|
api_uri:
|
281
302
|
uri_data_template:
|
282
303
|
icon: facebook.png
|
@@ -290,6 +311,7 @@ pandora:
|
|
290
311
|
sort: 26
|
291
312
|
name: pandora
|
292
313
|
uri: "http://www.pandora.com"
|
314
|
+
uri_key: "pandora.com"
|
293
315
|
api_uri:
|
294
316
|
uri_data_template: "http://feeds.pandora.com/feeds/people/{username}/favorites.xml"
|
295
317
|
icon: pandora.png
|
@@ -301,6 +323,7 @@ technorati_tags:
|
|
301
323
|
sort: 27
|
302
324
|
name: Technorati
|
303
325
|
uri: "http://www.technorati.com/"
|
326
|
+
uri_key: "technorati.com"
|
304
327
|
api_uri:
|
305
328
|
uri_data_template: "http://feeds.technorati.com/search/{tag}?language=n"
|
306
329
|
uri_template: "http://www.technorati.com/search/{tag}?language=n"
|
@@ -313,6 +336,7 @@ flickr_tags:
|
|
313
336
|
sort: 28
|
314
337
|
name: Flickr
|
315
338
|
uri: "http://www.flickr.com"
|
339
|
+
uri_key: "flickr.com"
|
316
340
|
api_uri:
|
317
341
|
uri_data_template: 'http://api.flickr.com/services/feeds/photos_public.gne?tags={tag}&lang=en-us&format=rss_200'
|
318
342
|
uri_template: 'http://www.flickr.com/search/?q={tag}'
|
@@ -325,6 +349,7 @@ wordpress_tags:
|
|
325
349
|
sort: 29
|
326
350
|
name: Wordpress.com
|
327
351
|
uri: "http://www.wordpress.com/"
|
352
|
+
uri_key: "wordpress.com"
|
328
353
|
api_uri:
|
329
354
|
uri_data_template: 'http://wordpress.com/tag/{tag}/feed/'
|
330
355
|
uri_template: 'http://wordpress.com/tag/{tag}'
|
@@ -337,6 +362,7 @@ citeulike_tags:
|
|
337
362
|
sort: 30
|
338
363
|
name: cite u like
|
339
364
|
uri: "http://www.citeulike.org"
|
365
|
+
uri_key: "citeulike.org"
|
340
366
|
api_uri:
|
341
367
|
uri_data_template: 'http://www.citeulike.org/rss/tag/{tag}'
|
342
368
|
uri_template: 'http://www.citeulike.org/tag/{tag}'
|
@@ -349,6 +375,7 @@ delicious_tags:
|
|
349
375
|
sort: 31
|
350
376
|
name: delicious
|
351
377
|
uri: "http://delicious/"
|
378
|
+
uri_key: "delicious.com"
|
352
379
|
api_uri: "https://api.delicious/v1/"
|
353
380
|
uri_data_template: 'http://feeds.delicious.com/rss/tag/{tag}'
|
354
381
|
uri_template: 'http://delicious.com/search?p={tag}'
|
@@ -360,6 +387,7 @@ netflix:
|
|
360
387
|
id: 32
|
361
388
|
name: Netflix
|
362
389
|
uri: "http://www.netflix.com"
|
390
|
+
uri_key: "netflix.com"
|
363
391
|
api_uri:
|
364
392
|
uri_data_template:
|
365
393
|
icon: netflix.png
|
@@ -373,6 +401,7 @@ blogger:
|
|
373
401
|
id: 33
|
374
402
|
name: Blogger
|
375
403
|
uri: "http://www.blogger.com"
|
404
|
+
uri_key: "blogger.com"
|
376
405
|
api_uri:
|
377
406
|
uri_data_template:
|
378
407
|
icon: blogger.png
|
@@ -385,6 +414,7 @@ clipmarks:
|
|
385
414
|
id: 34
|
386
415
|
name: Clipmarks
|
387
416
|
uri: "http://www.clipmarks.com"
|
417
|
+
uri_key: "clipmarks.com"
|
388
418
|
api_uri:
|
389
419
|
uri_data_template: "http://rss.clipmarks.com/clipper/{username}/"
|
390
420
|
uri_template: "http://www.clipmarks.com/clipper/{username}/"
|
@@ -397,6 +427,7 @@ friendfeed:
|
|
397
427
|
id: 35
|
398
428
|
name: Friendfeed
|
399
429
|
uri: "http://friendfeed.com"
|
430
|
+
uri_key: "friendfeed.com"
|
400
431
|
api_uri:
|
401
432
|
uri_data_template:
|
402
433
|
icon: friendfeed.png
|
@@ -410,6 +441,7 @@ linkedin:
|
|
410
441
|
id: 36
|
411
442
|
name: LinkedIn
|
412
443
|
uri: "http://www.linkedin.com"
|
444
|
+
uri_key: "linkedin.com"
|
413
445
|
api_uri:
|
414
446
|
uri_data_template:
|
415
447
|
icon: linkedin.png
|
@@ -423,6 +455,7 @@ diigo:
|
|
423
455
|
id: 37
|
424
456
|
name: diigo
|
425
457
|
uri: "http://www.diigo.com"
|
458
|
+
uri_key: "diigo.com"
|
426
459
|
api_uri:
|
427
460
|
uri_data_template: "http://www.diigo.com/rss/user/{username}"
|
428
461
|
uri_template: "http://www.diigo.com/user/{username}"
|
@@ -436,6 +469,7 @@ diigo_tags:
|
|
436
469
|
sort: 38
|
437
470
|
name: diigo
|
438
471
|
uri: "http://www.diigo.org"
|
472
|
+
uri_key: "diigo.org"
|
439
473
|
api_uri:
|
440
474
|
uri_data_template: 'http://www.diigo.com/community/tag?tag={tag}'
|
441
475
|
uri_template: 'http://www.diigo.com/community/tag?tag={tag}'
|
@@ -448,6 +482,7 @@ netvibes:
|
|
448
482
|
sort: 39
|
449
483
|
name: NetVibes
|
450
484
|
uri: "http://www.netvibes.com"
|
485
|
+
uri_key: "netvibes.com"
|
451
486
|
api_uri:
|
452
487
|
uri_data_template: "http://www.netvibes.com/{username}#General"
|
453
488
|
uri_template: "http://www.netvibes.com/{username}#General"
|
@@ -460,6 +495,7 @@ dailymotion:
|
|
460
495
|
sort: 40
|
461
496
|
name: Dailymotion
|
462
497
|
uri: "http://www.dailymotion.com"
|
498
|
+
uri_key: "dailymotion.com"
|
463
499
|
uri_data_template: "http://www.dailymotion.com/rss/user/{username}/1"
|
464
500
|
uri_template: "http://www.dailymotion.com/{username}"
|
465
501
|
icon: dailymotion.png
|
@@ -471,6 +507,7 @@ polyvore:
|
|
471
507
|
sort: 41
|
472
508
|
name: Polyvore
|
473
509
|
uri: "http://www.polyvore.com"
|
510
|
+
uri_key: "polyvore.com"
|
474
511
|
icon: polyvore.png
|
475
512
|
active: false
|
476
513
|
prompt: polyvore_prompt
|
@@ -482,6 +519,7 @@ identica:
|
|
482
519
|
sort: 42
|
483
520
|
name: "identi.ca"
|
484
521
|
uri: "http://identi.ca"
|
522
|
+
uri_key: "identi.ca"
|
485
523
|
uri_data_template: "http://identi.ca/api/statuses/user_timeline/{username}.atom"
|
486
524
|
uri_template: "http://identi.ca/{username}"
|
487
525
|
icon: identica.png
|
@@ -493,6 +531,7 @@ tumblr:
|
|
493
531
|
sort: 43
|
494
532
|
name: "Tumblr"
|
495
533
|
uri: "http://www.tumblr.com"
|
534
|
+
uri_key: "tumblr.com"
|
496
535
|
uri_data_template: "http://{username}.tumblr.com/"
|
497
536
|
uri_template: "http://{username}.tumblr.com/"
|
498
537
|
icon: tumblr.png
|
@@ -504,6 +543,7 @@ joost:
|
|
504
543
|
sort: 44
|
505
544
|
name: "Joost"
|
506
545
|
uri: "http://www.joost.com"
|
546
|
+
uri_key: "joost.com"
|
507
547
|
uri_data_template: "http://www.joost.com/api/events/get/{username}?fmt=atom"
|
508
548
|
uri_template: "http://www.joost.com/users/{username}/"
|
509
549
|
icon: joost.png
|
@@ -515,6 +555,7 @@ fotolog:
|
|
515
555
|
sort: 45
|
516
556
|
name: "Fotolog"
|
517
557
|
uri: "http://www.fotolog.com"
|
558
|
+
uri_key: "fotolog.com"
|
518
559
|
uri_data_template: "http://www.fotolog.com/{username}/feed/main/rss20"
|
519
560
|
uri_template: "http://www.fotolog.com/{username}"
|
520
561
|
icon: fotolog.png
|
@@ -526,6 +567,7 @@ photobucket_photo_tags:
|
|
526
567
|
sort: 46
|
527
568
|
name: Photobucket (Photos)
|
528
569
|
uri: "http://www.photobucket.com/"
|
570
|
+
uri_key: "photobucket.com"
|
529
571
|
api_uri:
|
530
572
|
uri_data_template: "http://feed.photobucket.com/images/{tag}/feed.rss"
|
531
573
|
uri_template: "http://www.photobucket.com/images/{tag}"
|
@@ -538,6 +580,7 @@ photobucket_video_tags:
|
|
538
580
|
sort: 47
|
539
581
|
name: Photobucket (Videos)
|
540
582
|
uri: "http://www.photobucket.com/"
|
583
|
+
uri_key: "photobucket.com"
|
541
584
|
api_uri:
|
542
585
|
uri_data_template: "http://feed.photobucket.com/videos/{tag}/feed.rss"
|
543
586
|
uri_template: "http://www.photobucket.com/videos/{tag}"
|
@@ -550,6 +593,7 @@ identica_tags:
|
|
550
593
|
sort: 48
|
551
594
|
name: "identi.ca"
|
552
595
|
uri: "http://identi.ca"
|
596
|
+
uri_key: "identi.ca"
|
553
597
|
uri_data_template: "http://identi.ca/api/statusnet/tags/timeline/{tag}.atom"
|
554
598
|
uri_template: "http://identi.ca/tag/{tag}"
|
555
599
|
icon: identica.png
|
@@ -561,6 +605,7 @@ smugmug:
|
|
561
605
|
sort: 49
|
562
606
|
name: "Smugmug"
|
563
607
|
uri: "http://www.smugmug.com"
|
608
|
+
uri_key: "smugmug.com"
|
564
609
|
uri_data_template: "http://{username}.smugmug.com/"
|
565
610
|
uri_template: "http://{username}.smugmug.com/"
|
566
611
|
icon: smugmug.png
|
@@ -572,6 +617,7 @@ smugmug_tags:
|
|
572
617
|
sort: 50
|
573
618
|
name: "Smugmug"
|
574
619
|
uri: "http://www.smugmug.com"
|
620
|
+
uri_key: "smugmug.com"
|
575
621
|
uri_data_template: "http://www.smugmug.com/hack/feed.mg?Type=search&Data={tag}&format=atom10"
|
576
622
|
uri_template: "http://www.smugmug.com/search/index.mg?searchWords={tag}&searchType=global&x=0&y=0"
|
577
623
|
icon: smugmug.png
|
@@ -583,6 +629,7 @@ zooomr:
|
|
583
629
|
sort: 51
|
584
630
|
name: "Zooomr"
|
585
631
|
uri: "http://www.zooomr.com"
|
632
|
+
uri_key: "zooomr.com"
|
586
633
|
uri_data_template: "http://www.zooomr.com/photos/{username}"
|
587
634
|
uri_template: "http://www.zooomr.com/photos/{username}"
|
588
635
|
icon: zooomr.png
|
@@ -594,6 +641,7 @@ picasa:
|
|
594
641
|
sort: 52
|
595
642
|
name: "Picasa"
|
596
643
|
uri: "http://picasaweb.google.com"
|
644
|
+
uri_key: "picasaweb.google.com"
|
597
645
|
uri_data_template: "http://picasaweb.google.com/data/feed/base/user/{username}?alt=rss&kind=album&hl=en_US&access=public"
|
598
646
|
uri_template: "http://picasaweb.google.com/{username}"
|
599
647
|
icon: picasa.png
|
@@ -605,6 +653,7 @@ picasa_tags:
|
|
605
653
|
sort: 53
|
606
654
|
name: "Picasa"
|
607
655
|
uri: "http://picasaweb.google.com"
|
656
|
+
uri_key: "picasaweb.google.com"
|
608
657
|
uri_data_template: "http://picasaweb.google.com/data/feed/base/all?alt=rss&kind=photo&filter=1&q={tag}&hl=en_US"
|
609
658
|
uri_template: "http://picasaweb.google.com/lh/view?q={tag}&psc=G&filter=1#"
|
610
659
|
icon: picasa.png
|
@@ -616,6 +665,7 @@ librarything:
|
|
616
665
|
sort: 54
|
617
666
|
name: LibraryThing
|
618
667
|
uri: "http://www.librarything.com"
|
668
|
+
uri_key: "librarything.com"
|
619
669
|
uri_data_template: "http://www.librarything.com/rss/reviews/{username}"
|
620
670
|
uri_template: "http://www.librarything.com/profile/{username}"
|
621
671
|
icon: librarything.png
|
@@ -627,6 +677,7 @@ goodreads:
|
|
627
677
|
sort: 55
|
628
678
|
name: Goodreads
|
629
679
|
uri: "http://www.goodreads.com"
|
680
|
+
uri_key: "goodreads.com"
|
630
681
|
icon: goodreads.png
|
631
682
|
use_for: "identity"
|
632
683
|
service_category_id: 13
|
@@ -638,6 +689,7 @@ zotero_groups:
|
|
638
689
|
sort: 56
|
639
690
|
name: Zotero Groups
|
640
691
|
uri: "http://www.zotero.org"
|
692
|
+
uri_key: "zotero.org"
|
641
693
|
icon: zotero.png
|
642
694
|
use_for: "identity"
|
643
695
|
service_category_id: 8
|
@@ -649,6 +701,7 @@ zotero:
|
|
649
701
|
sort: 57
|
650
702
|
name: Zotero
|
651
703
|
uri: "http://www.zotero.org"
|
704
|
+
uri_key: "zotero.org"
|
652
705
|
uri_data_template: "http://www.zotero.org/{username}/items"
|
653
706
|
uri_template: "http://www.zotero.org/{username}/items"
|
654
707
|
icon: zotero.png
|
@@ -660,6 +713,7 @@ amazon:
|
|
660
713
|
sort: 58
|
661
714
|
name: Amazon
|
662
715
|
uri: "http://www.amazon.com"
|
716
|
+
uri_key: "amazon.com"
|
663
717
|
uri_data_template: "http://www.amazon.com"
|
664
718
|
uri_template:
|
665
719
|
icon: amazon.png
|
@@ -671,6 +725,7 @@ twitter_tags:
|
|
671
725
|
id: 59
|
672
726
|
name: Twitter
|
673
727
|
uri: "http://www.twitter.com"
|
728
|
+
uri_key: "twitter.com"
|
674
729
|
api_uri:
|
675
730
|
uri_data_template: "http://search.twitter.com/search.atom?q=+{tag}"
|
676
731
|
uri_template: "http://search.twitter.com/search?q=+{tag}"
|
@@ -683,6 +738,7 @@ youtube_tags:
|
|
683
738
|
id: 60
|
684
739
|
name: You Tube
|
685
740
|
uri: "http://www.youtube.com"
|
741
|
+
uri_key: "youtube.com"
|
686
742
|
api_uri:
|
687
743
|
uri_data_template: "http://gdata.youtube.com/feeds/base/videos?q={tag}&client=ytapi-youtube-search&alt=rss&v=2"
|
688
744
|
icon: youtube.png
|
@@ -694,6 +750,7 @@ icerocket_blogs:
|
|
694
750
|
id: 61
|
695
751
|
name: IceRocket Blogs
|
696
752
|
uri: "http://www.icerocket.com"
|
753
|
+
uri_key: "icerocket.com"
|
697
754
|
api_uri:
|
698
755
|
uri_data_template: "http://www.icerocket.com/search?tab=blog&q={tag}&rss=1"
|
699
756
|
uri_template: "http://www.icerocket.com/search?tab=blog&fr=h&q={tag}&x=0&y=0"
|
@@ -706,6 +763,7 @@ yahoo_search:
|
|
706
763
|
id: 62
|
707
764
|
name: Yahoo
|
708
765
|
uri: "http://www.yahoo.com"
|
766
|
+
uri_key: "yahoo.com"
|
709
767
|
api_uri:
|
710
768
|
uri_data_template: "http://api.search.yahoo.com/WebSearchService/rss/webSearch.xml?appid=yahoosearchwebrss&query={tag}"
|
711
769
|
uri_template: "http://search.yahoo.com/search?p={tag}&fr=yfp-t-152&toggle=1&cop=mss&ei=UTF-8"
|
@@ -718,6 +776,7 @@ bing_search:
|
|
718
776
|
id: 63
|
719
777
|
name: Bing
|
720
778
|
uri: "http://www.bing.com"
|
779
|
+
uri_key: "bing.com"
|
721
780
|
api_uri:
|
722
781
|
uri_data_template: "http://www.bing.com/search?q={tag}&go=&form=QBLH&qs=n&format=rss"
|
723
782
|
uri_template: "http://www.bing.com/search?q={tag}&go=&form=QBLH&qs=n"
|
@@ -730,6 +789,7 @@ bloglines_tags:
|
|
730
789
|
id: 64
|
731
790
|
name: Bloglines
|
732
791
|
uri: "http://www.bloglines.com"
|
792
|
+
uri_key: "bloglines.com"
|
733
793
|
api_uri:
|
734
794
|
uri_data_template: "feed://www.bloglines.com/search?q={tag}&ql=en&s=f&pop=l&news=m&format=rss"
|
735
795
|
uri_template: "http://www.bloglines.com/search?q={tag}&ql=en&s=f&pop=l&news=m"
|
@@ -742,6 +802,7 @@ ask_blog_search:
|
|
742
802
|
id: 65
|
743
803
|
name: Ask.com Blogs
|
744
804
|
uri: "http://www.ask.com"
|
805
|
+
uri_key: "ask.com"
|
745
806
|
api_uri:
|
746
807
|
uri_data_template: "http://ask.bloglines.com/search?q={tag}&ql=&format=rss"
|
747
808
|
uri_template: "http://www.ask.com/blogsearch?q={tag}&search=search&qsrc=0&o=0&l=dir"
|
@@ -754,6 +815,7 @@ ask_news_search:
|
|
754
815
|
id: 66
|
755
816
|
name: Ask.com News
|
756
817
|
uri: "http://www.ask.com"
|
818
|
+
uri_key: "ask.com"
|
757
819
|
api_uri:
|
758
820
|
uri_data_template: "http://news.ask.com/newsrss?q={tag}&n2c=&o=0&l=dir"
|
759
821
|
uri_template: "http://news.ask.com/news?qsrc=167&o=0&l=dir&q={tag}"
|
@@ -766,6 +828,7 @@ icerocket_news:
|
|
766
828
|
id: 67
|
767
829
|
name: IceRocket News
|
768
830
|
uri: "http://www.icerocket.com"
|
831
|
+
uri_key: "icerocket.com"
|
769
832
|
api_uri:
|
770
833
|
uri_data_template: "http://www.icerocket.com/search?tab=news&q={tag}&rss=1"
|
771
834
|
uri_template: "http://www.icerocket.com/search?tab=news&fr=h&q={tag}&x=0&y=0"
|
@@ -778,6 +841,7 @@ icerocket_search:
|
|
778
841
|
id: 68
|
779
842
|
name: IceRocket
|
780
843
|
uri: "http://www.icerocket.com"
|
844
|
+
uri_key: "icerocket.com"
|
781
845
|
api_uri:
|
782
846
|
uri_data_template: "http://www.icerocket.com/search?tab=web&q={tag}&rss=1"
|
783
847
|
uri_template: "http://www.icerocket.com/search?tab=web&q={tag}"
|
@@ -790,6 +854,7 @@ digg_search:
|
|
790
854
|
id: 69
|
791
855
|
name: Digg
|
792
856
|
uri: "http://www.digg.com"
|
857
|
+
uri_key: "digg.com"
|
793
858
|
api_uri:
|
794
859
|
uri_data_template: "feed://digg.com/rss_search?s={tag}"
|
795
860
|
uri_template: "http://digg.com/search?s={tag}"
|
@@ -802,6 +867,7 @@ clipmarks:
|
|
802
867
|
id: 70
|
803
868
|
name: Clipmarks
|
804
869
|
uri: "http://www.clipmarks.com"
|
870
|
+
uri_key: "clipmarks.com"
|
805
871
|
api_uri:
|
806
872
|
uri_data_template: "feed://rss.clipmarks.com/search/{tag}/"
|
807
873
|
uri_template: "http://clipmarks.com/search/{tag}/"
|
@@ -815,6 +881,7 @@ simpy:
|
|
815
881
|
sort: 71
|
816
882
|
name: Simpy
|
817
883
|
uri: "http://www.simpy.com"
|
884
|
+
uri_key: "simpy.com"
|
818
885
|
api_uri:
|
819
886
|
uri_data_template: "feed://www.simpy.com/rss/links/search/{tag}/s=d"
|
820
887
|
uri_template: "http://www.simpy.com/links/search/{tag}"
|
@@ -827,6 +894,7 @@ connotea_search:
|
|
827
894
|
sort: 72
|
828
895
|
name: Connotea
|
829
896
|
uri: "http://www.connotea.org"
|
897
|
+
uri_key: "connotea.org"
|
830
898
|
uri_data_template: "http://www.connotea.org/rss/search?q={tag}"
|
831
899
|
uri_template: "http://www.connotea.org/search?q={tag}"
|
832
900
|
icon: connotea.png
|
@@ -838,6 +906,7 @@ connotea:
|
|
838
906
|
sort: 73
|
839
907
|
name: Connotea
|
840
908
|
uri: "http://www.connotea.org"
|
909
|
+
uri_key: "connotea.org"
|
841
910
|
uri_data_template: "http://www.connotea.org/rss/user/{username}"
|
842
911
|
uri_template: "http://www.connotea.org/user/{username}"
|
843
912
|
icon: connotea.png
|
@@ -848,6 +917,7 @@ twine_search:
|
|
848
917
|
id: 74
|
849
918
|
name: Twine
|
850
919
|
uri: "http://www.twine.com"
|
920
|
+
uri_key: "twine.com"
|
851
921
|
api_uri:
|
852
922
|
uri_data_template: "http://www.twine.com/feed/atom/entries/search?text={tag}&type="
|
853
923
|
uri_template: "http://www.twine.com/search?type=&text={tag}"
|
@@ -861,6 +931,7 @@ bibsonomy:
|
|
861
931
|
sort: 75
|
862
932
|
name: Bibsonomy
|
863
933
|
uri: "http://www.bibsonomy.org"
|
934
|
+
uri_key: "bibsonomy.org"
|
864
935
|
uri_data_template: "feed://www.bibsonomy.org/publrss/author/{username}"
|
865
936
|
uri_template: "http://www.bibsonomy.org/author/{username}"
|
866
937
|
icon: bibsonomy.png
|
@@ -872,6 +943,7 @@ bibsonomy_search:
|
|
872
943
|
sort: 76
|
873
944
|
name: Bibsonomy
|
874
945
|
uri: "http://www.bibsonomy.org"
|
946
|
+
uri_key: "bibsonomy.org"
|
875
947
|
uri_data_template: "feed://www.bibsonomy.org/burst/tag/{tag}"
|
876
948
|
uri_template: "http://www.bibsonomy.org/tag/{tag}"
|
877
949
|
icon: bibsonomy.png
|
@@ -882,6 +954,7 @@ metacafe:
|
|
882
954
|
id: 77
|
883
955
|
name: MetaCafe
|
884
956
|
uri: "http://www.metacafe.com"
|
957
|
+
uri_key: "metacafe.com"
|
885
958
|
api_uri:
|
886
959
|
uri_data_template: "http://www.metacafe.com/tags/{tag}/rss.xml"
|
887
960
|
uri_template: "http://www.metacafe.com/tags/{tag}"
|
@@ -891,4 +964,3 @@ metacafe:
|
|
891
964
|
service_category_id: 7
|
892
965
|
active: true
|
893
966
|
|
894
|
-
|