Commit 61a2ce41 authored by Dmitriy Zaporozhets's avatar Dmitriy Zaporozhets

code cleanin

parent 0f627a65
...@@ -73,7 +73,7 @@ class ProjectsController < ApplicationController ...@@ -73,7 +73,7 @@ class ProjectsController < ApplicationController
end end
def files def files
@notes = @project.notes.where("attachment != 'NULL'").order("created_at DESC") @notes = @project.notes.where("attachment != 'NULL'").order("created_at DESC").limit(100)
end end
def info def info
......
...@@ -16,12 +16,21 @@ module ProjectsHelper ...@@ -16,12 +16,21 @@ module ProjectsHelper
nil nil
end end
# expires in 360 days def project_tab_class
def switch_colorscheme_link(opts) [:show, :files, :team, :edit, :update, :info].each do |action|
if cookies[:colorschema].blank? return "current" if current_page?(:controller => "projects", :action => action, :id => @project)
link_to_function "paint it black!", "$.cookie('colorschema','black', {expires:360}); window.location.reload()", opts end
else
link_to_function "paint it white!", "$.cookie('colorschema','', {expires:360}); window.location.reload()", opts if controller.controller_name == "snippets" ||
controller.controller_name == "team_members"
"current"
end end
end end
def tree_tab_class
current_page?(:controller => "refs",
:action => "tree",
:project_id => @project,
:id => @ref || @project.root_ref ) ? "current" : nil
end
end end
...@@ -23,8 +23,8 @@ ...@@ -23,8 +23,8 @@
.project-sidebar .project-sidebar
.fixed .fixed
%aside %aside
= link_to "Project", project_path(@project), :class => (current_page?(:controller => "projects", :action => "show", :id => @project) || controller.controller_name == "snippets" || current_page?(:controller => "projects", :action => "team", :id => @project) || controller.controller_name == "team_members" || current_page?(project_path(@project))) ? "current" : nil = link_to "Project", project_path(@project), :class => project_tab_class
= link_to "Tree", tree_project_ref_path(@project, @project.root_ref), :class => current_page?(:controller => "refs", :action => "tree", :project_id => @project, :id => @ref || @project.root_ref ) ? "current" : nil = link_to "Tree", tree_project_ref_path(@project, @project.root_ref), :class => tree_tab_class
= link_to "Commits", project_commits_path(@project), :class => current_page?(:controller => "commits", :action => "index", :project_id => @project) ? "current" : nil = link_to "Commits", project_commits_path(@project), :class => current_page?(:controller => "commits", :action => "index", :project_id => @project) ? "current" : nil
= link_to "Network graph", graph_project_path(@project), :class => current_page?(:controller => "projects", :action => "graph", :id => @project) ? "current" : nil = link_to "Network graph", graph_project_path(@project), :class => current_page?(:controller => "projects", :action => "graph", :id => @project) ? "current" : nil
= link_to project_issues_filter_path(@project), :class => (controller.controller_name == "issues") ? "current" : nil do = link_to project_issues_filter_path(@project), :class => (controller.controller_name == "issues") ? "current" : nil do
......
...@@ -64,6 +64,6 @@ ...@@ -64,6 +64,6 @@
:javascript :javascript
$(function(){ $(function(){
$('form #project_default_branch').chosen(); $('#project_default_branch').chosen();
}) })
= render "project_head" = render "project_head"
%div{ :class => "update-data ui-box ui-box-small ui-box-big" } - unless @notes.empty?
.data %div.update-data.ui-box.ui-box-small
- @notes.each do |note| .data
%a.update-item{:href => note.attachment.url} - @notes.each do |note|
= image_tag gravatar_icon(note.author_email), :class => "left", :width => 16 %a.update-item{:href => note.attachment.url}
%span.update-title{:style => "margin-bottom:0px;"} = image_tag gravatar_icon(note.author_email), :class => "left", :width => 16
= note.attachment_identifier %span.update-title{:style => "margin-bottom:0px;"}
%span.update-author.right = note.attachment_identifier
Added %span.update-author.right
= time_ago_in_words(note.created_at) Added
ago = time_ago_in_words(note.created_at)
ago
- else
%h3 All files attached to project wall, issues etc will be displayed here
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment