Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
G
gitlab-ce
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
1
Merge Requests
1
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
nexedi
gitlab-ce
Commits
325569ac
Commit
325569ac
authored
Oct 08, 2012
by
Dmitriy Zaporozhets
Browse files
Options
Browse Files
Download
Plain Diff
Merge branch 'alexleutgoeb-feature/dashboardfeed'
parents
fd232084
bcdb1687
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
39 additions
and
5 deletions
+39
-5
app/decorators/event_decorator.rb
app/decorators/event_decorator.rb
+21
-4
app/views/dashboard/index.atom.builder
app/views/dashboard/index.atom.builder
+2
-1
app/views/events/_event_issue.atom.haml
app/views/events/_event_issue.atom.haml
+2
-0
app/views/events/_event_push.atom.haml
app/views/events/_event_push.atom.haml
+14
-0
No files found.
app/decorators/event_decorator.rb
View file @
325569ac
...
...
@@ -3,11 +3,11 @@ class EventDecorator < ApplicationDecorator
def
feed_title
if
self
.
issue?
"
#{
self
.
author_name
}
#{
self
.
action_name
}
issue #
#{
self
.
target_id
}
:
"
+
self
.
issue_title
"
#{
self
.
author_name
}
#{
self
.
action_name
}
issue #
#{
self
.
target_id
}
:
#{
self
.
issue_title
}
at
#{
self
.
project
.
name
}
"
elsif
self
.
merge_request?
"
#{
self
.
author_name
}
#{
self
.
action_name
}
MR #
#{
self
.
target_id
}
:
"
+
self
.
merge_request_title
"
#{
self
.
author_name
}
#{
self
.
action_name
}
MR #
#{
self
.
target_id
}
:
#{
self
.
merge_request_title
}
at
#{
self
.
project
.
name
}
"
elsif
self
.
push?
"
#{
self
.
author_name
}
#{
self
.
push_action_name
}
#{
self
.
ref_type
}
"
+
self
.
ref_name
"
#{
self
.
author_name
}
#{
self
.
push_action_name
}
#{
self
.
ref_type
}
#{
self
.
ref_name
}
at
#{
self
.
project
.
name
}
"
elsif
self
.
membership_changed?
"
#{
self
.
author_name
}
#{
self
.
action_name
}
#{
self
.
project
.
name
}
"
else
...
...
@@ -20,8 +20,25 @@ class EventDecorator < ApplicationDecorator
h
.
project_issue_url
(
self
.
project
,
self
.
issue
)
elsif
self
.
merge_request?
h
.
project_merge_request_url
(
self
.
project
,
self
.
merge_request
)
elsif
self
.
push?
if
self
.
push_with_commits?
if
self
.
commits_count
>
1
h
.
project_compare_url
(
self
.
project
,
:from
=>
self
.
parent_commit
.
id
,
:to
=>
self
.
last_commit
.
id
)
else
h
.
project_commit_url
(
self
.
project
,
:id
=>
self
.
last_commit
.
id
)
end
else
h
.
project_commits_url
(
self
.
project
,
self
.
ref_name
)
end
end
end
def
feed_summary
if
self
.
issue?
h
.
render
"events/event_issue"
,
issue:
self
.
issue
elsif
self
.
push?
h
.
project_commits_url
(
self
.
project
,
self
.
ref_name
)
h
.
render
"events/event_push"
,
event:
self
end
end
end
app/views/dashboard/index.atom.builder
View file @
325569ac
...
...
@@ -12,6 +12,7 @@ xml.feed "xmlns" => "http://www.w3.org/2005/Atom", "xmlns:media" => "http://sear
xml.entry do
event_link = event.feed_url
event_title = event.feed_title
event_summary = event.feed_summary
xml.id "tag:#{request.host},#{event.created_at.strftime("%Y-%m-%d")}:#{event.id}"
xml.link :href => event_link
...
...
@@ -22,7 +23,7 @@ xml.feed "xmlns" => "http://www.w3.org/2005/Atom", "xmlns:media" => "http://sear
xml.name event.author_name
xml.email event.author_email
end
xml.summary
event_title
xml.summary
(:type => "xhtml") { |x| x << event_summary unless event_summary.nil? }
end
end
end
...
...
app/views/events/_event_issue.atom.haml
0 → 100644
View file @
325569ac
%div
{
:xmlns
=>
"http://www.w3.org/1999/xhtml"
}
%p
=
simple_format
issue
.
description
app/views/events/_event_push.atom.haml
0 → 100644
View file @
325569ac
%div
{
:xmlns
=>
"http://www.w3.org/1999/xhtml"
}
-
event
.
commits
.
first
(
15
).
each
do
|
commit
|
%p
%strong
=
commit
.
author_name
=
link_to
"(#
#{
commit
.
short_id
}
)"
,
project_commit_path
(
event
.
project
,
:id
=>
commit
.
id
)
%i
at
=
commit
.
committed_date
.
strftime
(
"%Y-%m-%d %H:%M:%S"
)
%blockquote
=
simple_format
(
escape_once
(
commit
.
safe_message
))
-
if
event
.
commits_count
>
15
%p
%i
\... and
=
pluralize
(
event
.
commits_count
-
15
,
"more commit"
)
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment