muck-services 0.1.39 → 0.1.40

Sign up to get free protection for your applications and to get access to all the features.
data/VERSION CHANGED
@@ -1 +1 @@
1
- 0.1.39
1
+ 0.1.40
@@ -48,6 +48,10 @@ class Muck::RecommendationsController < ApplicationController
48
48
  render 'recommendations/get_button', :layout => false
49
49
  end
50
50
 
51
+ def greasemonkey_script
52
+ render :template => '/recommendations/greasemonkey.user.js.erb', :layout => false
53
+ end
54
+
51
55
  def real_time
52
56
  respond_to do |format|
53
57
  format.html do
@@ -13,10 +13,14 @@
13
13
  #
14
14
 
15
15
  class PersonalRecommendation < ActiveRecord::Base
16
-
16
+ unloadable
17
+
17
18
  belongs_to :personal_recommendable, :polymorphic => true
18
19
  belongs_to :destination, :polymorphic => true
19
-
20
+
21
+ belongs_to :entry, :class_name => 'Entry', :foreign_key => 'destination_id', :include => :feed
22
+ belongs_to :user, :class_name => 'User', :foreign_key => 'destination_id'
23
+
20
24
  named_scope :limit, lambda { |num| { :limit => num } }
21
25
  named_scope :recent, lambda { { :conditions => ['created_at > ?', 1.week.ago] } }
22
26
  named_scope :newest, :order => "created_at DESC"
@@ -233,29 +233,21 @@ function recList(recommendations, sDirectLinkText) {
233
233
  {
234
234
  // get info for the recommendation
235
235
  rec_title = recommendations[i].getElementsByTagName('title')[0].textContent;
236
- link_uri = recommendations[i].getElementsByTagName('link')[0].textContent;
236
+ rec_link = recommendations[i].getElementsByTagName('link')[0].textContent;
237
237
  collection = recommendations[i].getElementsByTagName('collection')[0].textContent;
238
- //has_direct_link = recommendations[i].getElementsByTagName('has_direct_link')[0];
239
- rec_link = link_uri;
240
- rec_description = recommendations[i].getElementsByTagName('description')[0].textContent;
241
238
  rec_tag = '<a href="' + rec_link + '" style="color:#3987DC !important; text-decoration:none !important; " target="_top">' + rec_title + ' (' + collection + ')</a>';
242
- //direct_link_tag = has_direct_link ? ' <a href="' + rec_link + '&target=direct_link" style="color:#556664 !important; text-decoration:none !important; " target="_top">' + sDirectLinkText + '</a>' : "";
243
- direct_link_tag = "";
244
239
 
245
240
  // our lists are different in educommons and on MIT's websites
246
- if (bSpecialSite == true)
247
- {
241
+ if (bSpecialSite == true) {
248
242
  sRecList += "<p style='font-size:12px;padding-left:4px;'>";
249
- sRecList += rec_tag + direct_link_tag;
243
+ sRecList += rec_tag;
250
244
  sRecList += "</p>";
251
- }
252
- // default list styles
253
- else
254
- {
245
+ } else {
246
+ // default list styles
255
247
  sRecList += '<li style="margin-left: 0px; padding: 3px; list-style-type: none; font-size: 12px; ';
256
248
  if (i % 2 == 0) sRecList += 'background-color:#E6E6E6;';
257
249
  sRecList += '">';
258
- sRecList += rec_tag + direct_link_tag;
250
+ sRecList += rec_tag;
259
251
  sRecList += '</li>';
260
252
  }
261
253
  }
@@ -395,6 +387,3 @@ if (sUrlToGetRecsFor.indexOf('http') == 0 && bodyTags && bodyTags.length > 0)
395
387
  getRecs(sServiceUrl + "u=" + sUrlToGetRecsFor);
396
388
  }
397
389
  }
398
-
399
-
400
-
@@ -11,6 +11,8 @@ module ActiveRecord
11
11
  # +has_muck_recommendations+ gives the class it is called on personalized recommendations
12
12
  def has_muck_recommendations
13
13
  has_many :personal_recommendations, :as => :personal_recommendable
14
+ has_many :recommended_entries, :through => :personal_recommendations, :source => :entry,
15
+ :conditions => "personal_recommendations.destination_type = 'Entry'"
14
16
  end
15
17
 
16
18
  def acts_as_muck_recommendation
@@ -1,548 +1,548 @@
1
1
  # Generated by jeweler
2
2
  # DO NOT EDIT THIS FILE DIRECTLY
3
- # Instead, edit Jeweler::Tasks in Rakefile, and run the gemspec command
3
+ # Instead, edit Jeweler::Tasks in rakefile, and run the gemspec command
4
4
  # -*- encoding: utf-8 -*-
5
5
 
6
6
  Gem::Specification.new do |s|
7
7
  s.name = %q{muck-services}
8
- s.version = "0.1.39"
8
+ s.version = "0.1.40"
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{2010-02-25}
12
+ s.date = %q{2010-02-26}
13
13
  s.description = %q{This gem contains the rails specific code for dealing with feeds, aggregations and recommendations. It is meant to work with the muck-raker gem.}
14
14
  s.email = %q{justin@tatemae.com}
15
15
  s.extra_rdoc_files = [
16
16
  "LICENSE",
17
- "README.rdoc"
17
+ "README.rdoc"
18
18
  ]
