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
ed713c81
Commit
ed713c81
authored
8 years ago
by
Takuya Noguchi
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Clean up some unused templates imported from GitLab CI
parent
6acdf1fc
Changes
6
Hide whitespace changes
Inline
Side-by-side
Showing
6 changed files
with
0 additions
and
65 deletions
+0
-65
app/views/ci/errors/show.haml
app/views/ci/errors/show.haml
+0
-2
app/views/ci/shared/_guide.html.haml
app/views/ci/shared/_guide.html.haml
+0
-13
app/views/ci/shared/_no_runners.html.haml
app/views/ci/shared/_no_runners.html.haml
+0
-7
app/views/layouts/ci/_info.html.haml
app/views/layouts/ci/_info.html.haml
+0
-2
app/views/layouts/ci/_page.html.haml
app/views/layouts/ci/_page.html.haml
+0
-22
app/views/layouts/ci/notify.html.haml
app/views/layouts/ci/notify.html.haml
+0
-19
No files found.
app/views/ci/errors/show.haml
deleted
100644 → 0
View file @
6acdf1fc
%h3
.error
Error
=
@error
This diff is collapsed.
Click to expand it.
app/views/ci/shared/_guide.html.haml
deleted
100644 → 0
View file @
6acdf1fc
.bs-callout.help-callout
%h4
How to setup CI for this project
%ol
%li
Add at least one runner to the project.
Go to
#{
link_to
'Runners page'
,
runners_path
(
@project
),
target: :blank
}
for instructions.
%li
Put the .gitlab-ci.yml in the root of your repository. Examples can be found in
#{
link_to
"Configuring project (.gitlab-ci.yml)"
,
"http://doc.gitlab.com/ci/yaml/README.html"
,
target: :blank
}
.
You can also test your .gitlab-ci.yml in the
#{
link_to
"Lint"
,
ci_lint_path
}
%li
Return to this page and refresh it, it should show a new build.
This diff is collapsed.
Click to expand it.
app/views/ci/shared/_no_runners.html.haml
deleted
100644 → 0
View file @
6acdf1fc
.alert.alert-danger
%p
Now you need Runners to process your builds.
%span
Checkout the
#{
link_to
'GitLab Runner section'
,
'https://about.gitlab.com/gitlab-ci/#gitlab-runner'
,
target:
'_blank'
}
to install it
This diff is collapsed.
Click to expand it.
app/views/layouts/ci/_info.html.haml
deleted
100644 → 0
View file @
6acdf1fc
-
if
current_user
&&
current_user
.
is_admin?
&&
Ci
::
Runner
.
count
.
zero?
=
render
'ci/shared/no_runners'
This diff is collapsed.
Click to expand it.
app/views/layouts/ci/_page.html.haml
deleted
100644 → 0
View file @
6acdf1fc
.page-with-sidebar
{
class:
page_sidebar_class
}
=
render
"layouts/broadcast"
.sidebar-wrapper.nicescroll
{
class:
nav_sidebar_class
}
-
if
defined?
(
sidebar
)
&&
sidebar
=
render
"layouts/ci/
#{
sidebar
}
"
-
elsif
current_user
=
render
'layouts/nav/dashboard'
.collapse-nav
=
render
partial:
'layouts/collapse_button'
-
if
current_user
=
link_to
current_user
,
class:
'sidebar-user'
,
title:
"Profile"
do
=
image_tag
avatar_icon
(
current_user
,
60
),
alt:
'Profile'
,
class:
'avatar avatar s36'
.username
=
current_user
.
username
.content-wrapper
=
render
"layouts/flash"
=
render
'layouts/ci/info'
%div
{
class:
container_class
}
.content
.clearfix
=
yield
This diff is collapsed.
Click to expand it.
app/views/layouts/ci/notify.html.haml
deleted
100644 → 0
View file @
6acdf1fc
%html
{
lang:
"en"
}
%head
%meta
{
content:
"text/html; charset=utf-8"
,
"http-equiv"
=>
"Content-Type"
}
%title
GitLab CI
%body
=
yield
:header
%table
{
align:
"left"
,
border:
"0"
,
cellpadding:
"0"
,
cellspacing:
"0"
,
style:
"padding: 10px 0;"
,
width:
"100%"
}
%tr
%td
{
align:
"left"
,
style:
"margin: 0; padding: 10px;"
}
=
yield
%br
%tr
%td
{
align:
"left"
,
style:
"margin: 0; padding: 10px;"
}
%p
{
style:
"font-size:small;color:#777"
}
-
if
@project
You're receiving this notification because you are the one who triggered a build on the
#{
@project
.
name
}
project.
This diff is collapsed.
Click to expand it.
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