<feed xmlns='http://www.w3.org/2005/Atom'>
<title>delta/gitlab/gitlab-ce.git/lib/backup, branch feature/github-edit-path</title>
<subtitle>gitlab.com: gitlab-org/gitlab-ce.git
</subtitle>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/gitlab/gitlab-ce.git/'/>
<entry>
<title>lib/backup: fix broken permissions when creating repo dir</title>
<updated>2016-08-30T11:35:50+00:00</updated>
<author>
<name>Dirk Hörner</name>
<email>dirker@gmail.com</email>
</author>
<published>2016-08-29T14:33:19+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/gitlab/gitlab-ce.git/commit/?id=2e442840548c5de132723d611dbeefe2ef6105d3'/>
<id>2e442840548c5de132723d611dbeefe2ef6105d3</id>
<content type='text'>
This commit fixes a typo where the mode argument to FileUtils.mkdir()
would be passed in decimal rather than octal format, yielding bad
permissions.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
This commit fixes a typo where the mode argument to FileUtils.mkdir()
would be passed in decimal rather than octal format, yielding bad
permissions.
</pre>
</div>
</content>
</entry>
<entry>
<title>Use `File::exist?` instead of `File::exists?`</title>
<updated>2016-08-11T10:54:45+00:00</updated>
<author>
<name>bogdanvlviv</name>
<email>bogdanvlviv@gmail.com</email>
</author>
<published>2016-08-09T21:23:25+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/gitlab/gitlab-ce.git/commit/?id=96ebc8c4f7223091d97c38c442d68c8058d26261'/>
<id>96ebc8c4f7223091d97c38c442d68c8058d26261</id>
<content type='text'>
Since version ruby-2.2.0, method `File::exists?` is deprecated.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Since version ruby-2.2.0, method `File::exists?` is deprecated.
</pre>
</div>
</content>
</entry>
<entry>
<title>Fix backup restore</title>
<updated>2016-07-25T13:23:07+00:00</updated>
<author>
<name>Stan Hu</name>
<email>stanhu@gmail.com</email>
</author>
<published>2016-07-24T11:56:27+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/gitlab/gitlab-ce.git/commit/?id=c6ff77d4b892c41c9fdbd8a8fbaec9ed611e10a4'/>
<id>c6ff77d4b892c41c9fdbd8a8fbaec9ed611e10a4</id>
<content type='text'>
Set permissions of backup dir to g+s

Closes #20188
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Set permissions of backup dir to g+s

Closes #20188
</pre>
</div>
</content>
</entry>
<entry>
<title>Refactor repository paths handling to allow multiple git mount points</title>
<updated>2016-06-30T02:30:31+00:00</updated>
<author>
<name>Alejandro Rodríguez</name>
<email>alejorro70@gmail.com</email>
</author>
<published>2016-06-22T21:04:51+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/gitlab/gitlab-ce.git/commit/?id=86359ec854314574dccea75247f45590262b05c0'/>
<id>86359ec854314574dccea75247f45590262b05c0</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Only create the backup directory if it is local</title>
<updated>2016-06-10T17:17:54+00:00</updated>
<author>
<name>Stan Hu</name>
<email>stanhu@gmail.com</email>
</author>
<published>2016-06-09T01:04:31+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/gitlab/gitlab-ce.git/commit/?id=f03df228155ae2d8dd779bd1a8e4078698b23c06'/>
<id>f03df228155ae2d8dd779bd1a8e4078698b23c06</id>
<content type='text'>
Closes #12710
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Closes #12710
</pre>
</div>
</content>
</entry>
<entry>
<title>Replace colorize gem with rainbow.</title>
<updated>2016-06-03T16:37:09+00:00</updated>
<author>
<name>Connor Shea</name>
<email>connor.james.shea@gmail.com</email>
</author>
<published>2016-06-01T22:37:15+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/gitlab/gitlab-ce.git/commit/?id=903946c78a0f73e5cbdfce7b93d31c4d1bd045cd'/>
<id>903946c78a0f73e5cbdfce7b93d31c4d1bd045cd</id>
<content type='text'>
Colorize is a gem licensed under the GPLv2, so we can’t use it in GitLab without relicensing GitLab under the terms of the GPL. Rainbow is licensed under the MIT license and does the exact same thing as Colorize, so Rainbow was added in place of Colorize.

The syntax is slightly different for Rainbow vs. Colorize, and was updated in accordance.

The gem is still a dependency of Spinach, so it’s included in the development/test environments, but won’t be packaged with the actual product, and therefore doesn’t require we relicense the product.

An attempt at relicensing Colorize was made, but didn’t succeed as the library owner never responded.

Rainbow library: https://github.com/sickill/rainbow
Relevant issue regarding licensing in GitLab's gems: https://gitlab.com/gitlab-org/gitlab-ce/merge_requests/3775
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Colorize is a gem licensed under the GPLv2, so we can’t use it in GitLab without relicensing GitLab under the terms of the GPL. Rainbow is licensed under the MIT license and does the exact same thing as Colorize, so Rainbow was added in place of Colorize.

The syntax is slightly different for Rainbow vs. Colorize, and was updated in accordance.

The gem is still a dependency of Spinach, so it’s included in the development/test environments, but won’t be packaged with the actual product, and therefore doesn’t require we relicense the product.

An attempt at relicensing Colorize was made, but didn’t succeed as the library owner never responded.

Rainbow library: https://github.com/sickill/rainbow
Relevant issue regarding licensing in GitLab's gems: https://gitlab.com/gitlab-org/gitlab-ce/merge_requests/3775
</pre>
</div>
</content>
</entry>
<entry>
<title>Create the specified remote directory during backup</title>
<updated>2016-05-31T17:29:37+00:00</updated>
<author>
<name>Robert Speicher</name>
<email>rspeicher@gmail.com</email>
</author>
<published>2016-05-31T17:29:37+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/gitlab/gitlab-ce.git/commit/?id=b826c9ff17b701344028832d523522a3cb925a23'/>
<id>b826c9ff17b701344028832d523522a3cb925a23</id>
<content type='text'>
This is idempotent, so there's no harm calling it if the directory
already exists.

Closes #12710
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
This is idempotent, so there's no harm calling it if the directory
already exists.

Closes #12710
</pre>
</div>
</content>
</entry>
<entry>
<title>Improve after review</title>
<updated>2016-05-25T03:52:31+00:00</updated>
<author>
<name>Kamil Trzcinski</name>
<email>ayufan@ayufan.eu</email>
</author>
<published>2016-05-25T03:52:31+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/gitlab/gitlab-ce.git/commit/?id=718fe268c48b3b77b2b3d901b0c688a06e82053d'/>
<id>718fe268c48b3b77b2b3d901b0c688a06e82053d</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Fix backups if registry is disabled</title>
<updated>2016-05-23T19:18:39+00:00</updated>
<author>
<name>Kamil Trzcinski</name>
<email>ayufan@ayufan.eu</email>
</author>
<published>2016-05-23T15:17:07+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/gitlab/gitlab-ce.git/commit/?id=12bd78103153fce845eed1566918083b52e814df'/>
<id>12bd78103153fce845eed1566918083b52e814df</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Added backup of container registry</title>
<updated>2016-05-16T22:25:38+00:00</updated>
<author>
<name>Kamil Trzcinski</name>
<email>ayufan@ayufan.eu</email>
</author>
<published>2016-05-16T22:17:57+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/gitlab/gitlab-ce.git/commit/?id=143cd58c398b693db1b9d02f7267db39a8acb87c'/>
<id>143cd58c398b693db1b9d02f7267db39a8acb87c</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
</feed>
