This commit is contained in:
albert
2012-01-06 18:58:01 -05:00
parent ef27934125
commit 779ff94944
5 changed files with 17 additions and 9 deletions

View File

@@ -3,7 +3,7 @@ class FavoritesController < ApplicationController
def index
if params[:tags]
redirect_to(posts_path(:tags => "fav:#{CurrentUser.name} #{params[:tags]}"))
redirect_to(posts_path(:tags => params[:tags]))
else
@favorite_set = PostSets::Favorite.new(CurrentUser.user, params[:page])
end

View File

@@ -12,7 +12,7 @@ module PostSets
end
def tag_string
tag_array.join(" ")
tag_array.uniq.join(" ")
end
def posts

View File

@@ -11,7 +11,7 @@ module PostSets
end
def tag_string
@tag_string ||= tag_array.join(" ")
@tag_string ||= tag_array.uniq.join(" ")
end
def has_wiki?

View File

@@ -7,16 +7,18 @@
<li>|</li>
<li><%= link_to "Posts (#{Post.fast_count(@wiki_page.title)})", posts_path(:tags => @wiki_page.title) %></li>
<li><%= link_to "History", wiki_page_versions_path(:search => {:wiki_page_id_eq => @wiki_page.id}) %></li>
<% unless @wiki_page.new_record? %>
<li><%= link_to "Edit", edit_wiki_page_path(@wiki_page) %></li>
<% if CurrentUser.is_moderator? %>
<li><%= link_to "Delete", wiki_page_path(@wiki_page), :remote => true, :method => :delete, :confirm => "Do you want to delete this wiki page?" %></li>
<% if CurrentUser.is_member? %>
<% unless @wiki_page.new_record? %>
<li><%= link_to "Edit", edit_wiki_page_path(@wiki_page) %></li>
<% if CurrentUser.is_moderator? %>
<li><%= link_to "Delete", wiki_page_path(@wiki_page), :remote => true, :method => :delete, :confirm => "Do you want to delete this wiki page?" %></li>
<% end %>
<% end %>
<% end %>
<% end %>
<% if @wiki_page_version %>
<li>|</li>
<li><%= link_to "Current", wiki_page_path(@wiki_page_version.wiki_page_id) %></li>
<li><%= link_to "Newest", wiki_page_path(@wiki_page_version.wiki_page_id) %></li>
<% end %>
</menu>
<% end %>

View File

@@ -3,7 +3,13 @@
<%= render "sidebar" %>
<section id="content">
<h1 id="wiki-page-title"><%= @wiki_page.pretty_title %></h1>
<h1 id="wiki-page-title">
<%= @wiki_page.pretty_title %>
<% if @wiki_page.is_locked? %>
(locked)
<% end %>
</h1>
<div id="wiki-page-body" class="prose">
<%= format_text(@wiki_page.body) %>