19
19
  s.files = [
20
20
  ".document",
21
- ".gitignore",
22
- "LICENSE",
23
- "README.rdoc",
24
- "Rakefile",
25
- "VERSION",
26
- "app/controllers/admin/muck/feeds_controller.rb",
27
- "app/controllers/admin/muck/oai_endpoints_controller.rb",
28
- "app/controllers/muck/aggregation_feeds_controller.rb",
29
- "app/controllers/muck/aggregations_controller.rb",
30
- "app/controllers/muck/entries_controller.rb",
31
- "app/controllers/muck/feed_previews_controller.rb",
32
- "app/controllers/muck/feeds_controller.rb",
33
- "app/controllers/muck/identity_feeds_controller.rb",
34
- "app/controllers/muck/oai_endpoints_controller.rb",
35
- "app/controllers/muck/recommendations_controller.rb",
36
- "app/controllers/muck/topics_controller.rb",
37
- "app/controllers/muck/visits_controller.rb",
38
- "app/helpers/muck_services_aggregations_helper.rb",
39
- "app/helpers/muck_services_feeds_helper.rb",
40
- "app/helpers/muck_services_helper.rb",
41
- "app/helpers/muck_services_service_helper.rb",
42
- "app/models/aggregation.rb",
43
- "app/models/aggregation_feed.rb",
44
- "app/models/attention.rb",
45
- "app/models/attention_type.rb",
46
- "app/models/click.rb",
47
- "app/models/entry.rb",
48
- "app/models/feed.rb",
49
- "app/models/feed_parent.rb",
50
- "app/models/identity_feed.rb",
51
- "app/models/oai_endpoint.rb",
52
- "app/models/personal_recommendation.rb",
53
- "app/models/recommendation.rb",
54
- "app/models/service.rb",
55
- "app/models/service_category.rb",
56
- "app/models/services_mailer.rb",
57
- "app/models/subject.rb",
58
- "app/models/tag_cloud.rb",
59
- "app/views/activity_templates/_entry_comment.html.erb",
60
- "app/views/activity_templates/_entry_share.html.erb",
61
- "app/views/admin/feeds/index.html.erb",
62
- "app/views/admin/oai_endpoints/index.html.erb",
63
- "app/views/aggregations/_aggregation.html.erb",
64
- "app/views/aggregations/_data_source.html.erb",
65
- "app/views/aggregations/_data_sources.html.erb",
66
- "app/views/aggregations/_feeds.html.erb",
67
- "app/views/aggregations/_preview_form.html.erb",
68
- "app/views/aggregations/edit.html.erb",
69
- "app/views/aggregations/index.html.erb",
70
- "app/views/aggregations/index.iphone.erb",
71
- "app/views/aggregations/new.html.erb",
72
- "app/views/aggregations/preview.html.erb",
73
- "app/views/aggregations/preview.iphone.erb",
74
- "app/views/aggregations/rss_discovery.html.erb",
75
- "app/views/aggregations/show.html.erb",
76
- "app/views/default/_language_list.html.erb",
77
- "app/views/entries/_related_entry.html.erb",
78
- "app/views/entries/_result.html.erb",
79
- "app/views/entries/_result_status.html.erb",
80
- "app/views/entries/_results.html.erb",
81
- "app/views/entries/_tag_cloud.html.erb",
82
- "app/views/entries/browse_by_tags.html.erb",
83
- "app/views/entries/collections.html.erb",
84
- "app/views/entries/details.html.erb",
85
- "app/views/entries/index.html.erb",
86
- "app/views/entries/search.html.erb",
87
- "app/views/entries/search.pjs.erb",
88
- "app/views/entries/search.rdf.builder",
89
- "app/views/entries/search.rss.builder",
90
- "app/views/entries/search.xml.builder",
91
- "app/views/entries/show.html.erb",
92
- "app/views/entries/track_clicks.html.erb",
93
- "app/views/feed_previews/new.html.erb",
94
- "app/views/feed_previews/select_feeds.html.erb",
95
- "app/views/feeds/_entry.html.erb",
96
- "app/views/feeds/_feed.html.erb",
97
- "app/views/feeds/_feed_row.html.erb",
98
- "app/views/feeds/_feed_selection.html.erb",
99
- "app/views/feeds/_form.html.erb",
100
- "app/views/feeds/edit.html.erb",
101
- "app/views/feeds/harvest_now.html.erb",
102
- "app/views/feeds/index.html.erb",
103
- "app/views/feeds/new.html.erb",
104
- "app/views/feeds/new_extended.html.erb",
105
- "app/views/feeds/new_oai_rss.html.erb",
106
- "app/views/feeds/show.html.erb",
107
- "app/views/feeds/unban.html.erb",
108
- "app/views/identity_feeds/_available_service_categories.html.erb",
109
- "app/views/identity_feeds/_form.html.erb",
110
- "app/views/identity_feeds/_services_for_user.html.erb",
111
- "app/views/identity_feeds/edit.html.erb",
112
- "app/views/identity_feeds/index.html.erb",
113
- "app/views/identity_feeds/new.html.erb",
114
- "app/views/oai_endpoints/_form.html.erb",
115
- "app/views/oai_endpoints/_oai_endpoint_row.html.erb",
116
- "app/views/oai_endpoints/new.html.erb",
117
- "app/views/oai_endpoints/show.html.erb",
118
- "app/views/parts/_add_feed.html.erb",
119
- "app/views/parts/_select_feed.html.erb",
120
- "app/views/recommendations/get_button.html.erb",
121
- "app/views/recommendations/greasemonkey.user.js.erb",
122
- "app/views/recommendations/index.js.erb",
123
- "app/views/recommendations/index.pjs.erb",
124
- "app/views/recommendations/index.rss.builder",
125
- "app/views/recommendations/index.xml.builder",
126
- "app/views/recommendations/real_time.html.erb",
127
- "app/views/recommendations/real_time.pjs.erb",
128
- "app/views/recommendations/real_time.xml.builder",
129
- "app/views/service_templates/_facebook.html.erb",
130
- "app/views/service_templates/_friendfeed.html.erb",
131
- "app/views/service_templates/_goodreads.html.erb",
132
- "app/views/service_templates/_linkedin.html.erb",
133
- "app/views/service_templates/_netflix.html.erb",
134
- "app/views/service_templates/_polyvore.html.erb",
135
- "app/views/service_templates/_zotero_group.html.erb",
136
- "app/views/services/_edit_service.html.erb",
137
- "app/views/services/_new_service.html.erb",
138
- "app/views/services/_personal_recommendations.html.erb",
139
- "app/views/services/_summary.html.erb",
140
- "app/views/services/_view_service.html.erb",
141
- "app/views/services_mailer/notification_feed_added.text.ar.html.erb",
142
- "app/views/services_mailer/notification_feed_added.text.ar.plain.erb",
143
- "app/views/services_mailer/notification_feed_added.text.bg.html.erb",
144
- "app/views/services_mailer/notification_feed_added.text.bg.plain.erb",
145
- "app/views/services_mailer/notification_feed_added.text.ca.html.erb",
146
- "app/views/services_mailer/notification_feed_added.text.ca.plain.erb",
147
- "app/views/services_mailer/notification_feed_added.text.cs.html.erb",
148
- "app/views/services_mailer/notification_feed_added.text.cs.plain.erb",
149
- "app/views/services_mailer/notification_feed_added.text.da.html.erb",
150
- "app/views/services_mailer/notification_feed_added.text.da.plain.erb",
151
- "app/views/services_mailer/notification_feed_added.text.de.html.erb",
152
- "app/views/services_mailer/notification_feed_added.text.de.plain.erb",
153
- "app/views/services_mailer/notification_feed_added.text.el.html.erb",
154
- "app/views/services_mailer/notification_feed_added.text.el.plain.erb",
155
- "app/views/services_mailer/notification_feed_added.text.es.html.erb",
156
- "app/views/services_mailer/notification_feed_added.text.es.plain.erb",
157
- "app/views/services_mailer/notification_feed_added.text.et.html.erb",
158
- "app/views/services_mailer/notification_feed_added.text.et.plain.erb",
159
- "app/views/services_mailer/notification_feed_added.text.fa.html.erb",
160
- "app/views/services_mailer/notification_feed_added.text.fa.plain.erb",
161
- "app/views/services_mailer/notification_feed_added.text.fi.html.erb",
162
- "app/views/services_mailer/notification_feed_added.text.fi.plain.erb",
163
- "app/views/services_mailer/notification_feed_added.text.fr.html.erb",
164
- "app/views/services_mailer/notification_feed_added.text.fr.plain.erb",
165
- "app/views/services_mailer/notification_feed_added.text.gl.html.erb",
166
- "app/views/services_mailer/notification_feed_added.text.gl.plain.erb",
167
- "app/views/services_mailer/notification_feed_added.text.hi.html.erb",
168
- "app/views/services_mailer/notification_feed_added.text.hi.plain.erb",
169
- "app/views/services_mailer/notification_feed_added.text.hr.html.erb",
170
- "app/views/services_mailer/notification_feed_added.text.hr.plain.erb",
171
- "app/views/services_mailer/notification_feed_added.text.html.erb",
172
- "app/views/services_mailer/notification_feed_added.text.hu.html.erb",
173
- "app/views/services_mailer/notification_feed_added.text.hu.plain.erb",
174
- "app/views/services_mailer/notification_feed_added.text.id.html.erb",
175
- "app/views/services_mailer/notification_feed_added.text.id.plain.erb",
176
- "app/views/services_mailer/notification_feed_added.text.it.html.erb",
177
- "app/views/services_mailer/notification_feed_added.text.it.plain.erb",
178
- "app/views/services_mailer/notification_feed_added.text.iw.html.erb",
179
- "app/views/services_mailer/notification_feed_added.text.iw.plain.erb",
180
- "app/views/services_mailer/notification_feed_added.text.ja.html.erb",
181
- "app/views/services_mailer/notification_feed_added.text.ja.plain.erb",
182
- "app/views/services_mailer/notification_feed_added.text.ko.html.erb",
183
- "app/views/services_mailer/notification_feed_added.text.ko.plain.erb",
184
- "app/views/services_mailer/notification_feed_added.text.lt.html.erb",
185
- "app/views/services_mailer/notification_feed_added.text.lt.plain.erb",
186
- "app/views/services_mailer/notification_feed_added.text.lv.html.erb",
187
- "app/views/services_mailer/notification_feed_added.text.lv.plain.erb",
188
- "app/views/services_mailer/notification_feed_added.text.mt.html.erb",
189
- "app/views/services_mailer/notification_feed_added.text.mt.plain.erb",
190
- "app/views/services_mailer/notification_feed_added.text.nl.html.erb",
191
- "app/views/services_mailer/notification_feed_added.text.nl.plain.erb",
192
- "app/views/services_mailer/notification_feed_added.text.no.html.erb",
193
- "app/views/services_mailer/notification_feed_added.text.no.plain.erb",
194
- "app/views/services_mailer/notification_feed_added.text.pl.html.erb",
195
- "app/views/services_mailer/notification_feed_added.text.pl.plain.erb",
196
- "app/views/services_mailer/notification_feed_added.text.plain.erb",
197
- "app/views/services_mailer/notification_feed_added.text.pt-PT.html.erb",
198
- "app/views/services_mailer/notification_feed_added.text.pt-PT.plain.erb",
199
- "app/views/services_mailer/notification_feed_added.text.ro.html.erb",
200
- "app/views/services_mailer/notification_feed_added.text.ro.plain.erb",
201
- "app/views/services_mailer/notification_feed_added.text.ru.html.erb",
202
- "app/views/services_mailer/notification_feed_added.text.ru.plain.erb",
203
- "app/views/services_mailer/notification_feed_added.text.sk.html.erb",
204
- "app/views/services_mailer/notification_feed_added.text.sk.plain.erb",
205
- "app/views/services_mailer/notification_feed_added.text.sl.html.erb",
206
- "app/views/services_mailer/notification_feed_added.text.sl.plain.erb",
207
- "app/views/services_mailer/notification_feed_added.text.sq.html.erb",
208
- "app/views/services_mailer/notification_feed_added.text.sq.plain.erb",
209
- "app/views/services_mailer/notification_feed_added.text.sr.html.erb",
210
- "app/views/services_mailer/notification_feed_added.text.sr.plain.erb",
211
- "app/views/services_mailer/notification_feed_added.text.sv.html.erb",
212
- "app/views/services_mailer/notification_feed_added.text.sv.plain.erb",
213
- "app/views/services_mailer/notification_feed_added.text.th.html.erb",
214
- "app/views/services_mailer/notification_feed_added.text.th.plain.erb",
215
- "app/views/services_mailer/notification_feed_added.text.tl.html.erb",
216
- "app/views/services_mailer/notification_feed_added.text.tl.plain.erb",
217
- "app/views/services_mailer/notification_feed_added.text.tr.html.erb",
218
- "app/views/services_mailer/notification_feed_added.text.tr.plain.erb",
219
- "app/views/services_mailer/notification_feed_added.text.uk.html.erb",
220
- "app/views/services_mailer/notification_feed_added.text.uk.plain.erb",
221
- "app/views/services_mailer/notification_feed_added.text.vi.html.erb",
222
- "app/views/services_mailer/notification_feed_added.text.vi.plain.erb",
223
- "app/views/services_mailer/notification_feed_added.text.zh-CN.html.erb",
224
- "app/views/services_mailer/notification_feed_added.text.zh-CN.plain.erb",
225
- "app/views/services_mailer/notification_feed_added.text.zh-TW.html.erb",
226
- "app/views/services_mailer/notification_feed_added.text.zh-TW.plain.erb",
227
- "app/views/services_mailer/notification_feed_added.text.zh.html.erb",
228
- "app/views/services_mailer/notification_feed_added.text.zh.plain.erb",
229
- "app/views/services_mailer/notification_oai_endpoint_added.text.ar.html.erb",
230
- "app/views/services_mailer/notification_oai_endpoint_added.text.ar.plain.erb",
231
- "app/views/services_mailer/notification_oai_endpoint_added.text.bg.html.erb",
232
- "app/views/services_mailer/notification_oai_endpoint_added.text.bg.plain.erb",
233
- "app/views/services_mailer/notification_oai_endpoint_added.text.ca.html.erb",
234
- "app/views/services_mailer/notification_oai_endpoint_added.text.ca.plain.erb",
235
- "app/views/services_mailer/notification_oai_endpoint_added.text.cs.html.erb",
236
- "app/views/services_mailer/notification_oai_endpoint_added.text.cs.plain.erb",
237
- "app/views/services_mailer/notification_oai_endpoint_added.text.da.html.erb",
238
- "app/views/services_mailer/notification_oai_endpoint_added.text.da.plain.erb",
239
- "app/views/services_mailer/notification_oai_endpoint_added.text.de.html.erb",
240
- "app/views/services_mailer/notification_oai_endpoint_added.text.de.plain.erb",
241
- "app/views/services_mailer/notification_oai_endpoint_added.text.el.html.erb",
242
- "app/views/services_mailer/notification_oai_endpoint_added.text.el.plain.erb",
243
- "app/views/services_mailer/notification_oai_endpoint_added.text.es.html.erb",
244
- "app/views/services_mailer/notification_oai_endpoint_added.text.es.plain.erb",
245
- "app/views/services_mailer/notification_oai_endpoint_added.text.et.html.erb",
246
- "app/views/services_mailer/notification_oai_endpoint_added.text.et.plain.erb",
247
- "app/views/services_mailer/notification_oai_endpoint_added.text.fa.html.erb",
248
- "app/views/services_mailer/notification_oai_endpoint_added.text.fa.plain.erb",
249
- "app/views/services_mailer/notification_oai_endpoint_added.text.fi.html.erb",
250
- "app/views/services_mailer/notification_oai_endpoint_added.text.fi.plain.erb",
251
- "app/views/services_mailer/notification_oai_endpoint_added.text.fr.html.erb",
252
- "app/views/services_mailer/notification_oai_endpoint_added.text.fr.plain.erb",
253
- "app/views/services_mailer/notification_oai_endpoint_added.text.gl.html.erb",
254
- "app/views/services_mailer/notification_oai_endpoint_added.text.gl.plain.erb",
255
- "app/views/services_mailer/notification_oai_endpoint_added.text.hi.html.erb",
256
- "app/views/services_mailer/notification_oai_endpoint_added.text.hi.plain.erb",
257
- "app/views/services_mailer/notification_oai_endpoint_added.text.hr.html.erb",
258
- "app/views/services_mailer/notification_oai_endpoint_added.text.hr.plain.erb",
259
- "app/views/services_mailer/notification_oai_endpoint_added.text.html.erb",
260
- "app/views/services_mailer/notification_oai_endpoint_added.text.hu.html.erb",
261
- "app/views/services_mailer/notification_oai_endpoint_added.text.hu.plain.erb",
262
- "app/views/services_mailer/notification_oai_endpoint_added.text.id.html.erb",
263
- "app/views/services_mailer/notification_oai_endpoint_added.text.id.plain.erb",
264
- "app/views/services_mailer/notification_oai_endpoint_added.text.it.html.erb",
265
- "app/views/services_mailer/notification_oai_endpoint_added.text.it.plain.erb",
266
- "app/views/services_mailer/notification_oai_endpoint_added.text.iw.html.erb",
267
- "app/views/services_mailer/notification_oai_endpoint_added.text.iw.plain.erb",
268
- "app/views/services_mailer/notification_oai_endpoint_added.text.ja.html.erb",
269
- "app/views/services_mailer/notification_oai_endpoint_added.text.ja.plain.erb",
270
- "app/views/services_mailer/notification_oai_endpoint_added.text.ko.html.erb",
271
- "app/views/services_mailer/notification_oai_endpoint_added.text.ko.plain.erb",
272
- "app/views/services_mailer/notification_oai_endpoint_added.text.lt.html.erb",
273
- "app/views/services_mailer/notification_oai_endpoint_added.text.lt.plain.erb",
274
- "app/views/services_mailer/notification_oai_endpoint_added.text.lv.html.erb",
275
- "app/views/services_mailer/notification_oai_endpoint_added.text.lv.plain.erb",
276
- "app/views/services_mailer/notification_oai_endpoint_added.text.mt.html.erb",
277
- "app/views/services_mailer/notification_oai_endpoint_added.text.mt.plain.erb",
278
- "app/views/services_mailer/notification_oai_endpoint_added.text.nl.html.erb",
279
- "app/views/services_mailer/notification_oai_endpoint_added.text.nl.plain.erb",
280
- "app/views/services_mailer/notification_oai_endpoint_added.text.no.html.erb",
281
- "app/views/services_mailer/notification_oai_endpoint_added.text.no.plain.erb",
282
- "app/views/services_mailer/notification_oai_endpoint_added.text.pl.html.erb",
283
- "app/views/services_mailer/notification_oai_endpoint_added.text.pl.plain.erb",
284
- "app/views/services_mailer/notification_oai_endpoint_added.text.plain.erb",
285
- "app/views/services_mailer/notification_oai_endpoint_added.text.pt-PT.html.erb",
286
- "app/views/services_mailer/notification_oai_endpoint_added.text.pt-PT.plain.erb",
287
- "app/views/services_mailer/notification_oai_endpoint_added.text.ro.html.erb",
288
- "app/views/services_mailer/notification_oai_endpoint_added.text.ro.plain.erb",
289
- "app/views/services_mailer/notification_oai_endpoint_added.text.ru.html.erb",
290
- "app/views/services_mailer/notification_oai_endpoint_added.text.ru.plain.erb",
291
- "app/views/services_mailer/notification_oai_endpoint_added.text.sk.html.erb",
292
- "app/views/services_mailer/notification_oai_endpoint_added.text.sk.plain.erb",
293
- "app/views/services_mailer/notification_oai_endpoint_added.text.sl.html.erb",
294
- "app/views/services_mailer/notification_oai_endpoint_added.text.sl.plain.erb",
295
- "app/views/services_mailer/notification_oai_endpoint_added.text.sq.html.erb",
296
- "app/views/services_mailer/notification_oai_endpoint_added.text.sq.plain.erb",
297
- "app/views/services_mailer/notification_oai_endpoint_added.text.sr.html.erb",
298
- "app/views/services_mailer/notification_oai_endpoint_added.text.sr.plain.erb",
299
- "app/views/services_mailer/notification_oai_endpoint_added.text.sv.html.erb",
300
- "app/views/services_mailer/notification_oai_endpoint_added.text.sv.plain.erb",
301
- "app/views/services_mailer/notification_oai_endpoint_added.text.th.html.erb",
302
- "app/views/services_mailer/notification_oai_endpoint_added.text.th.plain.erb",
303
- "app/views/services_mailer/notification_oai_endpoint_added.text.tl.html.erb",
304
- "app/views/services_mailer/notification_oai_endpoint_added.text.tl.plain.erb",
305
- "app/views/services_mailer/notification_oai_endpoint_added.text.tr.html.erb",
306
- "app/views/services_mailer/notification_oai_endpoint_added.text.tr.plain.erb",
307
- "app/views/services_mailer/notification_oai_endpoint_added.text.uk.html.erb",
308
- "app/views/services_mailer/notification_oai_endpoint_added.text.uk.plain.erb",
309
- "app/views/services_mailer/notification_oai_endpoint_added.text.vi.html.erb",
310
- "app/views/services_mailer/notification_oai_endpoint_added.text.vi.plain.erb",
311
- "app/views/services_mailer/notification_oai_endpoint_added.text.zh-CN.html.erb",
312
- "app/views/services_mailer/notification_oai_endpoint_added.text.zh-CN.plain.erb",
313
- "app/views/services_mailer/notification_oai_endpoint_added.text.zh-TW.html.erb",
314
- "app/views/services_mailer/notification_oai_endpoint_added.text.zh-TW.plain.erb",
315
- "app/views/services_mailer/notification_oai_endpoint_added.text.zh.html.erb",
316
- "app/views/services_mailer/notification_oai_endpoint_added.text.zh.plain.erb",
317
- "app/views/topics/_entry.html.erb",
318
- "app/views/topics/_feed.html.erb",
319
- "app/views/topics/_feed_preview.html.erb",
320
- "app/views/topics/_form.html.erb",
321
- "app/views/topics/_rss_discover.html.erb",
322
- "app/views/topics/_simple_entry.html.erb",
323
- "app/views/topics/new.html.erb",
324
- "app/views/topics/photos.html.erb",
325
- "app/views/topics/show.html.erb",
326
- "app/views/topics/show.opml.builder",
327
- "app/views/topics/videos.html.erb",
328
- "app/views/visits/_comments_tool.html.erb",
329
- "app/views/visits/_frame_scripts.html.erb",
330
- "app/views/visits/_recommendations.html.erb",
331
- "app/views/visits/_share_tool.html.erb",
332
- "app/views/visits/_toolbar.html.erb",
333
- "app/views/visits/show.html.erb",
334
- "config/muck_services_routes.rb",
335
- "db/bootstrap/attention.yml",
336
- "db/bootstrap/feeds.yml",
337
- "db/bootstrap/oai_endpoints.yml",
338
- "db/bootstrap/service_categories.yml",
339
- "db/bootstrap/services.yml",
340
- "db/migrate/20090602191243_create_muck_raker.rb",
341
- "db/migrate/20090619211125_create_tag_clouds.rb",
342
- "db/migrate/20090623181458_add_grain_size_to_entries.rb",
343
- "db/migrate/20090623193525_add_grain_size_to_tag_clouds.rb",
344
- "db/migrate/20090703175825_denormalize_entries_subjects.rb",
345
- "db/migrate/20090716035935_change_tag_cloud_grain_sizes.rb",
346
- "db/migrate/20090717173900_add_contributor_to_feeds.rb",
347
- "db/migrate/20090717175825_normalize_entries_subjects.rb",
348
- "db/migrate/20090721043213_change_services_title_to_name.rb",
349
- "db/migrate/20090721054927_remove_services_not_null_from_feeds.rb",
350
- "db/migrate/20090723050510_create_feed_parents.rb",
351
- "db/migrate/20090728165716_add_etag_to_feeds.rb",
352
- "db/migrate/20090730045848_add_comment_cache_to_entries.rb",
353
- "db/migrate/20090804211240_add_entry_id_to_shares.rb",
354
- "db/migrate/20090826220530_change_services_sequence_to_sort.rb",
355
- "db/migrate/20090826225652_create_identity_feeds.rb",
356
- "db/migrate/20090827005105_add_identity_fields_to_services.rb",
357
- "db/migrate/20090827015308_create_service_categories.rb",
358
- "db/migrate/20090827221502_add_prompt_and_template_to_services.rb",
359
- "db/migrate/20090915041650_aggregations_to_polymorphic.rb",
360
- "db/migrate/20090922174200_update_oai_endpoints.rb",
361
- "db/migrate/20090922231552_add_dates_to_oai_endpoints.rb",
362
- "db/migrate/20090923150807_rename_name_in_aggregation.rb",
363
- "db/migrate/20090924200750_add_uri_data_template_to_services.rb",
364
- "db/migrate/20091006183742_add_feed_count_to_aggregation.rb",
365
- "db/migrate/20091022150615_add_uri_key_to_services.rb",
366
- "db/migrate/20091115011828_add_aggregations_for_personal_recs.rb",
367
- "db/migrate/20091116094447_rename_action_table.rb",
368
- "db/migrate/20091118203605_add_default_feed_type_to_aggregation_feed.rb",
369
- "lib/active_record/acts/muck_aggregation_owner.rb",
370
- "lib/active_record/acts/muck_feed_owner.rb",
371
- "lib/active_record/acts/muck_feed_parent.rb",
372
- "lib/active_record/acts/muck_recommendations.rb",
373
- "lib/active_record/acts/muck_services_comment.rb",
374
- "lib/active_record/acts/muck_services_share.rb",
375
- "lib/muck_services.rb",
376
- "lib/muck_services/exceptions.rb",
377
- "lib/muck_services/initialize_routes.rb",
378
- "lib/muck_services/languages.rb",
379
- "lib/muck_services/muck_custom_form_builder.rb",
380
- "lib/muck_services/services.rb",
381
- "lib/muck_services/tasks.rb",
382
- "locales/ar.yml",
383
- "locales/bg.yml",
384
- "locales/ca.yml",
385
- "locales/cs.yml",
386
- "locales/da.yml",
387
- "locales/de.yml",
388
- "locales/el.yml",
389
- "locales/en.yml",
390
- "locales/es.yml",
391
- "locales/et.yml",
392
- "locales/fa.yml",
393
- "locales/fi.yml",
394
- "locales/fr.yml",
395
- "locales/gl.yml",
396
- "locales/hi.yml",
397
- "locales/hr.yml",
398
- "locales/hu.yml",
399
- "locales/id.yml",
400
- "locales/it.yml",
401
- "locales/iw.yml",
402
- "locales/ja.yml",
403
- "locales/ko.yml",
404
- "locales/lt.yml",
405
- "locales/lv.yml",
406
- "locales/mt.yml",
407
- "locales/nl.yml",
408
- "locales/no.yml",
409
- "locales/pl.yml",
410
- "locales/pt-PT.yml",
411
- "locales/ro.yml",
412
- "locales/ru.yml",
413
- "locales/sk.yml",
414
- "locales/sl.yml",
415
- "locales/sq.yml",
416
- "locales/sr.yml",
417
- "locales/sv.yml",
418
- "locales/th.yml",
419
- "locales/tl.yml",
420
- "locales/tr.yml",
421
- "locales/uk.yml",
422
- "locales/vi.yml",
423
- "locales/zh-CN.yml",
424
- "locales/zh-TW.yml",
425
- "locales/zh.yml",
426
- "muck-services.gemspec",
427
- "public/javascripts/muck_services.js",
428
- "public/stylesheets/frame.css",
429
- "public/stylesheets/muck-services.css",
430
- "rails/init.rb"
21
+ ".gitignore",
22
+ "LICENSE",
23
+ "README.rdoc",
24
+ "Rakefile",
25
+ "VERSION",
26
+ "app/controllers/admin/muck/feeds_controller.rb",
27
+ "app/controllers/admin/muck/oai_endpoints_controller.rb",
28
+ "app/controllers/muck/aggregation_feeds_controller.rb",
29
+ "app/controllers/muck/aggregations_controller.rb",
30
+ "app/controllers/muck/entries_controller.rb",
31
+ "app/controllers/muck/feed_previews_controller.rb",
32
+ "app/controllers/muck/feeds_controller.rb",
33
+ "app/controllers/muck/identity_feeds_controller.rb",
34
+ "app/controllers/muck/oai_endpoints_controller.rb",
35
+ "app/controllers/muck/recommendations_controller.rb",
36
+ "app/controllers/muck/topics_controller.rb",
37
+ "app/controllers/muck/visits_controller.rb",
38
+ "app/helpers/muck_services_aggregations_helper.rb",
39
+ "app/helpers/muck_services_feeds_helper.rb",
40
+ "app/helpers/muck_services_helper.rb",
41
+ "app/helpers/muck_services_service_helper.rb",
42
+ "app/models/aggregation.rb",
43
+ "app/models/aggregation_feed.rb",
44
+ "app/models/attention.rb",
45
+ "app/models/attention_type.rb",
46
+ "app/models/click.rb",
47
+ "app/models/entry.rb",
48
+ "app/models/feed.rb",
49
+ "app/models/feed_parent.rb",
50
+ "app/models/identity_feed.rb",
51
+ "app/models/oai_endpoint.rb",
52
+ "app/models/personal_recommendation.rb",
53
+ "app/models/recommendation.rb",
54
+ "app/models/service.rb",
55
+ "app/models/service_category.rb",
56
+ "app/models/services_mailer.rb",
57
+ "app/models/subject.rb",
58
+ "app/models/tag_cloud.rb",
59
+ "app/views/activity_templates/_entry_comment.html.erb",
60
+ "app/views/activity_templates/_entry_share.html.erb",
61
+ "app/views/admin/feeds/index.html.erb",
62
+ "app/views/admin/oai_endpoints/index.html.erb",
63
+ "app/views/aggregations/_aggregation.html.erb",
64
+ "app/views/aggregations/_data_source.html.erb",
65
+ "app/views/aggregations/_data_sources.html.erb",
66
+ "app/views/aggregations/_feeds.html.erb",
67
+ "app/views/aggregations/_preview_form.html.erb",
68
+ "app/views/aggregations/edit.html.erb",
69
+ "app/views/aggregations/index.html.erb",
70
+ "app/views/aggregations/index.iphone.erb",
71
+ "app/views/aggregations/new.html.erb",
72
+ "app/views/aggregations/preview.html.erb",
73
+ "app/views/aggregations/preview.iphone.erb",
74
+ "app/views/aggregations/rss_discovery.html.erb",
75
+ "app/views/aggregations/show.html.erb",
76
+ "app/views/default/_language_list.html.erb",
77
+ "app/views/entries/_related_entry.html.erb",
78
+ "app/views/entries/_result.html.erb",
79
+ "app/views/entries/_result_status.html.erb",
80
+ "app/views/entries/_results.html.erb",
81
+ "app/views/entries/_tag_cloud.html.erb",
82
+ "app/views/entries/browse_by_tags.html.erb",
83
+ "app/views/entries/collections.html.erb",
84
+ "app/views/entries/details.html.erb",
85
+ "app/views/entries/index.html.erb",
86
+ "app/views/entries/search.html.erb",
87
+ "app/views/entries/search.pjs.erb",
88
+ "app/views/entries/search.rdf.builder",
89
+ "app/views/entries/search.rss.builder",
90
+ "app/views/entries/search.xml.builder",
91
+ "app/views/entries/show.html.erb",
92
+ "app/views/entries/track_clicks.html.erb",
93
+ "app/views/feed_previews/new.html.erb",
94
+ "app/views/feed_previews/select_feeds.html.erb",
95
+ "app/views/feeds/_entry.html.erb",
96
+ "app/views/feeds/_feed.html.erb",
97
+ "app/views/feeds/_feed_row.html.erb",
98
+ "app/views/feeds/_feed_selection.html.erb",
99
+ "app/views/feeds/_form.html.erb",
100
+ "app/views/feeds/edit.html.erb",
101
+ "app/views/feeds/harvest_now.html.erb",
102
+ "app/views/feeds/index.html.erb",
103
+ "app/views/feeds/new.html.erb",
104
+ "app/views/feeds/new_extended.html.erb",
105
+ "app/views/feeds/new_oai_rss.html.erb",
106
+ "app/views/feeds/show.html.erb",
107
+ "app/views/feeds/unban.html.erb",
108
+ "app/views/identity_feeds/_available_service_categories.html.erb",
109
+ "app/views/identity_feeds/_form.html.erb",
110
+ "app/views/identity_feeds/_services_for_user.html.erb",
111
+ "app/views/identity_feeds/edit.html.erb",
112
+ "app/views/identity_feeds/index.html.erb",
113
+ "app/views/identity_feeds/new.html.erb",
114
+ "app/views/oai_endpoints/_form.html.erb",
115
+ "app/views/oai_endpoints/_oai_endpoint_row.html.erb",
116
+ "app/views/oai_endpoints/new.html.erb",
117
+ "app/views/oai_endpoints/show.html.erb",
118
+ "app/views/parts/_add_feed.html.erb",
119
+ "app/views/parts/_select_feed.html.erb",
120
+ "app/views/recommendations/get_button.html.erb",
121
+ "app/views/recommendations/greasemonkey.user.js.erb",
122
+ "app/views/recommendations/index.js.erb",
123
+ "app/views/recommendations/index.pjs.erb",
124
+ "app/views/recommendations/index.rss.builder",
125
+ "app/views/recommendations/index.xml.builder",
126
+ "app/views/recommendations/real_time.html.erb",
127
+ "app/views/recommendations/real_time.pjs.erb",
128
+ "app/views/recommendations/real_time.xml.builder",
129
+ "app/views/service_templates/_facebook.html.erb",
130
+ "app/views/service_templates/_friendfeed.html.erb",
131
+ "app/views/service_templates/_goodreads.html.erb",
132
+ "app/views/service_templates/_linkedin.html.erb",
133
+ "app/views/service_templates/_netflix.html.erb",
134
+ "app/views/service_templates/_polyvore.html.erb",
135
+ "app/views/service_templates/_zotero_group.html.erb",
136
+ "app/views/services/_edit_service.html.erb",
137
+ "app/views/services/_new_service.html.erb",
138
+ "app/views/services/_summary.html.erb",
139
+ "app/views/services/_view_service.html.erb",
140
+ "app/views/services_mailer/notification_feed_added.text.ar.html.erb",
141
+ "app/views/services_mailer/notification_feed_added.text.ar.plain.erb",
142
+ "app/views/services_mailer/notification_feed_added.text.bg.html.erb",
143
+ "app/views/services_mailer/notification_feed_added.text.bg.plain.erb",
144
+ "app/views/services_mailer/notification_feed_added.text.ca.html.erb",
145
+ "app/views/services_mailer/notification_feed_added.text.ca.plain.erb",
146
+ "app/views/services_mailer/notification_feed_added.text.cs.html.erb",
147
+ "app/views/services_mailer/notification_feed_added.text.cs.plain.erb",
148
+ "app/views/services_mailer/notification_feed_added.text.da.html.erb",
149
+ "app/views/services_mailer/notification_feed_added.text.da.plain.erb",
150
+ "app/views/services_mailer/notification_feed_added.text.de.html.erb",
151
+ "app/views/services_mailer/notification_feed_added.text.de.plain.erb",
152
+ "app/views/services_mailer/notification_feed_added.text.el.html.erb",
153
+ "app/views/services_mailer/notification_feed_added.text.el.plain.erb",
154
+ "app/views/services_mailer/notification_feed_added.text.es.html.erb",
155
+ "app/views/services_mailer/notification_feed_added.text.es.plain.erb",
156
+ "app/views/services_mailer/notification_feed_added.text.et.html.erb",
157
+ "app/views/services_mailer/notification_feed_added.text.et.plain.erb",
158
+ "app/views/services_mailer/notification_feed_added.text.fa.html.erb",
159
+ "app/views/services_mailer/notification_feed_added.text.fa.plain.erb",
160
+ "app/views/services_mailer/notification_feed_added.text.fi.html.erb",
161
+ "app/views/services_mailer/notification_feed_added.text.fi.plain.erb",
162
+ "app/views/services_mailer/notification_feed_added.text.fr.html.erb",
163
+ "app/views/services_mailer/notification_feed_added.text.fr.plain.erb",
164
+ "app/views/services_mailer/notification_feed_added.text.gl.html.erb",
165
+ "app/views/services_mailer/notification_feed_added.text.gl.plain.erb",
166
+ "app/views/services_mailer/notification_feed_added.text.hi.html.erb",
167
+ "app/views/services_mailer/notification_feed_added.text.hi.plain.erb",
168
+ "app/views/services_mailer/notification_feed_added.text.hr.html.erb",
169
+ "app/views/services_mailer/notification_feed_added.text.hr.plain.erb",
170
+ "app/views/services_mailer/notification_feed_added.text.html.erb",
171
+ "app/views/services_mailer/notification_feed_added.text.hu.html.erb",
172
+ "app/views/services_mailer/notification_feed_added.text.hu.plain.erb",
173
+ "app/views/services_mailer/notification_feed_added.text.id.html.erb",
174
+ "app/views/services_mailer/notification_feed_added.text.id.plain.erb",
175
+ "app/views/services_mailer/notification_feed_added.text.it.html.erb",
176
+ "app/views/services_mailer/notification_feed_added.text.it.plain.erb",
177
+ "app/views/services_mailer/notification_feed_added.text.iw.html.erb",
178
+ "app/views/services_mailer/notification_feed_added.text.iw.plain.erb",
179
+ "app/views/services_mailer/notification_feed_added.text.ja.html.erb",
180
+ "app/views/services_mailer/notification_feed_added.text.ja.plain.erb",
181
+ "app/views/services_mailer/notification_feed_added.text.ko.html.erb",
182
+ "app/views/services_mailer/notification_feed_added.text.ko.plain.erb",
183
+ "app/views/services_mailer/notification_feed_added.text.lt.html.erb",
184
+ "app/views/services_mailer/notification_feed_added.text.lt.plain.erb",
185
+ "app/views/services_mailer/notification_feed_added.text.lv.html.erb",
186
+ "app/views/services_mailer/notification_feed_added.text.lv.plain.erb",
187
+ "app/views/services_mailer/notification_feed_added.text.mt.html.erb",
188
+ "app/views/services_mailer/notification_feed_added.text.mt.plain.erb",
189
+ "app/views/services_mailer/notification_feed_added.text.nl.html.erb",
190
+ "app/views/services_mailer/notification_feed_added.text.nl.plain.erb",
191
+ "app/views/services_mailer/notification_feed_added.text.no.html.erb",
192
+ "app/views/services_mailer/notification_feed_added.text.no.plain.erb",
193
+ "app/views/services_mailer/notification_feed_added.text.pl.html.erb",
194
+ "app/views/services_mailer/notification_feed_added.text.pl.plain.erb",
195
+ "app/views/services_mailer/notification_feed_added.text.plain.erb",
196
+ "app/views/services_mailer/notification_feed_added.text.pt-PT.html.erb",
197
+ "app/views/services_mailer/notification_feed_added.text.pt-PT.plain.erb",
198
+ "app/views/services_mailer/notification_feed_added.text.ro.html.erb",
199
+ "app/views/services_mailer/notification_feed_added.text.ro.plain.erb",
200
+ "app/views/services_mailer/notification_feed_added.text.ru.html.erb",
201
+ "app/views/services_mailer/notification_feed_added.text.ru.plain.erb",
202
+ "app/views/services_mailer/notification_feed_added.text.sk.html.erb",
203
+ "app/views/services_mailer/notification_feed_added.text.sk.plain.erb",
204
+ "app/views/services_mailer/notification_feed_added.text.sl.html.erb",
205
+ "app/views/services_mailer/notification_feed_added.text.sl.plain.erb",
206
+ "app/views/services_mailer/notification_feed_added.text.sq.html.erb",
207
+ "app/views/services_mailer/notification_feed_added.text.sq.plain.erb",
208
+ "app/views/services_mailer/notification_feed_added.text.sr.html.erb",
209
+ "app/views/services_mailer/notification_feed_added.text.sr.plain.erb",
210
+ "app/views/services_mailer/notification_feed_added.text.sv.html.erb",
211
+ "app/views/services_mailer/notification_feed_added.text.sv.plain.erb",
212
+ "app/views/services_mailer/notification_feed_added.text.th.html.erb",
213
+ "app/views/services_mailer/notification_feed_added.text.th.plain.erb",
214
+ "app/views/services_mailer/notification_feed_added.text.tl.html.erb",
215
+ "app/views/services_mailer/notification_feed_added.text.tl.plain.erb",
216
+ "app/views/services_mailer/notification_feed_added.text.tr.html.erb",
217
+ "app/views/services_mailer/notification_feed_added.text.tr.plain.erb",
218
+ "app/views/services_mailer/notification_feed_added.text.uk.html.erb",
219
+ "app/views/services_mailer/notification_feed_added.text.uk.plain.erb",
220
+ "app/views/services_mailer/notification_feed_added.text.vi.html.erb",
221
+ "app/views/services_mailer/notification_feed_added.text.vi.plain.erb",
222
+ "app/views/services_mailer/notification_feed_added.text.zh-CN.html.erb",
223
+ "app/views/services_mailer/notification_feed_added.text.zh-CN.plain.erb",
224
+ "app/views/services_mailer/notification_feed_added.text.zh-TW.html.erb",
225
+ "app/views/services_mailer/notification_feed_added.text.zh-TW.plain.erb",
226
+ "app/views/services_mailer/notification_feed_added.text.zh.html.erb",
227
+ "app/views/services_mailer/notification_feed_added.text.zh.plain.erb",
228
+ "app/views/services_mailer/notification_oai_endpoint_added.text.ar.html.erb",
229
+ "app/views/services_mailer/notification_oai_endpoint_added.text.ar.plain.erb",
230
+ "app/views/services_mailer/notification_oai_endpoint_added.text.bg.html.erb",
231
+ "app/views/services_mailer/notification_oai_endpoint_added.text.bg.plain.erb",
232
+ "app/views/services_mailer/notification_oai_endpoint_added.text.ca.html.erb",
233
+ "app/views/services_mailer/notification_oai_endpoint_added.text.ca.plain.erb",
234
+ "app/views/services_mailer/notification_oai_endpoint_added.text.cs.html.erb",
235
+ "app/views/services_mailer/notification_oai_endpoint_added.text.cs.plain.erb",
236
+ "app/views/services_mailer/notification_oai_endpoint_added.text.da.html.erb",
237
+ "app/views/services_mailer/notification_oai_endpoint_added.text.da.plain.erb",
238
+ "app/views/services_mailer/notification_oai_endpoint_added.text.de.html.erb",
239
+ "app/views/services_mailer/notification_oai_endpoint_added.text.de.plain.erb",
240
+ "app/views/services_mailer/notification_oai_endpoint_added.text.el.html.erb",
241
+ "app/views/services_mailer/notification_oai_endpoint_added.text.el.plain.erb",
242
+ "app/views/services_mailer/notification_oai_endpoint_added.text.es.html.erb",
243
+ "app/views/services_mailer/notification_oai_endpoint_added.text.es.plain.erb",
244
+ "app/views/services_mailer/notification_oai_endpoint_added.text.et.html.erb",
245
+ "app/views/services_mailer/notification_oai_endpoint_added.text.et.plain.erb",
246
+ "app/views/services_mailer/notification_oai_endpoint_added.text.fa.html.erb",
247
+ "app/views/services_mailer/notification_oai_endpoint_added.text.fa.plain.erb",
248
+ "app/views/services_mailer/notification_oai_endpoint_added.text.fi.html.erb",
249
+ "app/views/services_mailer/notification_oai_endpoint_added.text.fi.plain.erb",
250
+ "app/views/services_mailer/notification_oai_endpoint_added.text.fr.html.erb",
251
+ "app/views/services_mailer/notification_oai_endpoint_added.text.fr.plain.erb",
252
+ "app/views/services_mailer/notification_oai_endpoint_added.text.gl.html.erb",
253
+ "app/views/services_mailer/notification_oai_endpoint_added.text.gl.plain.erb",
254
+ "app/views/services_mailer/notification_oai_endpoint_added.text.hi.html.erb",
255
+ "app/views/services_mailer/notification_oai_endpoint_added.text.hi.plain.erb",
256
+ "app/views/services_mailer/notification_oai_endpoint_added.text.hr.html.erb",
257
+ "app/views/services_mailer/notification_oai_endpoint_added.text.hr.plain.erb",
258
+ "app/views/services_mailer/notification_oai_endpoint_added.text.html.erb",
259
+ "app/views/services_mailer/notification_oai_endpoint_added.text.hu.html.erb",
260
+ "app/views/services_mailer/notification_oai_endpoint_added.text.hu.plain.erb",
261
+ "app/views/services_mailer/notification_oai_endpoint_added.text.id.html.erb",
262
+ "app/views/services_mailer/notification_oai_endpoint_added.text.id.plain.erb",
263
+ "app/views/services_mailer/notification_oai_endpoint_added.text.it.html.erb",
264
+ "app/views/services_mailer/notification_oai_endpoint_added.text.it.plain.erb",
265
+ "app/views/services_mailer/notification_oai_endpoint_added.text.iw.html.erb",
266
+ "app/views/services_mailer/notification_oai_endpoint_added.text.iw.plain.erb",
267
+ "app/views/services_mailer/notification_oai_endpoint_added.text.ja.html.erb",
268
+ "app/views/services_mailer/notification_oai_endpoint_added.text.ja.plain.erb",
269
+ "app/views/services_mailer/notification_oai_endpoint_added.text.ko.html.erb",
270
+ "app/views/services_mailer/notification_oai_endpoint_added.text.ko.plain.erb",
271
+ "app/views/services_mailer/notification_oai_endpoint_added.text.lt.html.erb",
272
+ "app/views/services_mailer/notification_oai_endpoint_added.text.lt.plain.erb",
273
+ "app/views/services_mailer/notification_oai_endpoint_added.text.lv.html.erb",
274
+ "app/views/services_mailer/notification_oai_endpoint_added.text.lv.plain.erb",
275
+ "app/views/services_mailer/notification_oai_endpoint_added.text.mt.html.erb",
276
+ "app/views/services_mailer/notification_oai_endpoint_added.text.mt.plain.erb",
277
+ "app/views/services_mailer/notification_oai_endpoint_added.text.nl.html.erb",
278
+ "app/views/services_mailer/notification_oai_endpoint_added.text.nl.plain.erb",
279
+ "app/views/services_mailer/notification_oai_endpoint_added.text.no.html.erb",
280
+ "app/views/services_mailer/notification_oai_endpoint_added.text.no.plain.erb",
281
+ "app/views/services_mailer/notification_oai_endpoint_added.text.pl.html.erb",
282
+ "app/views/services_mailer/notification_oai_endpoint_added.text.pl.plain.erb",
283
+ "app/views/services_mailer/notification_oai_endpoint_added.text.plain.erb",
284
+ "app/views/services_mailer/notification_oai_endpoint_added.text.pt-PT.html.erb",
285
+ "app/views/services_mailer/notification_oai_endpoint_added.text.pt-PT.plain.erb",
286
+ "app/views/services_mailer/notification_oai_endpoint_added.text.ro.html.erb",
287
+ "app/views/services_mailer/notification_oai_endpoint_added.text.ro.plain.erb",
288
+ "app/views/services_mailer/notification_oai_endpoint_added.text.ru.html.erb",
289
+ "app/views/services_mailer/notification_oai_endpoint_added.text.ru.plain.erb",
290
+ "app/views/services_mailer/notification_oai_endpoint_added.text.sk.html.erb",
291
+ "app/views/services_mailer/notification_oai_endpoint_added.text.sk.plain.erb",
292
+ "app/views/services_mailer/notification_oai_endpoint_added.text.sl.html.erb",
293
+ "app/views/services_mailer/notification_oai_endpoint_added.text.sl.plain.erb",
294
+ "app/views/services_mailer/notification_oai_endpoint_added.text.sq.html.erb",
295
+ "app/views/services_mailer/notification_oai_endpoint_added.text.sq.plain.erb",
296
+ "app/views/services_mailer/notification_oai_endpoint_added.text.sr.html.erb",
297
+ "app/views/services_mailer/notification_oai_endpoint_added.text.sr.plain.erb",
298
+ "app/views/services_mailer/notification_oai_endpoint_added.text.sv.html.erb",
299
+ "app/views/services_mailer/notification_oai_endpoint_added.text.sv.plain.erb",
300
+ "app/views/services_mailer/notification_oai_endpoint_added.text.th.html.erb",
301
+ "app/views/services_mailer/notification_oai_endpoint_added.text.th.plain.erb",
302
+ "app/views/services_mailer/notification_oai_endpoint_added.text.tl.html.erb",
303
+ "app/views/services_mailer/notification_oai_endpoint_added.text.tl.plain.erb",
304
+ "app/views/services_mailer/notification_oai_endpoint_added.text.tr.html.erb",
305
+ "app/views/services_mailer/notification_oai_endpoint_added.text.tr.plain.erb",
306
+ "app/views/services_mailer/notification_oai_endpoint_added.text.uk.html.erb",
307
+ "app/views/services_mailer/notification_oai_endpoint_added.text.uk.plain.erb",
308
+ "app/views/services_mailer/notification_oai_endpoint_added.text.vi.html.erb",
309
+ "app/views/services_mailer/notification_oai_endpoint_added.text.vi.plain.erb",
310
+ "app/views/services_mailer/notification_oai_endpoint_added.text.zh-CN.html.erb",
311
+ "app/views/services_mailer/notification_oai_endpoint_added.text.zh-CN.plain.erb",
312
+ "app/views/services_mailer/notification_oai_endpoint_added.text.zh-TW.html.erb",
313
+ "app/views/services_mailer/notification_oai_endpoint_added.text.zh-TW.plain.erb",
314
+ "app/views/services_mailer/notification_oai_endpoint_added.text.zh.html.erb",
315
+ "app/views/services_mailer/notification_oai_endpoint_added.text.zh.plain.erb",
316
+ "app/views/topics/_entry.html.erb",
317
+ "app/views/topics/_feed.html.erb",
318
+ "app/views/topics/_feed_preview.html.erb",
319
+ "app/views/topics/_form.html.erb",
320
+ "app/views/topics/_rss_discover.html.erb",
321
+ "app/views/topics/_simple_entry.html.erb",
322
+ "app/views/topics/new.html.erb",
323
+ "app/views/topics/photos.html.erb",
324
+ "app/views/topics/show.html.erb",
325
+ "app/views/topics/show.opml.builder",
326
+ "app/views/topics/videos.html.erb",
327
+ "app/views/visits/_comments_tool.html.erb",
328
+ "app/views/visits/_frame_scripts.html.erb",
329
+ "app/views/visits/_recommendations.html.erb",
330
+ "app/views/visits/_share_tool.html.erb",
331
+ "app/views/visits/_toolbar.html.erb",
332
+ "app/views/visits/show.html.erb",
333
+ "config/muck_services_routes.rb",
334
+ "db/bootstrap/attention.yml",
335
+ "db/bootstrap/feeds.yml",
336
+ "db/bootstrap/oai_endpoints.yml",
337
+ "db/bootstrap/service_categories.yml",
338
+ "db/bootstrap/services.yml",
339
+ "db/migrate/20090602191243_create_muck_raker.rb",
340
+ "db/migrate/20090619211125_create_tag_clouds.rb",
341
+ "db/migrate/20090623181458_add_grain_size_to_entries.rb",
342
+ "db/migrate/20090623193525_add_grain_size_to_tag_clouds.rb",
343
+ "db/migrate/20090703175825_denormalize_entries_subjects.rb",
344
+ "db/migrate/20090716035935_change_tag_cloud_grain_sizes.rb",
345
+ "db/migrate/20090717173900_add_contributor_to_feeds.rb",
346
+ "db/migrate/20090717175825_normalize_entries_subjects.rb",
347
+ "db/migrate/20090721043213_change_services_title_to_name.rb",
348
+ "db/migrate/20090721054927_remove_services_not_null_from_feeds.rb",
349
+ "db/migrate/20090723050510_create_feed_parents.rb",
350
+ "db/migrate/20090728165716_add_etag_to_feeds.rb",
351
+ "db/migrate/20090730045848_add_comment_cache_to_entries.rb",
352
+ "db/migrate/20090804211240_add_entry_id_to_shares.rb",
353
+ "db/migrate/20090826220530_change_services_sequence_to_sort.rb",
354
+ "db/migrate/20090826225652_create_identity_feeds.rb",
355
+ "db/migrate/20090827005105_add_identity_fields_to_services.rb",
356
+ "db/migrate/20090827015308_create_service_categories.rb",
357
+ "db/migrate/20090827221502_add_prompt_and_template_to_services.rb",
358
+ "db/migrate/20090915041650_aggregations_to_polymorphic.rb",
359
+ "db/migrate/20090922174200_update_oai_endpoints.rb",
360
+ "db/migrate/20090922231552_add_dates_to_oai_endpoints.rb",
361
+ "db/migrate/20090923150807_rename_name_in_aggregation.rb",
362
+ "db/migrate/20090924200750_add_uri_data_template_to_services.rb",
363
+ "db/migrate/20091006183742_add_feed_count_to_aggregation.rb",
364
+ "db/migrate/20091022150615_add_uri_key_to_services.rb",
365
+ "db/migrate/20091115011828_add_aggregations_for_personal_recs.rb",
366
+ "db/migrate/20091116094447_rename_action_table.rb",
367
+ "db/migrate/20091118203605_add_default_feed_type_to_aggregation_feed.rb",
368
+ "lib/active_record/acts/muck_aggregation_owner.rb",
369
+ "lib/active_record/acts/muck_feed_owner.rb",
370
+ "lib/active_record/acts/muck_feed_parent.rb",
371
+ "lib/active_record/acts/muck_recommendations.rb",
372
+ "lib/active_record/acts/muck_services_comment.rb",
373
+ "lib/active_record/acts/muck_services_share.rb",
374
+ "lib/muck_services.rb",
375
+ "lib/muck_services/exceptions.rb",
376
+ "lib/muck_services/initialize_routes.rb",
377
+ "lib/muck_services/languages.rb",
378
+ "lib/muck_services/muck_custom_form_builder.rb",
379
+ "lib/muck_services/services.rb",
380
+ "lib/muck_services/tasks.rb",
381
+ "locales/ar.yml",
382
+ "locales/bg.yml",
383
+ "locales/ca.yml",
384
+ "locales/cs.yml",
385
+ "locales/da.yml",
386
+ "locales/de.yml",
387
+ "locales/el.yml",
388
+ "locales/en.yml",
389
+ "locales/es.yml",
390
+ "locales/et.yml",
391
+ "locales/fa.yml",
392
+ "locales/fi.yml",
393
+ "locales/fr.yml",
394
+ "locales/gl.yml",
395
+ "locales/hi.yml",
396
+ "locales/hr.yml",
397
+ "locales/hu.yml",
398
+ "locales/id.yml",
399
+ "locales/it.yml",
400
+ "locales/iw.yml",
401
+ "locales/ja.yml",
402
+ "locales/ko.yml",
403
+ "locales/lt.yml",
404
+ "locales/lv.yml",
405
+ "locales/mt.yml",
406
+ "locales/nl.yml",
407
+ "locales/no.yml",
408
+ "locales/pl.yml",
409
+ "locales/pt-PT.yml",
410
+ "locales/ro.yml",
411
+ "locales/ru.yml",
412
+ "locales/sk.yml",
413
+ "locales/sl.yml",
414
+ "locales/sq.yml",
415
+ "locales/sr.yml",
416
+ "locales/sv.yml",
417
+ "locales/th.yml",
418
+ "locales/tl.yml",
419
+ "locales/tr.yml",
420
+ "locales/uk.yml",
421
+ "locales/vi.yml",
422
+ "locales/zh-CN.yml",
423
+ "locales/zh-TW.yml",
424
+ "locales/zh.yml",
425
+ "muck-services.gemspec",
426
+ "public/javascripts/muck_services.js",
427
+ "public/stylesheets/frame.css",
428
+ "public/stylesheets/muck-services.css",
429
+ "rails/init.rb"
431
430
  ]
