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
Tatuya Kamada
gitlab-ce
Commits
4f3f3ed5
Commit
4f3f3ed5
authored
Jul 09, 2016
by
Michael Elliott
Browse files
Options
Browse Files
Download
Plain Diff
Merge branch 'master' of
https://gitlab.com/gitlab-org/gitlab-ce
parents
401e1091
92772f85
Changes
8
Hide whitespace changes
Inline
Side-by-side
Showing
8 changed files
with
64 additions
and
57 deletions
+64
-57
app/assets/stylesheets/framework/nav.scss
app/assets/stylesheets/framework/nav.scss
+2
-2
app/assets/stylesheets/framework/variables.scss
app/assets/stylesheets/framework/variables.scss
+5
-7
doc/administration/custom_hooks.md
doc/administration/custom_hooks.md
+2
-1
doc/api/merge_requests.md
doc/api/merge_requests.md
+9
-9
doc/api/projects.md
doc/api/projects.md
+42
-35
doc/ci/examples/php.md
doc/ci/examples/php.md
+1
-1
doc/development/ui_guide.md
doc/development/ui_guide.md
+2
-1
doc/update/8.9-to-8.10.md
doc/update/8.9-to-8.10.md
+1
-1
No files found.
app/assets/stylesheets/framework/nav.scss
View file @
4f3f3ed5
...
...
@@ -77,10 +77,10 @@
&
.sub-nav
{
text-align
:
center
;
background-color
:
$background-color
;
background-color
:
$
dark-
background-color
;
.container-fluid
{
background-color
:
$background-color
;
background-color
:
$
dark-
background-color
;
margin-bottom
:
0
;
}
...
...
app/assets/stylesheets/framework/variables.scss
View file @
4f3f3ed5
...
...
@@ -12,10 +12,11 @@ $sidebar-breakpoint: 1024px;
/*
* UI elements
*/
$border-color
:
#e5e5e5
;
$focus-border-color
:
#3aabf0
;
$table-border-color
:
#f0f0f0
;
$background-color
:
#fafafa
;
$border-color
:
#e5e5e5
;
$focus-border-color
:
#3aabf0
;
$table-border-color
:
#f0f0f0
;
$background-color
:
#fafafa
;
$dark-background-color
:
#f7f7f7
;
/*
* Text
...
...
@@ -153,9 +154,6 @@ $warning-message-bg: #fbf2d9;
$warning-message-color
:
#9e8e60
;
$warning-message-border
:
#f0e2bb
;
/* header */
$light-grey-header
:
#faf9f9
;
/* tanuki logo colors */
$tanuki-red
:
#e24329
;
$tanuki-orange
:
#fc6d26
;
...
...
doc/administration/custom_hooks.md
View file @
4f3f3ed5
...
...
@@ -48,7 +48,8 @@ as appropriate.
This feature was
[
introduced
][
5073
]
in GitLab 8.10.
If the commit is declined or an error occurs during the Git hook check,
the STDERR and/or SDOUT message of the hook will be present in GitLab's UI.
the STDERR or STDOUT message of the hook will be present in GitLab's UI.
STDERR takes precedence over STDOUT.
![
Custom message from custom Git hook
](
img/custom_hooks_error_msg.png
)
...
...
doc/api/merge_requests.md
View file @
4f3f3ed5
...
...
@@ -49,10 +49,10 @@ Parameters:
"state"
:
"active"
,
"created_at"
:
"2012-04-29T08:46:00Z"
},
"source_project_id"
:
"2"
,
"target_project_id"
:
"3"
,
"source_project_id"
:
2
,
"target_project_id"
:
3
,
"labels"
:
[
],
"description"
:
"fixed login page css paddings"
,
"description"
:
"fixed login page css paddings"
,
"work_in_progress"
:
false
,
"milestone"
:
{
"id"
:
5
,
...
...
@@ -113,10 +113,10 @@ Parameters:
"state"
:
"active"
,
"created_at"
:
"2012-04-29T08:46:00Z"
},
"source_project_id"
:
"2"
,
"target_project_id"
:
"3"
,
"source_project_id"
:
2
,
"target_project_id"
:
3
,
"labels"
:
[
],
"description"
:
"fixed login page css paddings"
,
"description"
:
"fixed login page css paddings"
,
"work_in_progress"
:
false
,
"milestone"
:
{
"id"
:
5
,
...
...
@@ -296,7 +296,7 @@ Parameters:
"source_project_id"
:
4
,
"target_project_id"
:
4
,
"labels"
:
[
],
"description"
:
"fixed login page css paddings"
,
"description"
:
"fixed login page css paddings"
,
"work_in_progress"
:
false
,
"milestone"
:
{
"id"
:
5
,
...
...
@@ -465,7 +465,7 @@ Parameters:
"source_project_id"
:
4
,
"target_project_id"
:
4
,
"labels"
:
[
],
"description"
:
"fixed login page css paddings"
,
"description"
:
"fixed login page css paddings"
,
"work_in_progress"
:
false
,
"milestone"
:
{
"id"
:
5
,
...
...
@@ -531,7 +531,7 @@ Parameters:
"source_project_id"
:
4
,
"target_project_id"
:
4
,
"labels"
:
[
],
"description"
:
"fixed login page css paddings"
,
"description"
:
"fixed login page css paddings"
,
"work_in_progress"
:
false
,
"milestone"
:
{
"id"
:
5
,
...
...
doc/api/projects.md
View file @
4f3f3ed5
...
...
@@ -52,7 +52,7 @@ Parameters:
"owner"
:
{
"id"
:
3
,
"name"
:
"Diaspora"
,
"created_at"
:
"2013-09-30T13:
46:
02Z"
"created_at"
:
"2013-09-30T13:
46:
02Z"
},
"name"
:
"Diaspora Client"
,
"name_with_namespace"
:
"Diaspora / Diaspora Client"
,
...
...
@@ -64,17 +64,18 @@ Parameters:
"builds_enabled"
:
true
,
"wiki_enabled"
:
true
,
"snippets_enabled"
:
false
,
"created_at"
:
"2013-09-30T13: 46: 02Z"
,
"last_activity_at"
:
"2013-09-30T13: 46: 02Z"
,
"container_registry_enabled"
:
false
,
"created_at"
:
"2013-09-30T13:46:02Z"
,
"last_activity_at"
:
"2013-09-30T13:46:02Z"
,
"creator_id"
:
3
,
"namespace"
:
{
"created_at"
:
"2013-09-30T13:
46:
02Z"
,
"created_at"
:
"2013-09-30T13:
46:
02Z"
,
"description"
:
""
,
"id"
:
3
,
"name"
:
"Diaspora"
,
"owner_id"
:
1
,
"path"
:
"diaspora"
,
"updated_at"
:
"2013-09-30T13:
46:
02Z"
"updated_at"
:
"2013-09-30T13:
46:
02Z"
},
"archived"
:
false
,
"avatar_url"
:
"http://example.com/uploads/project/avatar/4/uploads/avatar.png"
,
...
...
@@ -113,6 +114,7 @@ Parameters:
"builds_enabled"
:
true
,
"wiki_enabled"
:
true
,
"snippets_enabled"
:
false
,
"container_registry_enabled"
:
false
,
"created_at"
:
"2013-09-30T13:46:02Z"
,
"last_activity_at"
:
"2013-09-30T13:46:02Z"
,
"creator_id"
:
3
,
...
...
@@ -225,7 +227,7 @@ Parameters:
"owner"
:
{
"id"
:
3
,
"name"
:
"Diaspora"
,
"created_at"
:
"2013-09-30T13:
46:
02Z"
"created_at"
:
"2013-09-30T13:
46:
02Z"
},
"name"
:
"Diaspora Project Site"
,
"name_with_namespace"
:
"Diaspora / Diaspora Project Site"
,
...
...
@@ -237,17 +239,18 @@ Parameters:
"builds_enabled"
:
true
,
"wiki_enabled"
:
true
,
"snippets_enabled"
:
false
,
"created_at"
:
"2013-09-30T13: 46: 02Z"
,
"last_activity_at"
:
"2013-09-30T13: 46: 02Z"
,
"container_registry_enabled"
:
false
,
"created_at"
:
"2013-09-30T13:46:02Z"
,
"last_activity_at"
:
"2013-09-30T13:46:02Z"
,
"creator_id"
:
3
,
"namespace"
:
{
"created_at"
:
"2013-09-30T13:
46:
02Z"
,
"created_at"
:
"2013-09-30T13:
46:
02Z"
,
"description"
:
""
,
"id"
:
3
,
"name"
:
"Diaspora"
,
"owner_id"
:
1
,
"path"
:
"diaspora"
,
"updated_at"
:
"2013-09-30T13:
46:
02Z"
"updated_at"
:
"2013-09-30T13:
46:
02Z"
},
"permissions"
:
{
"project_access"
:
{
...
...
@@ -555,17 +558,18 @@ Example response:
"builds_enabled"
:
true
,
"wiki_enabled"
:
true
,
"snippets_enabled"
:
false
,
"created_at"
:
"2013-09-30T13: 46: 02Z"
,
"last_activity_at"
:
"2013-09-30T13: 46: 02Z"
,
"container_registry_enabled"
:
false
,
"created_at"
:
"2013-09-30T13:46:02Z"
,
"last_activity_at"
:
"2013-09-30T13:46:02Z"
,
"creator_id"
:
3
,
"namespace"
:
{
"created_at"
:
"2013-09-30T13:
46:
02Z"
,
"created_at"
:
"2013-09-30T13:
46:
02Z"
,
"description"
:
""
,
"id"
:
3
,
"name"
:
"Diaspora"
,
"owner_id"
:
1
,
"path"
:
"diaspora"
,
"updated_at"
:
"2013-09-30T13:
46:
02Z"
"updated_at"
:
"2013-09-30T13:
46:
02Z"
},
"archived"
:
true
,
"avatar_url"
:
"http://example.com/uploads/project/avatar/3/uploads/avatar.png"
,
...
...
@@ -620,17 +624,18 @@ Example response:
"builds_enabled"
:
true
,
"wiki_enabled"
:
true
,
"snippets_enabled"
:
false
,
"created_at"
:
"2013-09-30T13: 46: 02Z"
,
"last_activity_at"
:
"2013-09-30T13: 46: 02Z"
,
"container_registry_enabled"
:
false
,
"created_at"
:
"2013-09-30T13:46:02Z"
,
"last_activity_at"
:
"2013-09-30T13:46:02Z"
,
"creator_id"
:
3
,
"namespace"
:
{
"created_at"
:
"2013-09-30T13:
46:
02Z"
,
"created_at"
:
"2013-09-30T13:
46:
02Z"
,
"description"
:
""
,
"id"
:
3
,
"name"
:
"Diaspora"
,
"owner_id"
:
1
,
"path"
:
"diaspora"
,
"updated_at"
:
"2013-09-30T13:
46:
02Z"
"updated_at"
:
"2013-09-30T13:
46:
02Z"
},
"archived"
:
true
,
"avatar_url"
:
"http://example.com/uploads/project/avatar/3/uploads/avatar.png"
,
...
...
@@ -682,7 +687,7 @@ Example response:
"owner"
:
{
"id"
:
3
,
"name"
:
"Diaspora"
,
"created_at"
:
"2013-09-30T13:
46:
02Z"
"created_at"
:
"2013-09-30T13:
46:
02Z"
},
"name"
:
"Diaspora Project Site"
,
"name_with_namespace"
:
"Diaspora / Diaspora Project Site"
,
...
...
@@ -694,17 +699,18 @@ Example response:
"builds_enabled"
:
true
,
"wiki_enabled"
:
true
,
"snippets_enabled"
:
false
,
"created_at"
:
"2013-09-30T13: 46: 02Z"
,
"last_activity_at"
:
"2013-09-30T13: 46: 02Z"
,
"container_registry_enabled"
:
false
,
"created_at"
:
"2013-09-30T13:46:02Z"
,
"last_activity_at"
:
"2013-09-30T13:46:02Z"
,
"creator_id"
:
3
,
"namespace"
:
{
"created_at"
:
"2013-09-30T13:
46:
02Z"
,
"created_at"
:
"2013-09-30T13:
46:
02Z"
,
"description"
:
""
,
"id"
:
3
,
"name"
:
"Diaspora"
,
"owner_id"
:
1
,
"path"
:
"diaspora"
,
"updated_at"
:
"2013-09-30T13:
46:
02Z"
"updated_at"
:
"2013-09-30T13:
46:
02Z"
},
"permissions"
:
{
"project_access"
:
{
...
...
@@ -767,7 +773,7 @@ Example response:
"owner"
:
{
"id"
:
3
,
"name"
:
"Diaspora"
,
"created_at"
:
"2013-09-30T13:
46:
02Z"
"created_at"
:
"2013-09-30T13:
46:
02Z"
},
"name"
:
"Diaspora Project Site"
,
"name_with_namespace"
:
"Diaspora / Diaspora Project Site"
,
...
...
@@ -779,17 +785,18 @@ Example response:
"builds_enabled"
:
true
,
"wiki_enabled"
:
true
,
"snippets_enabled"
:
false
,
"created_at"
:
"2013-09-30T13: 46: 02Z"
,
"last_activity_at"
:
"2013-09-30T13: 46: 02Z"
,
"container_registry_enabled"
:
false
,
"created_at"
:
"2013-09-30T13:46:02Z"
,
"last_activity_at"
:
"2013-09-30T13:46:02Z"
,
"creator_id"
:
3
,
"namespace"
:
{
"created_at"
:
"2013-09-30T13:
46:
02Z"
,
"created_at"
:
"2013-09-30T13:
46:
02Z"
,
"description"
:
""
,
"id"
:
3
,
"name"
:
"Diaspora"
,
"owner_id"
:
1
,
"path"
:
"diaspora"
,
"updated_at"
:
"2013-09-30T13:
46:
02Z"
"updated_at"
:
"2013-09-30T13:
46:
02Z"
},
"permissions"
:
{
"project_access"
:
{
...
...
@@ -991,11 +998,11 @@ Parameters:
"id"
:
1
,
"url"
:
"http://example.com/hook"
,
"project_id"
:
3
,
"push_events"
:
"true"
,
"issues_events"
:
"true"
,
"merge_requests_events"
:
"true"
,
"note_events"
:
"true"
,
"enable_ssl_verification"
:
"true"
,
"push_events"
:
true
,
"issues_events"
:
true
,
"merge_requests_events"
:
true
,
"note_events"
:
true
,
"enable_ssl_verification"
:
true
,
"created_at"
:
"2012-10-12T17:04:47Z"
}
```
...
...
@@ -1115,8 +1122,8 @@ Parameters:
"name"
:
"Jeremy Ashkenas"
,
"email"
:
"jashkenas@example.com"
},
"authored_date"
:
"2013-09-07T12:
58: 21+00:
00"
,
"committed_date"
:
"2013-09-07T12:
58: 21+00:
00"
"authored_date"
:
"2013-09-07T12:
58:21+00:
00"
,
"committed_date"
:
"2013-09-07T12:
58:21+00:
00"
},
"protected"
:
false
}
...
...
doc/ci/examples/php.md
View file @
4f3f3ed5
...
...
@@ -49,7 +49,7 @@ apt-get update -yqq
apt-get
install
git
-yqq
# Install phpunit, the tool that we will use for testing
curl
-o
/usr/local/bin/phpunit https://phar.phpunit.de/phpunit.phar
curl
-
L
o
/usr/local/bin/phpunit https://phar.phpunit.de/phpunit.phar
chmod
+x /usr/local/bin/phpunit
# Install mysql driver
...
...
doc/development/ui_guide.md
View file @
4f3f3ed5
...
...
@@ -52,5 +52,6 @@ information from database or file system
*
Use red button for destructive actions (not revertable). For example removing issue.
*
Use green or blue button for primary action. Primary button should be only one.
Do not use both green and blue button in one form.
*
For all other cases use default white button
*
For all other cases use default white button.
*
Text button should have only first word capitalized. So should be "Create issue" instead of "Create Issue"
doc/update/8.9-to-8.10.md
View file @
4f3f3ed5
...
...
@@ -46,7 +46,7 @@ sudo -u git -H git checkout 8-10-stable-ee
```
bash
cd
/home/git/gitlab-shell
sudo
-u
git
-H
git fetch
--all
--tags
sudo
-u
git
-H
git checkout v3.
1
.0
sudo
-u
git
-H
git checkout v3.
2
.0
```
### 5. Update gitlab-workhorse
...
...
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