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
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Boxiang Sun
gitlab-ce
Commits
d1bce8ea
Commit
d1bce8ea
authored
May 17, 2017
by
Douwe Maan
Committed by
Rémy Coutable
May 17, 2017
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Add auxiliary blob viewer for CHANGELOG
parent
17e79998
Changes
6
Hide whitespace changes
Inline
Side-by-side
Showing
6 changed files
with
52 additions
and
2 deletions
+52
-2
app/models/blob.rb
app/models/blob.rb
+2
-1
app/models/blob_viewer/base.rb
app/models/blob_viewer/base.rb
+2
-0
app/models/blob_viewer/changelog.rb
app/models/blob_viewer/changelog.rb
+16
-0
app/models/blob_viewer/license.rb
app/models/blob_viewer/license.rb
+1
-1
app/views/projects/blob/viewers/_changelog.html.haml
app/views/projects/blob/viewers/_changelog.html.haml
+4
-0
spec/models/blob_viewer/changelog_spec.rb
spec/models/blob_viewer/changelog_spec.rb
+27
-0
No files found.
app/models/blob.rb
View file @
d1bce8ea
...
@@ -41,7 +41,8 @@ class Blob < SimpleDelegator
...
@@ -41,7 +41,8 @@ class Blob < SimpleDelegator
BlobViewer
::
RouteMap
,
BlobViewer
::
RouteMap
,
BlobViewer
::
License
,
BlobViewer
::
License
,
BlobViewer
::
Contributing
BlobViewer
::
Contributing
,
BlobViewer
::
Changelog
].
freeze
].
freeze
attr_reader
:project
attr_reader
:project
...
...
app/models/blob_viewer/base.rb
View file @
d1bce8ea
...
@@ -11,6 +11,8 @@ module BlobViewer
...
@@ -11,6 +11,8 @@ module BlobViewer
attr_reader
:blob
attr_reader
:blob
attr_accessor
:override_max_size
attr_accessor
:override_max_size
delegate
:project
,
to: :blob
def
initialize
(
blob
)
def
initialize
(
blob
)
@blob
=
blob
@blob
=
blob
end
end
...
...
app/models/blob_viewer/changelog.rb
0 → 100644
View file @
d1bce8ea
module
BlobViewer
class
Changelog
<
Base
include
Auxiliary
include
Static
self
.
partial_name
=
'changelog'
self
.
file_types
=
%i(changelog)
self
.
binary
=
false
def
render_error
return
if
project
.
repository
.
tag_count
>
0
:no_tags
end
end
end
app/models/blob_viewer/license.rb
View file @
d1bce8ea
...
@@ -8,7 +8,7 @@ module BlobViewer
...
@@ -8,7 +8,7 @@ module BlobViewer
self
.
binary
=
false
self
.
binary
=
false
def
license
def
license
blob
.
project
.
repository
.
license
project
.
repository
.
license
end
end
def
render_error
def
render_error
...
...
app/views/projects/blob/viewers/_changelog.html.haml
0 → 100644
View file @
d1bce8ea
=
icon
(
'history fw'
)
=
succeed
'.'
do
To find the state of this project's repository at the time of any of these versions, check out
=
link_to
"the tags"
,
namespace_project_tags_path
(
viewer
.
project
.
namespace
,
viewer
.
project
)
spec/models/blob_viewer/changelog_spec.rb
0 → 100644
View file @
d1bce8ea
require
'spec_helper'
describe
BlobViewer
::
Changelog
,
model:
true
do
include
FakeBlobHelpers
let
(
:project
)
{
create
(
:project
,
:repository
)
}
let
(
:blob
)
{
fake_blob
(
path:
'CHANGELOG'
)
}
subject
{
described_class
.
new
(
blob
)
}
describe
'#render_error'
do
context
'when there are no tags'
do
before
do
allow
(
project
.
repository
).
to
receive
(
:tag_count
).
and_return
(
0
)
end
it
'returns :no_tags'
do
expect
(
subject
.
render_error
).
to
eq
(
:no_tags
)
end
end
context
'when there are tags'
do
it
'returns nil'
do
expect
(
subject
.
render_error
).
to
be_nil
end
end
end
end
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