Events displayed on project page. \n Fixed theme issue. \n New issue, mr events enabled
This commit is contained in:
parent
00028702fc
commit
5263dd4297
13 changed files with 153 additions and 57 deletions
|
@ -2,6 +2,7 @@
|
|||
.wll
|
||||
= link_to project do
|
||||
%h4
|
||||
%span.ico.project
|
||||
= project.name
|
||||
%small
|
||||
last activity at
|
||||
|
|
|
@ -8,6 +8,7 @@
|
|||
|
||||
%div.dashboard_category
|
||||
%h3
|
||||
%span.ico.projects
|
||||
= link_to "Projects" , "#projects", :id => "projects"
|
||||
%small
|
||||
( most recent )
|
||||
|
@ -59,6 +60,7 @@
|
|||
- unless @events.blank?
|
||||
%div.dashboard_category
|
||||
%h3
|
||||
%span.ico.activities
|
||||
= link_to "Activities" , "#activities", :id => "activities"
|
||||
|
||||
%hr
|
||||
|
|
|
@ -1,32 +1,8 @@
|
|||
- if event.allowed?
|
||||
.wll.event_feed
|
||||
- if event.push?
|
||||
- if event.new_branch?
|
||||
= image_tag gravatar_icon(event.pusher_email), :class => "avatar"
|
||||
%strong #{event.pusher_name}
|
||||
pushed new branch
|
||||
= link_to project_commits_path(event.project, :ref => event.branch_name) do
|
||||
%strong= event.branch_name
|
||||
at
|
||||
%strong= link_to event.project.name, event.project
|
||||
%span.cgray
|
||||
= time_ago_in_words(event.created_at)
|
||||
ago.
|
||||
- else
|
||||
= image_tag gravatar_icon(event.pusher_email), :class => "avatar"
|
||||
%strong #{event.pusher_name}
|
||||
pushed to
|
||||
= link_to project_commits_path(event.project, :ref => event.branch_name) do
|
||||
%strong= event.branch_name
|
||||
at
|
||||
%strong= link_to event.project.name, event.project
|
||||
%span.cgray
|
||||
= time_ago_in_words(event.created_at)
|
||||
ago.
|
||||
- if event.commits.count > 1
|
||||
= link_to compare_project_commits_path(event.project, :from => event.commits.first.prev_commit_id, :to => event.commits.last.id) do
|
||||
Compare #{event.commits.first.commit.id[0..8]}...#{event.commits.last.id[0..8]}
|
||||
- @project = event.project
|
||||
%ul.unstyled
|
||||
= render event.commits
|
||||
|
||||
.event_feed
|
||||
- if event.new_issue?
|
||||
= render "events/event_new_issue", :event => event
|
||||
- if event.new_merge_request?
|
||||
= render "events/event_new_merge_request", :event => event
|
||||
- elsif event.push?
|
||||
= render "events/event_push", :event => event
|
||||
|
|
10
app/views/events/_event_new_issue.html.haml
Normal file
10
app/views/events/_event_new_issue.html.haml
Normal file
|
@ -0,0 +1,10 @@
|
|||
= image_tag gravatar_icon(event.author_email), :class => "avatar"
|
||||
%strong #{event.author_name}
|
||||
created new issue
|
||||
= link_to project_issue_path(event.project, event.issue) do
|
||||
%strong= truncate event.issue_title
|
||||
at
|
||||
%strong= link_to event.project.name, event.project
|
||||
%span.cgray
|
||||
= time_ago_in_words(event.created_at)
|
||||
ago.
|
15
app/views/events/_event_new_merge_request.html.haml
Normal file
15
app/views/events/_event_new_merge_request.html.haml
Normal file
|
@ -0,0 +1,15 @@
|
|||
= image_tag gravatar_icon(event.author_email), :class => "avatar"
|
||||
%strong #{event.author_name}
|
||||
requested merge
|
||||
= link_to project_merge_request_path(event.project, event.merge_request) do
|
||||
%strong= truncate event.merge_request_title
|
||||
at
|
||||
%strong= link_to event.project.name, event.project
|
||||
%span.cgray
|
||||
= time_ago_in_words(event.created_at)
|
||||
ago.
|
||||
%br
|
||||
%span.label= event.merge_request.source_branch
|
||||
→
|
||||
%span.label= event.merge_request.target_branch
|
||||
|
30
app/views/events/_event_push.html.haml
Normal file
30
app/views/events/_event_push.html.haml
Normal file
|
@ -0,0 +1,30 @@
|
|||
- if event.new_branch?
|
||||
= image_tag gravatar_icon(event.pusher_email), :class => "avatar"
|
||||
%strong #{event.pusher_name}
|
||||
pushed new branch
|
||||
= link_to project_commits_path(event.project, :ref => event.branch_name) do
|
||||
%strong= event.branch_name
|
||||
at
|
||||
%strong= link_to event.project.name, event.project
|
||||
%span.cgray
|
||||
= time_ago_in_words(event.created_at)
|
||||
ago.
|
||||
- else
|
||||
= image_tag gravatar_icon(event.pusher_email), :class => "avatar"
|
||||
%strong #{event.pusher_name}
|
||||
pushed to
|
||||
= link_to project_commits_path(event.project, :ref => event.branch_name) do
|
||||
%strong= event.branch_name
|
||||
at
|
||||
%strong= link_to event.project.name, event.project
|
||||
%span.cgray
|
||||
= time_ago_in_words(event.created_at)
|
||||
ago.
|
||||
- if event.commits.count > 1
|
||||
= link_to compare_project_commits_path(event.project, :from => event.commits.first.prev_commit_id, :to => event.commits.last.id) do
|
||||
Compare #{event.commits.first.commit.id[0..8]}...#{event.commits.last.id[0..8]}
|
||||
- @project = event.project
|
||||
%ul.unstyled
|
||||
= render event.commits
|
||||
|
||||
|
|
@ -1,7 +1,7 @@
|
|||
!!! 5
|
||||
%html{ :lang => "en"}
|
||||
= render "layouts/head"
|
||||
%body.ui_basic.admin
|
||||
%body{:class => "#{app_theme} admin"}
|
||||
= render "layouts/flash"
|
||||
= render "layouts/head_panel", :title => "Admin area"
|
||||
.container
|
||||
|
|
|
@ -14,9 +14,8 @@
|
|||
= text_field_tag :project_clone, @project.url_to_repo, :class => "xlarge one_click_select git_clone_url"
|
||||
|
||||
= simple_format @project.description
|
||||
- unless @activities.blank?
|
||||
.ui-box
|
||||
%h5.cgray Recent Activity
|
||||
.content_list= render "feed"
|
||||
- unless @events.blank?
|
||||
%h5.cgray Recent Activity
|
||||
.content_list= render @events
|
||||
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue