Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
heptapod
heptapod
Commits
4ec9ef31b62b
Commit
335f9d64
authored
Jun 28, 2012
by
randx
Browse files
New Feature: Diff patch file export for commit
parent
adb85513e41a
Changes
4
Hide whitespace changes
Inline
Side-by-side
app/controllers/commits_controller.rb
View file @
4ec9ef31
...
...
@@ -64,4 +64,15 @@ def compare
@commit
=
Commit
.
new
(
older
)
end
end
def
patch
@commit
=
project
.
commit
(
params
[
:id
])
send_data
(
@commit
.
to_patch
,
:type
=>
"text/plain"
,
:disposition
=>
'attachment'
,
:filename
=>
(
@commit
.
id
.
to_s
+
".patch"
)
)
end
end
app/models/commit.rb
View file @
4ec9ef31
...
...
@@ -19,6 +19,7 @@ class Commit
:diffs
,
:tree
,
:id
,
:to_patch
,
:to
=>
:commit
...
...
app/views/commits/_commit_box.html.haml
View file @
4ec9ef31
.commit-box
{
class:
@commit
.
parents
.
count
>
1
?
"merge-commit"
:
""
}
.commit-head
=
link_to
"Browse Code »"
,
tree_project_ref_path
(
@project
,
@commit
.
id
),
:class
=>
"browse-button"
.right
=
link_to
tree_project_ref_path
(
@project
,
@commit
.
id
),
:class
=>
"browse-button primary"
do
%strong
Browse Code »
-
if
@notes_count
>
0
%span
.btn.disabled
%i
.icon-comment
=
@notes_count
=
link_to
patch_project_commit_path
(
@project
,
@commit
.
id
),
:class
=>
"btn small"
do
%i
.icon-download-alt
Get Patch
%h3
.commit-title
=
commit_msg_with_link_to_issues
(
@project
,
@commit
.
title
)
-
if
@commit
.
description
.
present?
...
...
config/routes.rb
View file @
4ec9ef31
...
...
@@ -154,6 +154,10 @@
collection
do
get
:compare
end
member
do
get
:patch
end
end
resources
:team_members
resources
:milestones
...
...
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