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
86a7864d
Commit
86a7864d
authored
Sep 25, 2012
by
Robert Speicher
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fix various links
parent
b462a133
Changes
9
Hide whitespace changes
Inline
Side-by-side
Showing
9 changed files
with
9 additions
and
9 deletions
+9
-9
app/views/blame/show.html.haml
app/views/blame/show.html.haml
+1
-1
app/views/events/_event_last_push.html.haml
app/views/events/_event_last_push.html.haml
+1
-1
app/views/events/_event_push.html.haml
app/views/events/_event_push.html.haml
+1
-1
app/views/layouts/_head.html.haml
app/views/layouts/_head.html.haml
+1
-1
app/views/protected_branches/index.html.haml
app/views/protected_branches/index.html.haml
+1
-1
app/views/repositories/_branch.html.haml
app/views/repositories/_branch.html.haml
+1
-1
app/views/repositories/_feed.html.haml
app/views/repositories/_feed.html.haml
+1
-1
app/views/repositories/tags.html.haml
app/views/repositories/tags.html.haml
+1
-1
app/views/tree/_tree_file.html.haml
app/views/tree/_tree_file.html.haml
+1
-1
No files found.
app/views/blame/show.html.haml
View file @
86a7864d
...
...
@@ -19,7 +19,7 @@
%small
blame
%span
.options
=
link_to
"raw"
,
project_blob_path
(
@project
,
@id
),
class:
"btn very_small"
,
target:
"_blank"
=
link_to
"history"
,
project_commits_path
(
@project
,
path:
params
[
:path
],
ref:
@ref
),
class:
"btn very_small"
=
link_to
"history"
,
project_commits_path
(
@project
,
@id
),
class:
"btn very_small"
=
link_to
"source"
,
project_tree_path
(
@project
,
@id
),
class:
"btn very_small"
.file_content.blame
%table
...
...
app/views/events/_event_last_push.html.haml
View file @
86a7864d
...
...
@@ -4,7 +4,7 @@
=
image_tag
gravatar_icon
(
event
.
author_email
),
class:
"avatar"
%span
You pushed to
=
event
.
ref_type
=
link_to
project_commits_path
(
event
.
project
,
ref:
event
.
ref_name
)
do
=
link_to
project_commits_path
(
event
.
project
,
event
.
ref_name
)
do
%strong
=
truncate
(
event
.
ref_name
,
length:
28
)
at
%strong
=
link_to
event
.
project
.
name
,
event
.
project
...
...
app/views/events/_event_push.html.haml
View file @
86a7864d
...
...
@@ -5,7 +5,7 @@
.event-title
%strong
.author_name
#{
event
.
author_name
}
%span
.event_label.pushed
#{
event
.
push_action_name
}
#{
event
.
ref_type
}
=
link_to
project_commits_path
(
event
.
project
,
ref:
event
.
ref_name
)
do
=
link_to
project_commits_path
(
event
.
project
,
event
.
ref_name
)
do
%strong
=
event
.
ref_name
at
%strong
=
link_to
event
.
project
.
name
,
event
.
project
...
...
app/views/layouts/_head.html.haml
View file @
86a7864d
...
...
@@ -10,7 +10,7 @@
-
if
controller_name
==
'projects'
&&
action_name
==
'index'
=
auto_discovery_link_tag
:atom
,
projects_url
(
:atom
,
private_token:
current_user
.
private_token
),
title:
"Dashboard feed"
-
if
@project
&&
!
@project
.
new_record?
-
if
current_controller?
(
:tree
,
:commit
,
:commit
s
)
-
if
current_controller?
(
:tree
,
:commits
)
=
auto_discovery_link_tag
(
:atom
,
project_commits_url
(
@project
,
@ref
,
format: :atom
,
private_token:
current_user
.
private_token
),
title:
"Recent commits to
#{
@project
.
name
}
:
#{
@ref
}
"
)
-
if
current_controller?
(
:issues
)
=
auto_discovery_link_tag
(
:atom
,
project_issues_url
(
@project
,
:atom
,
private_token:
current_user
.
private_token
),
title:
"
#{
@project
.
name
}
issues"
)
...
...
app/views/protected_branches/index.html.haml
View file @
86a7864d
...
...
@@ -34,7 +34,7 @@
-
@branches
.
each
do
|
branch
|
%tr
%td
=
link_to
project_commits_path
(
@project
,
ref:
branch
.
name
)
do
=
link_to
project_commits_path
(
@project
,
branch
.
name
)
do
%strong
=
branch
.
name
-
if
branch
.
name
==
@project
.
root_ref
%span
.label
default
...
...
app/views/repositories/_branch.html.haml
View file @
86a7864d
...
...
@@ -2,7 +2,7 @@
-
commit
=
CommitDecorator
.
decorate
(
commit
)
%tr
%td
=
link_to
project_commits_path
(
@project
,
ref:
branch
.
name
)
do
=
link_to
project_commits_path
(
@project
,
branch
.
name
)
do
%strong
=
truncate
(
branch
.
name
,
length:
60
)
-
if
branch
.
name
==
@project
.
root_ref
%span
.label
default
...
...
app/views/repositories/_feed.html.haml
View file @
86a7864d
...
...
@@ -2,7 +2,7 @@
-
commit
=
CommitDecorator
.
new
(
commit
)
%tr
%td
=
link_to
project_commits_path
(
@project
,
ref:
commit
.
head
.
name
)
do
=
link_to
project_commits_path
(
@project
,
commit
.
head
.
name
)
do
%strong
=
commit
.
head
.
name
-
if
commit
.
head
.
name
==
@project
.
root_ref
...
...
app/views/repositories/tags.html.haml
View file @
86a7864d
...
...
@@ -12,7 +12,7 @@
-
commit
=
CommitDecorator
.
decorate
(
commit
)
%tr
%td
%strong
=
link_to
tag
.
name
,
project_commits_path
(
@project
,
ref:
tag
.
name
),
class:
""
%strong
=
link_to
tag
.
name
,
project_commits_path
(
@project
,
tag
.
name
),
class:
""
%td
=
link_to
project_commit_path
(
@project
,
commit
.
id
)
do
%code
=
commit
.
short_id
...
...
app/views/tree/_tree_file.html.haml
View file @
86a7864d
...
...
@@ -6,7 +6,7 @@
%small
#{
file
.
mode
}
%span
.options
=
link_to
"raw"
,
project_blob_path
(
@project
,
@id
),
class:
"btn very_small"
,
target:
"_blank"
=
link_to
"history"
,
project_commits_path
(
@project
,
path:
@path
,
ref:
@ref
),
class:
"btn very_small"
=
link_to
"history"
,
project_commits_path
(
@project
,
@id
),
class:
"btn very_small"
=
link_to
"blame"
,
project_blame_path
(
@project
,
@id
),
class:
"btn very_small"
-
if
file
.
text?
-
if
gitlab_markdown?
(
name
)
...
...
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