<feed xmlns='http://www.w3.org/2005/Atom'>
<title>delta/gitlab/gitlab-ce.git/app/assets/javascripts/blob_edit, branch docs/api-single-codebase</title>
<subtitle>gitlab.com: gitlab-org/gitlab-ce.git
</subtitle>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/gitlab/gitlab-ce.git/'/>
<entry>
<title>Fixed the blob editor deleting all content for files</title>
<updated>2019-03-07T12:35:07+00:00</updated>
<author>
<name>Phil Hughes</name>
<email>me@iamphill.com</email>
</author>
<published>2019-03-07T12:35:07+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/gitlab/gitlab-ce.git/commit/?id=6a3a28bfdec6feeebd880d048f8577906b48aaa7'/>
<id>6a3a28bfdec6feeebd880d048f8577906b48aaa7</id>
<content type='text'>
This only happens for files that the path consists of only numbers

Closes https://gitlab.com/gitlab-org/gitlab-ce/issues/58578
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
This only happens for files that the path consists of only numbers

Closes https://gitlab.com/gitlab-org/gitlab-ce/issues/58578
</pre>
</div>
</content>
</entry>
<entry>
<title>Add markdown buttons to file editor</title>
<updated>2019-01-02T16:24:32+00:00</updated>
<author>
<name>Sam Bigelow</name>
<email>sbigelow@gitlab.com</email>
</author>
<published>2018-12-14T17:56:25+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/gitlab/gitlab-ce.git/commit/?id=066a99b6e9d0849b477858c9aac274c2f81bb367'/>
<id>066a99b6e9d0849b477858c9aac274c2f81bb367</id>
<content type='text'>
Currently, we have markdown files in many places (e.g. comments, new
issues, etc.). This Merge Request detects if the file being edited is a
markdown file and adds markdown buttons and their functionality to the
single file editor (Not the web IDE)
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Currently, we have markdown files in many places (e.g. comments, new
issues, etc.). This Merge Request detects if the file being edited is a
markdown file and adds markdown buttons and their functionality to the
single file editor (Not the web IDE)
</pre>
</div>
</content>
</entry>
<entry>
<title>Remove beforeunload listener for cancel button</title>
<updated>2018-12-13T21:30:07+00:00</updated>
<author>
<name>Sam Bigelow</name>
<email>sbigelow@gitlab.com</email>
</author>
<published>2018-12-13T21:27:23+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/gitlab/gitlab-ce.git/commit/?id=5ee5203d6043807f28cca30c8358c0f0885bb305'/>
<id>5ee5203d6043807f28cca30c8358c0f0885bb305</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Resolve "Warn in Web Editor when user navigates away"</title>
<updated>2018-11-27T10:05:25+00:00</updated>
<author>
<name>Sam Bigelow</name>
<email>sbigelow@gitlab.com</email>
</author>
<published>2018-11-27T10:05:25+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/gitlab/gitlab-ce.git/commit/?id=5b7b482274d0b1e6b25ae18410d7a3a2dc3670a0'/>
<id>5b7b482274d0b1e6b25ae18410d7a3a2dc3670a0</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Prettify remaining files with differences in CE and EE</title>
<updated>2018-10-31T19:33:12+00:00</updated>
<author>
<name>Mike Greiling</name>
<email>mike@pixelcog.com</email>
</author>
<published>2018-10-30T20:28:31+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/gitlab/gitlab-ce.git/commit/?id=160157a92b4b0f493201a815e6e827e92abbf7c3'/>
<id>160157a92b4b0f493201a815e6e827e92abbf7c3</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Remove dependencies on Linguist</title>
<updated>2018-10-13T00:17:30+00:00</updated>
<author>
<name>Zeger-Jan van de Weg</name>
<email>git@zjvandeweg.nl</email>
</author>
<published>2018-08-03T13:24:26+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/gitlab/gitlab-ce.git/commit/?id=399056ed783e12337a9c47b06b4aae021198f1cd'/>
<id>399056ed783e12337a9c47b06b4aae021198f1cd</id>
<content type='text'>
This saves about 128 MB of baseline RAM usage per Unicorn and
Sidekiq process (!).

Linguist wasn't detecting languages anymore from CE/EE since
9ae8b57467ac8b38f1fa9020a466d94a93cbb9dd. However, Linguist::BlobHelper
was still being depended on by BlobLike and others.

This removes the Linguist gem, given it isn't required anymore.
EscapeUtils were pulled in as dependency, but given Banzai depends on
it, it is now added explicitly.

Previously, Linguist was used to detect the best ACE mode. Instead,
we rely on ACE to guess the best mode based on the file extension.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
This saves about 128 MB of baseline RAM usage per Unicorn and
Sidekiq process (!).

Linguist wasn't detecting languages anymore from CE/EE since
9ae8b57467ac8b38f1fa9020a466d94a93cbb9dd. However, Linguist::BlobHelper
was still being depended on by BlobLike and others.

This removes the Linguist gem, given it isn't required anymore.
EscapeUtils were pulled in as dependency, but given Banzai depends on
it, it is now added explicitly.

Previously, Linguist was used to detect the best ACE mode. Instead,
we rely on ACE to guess the best mode based on the file extension.
</pre>
</div>
</content>
</entry>
<entry>
<title>Backport project template API to CE</title>
<updated>2018-10-05T10:34:43+00:00</updated>
<author>
<name>Nick Thomas</name>
<email>nick@gitlab.com</email>
</author>
<published>2018-10-02T23:00:38+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/gitlab/gitlab-ce.git/commit/?id=25bd49e4f57fe15f9d61dc9376a5b7dc35b30f64'/>
<id>25bd49e4f57fe15f9d61dc9376a5b7dc35b30f64</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>remove all unused eslint-disable rules</title>
<updated>2018-06-20T12:28:28+00:00</updated>
<author>
<name>Lukas Eipert</name>
<email>leipert@gitlab.com</email>
</author>
<published>2018-06-16T13:20:30+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/gitlab/gitlab-ce.git/commit/?id=0e6441164f74a76b4b3decd3c0b0d8d31e15c815'/>
<id>0e6441164f74a76b4b3decd3c0b0d8d31e15c815</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>require jQuery to be explicitly imported</title>
<updated>2018-03-09T21:18:09+00:00</updated>
<author>
<name>Mike Greiling</name>
<email>mike@pixelcog.com</email>
</author>
<published>2018-03-09T20:18:59+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/gitlab/gitlab-ce.git/commit/?id=f248be7257e82d15fa6441c551e4314bd36343d4'/>
<id>f248be7257e82d15fa6441c551e4314bd36343d4</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Rest of Dispatcher Refactor</title>
<updated>2018-02-21T20:22:56+00:00</updated>
<author>
<name>Jacob Schatz</name>
<email>jschatz@gitlab.com</email>
</author>
<published>2018-02-21T20:22:56+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/gitlab/gitlab-ce.git/commit/?id=bd8290d93e4a0669a78c23cecdd1f5d2164d19cf'/>
<id>bd8290d93e4a0669a78c23cecdd1f5d2164d19cf</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
</feed>