432
431
  s.homepage = %q{http://github.com/tatemae/muck-services}
433
432
  s.rdoc_options = ["--charset=UTF-8"]
434
433
  s.require_paths = ["lib"]
435
434
  s.rubyforge_project = %q{muck-services}
436
- s.rubygems_version = %q{1.3.6}
435
+ s.rubygems_version = %q{1.3.5}
437
436
  s.summary = %q{Feeds, aggregations and services for muck}
438
437
  s.test_files = [
439
438
  "test/rails_root/app/controllers/application_controller.rb",
440
- "test/rails_root/app/controllers/default_controller.rb",
441
- "test/rails_root/app/helpers/application_helper.rb",
442
- "test/rails_root/app/models/activity.rb",
443
- "test/rails_root/app/models/comment.rb",
444
- "test/rails_root/app/models/share.rb",
445
- "test/rails_root/app/models/user.rb",
446
- "test/rails_root/app/models/user_session.rb",
447
- "test/rails_root/config/boot.rb",
448
- "test/rails_root/config/environment.rb",
449
- "test/rails_root/config/environments/cucumber.rb",
450
- "test/rails_root/config/environments/development.rb",
451
- "test/rails_root/config/environments/production.rb",
452
- "test/rails_root/config/environments/test.rb",
453
- "test/rails_root/config/initializers/inflections.rb",
454
- "test/rails_root/config/initializers/mime_types.rb",
455
- "test/rails_root/config/initializers/requires.rb",
456
- "test/rails_root/config/initializers/session_store.rb",
457
- "test/rails_root/config/routes.rb",
458
- "test/rails_root/db/migrate/20090320174818_create_muck_permissions_and_roles.rb",
459
- "test/rails_root/db/migrate/20090327231918_create_users.rb",
460
- "test/rails_root/db/migrate/20090402033319_add_muck_activities.rb",
461
- "test/rails_root/db/migrate/20090402234137_create_languages.rb",
462
- "test/rails_root/db/migrate/20090426041056_create_countries.rb",
463
- "test/rails_root/db/migrate/20090426041103_create_states.rb",
464
- "test/rails_root/db/migrate/20090602191243_create_muck_raker.rb",
465
- "test/rails_root/db/migrate/20090613173314_create_comments.rb",
466
- "test/rails_root/db/migrate/20090619211125_create_tag_clouds.rb",
467
- "test/rails_root/db/migrate/20090623181458_add_grain_size_to_entries.rb",
468
- "test/rails_root/db/migrate/20090623193525_add_grain_size_to_tag_clouds.rb",
469
- "test/rails_root/db/migrate/20090703175825_denormalize_entries_subjects.rb",
470
- "test/rails_root/db/migrate/20090704220055_create_slugs.rb",
471
- "test/rails_root/db/migrate/20090716035935_change_tag_cloud_grain_sizes.rb",
472
- "test/rails_root/db/migrate/20090717173900_add_contributor_to_feeds.rb",
473
- "test/rails_root/db/migrate/20090717175825_normalize_entries_subjects.rb",
474
- "test/rails_root/db/migrate/20090721043213_change_services_title_to_name.rb",
475
- "test/rails_root/db/migrate/20090721054927_remove_services_not_null_from_feeds.rb",
476
- "test/rails_root/db/migrate/20090723050510_create_feed_parents.rb",
477
- "test/rails_root/db/migrate/20090728165716_add_etag_to_feeds.rb",
478
- "test/rails_root/db/migrate/20090730044139_add_comment_cache.rb",
479
- "test/rails_root/db/migrate/20090730045848_add_comment_cache_to_entries.rb",
480
- "test/rails_root/db/migrate/20090730154102_allow_null_user.rb",
481
- "test/rails_root/db/migrate/20090803185323_create_shares.rb",
482
- "test/rails_root/db/migrate/20090804184247_add_comment_count_to_shares.rb",
483
- "test/rails_root/db/migrate/20090804211240_add_entry_id_to_shares.rb",
484
- "test/rails_root/db/migrate/20090804231857_add_shares_uri_index.rb",
485
- "test/rails_root/db/migrate/20090818204527_add_activity_indexes.rb",
486
- "test/rails_root/db/migrate/20090819030523_add_attachable_to_activities.rb",
487
- "test/rails_root/db/migrate/20090826220530_change_services_sequence_to_sort.rb",
488
- "test/rails_root/db/migrate/20090826225652_create_identity_feeds.rb",
489
- "test/rails_root/db/migrate/20090827005105_add_identity_fields_to_services.rb",
490
- "test/rails_root/db/migrate/20090827015308_create_service_categories.rb",
491
- "test/rails_root/db/migrate/20090827221502_add_prompt_and_template_to_services.rb",
492
- "test/rails_root/db/migrate/20090915041650_aggregations_to_polymorphic.rb",
493
- "test/rails_root/db/migrate/20090922174200_update_oai_endpoints.rb",
494
- "test/rails_root/db/migrate/20090922231552_add_dates_to_oai_endpoints.rb",
495
- "test/rails_root/db/migrate/20090923150807_rename_name_in_aggregation.rb",
496
- "test/rails_root/db/migrate/20090924200750_add_uri_data_template_to_services.rb",
497
- "test/rails_root/db/migrate/20091006183742_add_feed_count_to_aggregation.rb",
498
- "test/rails_root/db/migrate/20091022150615_add_uri_key_to_services.rb",
499
- "test/rails_root/db/migrate/20091115011828_add_aggregations_for_personal_recs.rb",
500
- "test/rails_root/db/migrate/20091116094447_rename_action_table.rb",
501
- "test/rails_root/db/migrate/20091118203605_add_default_feed_type_to_aggregation_feed.rb",
502
- "test/rails_root/db/migrate/20100123035450_create_access_codes.rb",
503
- "test/rails_root/db/migrate/20100123233654_create_access_code_requests.rb",
504
- "test/rails_root/db/schema.rb",
505
- "test/rails_root/features/step_definitions/common_steps.rb",
506
- "test/rails_root/features/step_definitions/visit_steps.rb",
507
- "test/rails_root/features/step_definitions/webrat_steps.rb",
508
- "test/rails_root/features/support/env.rb",
509
- "test/rails_root/features/support/paths.rb",
510
- "test/rails_root/public/dispatch.rb",
511
- "test/rails_root/script/create_project.rb",
512
- "test/rails_root/test/factories.rb",
513
- "test/rails_root/test/functional/admin/feeds_controller_test.rb",
514
- "test/rails_root/test/functional/admin/oai_endpoints_controller_test.rb",
515
- "test/rails_root/test/functional/aggregation_feeds_controller_test.rb",
516
- "test/rails_root/test/functional/aggregations_controller_test.rb",
517
- "test/rails_root/test/functional/feed_previews_controller_test.rb",
518
- "test/rails_root/test/functional/feeds_controller_test.rb",
519
- "test/rails_root/test/functional/identity_feeds_controller_test.rb",
520
- "test/rails_root/test/functional/oai_endpoints_controller_test.rb",
521
- "test/rails_root/test/functional/topics_controller_test.rb",
522
- "test/rails_root/test/functional/visits_controller_test.rb",
523
- "test/rails_root/test/test_helper.rb",
524
- "test/rails_root/test/unit/aggregation_feed_test.rb",
525
- "test/rails_root/test/unit/aggregation_test.rb",
526
- "test/rails_root/test/unit/comment_test.rb",
527
- "test/rails_root/test/unit/entry_test.rb",
528
- "test/rails_root/test/unit/feed_parent_test.rb",
529
- "test/rails_root/test/unit/feed_test.rb",
530
- "test/rails_root/test/unit/identity_feed_test.rb",
531
- "test/rails_root/test/unit/oai_endpoint_test.rb",
532
- "test/rails_root/test/unit/personal_recommendation_test.rb",
533
- "test/rails_root/test/unit/recommendation_test.rb",
534
- "test/rails_root/test/unit/service_category_test.rb",
535
- "test/rails_root/test/unit/service_test.rb",
536
- "test/rails_root/test/unit/services_mailer_test.rb",
537
- "test/rails_root/test/unit/share_test.rb",
538
- "test/rails_root/test/unit/tag_cloud_test.rb",
539
- "test/rails_root/test/unit/user_test.rb",
540
- "test/rails_root/vendor/plugins/jrails/init.rb",
541
- "test/rails_root/vendor/plugins/jrails/install.rb",
542
- "test/rails_root/vendor/plugins/jrails/lib/jrails.rb",
543
- "test/rails_root/vendor/plugins/jrails/rails/init.rb",
544
- "test/rails_root/vendor/plugins/ssl_requirement/lib/ssl_requirement.rb",
545
- "test/rails_root/vendor/plugins/ssl_requirement/test/ssl_requirement_test.rb"
439
+ "test/rails_root/app/controllers/default_controller.rb",
440
+ "test/rails_root/app/helpers/application_helper.rb",
441
+ "test/rails_root/app/models/activity.rb",
442
+ "test/rails_root/app/models/comment.rb",
443
+ "test/rails_root/app/models/share.rb",
444
+ "test/rails_root/app/models/user.rb",
445
+ "test/rails_root/app/models/user_session.rb",
446
+ "test/rails_root/config/boot.rb",
447
+ "test/rails_root/config/environment.rb",
448
+ "test/rails_root/config/environments/cucumber.rb",
449
+ "test/rails_root/config/environments/development.rb",
450
+ "test/rails_root/config/environments/production.rb",
451
+ "test/rails_root/config/environments/test.rb",
452
+ "test/rails_root/config/initializers/inflections.rb",
453
+ "test/rails_root/config/initializers/mime_types.rb",
454
+ "test/rails_root/config/initializers/requires.rb",
455
+ "test/rails_root/config/initializers/session_store.rb",
456
+ "test/rails_root/config/routes.rb",
457
+ "test/rails_root/db/migrate/20090320174818_create_muck_permissions_and_roles.rb",
458
+ "test/rails_root/db/migrate/20090327231918_create_users.rb",
459
+ "test/rails_root/db/migrate/20090402033319_add_muck_activities.rb",
460
+ "test/rails_root/db/migrate/20090402234137_create_languages.rb",
461
+ "test/rails_root/db/migrate/20090426041056_create_countries.rb",
462
+ "test/rails_root/db/migrate/20090426041103_create_states.rb",
463
+ "test/rails_root/db/migrate/20090602191243_create_muck_raker.rb",
464
+ "test/rails_root/db/migrate/20090613173314_create_comments.rb",
465
+ "test/rails_root/db/migrate/20090619211125_create_tag_clouds.rb",
466
+ "test/rails_root/db/migrate/20090623181458_add_grain_size_to_entries.rb",
467
+ "test/rails_root/db/migrate/20090623193525_add_grain_size_to_tag_clouds.rb",
468
+ "test/rails_root/db/migrate/20090703175825_denormalize_entries_subjects.rb",
469
+ "test/rails_root/db/migrate/20090704220055_create_slugs.rb",
470
+ "test/rails_root/db/migrate/20090716035935_change_tag_cloud_grain_sizes.rb",
471
+ "test/rails_root/db/migrate/20090717173900_add_contributor_to_feeds.rb",
472
+ "test/rails_root/db/migrate/20090717175825_normalize_entries_subjects.rb",
473
+ "test/rails_root/db/migrate/20090721043213_change_services_title_to_name.rb",
474
+ "test/rails_root/db/migrate/20090721054927_remove_services_not_null_from_feeds.rb",
475
+ "test/rails_root/db/migrate/20090723050510_create_feed_parents.rb",
476
+ "test/rails_root/db/migrate/20090728165716_add_etag_to_feeds.rb",
477
+ "test/rails_root/db/migrate/20090730044139_add_comment_cache.rb",
478
+ "test/rails_root/db/migrate/20090730045848_add_comment_cache_to_entries.rb",
479
+ "test/rails_root/db/migrate/20090730154102_allow_null_user.rb",
480
+ "test/rails_root/db/migrate/20090803185323_create_shares.rb",
481
+ "test/rails_root/db/migrate/20090804184247_add_comment_count_to_shares.rb",
482
+ "test/rails_root/db/migrate/20090804211240_add_entry_id_to_shares.rb",
483
+ "test/rails_root/db/migrate/20090804231857_add_shares_uri_index.rb",
484
+ "test/rails_root/db/migrate/20090818204527_add_activity_indexes.rb",
485
+ "test/rails_root/db/migrate/20090819030523_add_attachable_to_activities.rb",
486
+ "test/rails_root/db/migrate/20090826220530_change_services_sequence_to_sort.rb",
487
+ "test/rails_root/db/migrate/20090826225652_create_identity_feeds.rb",
488
+ "test/rails_root/db/migrate/20090827005105_add_identity_fields_to_services.rb",
489
+ "test/rails_root/db/migrate/20090827015308_create_service_categories.rb",
490
+ "test/rails_root/db/migrate/20090827221502_add_prompt_and_template_to_services.rb",
491
+ "test/rails_root/db/migrate/20090915041650_aggregations_to_polymorphic.rb",
492
+ "test/rails_root/db/migrate/20090922174200_update_oai_endpoints.rb",
493
+ "test/rails_root/db/migrate/20090922231552_add_dates_to_oai_endpoints.rb",
494
+ "test/rails_root/db/migrate/20090923150807_rename_name_in_aggregation.rb",
495
+ "test/rails_root/db/migrate/20090924200750_add_uri_data_template_to_services.rb",
496
+ "test/rails_root/db/migrate/20091006183742_add_feed_count_to_aggregation.rb",
497
+ "test/rails_root/db/migrate/20091022150615_add_uri_key_to_services.rb",
498
+ "test/rails_root/db/migrate/20091115011828_add_aggregations_for_personal_recs.rb",
499
+ "test/rails_root/db/migrate/20091116094447_rename_action_table.rb",
500
+ "test/rails_root/db/migrate/20091118203605_add_default_feed_type_to_aggregation_feed.rb",
501
+ "test/rails_root/db/migrate/20100123035450_create_access_codes.rb",
502
+ "test/rails_root/db/migrate/20100123233654_create_access_code_requests.rb",
503
+ "test/rails_root/db/schema.rb",
504
+ "test/rails_root/features/step_definitions/common_steps.rb",
505
+ "test/rails_root/features/step_definitions/visit_steps.rb",
506
+ "test/rails_root/features/step_definitions/webrat_steps.rb",
507
+ "test/rails_root/features/support/env.rb",
508
+ "test/rails_root/features/support/paths.rb",
509
+ "test/rails_root/public/dispatch.rb",
510
+ "test/rails_root/script/create_project.rb",
511
+ "test/rails_root/test/factories.rb",
512
+ "test/rails_root/test/functional/admin/feeds_controller_test.rb",
513
+ "test/rails_root/test/functional/admin/oai_endpoints_controller_test.rb",
514
+ "test/rails_root/test/functional/aggregation_feeds_controller_test.rb",
515
+ "test/rails_root/test/functional/aggregations_controller_test.rb",
516
+ "test/rails_root/test/functional/feed_previews_controller_test.rb",
517
+ "test/rails_root/test/functional/feeds_controller_test.rb",
518
+ "test/rails_root/test/functional/identity_feeds_controller_test.rb",
519
+ "test/rails_root/test/functional/oai_endpoints_controller_test.rb",
520
+ "test/rails_root/test/functional/topics_controller_test.rb",
521
+ "test/rails_root/test/functional/visits_controller_test.rb",
522
+ "test/rails_root/test/test_helper.rb",
523
+ "test/rails_root/test/unit/aggregation_feed_test.rb",
524
+ "test/rails_root/test/unit/aggregation_test.rb",
525
+ "test/rails_root/test/unit/comment_test.rb",
526
+ "test/rails_root/test/unit/entry_test.rb",
527
+ "test/rails_root/test/unit/feed_parent_test.rb",
528
+ "test/rails_root/test/unit/feed_test.rb",
529
+ "test/rails_root/test/unit/identity_feed_test.rb",
530
+ "test/rails_root/test/unit/oai_endpoint_test.rb",
531
+ "test/rails_root/test/unit/one_test.rb",
532
+ "test/rails_root/test/unit/personal_recommendation_test.rb",
533
+ "test/rails_root/test/unit/recommendation_test.rb",
534
+ "test/rails_root/test/unit/service_category_test.rb",
535
+ "test/rails_root/test/unit/service_test.rb",
536
+ "test/rails_root/test/unit/services_mailer_test.rb",
537
+ "test/rails_root/test/unit/share_test.rb",
538
+ "test/rails_root/test/unit/tag_cloud_test.rb",
539
+ "test/rails_root/test/unit/user_test.rb",
540
+ "test/rails_root/vendor/plugins/jrails/init.rb",
541
+ "test/rails_root/vendor/plugins/jrails/install.rb",
542
+ "test/rails_root/vendor/plugins/jrails/lib/jrails.rb",
543
+ "test/rails_root/vendor/plugins/jrails/rails/init.rb",
544
+ "test/rails_root/vendor/plugins/ssl_requirement/lib/ssl_requirement.rb",
545
+ "test/rails_root/vendor/plugins/ssl_requirement/test/ssl_requirement_test.rb"
546
546
  ]
547
547
 
548
548
  if s.respond_to? :specification_version then