Mercurial > hg > soundsoftware-site
view app/controllers/previews_controller.rb @ 100:1412841d48a3 cannam
* Projects page: If I'm logged in but have no projects, use single All Projects heading
* Projects page: Rename "Other Projects" to "Everyone Else's Projects"
* Projects page: Remove stars from my project links; remove key explaining star
* Projects page: Reorder top-right nav links to isolate the "+ New Project" icon
author | Chris Cannam |
---|---|
date | Thu, 16 Dec 2010 16:29:06 +0000 |
parents | 94944d00e43c |
children | cbce1fd3b1b7 |
line wrap: on
line source
class PreviewsController < ApplicationController before_filter :find_project def issue @issue = @project.issues.find_by_id(params[:id]) unless params[:id].blank? if @issue @attachements = @issue.attachments @description = params[:issue] && params[:issue][:description] if @description && @description.gsub(/(\r?\n|\n\r?)/, "\n") == @issue.description.to_s.gsub(/(\r?\n|\n\r?)/, "\n") @description = nil end @notes = params[:notes] else @description = (params[:issue] ? params[:issue][:description] : nil) end render :layout => false end def news @text = (params[:news] ? params[:news][:description] : nil) render :partial => 'common/preview' end private def find_project project_id = (params[:issue] && params[:issue][:project_id]) || params[:project_id] @project = Project.find(project_id) rescue ActiveRecord::RecordNotFound render_404 end end