muck-services 3.3.0 → 3.3.1
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/VERSION +1 -1
- data/app/views/admin/feeds/index.html.erb +2 -0
- data/app/views/admin/oai_endpoints/index.html.erb +2 -0
- data/app/views/aggregations/_preview_form.html.erb +2 -0
- data/app/views/aggregations/edit.html.erb +2 -0
- data/app/views/aggregations/index.html.erb +2 -0
- data/app/views/feeds/_form.html.erb +2 -0
- data/app/views/feeds/edit.html.erb +2 -0
- data/app/views/feeds/harvest_now.html.erb +2 -0
- data/app/views/feeds/index.html.erb +2 -0
- data/app/views/feeds/new.html.erb +2 -0
- data/app/views/feeds/new_extended.html.erb +2 -0
- data/app/views/feeds/new_oai_rss.html.erb +2 -0
- data/app/views/feeds/unban.html.erb +2 -0
- data/app/views/identity_feeds/_form.erb +2 -0
- data/app/views/identity_feeds/index.erb +2 -2
- data/app/views/oai_endpoints/_form.html.erb +2 -0
- data/app/views/parts/_add_feed.html.erb +2 -0
- data/app/views/topics/_form.html.erb +2 -0
- data/app/views/topics/new.html.erb +2 -0
- data/app/views/topics/show.html.erb +2 -0
- data/app/views/visits/_frame_scripts.html.erb +2 -0
- data/app/views/visits/_recommendations.html.erb +2 -0
- data/muck-services.gemspec +3 -3
- metadata +5 -5
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
3.3.
|
1
|
+
3.3.1
|
@@ -24,6 +24,7 @@
|
|
24
24
|
</div>
|
25
25
|
|
26
26
|
<% content_for :javascript do -%>
|
27
|
+
<script type="text/javascript" language="JavaScript">
|
27
28
|
jQuery(document).ready(function() {
|
28
29
|
jQuery('a.lightbox').fancybox({
|
29
30
|
'hideOnContentClick': true,
|
@@ -32,4 +33,5 @@ jQuery(document).ready(function() {
|
|
32
33
|
'frameHeight': 600
|
33
34
|
});
|
34
35
|
});
|
36
|
+
</script>
|
35
37
|
<% end -%>
|
@@ -20,6 +20,7 @@
|
|
20
20
|
</div>
|
21
21
|
|
22
22
|
<% content_for :javascript do -%>
|
23
|
+
<script type="text/javascript" language="JavaScript">
|
23
24
|
jQuery(document).ready(function() {
|
24
25
|
jQuery('a.lightbox').fancybox({
|
25
26
|
'hideOnContentClick': true,
|
@@ -28,4 +29,5 @@ jQuery(document).ready(function() {
|
|
28
29
|
'frameHeight': 600
|
29
30
|
});
|
30
31
|
});
|
32
|
+
</script>
|
31
33
|
<% end -%>
|
@@ -45,6 +45,7 @@
|
|
45
45
|
<%= render :partial => 'google/feeds_scripts' %>
|
46
46
|
|
47
47
|
<% content_for :javascript do -%>
|
48
|
+
<script type="text/javascript" language="JavaScript">
|
48
49
|
jQuery(document).ready(function() {
|
49
50
|
jQuery("#add-feed-button").click(function() {
|
50
51
|
jQuery('#add-feed-waiting').show();
|
@@ -62,4 +63,5 @@ jQuery(document).ready(function() {
|
|
62
63
|
return false;
|
63
64
|
});
|
64
65
|
});
|
66
|
+
</script>
|
65
67
|
<% end -%>
|
@@ -11,10 +11,12 @@
|
|
11
11
|
</div>
|
12
12
|
<% end -%>
|
13
13
|
<% content_for :javascript do -%>
|
14
|
+
<script type="text/javascript" language="JavaScript">
|
14
15
|
jQuery(document).ready(function() {
|
15
16
|
jQuery('#add_feed_uri').click(function(){
|
16
17
|
jQuery(this).hide();
|
17
18
|
jQuery('#finding_uri_message').show();
|
18
19
|
});
|
19
20
|
});
|
21
|
+
</script>
|
20
22
|
<% end -%>
|
@@ -1,3 +1,5 @@
|
|
1
1
|
<h1>The <%= @feed.title %> feed is being re-harvested</h1>
|
2
2
|
<p>You will be redirected to the updated course list in a few seconds.</p>
|
3
|
+
<% content_for :javascript do -%>
|
3
4
|
<script type="text/javascript">setTimeout("window.location = '/feeds/<%= @feed.id %>/entries'", 5000);</script>
|
5
|
+
<% end -%>
|
@@ -23,6 +23,7 @@
|
|
23
23
|
</div>
|
24
24
|
|
25
25
|
<% content_for :javascript do -%>
|
26
|
+
<script type="text/javascript" language="JavaScript">
|
26
27
|
jQuery(document).ready(function() {
|
27
28
|
jQuery('a.lightbox').fancybox({
|
28
29
|
'hideOnContentClick': true,
|
@@ -31,4 +32,5 @@ jQuery(document).ready(function() {
|
|
31
32
|
'frameHeight': 600
|
32
33
|
});
|
33
34
|
});
|
35
|
+
</script>
|
34
36
|
<% end -%>
|
@@ -13,10 +13,12 @@
|
|
13
13
|
<% end -%>
|
14
14
|
</div>
|
15
15
|
<% content_for :javascript do -%>
|
16
|
+
<script type="text/javascript" language="JavaScript">
|
16
17
|
jQuery(document).ready(function() {
|
17
18
|
jQuery('#add_feed_uri').click(function(){
|
18
19
|
jQuery(this).hide();
|
19
20
|
jQuery('#finding_uri_message').show();
|
20
21
|
});
|
21
22
|
});
|
23
|
+
</script>
|
22
24
|
<% end -%>
|
@@ -23,10 +23,12 @@
|
|
23
23
|
<% end -%>
|
24
24
|
</div>
|
25
25
|
<% content_for :javascript do -%>
|
26
|
+
<script type="text/javascript" language="JavaScript">
|
26
27
|
jQuery(document).ready(function() {
|
27
28
|
jQuery('#add_feed_uri').click(function(){
|
28
29
|
jQuery(this).hide();
|
29
30
|
jQuery('#finding_uri_message').show();
|
30
31
|
});
|
31
32
|
});
|
33
|
+
</script>
|
32
34
|
<% end -%>
|
@@ -32,6 +32,7 @@
|
|
32
32
|
</div>
|
33
33
|
|
34
34
|
<% content_for :javascript do -%>
|
35
|
+
<script type="text/javascript" language="JavaScript">
|
35
36
|
jQuery(document).ready(function() {
|
36
37
|
jQuery('#oai').hide();
|
37
38
|
jQuery('#add_rss').click(function(){
|
@@ -47,4 +48,5 @@ jQuery(document).ready(function() {
|
|
47
48
|
jQuery('#finding_uri_message').show();
|
48
49
|
});
|
49
50
|
});
|
51
|
+
</script>
|
50
52
|
<% end -%>
|
@@ -1,3 +1,5 @@
|
|
1
1
|
<h1>The <%= @feed.title %> feed has been unbanned and is being re-harvested</h1>
|
2
2
|
<p>You will be redirected to the updated course list in a few seconds.</p>
|
3
|
+
<% content_for :javascript do -%>
|
3
4
|
<script type="text/javascript">setTimeout("window.location = '/feeds/<%= @feed.id %>/entries'", 5000);</script>
|
5
|
+
<% end -%>
|
@@ -1,7 +1,7 @@
|
|
1
1
|
<%= output_errors('', {:class => 'help-box'}) %>
|
2
2
|
<%= available_service_categories(@service_categories, nil, 'span-15') %>
|
3
3
|
<%= services_for_user(@user_services, nil, 'span-5') %>
|
4
|
-
|
4
|
+
<% content_for :javascript do -%>
|
5
5
|
<script type="text/javascript">
|
6
6
|
jQuery(document).ready(function() {
|
7
7
|
jQuery('a.lightbox').fancybox({
|
@@ -45,5 +45,5 @@ jQuery(document).ready(function() {
|
|
45
45
|
apply_delete_feed();
|
46
46
|
});
|
47
47
|
</script>
|
48
|
-
|
48
|
+
<% end -%>
|
49
49
|
|
@@ -13,10 +13,12 @@
|
|
13
13
|
</div>
|
14
14
|
<% end -%>
|
15
15
|
<% content_for :javascript do -%>
|
16
|
+
<script type="text/javascript" language="JavaScript">
|
16
17
|
jQuery(document).ready(function() {
|
17
18
|
jQuery('#add_oai_uri').click(function() {
|
18
19
|
jQuery('#add_oai_uri').hide();
|
19
20
|
jQuery('#finding_oai_message').show();
|
20
21
|
});
|
21
22
|
});
|
23
|
+
</script>
|
22
24
|
<% end -%>
|
@@ -11,10 +11,12 @@
|
|
11
11
|
<% end -%>
|
12
12
|
</div>
|
13
13
|
<% content_for :javascript do -%>
|
14
|
+
<script type="text/javascript" language="JavaScript">
|
14
15
|
jQuery(document).ready(function() {
|
15
16
|
jQuery('#add_feed_uri').click(function(){
|
16
17
|
jQuery(this).hide();
|
17
18
|
jQuery('#finding_uri_message').show();
|
18
19
|
});
|
19
20
|
});
|
21
|
+
</script>
|
20
22
|
<% end -%>
|
@@ -6,10 +6,12 @@
|
|
6
6
|
</span>
|
7
7
|
<% end -%>
|
8
8
|
<% content_for :javascript do -%>
|
9
|
+
<script type="text/javascript" language="JavaScript">
|
9
10
|
jQuery(document).ready(function() {
|
10
11
|
jQuery('#generate_topic').click(function(){
|
11
12
|
jQuery(this).hide();
|
12
13
|
jQuery('#generating_topic_message').show();
|
13
14
|
});
|
14
15
|
});
|
16
|
+
</script>
|
15
17
|
<% end -%>
|
@@ -18,10 +18,12 @@
|
|
18
18
|
</div>
|
19
19
|
<% end -%>
|
20
20
|
<% content_for :javascript do -%>
|
21
|
+
<script type="text/javascript" language="JavaScript">
|
21
22
|
jQuery(document).ready(function() {
|
22
23
|
jQuery('#generate_topic').click(function(){
|
23
24
|
jQuery(this).hide();
|
24
25
|
jQuery('#generating_topic_message').show();
|
25
26
|
});
|
26
27
|
});
|
28
|
+
</script>
|
27
29
|
<% end -%>
|
@@ -27,11 +27,13 @@
|
|
27
27
|
<ul class="combined-feed-list">
|
28
28
|
<%= render :partial => 'topics/simple_entry', :collection => @server_combined_data_feeds %>
|
29
29
|
</ul>
|
30
|
+
<% content_for :javascript do -%>
|
30
31
|
<script type="text/javascript">
|
31
32
|
jQuery(document).ready(function() {
|
32
33
|
apply_show_entry_content();
|
33
34
|
});
|
34
35
|
</script>
|
36
|
+
<% end -%>
|
35
37
|
<% else -%>
|
36
38
|
<%= render :partial => 'topics/feed', :collection => @server_loaded_data_feeds %>
|
37
39
|
<% end -%>
|
@@ -3,6 +3,7 @@
|
|
3
3
|
<%= javascript_tag %[var ADD_SHARE_MESSAGE = '#{t('muck.shares.adding_share')}';] %>
|
4
4
|
<% end -%>
|
5
5
|
<% content_for :javascript do -%>
|
6
|
+
<script type="text/javascript" language="JavaScript">
|
6
7
|
jQuery(document).ready(function() {
|
7
8
|
<%= "show_tool('comments');" if params[:show_comments] || @entry.comment_count > 0 -%>
|
8
9
|
jQuery(window).bind('resize', function() {
|
@@ -24,4 +25,5 @@
|
|
24
25
|
setup_share_submit();
|
25
26
|
apply_frame_comment_hover();
|
26
27
|
});
|
28
|
+
</script>
|
27
29
|
<% end -%>
|
data/muck-services.gemspec
CHANGED
@@ -5,11 +5,11 @@
|
|
5
5
|
|
6
6
|
Gem::Specification.new do |s|
|
7
7
|
s.name = %q{muck-services}
|
8
|
-
s.version = "3.3.
|
8
|
+
s.version = "3.3.1"
|
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{2011-03-
|
12
|
+
s.date = %q{2011-03-19}
|
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 = [
|
@@ -261,7 +261,7 @@ Gem::Specification.new do |s|
|
|
261
261
|
]
|
262
262
|
s.homepage = %q{http://github.com/tatemae/muck_services}
|
263
263
|
s.require_paths = ["lib"]
|
264
|
-
s.rubygems_version = %q{1.
|
264
|
+
s.rubygems_version = %q{1.6.0}
|
265
265
|
s.summary = %q{Feeds, aggregations and services for muck}
|
266
266
|
|
267
267
|
if s.respond_to? :specification_version then
|
metadata
CHANGED
@@ -1,13 +1,13 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: muck-services
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
hash:
|
4
|
+
hash: 9
|
5
5
|
prerelease:
|
6
6
|
segments:
|
7
7
|
- 3
|
8
8
|
- 3
|
9
|
-
-
|
10
|
-
version: 3.3.
|
9
|
+
- 1
|
10
|
+
version: 3.3.1
|
11
11
|
platform: ruby
|
12
12
|
authors:
|
13
13
|
- Joel Duffin
|
@@ -16,7 +16,7 @@ autorequire:
|
|
16
16
|
bindir: bin
|
17
17
|
cert_chain: []
|
18
18
|
|
19
|
-
date: 2011-03-
|
19
|
+
date: 2011-03-19 00:00:00 -06:00
|
20
20
|
default_executable:
|
21
21
|
dependencies:
|
22
22
|
- !ruby/object:Gem::Dependency
|
@@ -496,7 +496,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
496
496
|
requirements: []
|
497
497
|
|
498
498
|
rubyforge_project:
|
499
|
-
rubygems_version: 1.
|
499
|
+
rubygems_version: 1.6.0
|
500
500
|
signing_key:
|
501
501
|
specification_version: 3
|
502
502
|
summary: Feeds, aggregations and services for muck
|