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
5cacc065
Commit
5cacc065
authored
Jun 12, 2015
by
Dmitriy Zaporozhets
Browse files
Options
Browse Files
Download
Plain Diff
Merge branch 'master' of gitlab.com:gitlab-org/gitlab-ce
parents
c69ca991
b63ef1a0
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
11 additions
and
5 deletions
+11
-5
app/assets/javascripts/calendar.js.coffee
app/assets/javascripts/calendar.js.coffee
+1
-0
app/assets/javascripts/stat_graph_contributors_graph.js.coffee
...ssets/javascripts/stat_graph_contributors_graph.js.coffee
+2
-2
app/views/projects/_md_preview.html.haml
app/views/projects/_md_preview.html.haml
+2
-2
docker/README.md
docker/README.md
+6
-1
No files found.
app/assets/javascripts/calendar.js.coffee
View file @
5cacc065
...
...
@@ -25,6 +25,7 @@ class @Calendar
30
]
legendCellPadding
:
3
cellSize
:
$
(
'.user-calendar'
).
width
()
/
80
onClick
:
(
date
,
count
)
->
formated_date
=
date
.
getFullYear
()
+
"-"
+
(
date
.
getMonth
()
+
1
)
+
"-"
+
date
.
getDate
()
$
.
ajax
...
...
app/assets/javascripts/stat_graph_contributors_graph.js.coffee
View file @
5cacc065
...
...
@@ -50,7 +50,7 @@ class @ContributorsGraph
class
@
ContributorsMasterGraph
extends
ContributorsGraph
constructor
:
(
@
data
)
->
@
width
=
$
(
'.cont
ainer'
).
width
()
-
345
@
width
=
$
(
'.cont
ent'
).
width
()
-
70
@
height
=
200
@
x
=
null
@
y
=
null
...
...
@@ -123,7 +123,7 @@ class @ContributorsMasterGraph extends ContributorsGraph
class
@
ContributorsAuthorGraph
extends
ContributorsGraph
constructor
:
(
@
data
)
->
@
width
=
$
(
'.cont
ainer'
).
width
()
/
2
-
225
@
width
=
$
(
'.cont
ent'
).
width
()
/
2
-
100
@
height
=
200
@
x
=
null
@
y
=
null
...
...
app/views/projects/_md_preview.html.haml
View file @
5cacc065
...
...
@@ -2,10 +2,10 @@
.md-header.clearfix
%ul
.nav.nav-tabs
%li
.active
=
link_to
'#md-write-holder'
,
class:
'js-md-write-button'
do
=
link_to
'#md-write-holder'
,
class:
'js-md-write-button'
,
tabindex:
'-1'
do
Write
%li
=
link_to
'#md-preview-holder'
,
class:
'js-md-preview-button'
do
=
link_to
'#md-preview-holder'
,
class:
'js-md-preview-button'
,
tabindex:
'-1'
do
Preview
-
if
defined?
(
referenced_users
)
&&
referenced_users
...
...
docker/README.md
View file @
5cacc065
...
...
@@ -94,7 +94,12 @@ sudo docker build --tag gitlab-data docker/data/
sudo
docker build
--tag
gitlab-app:7.10.1 docker/app/
```
After this run the images as described in the previous section.
After this run the images:
```
bash
sudo
docker run
--name
gitlab-data gitlab-data /bin/true
sudo
docker run
--detach
--name
gitlab-app
--publish
8080:80
--publish
2222:22
--volumes-from
gitlab-data gitlab-app:7.10.1
```
We assume using a data volume container, this will simplify migrations and backups.
This empty container will exist to persist as volumes the 3 directories used by GitLab, so remember not to delete 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