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
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Kirill Smelkov
gitlab-ce
Commits
14d0ef8f
Commit
14d0ef8f
authored
Jan 04, 2013
by
Dmitriy Zaporozhets
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Show images preview in notes. Show line additions/deletions for commit
parent
ef5b36ea
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
15 additions
and
43 deletions
+15
-43
app/models/commit.rb
app/models/commit.rb
+1
-1
app/uploaders/attachment_uploader.rb
app/uploaders/attachment_uploader.rb
+3
-39
app/views/commit/show.html.haml
app/views/commit/show.html.haml
+9
-3
app/views/notes/_note.html.haml
app/views/notes/_note.html.haml
+2
-0
No files found.
app/models/commit.rb
View file @
14d0ef8f
...
...
@@ -11,7 +11,7 @@ class Commit
attr_accessor
:commit
,
:head
,
:refs
delegate
:message
,
:authored_date
,
:committed_date
,
:parents
,
:sha
,
:date
,
:committer
,
:author
,
:diffs
,
:tree
,
:id
,
:date
,
:committer
,
:author
,
:diffs
,
:tree
,
:id
,
:stats
,
:to_patch
,
to: :commit
class
<<
self
...
...
app/uploaders/attachment_uploader.rb
View file @
14d0ef8f
# encoding: utf-8
class
AttachmentUploader
<
CarrierWave
::
Uploader
::
Base
# Include RMagick or ImageScience support:
# include CarrierWave::RMagick
# include CarrierWave::MiniMagick
# include CarrierWave::ImageScience
# Choose what kind of storage to use for this uploader:
storage
:file
# storage :fog
# Override the directory where uploaded files will be stored.
# This is a sensible default for uploaders that are meant to be mounted:
def
store_dir
"uploads/
#{
model
.
class
.
to_s
.
underscore
}
/
#{
mounted_as
}
/
#{
model
.
id
}
"
end
# Provide a default URL as a default if there hasn't been a file uploaded:
# def default_url
# "/images/fallback/" + [version_name, "default.png"].compact.join('_')
# end
# Process files as they are uploaded:
# process scale: [200, 300]
#
# def scale(width, height)
# # do something
# end
# Create different versions of your uploaded files:
# version :thumb do
# process scale: [50, 50]
# end
# Add a white list of extensions which are allowed to be uploaded.
# For images you might use something like this:
# def extension_white_list
# %w(jpg jpeg gif png)
# end
# Override the filename of the uploaded files:
# Avoid using model.id or version_name here, see uploader/store.rb for details.
# def filename
# "something.jpg" if original_filename
# end
def
image?
%w(png jpg jpeg)
.
include?
(
file
.
extension
)
end
end
app/views/commit/show.html.haml
View file @
14d0ef8f
=
render
"commits/commit_box"
%p
.right
This commit has
%span
.cgreen
#{
@commit
.
stats
.
additions
}
additions
and
%span
.cred
#{
@commit
.
stats
.
deletions
}
deletions
=
render
"commits/diffs"
,
diffs:
@commit
.
diffs
=
render
"notes/notes_with_form"
,
tid:
@commit
.
id
,
tt:
"commit"
=
render
"notes/per_line_form"
:javascript
$
(
function
(){
PerLineNotes
.
init
();
...
...
@@ -19,7 +25,7 @@
,
h
=
event
.
currentTarget
.
naturalHeight
;
$
(
'
.image.diff_added .image-info
'
,
this
).
append
(
'
| <b>W:</b>
'
+
w
+
'
px | <b>H:</b>
'
+
h
+
'
px
'
);
},
this
));
});
});
app/views/notes/_note.html.haml
View file @
14d0ef8f
...
...
@@ -34,6 +34,8 @@
=
preserve
do
=
markdown
(
note
.
note
)
-
if
note
.
attachment
.
url
-
if
note
.
attachment
.
image?
=
image_tag
note
.
attachment
.
url
,
class:
'thumbnail span4'
.right
%div
.file
=
link_to
note
.
attachment_identifier
,
note
.
attachment
.
url
,
target:
"_blank"
...
...
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