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
Kazuhiko Shiozaki
gitlab-ce
Commits
76e1ca64
Commit
76e1ca64
authored
Oct 16, 2012
by
randx
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
tree.readme method added
parent
453b2ae6
Changes
2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
6 additions
and
2 deletions
+6
-2
app/decorators/tree_decorator.rb
app/decorators/tree_decorator.rb
+4
-0
app/views/tree/_tree.html.haml
app/views/tree/_tree.html.haml
+2
-2
No files found.
app/decorators/tree_decorator.rb
View file @
76e1ca64
...
@@ -28,4 +28,8 @@ class TreeDecorator < ApplicationDecorator
...
@@ -28,4 +28,8 @@ class TreeDecorator < ApplicationDecorator
file
=
File
.
join
(
path
,
".."
)
file
=
File
.
join
(
path
,
".."
)
h
.
project_tree_path
(
project
,
h
.
tree_join
(
ref
,
file
))
h
.
project_tree_path
(
project
,
h
.
tree_join
(
ref
,
file
))
end
end
def
readme
@readme
||=
contents
.
find
{
|
c
|
c
.
is_a?
(
Grit
::
Blob
)
and
c
.
name
=~
/^readme/i
}
end
end
end
app/views/tree/_tree.html.haml
View file @
76e1ca64
...
@@ -32,8 +32,8 @@
...
@@ -32,8 +32,8 @@
=
render_tree
(
tree
.
contents
)
=
render_tree
(
tree
.
contents
)
-
if
readme
=
tree
.
contents
.
find
{
|
c
|
c
.
is_a?
(
Grit
::
Blob
)
and
c
.
name
=~
/^readme/i
}
-
if
tree
.
readme
=
render
"tree/readme"
,
readme:
readme
=
render
"tree/readme"
,
readme:
tree
.
readme
-
unless
tree
.
is_blob?
-
unless
tree
.
is_blob?
:javascript
:javascript
...
...
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