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
@@ -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;}
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: muck-raker
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.1.
|
4
|
+
version: 0.1.45
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Joel Duffin Justin Ball
|
@@ -9,7 +9,7 @@ autorequire:
|
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
11
|
|
12
|
-
date: 2009-10-
|
12
|
+
date: 2009-10-22 00:00:00 -06:00
|
13
13
|
default_executable:
|
14
14
|
dependencies:
|
15
15
|
- !ruby/object:Gem::Dependency
|
@@ -42,6 +42,16 @@ dependencies:
|
|
42
42
|
- !ruby/object:Gem::Version
|
43
43
|
version: "0"
|
44
44
|
version:
|
45
|
+
- !ruby/object:Gem::Dependency
|
46
|
+
name: nokogiri
|
47
|
+
type: :runtime
|
48
|
+
version_requirement:
|
49
|
+
version_requirements: !ruby/object:Gem::Requirement
|
50
|
+
requirements:
|
51
|
+
- - ">="
|
52
|
+
- !ruby/object:Gem::Version
|
53
|
+
version: "0"
|
54
|
+
version:
|
45
55
|
- !ruby/object:Gem::Dependency
|
46
56
|
name: muck-feedbag
|
47
57
|
type: :runtime
|
@@ -196,10 +206,13 @@ files:
|
|
196
206
|
- app/views/feeds/new_oai_rss.html.erb
|
197
207
|
- app/views/feeds/show.html.erb
|
198
208
|
- app/views/feeds/unban.html.erb
|
209
|
+
- app/views/google/_combined_feed.html.erb
|
199
210
|
- app/views/google/_dynamic_feeds_vertical.html.erb
|
200
211
|
- app/views/google/_feed.html.erb
|
201
212
|
- app/views/google/_feed_search.html.erb
|
202
213
|
- app/views/google/_feeds_scripts.html.erb
|
214
|
+
- app/views/google/_hot_trends.html.erb
|
215
|
+
- app/views/google/_search.html.erb
|
203
216
|
- app/views/google/_slide_show.html.erb
|
204
217
|
- app/views/identity_feeds/_available_service_categories.html.erb
|
205
218
|
- app/views/identity_feeds/_form.html.erb
|
@@ -504,6 +517,7 @@ files:
|
|
504
517
|
- db/migrate/20090923150807_rename_name_in_aggregation.rb
|
505
518
|
- db/migrate/20090924200750_add_uri_data_template_to_services.rb
|
506
519
|
- db/migrate/20091006183742_add_feed_count_to_aggregation.rb
|
520
|
+
- db/migrate/20091022150615_add_uri_key_to_services.rb
|
507
521
|
- install.rb
|
508
522
|
- lib/active_record/acts/muck_aggregation_owner.rb
|
509
523
|
- lib/active_record/acts/muck_feed_owner.rb
|
@@ -1026,6 +1040,7 @@ files:
|
|
1026
1040
|
- test/rails_root/db/migrate/20090923150807_rename_name_in_aggregation.rb
|
1027
1041
|
- test/rails_root/db/migrate/20090924200750_add_uri_data_template_to_services.rb
|
1028
1042
|
- test/rails_root/db/migrate/20091006183742_add_feed_count_to_aggregation.rb
|
1043
|
+
- test/rails_root/db/migrate/20091022150615_add_uri_key_to_services.rb
|
1029
1044
|
- test/rails_root/features/feeds.feature
|
1030
1045
|
- test/rails_root/features/step_definitions/common_steps.rb
|
1031
1046
|
- test/rails_root/features/step_definitions/visit_steps.rb
|
@@ -1675,6 +1690,7 @@ test_files:
|
|
1675
1690
|
- test/rails_root/db/migrate/20090923150807_rename_name_in_aggregation.rb
|
1676
1691
|
- test/rails_root/db/migrate/20090924200750_add_uri_data_template_to_services.rb
|
1677
1692
|
- test/rails_root/db/migrate/20091006183742_add_feed_count_to_aggregation.rb
|
1693
|
+
- test/rails_root/db/migrate/20091022150615_add_uri_key_to_services.rb
|
1678
1694
|
- test/rails_root/features/step_definitions/common_steps.rb
|
1679
1695
|
- test/rails_root/features/step_definitions/visit_steps.rb
|
1680
1696
|
- test/rails_root/features/step_definitions/webrat_steps.rb
|