muck-raker 0.1.23 → 0.1.24
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/visits/show.html.erb +4 -4
- data/muck-raker.gemspec +1 -1
- metadata +1 -1
data/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
0.1.
|
|
1
|
+
0.1.24
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
<div id="toolbar">
|
|
2
|
-
<div id="
|
|
3
|
-
|
|
2
|
+
<div id="toolbar-logo">
|
|
3
|
+
<a href="/" target="_top"><img src="/images/folksemantic/logo-folksemantic-sm.gif"/></a>
|
|
4
4
|
</div>
|
|
5
5
|
<div id="close" class="section">
|
|
6
6
|
<a id="close_frame" title="Remove frame and go to this web address." class="url_fragment" href="<%= @resource_uri %>"> </a>
|
|
@@ -16,11 +16,11 @@
|
|
|
16
16
|
<%#= link_to t('muck.raker.remix'), new_content_path(@entry), :id => 'share' - copy the page into the content system %>
|
|
17
17
|
<%#= link_to t('muck.raker.save'), new_content_path(@entry), :id => 'share' - save the content for use later on %>
|
|
18
18
|
<% if logged_in? -%>
|
|
19
|
-
<%= link_to t('muck.raker.share'), new_user_share_path(current_user, :title => @entry.title, :uri => @resource_uri), :id => 'share' if GlobalConfig.enable_raker_shares -%>
|
|
19
|
+
<%= link_to "<img src='/images/folksemantic/icon-share.gif'/>" + t('muck.raker.share'), new_user_share_path(current_user, :title => @entry.title, :uri => @resource_uri), :id => 'share' if GlobalConfig.enable_raker_shares -%>
|
|
20
20
|
<% else -%>
|
|
21
21
|
<span id="share_login"><%= t('muck.raker.login_or_signup_prompt', :signup => link_to(t('muck.raker.signup'), signup_path, :id => 'signup'), :login => link_to(t('muck.raker.login'), login_path, :id => 'login') ) %></span>
|
|
22
22
|
<% end -%>
|
|
23
|
-
<%= link_to t('muck.raker.comment_entries_count', :count => @entry.comment_count), entry_comments_path(@entry), :id => 'comment' if GlobalConfig.enable_raker_comments -%>
|
|
23
|
+
<%= link_to "<img src='/images/folksemantic/icon-comment.gif'/>" + t('muck.raker.comment_entries_count', :count => @entry.comment_count), entry_comments_path(@entry), :id => 'comment' if GlobalConfig.enable_raker_comments -%>
|
|
24
24
|
</div>
|
|
25
25
|
</div>
|
|
26
26
|
|
data/muck-raker.gemspec
CHANGED