<feed xmlns='http://www.w3.org/2005/Atom'>
<title>delta/gitlab/gitlab-ce.git/app/views/ci, branch docs-dev-guidelines-update</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>Renaming Secret Variables in the codebase</title>
<updated>2018-10-30T08:49:26+00:00</updated>
<author>
<name>Marcel Amirault</name>
<email>ravlen@gmail.com</email>
</author>
<published>2018-10-30T08:49:26+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/gitlab/gitlab-ce.git/commit/?id=14fc739c94907255f70fe5032059bcdc4aba1e34'/>
<id>14fc739c94907255f70fe5032059bcdc4aba1e34</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Simplify runner registration token resetting</title>
<updated>2018-10-04T06:37:01+00:00</updated>
<author>
<name>Tomasz Maczukin</name>
<email>tomasz@maczukin.pl</email>
</author>
<published>2018-09-10T21:57:03+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/gitlab/gitlab-ce.git/commit/?id=42af229510adfef78772d5ec1cba9b990a645ac3'/>
<id>42af229510adfef78772d5ec1cba9b990a645ac3</id>
<content type='text'>
This icommit adds several changes related to the same topic
- resetting a Runner registration token:

1. On Project settings page it adds a button for resetting the
   registration token and it removes the Runner token field
   that was confusing all GitLab users.

2. On Group settings page it adds the same button for resetting
   the registration token.

3. On Admin Runners settings page it moves the button to the same
   place as in Project and Group settings and it changes slightly
   the page layout to make it more similar to Group and Project
   setting pages.

4. It refactorizes a little the partial that prints runner
   registration description. Thanks to this Project, Group
   and Admin settings of the Runner are re-using the same
   code to generate the button.

5. Updates the translations of changed text.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
This icommit adds several changes related to the same topic
- resetting a Runner registration token:

1. On Project settings page it adds a button for resetting the
   registration token and it removes the Runner token field
   that was confusing all GitLab users.

2. On Group settings page it adds the same button for resetting
   the registration token.

3. On Admin Runners settings page it moves the button to the same
   place as in Project and Group settings and it changes slightly
   the page layout to make it more similar to Group and Project
   setting pages.

4. It refactorizes a little the partial that prints runner
   registration description. Thanks to this Project, Group
   and Admin settings of the Runner are re-using the same
   code to generate the button.

5. Updates the translations of changed text.
</pre>
</div>
</content>
</entry>
<entry>
<title>Fix grammar in runner-related specs, views and localisations.</title>
<updated>2018-09-19T13:04:09+00:00</updated>
<author>
<name>Marcel Amirault</name>
<email>ravlen@gmail.com</email>
</author>
<published>2018-09-19T13:04:09+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/gitlab/gitlab-ce.git/commit/?id=81f601309182b472c5178688d9f77691c50e31fd'/>
<id>81f601309182b472c5178688d9f77691c50e31fd</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Removes &lt;br&gt; sent from backend on tooltips in jobs</title>
<updated>2018-08-28T21:36:25+00:00</updated>
<author>
<name>Filipa Lacerda</name>
<email>filipa@gitlab.com</email>
</author>
<published>2018-08-09T11:05:13+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/gitlab/gitlab-ce.git/commit/?id=ec40b36905d0a71edb4bfae592018b6ae580a492'/>
<id>ec40b36905d0a71edb4bfae592018b6ae580a492</id>
<content type='text'>
When backend sends HTML it requires frontend to append it to the DOM causing
XSS vulnerabilities. By removing the `&lt;br&gt;` we avoid those vulnerabilities
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
When backend sends HTML it requires frontend to append it to the DOM causing
XSS vulnerabilities. By removing the `&lt;br&gt;` we avoid those vulnerabilities
</pre>
</div>
</content>
</entry>
<entry>
<title>Reject ruby interpolation in externalized strings</title>
<updated>2018-08-25T16:43:21+00:00</updated>
<author>
<name>Bob Van Landuyt</name>
<email>bob@vanlanduyt.co</email>
</author>
<published>2018-08-16T12:15:54+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/gitlab/gitlab-ce.git/commit/?id=08c0a1b8527287457cb8db5f41c368af192c606b'/>
<id>08c0a1b8527287457cb8db5f41c368af192c606b</id>
<content type='text'>
When using ruby interpolation in externalized strings, they can't be
detected. Which means they will never be presented to be translated.

To mix variables into translations we need to use `sprintf`
instead.

Instead of:

    _("Hello #{subject}")

Use:

    _("Hello %{subject}) % { subject: 'world' }
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
When using ruby interpolation in externalized strings, they can't be
detected. Which means they will never be presented to be translated.

To mix variables into translations we need to use `sprintf`
instead.

Instead of:

    _("Hello #{subject}")

Use:

    _("Hello %{subject}) % { subject: 'world' }
</pre>
</div>
</content>
</entry>
<entry>
<title>Update specific runners help URL</title>
<updated>2018-07-17T16:17:56+00:00</updated>
<author>
<name>George Tsiolis</name>
<email>tsiolis.g@gmail.com</email>
</author>
<published>2018-07-17T16:17:56+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/gitlab/gitlab-ce.git/commit/?id=f9126a5048f4a5b5bb181e077e12788146efcb7f'/>
<id>f9126a5048f4a5b5bb181e077e12788146efcb7f</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Fix a typo on CI Runner page on Projects</title>
<updated>2018-07-10T14:47:32+00:00</updated>
<author>
<name>Ave</name>
<email>gitlab@ave.zone</email>
</author>
<published>2018-07-10T14:47:32+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/gitlab/gitlab-ce.git/commit/?id=fa39876ecb13746e12f80a649da2d1e8492500b3'/>
<id>fa39876ecb13746e12f80a649da2d1e8492500b3</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Add render_if_exists to variable env scope</title>
<updated>2018-06-08T17:36:25+00:00</updated>
<author>
<name>Lin Jen-Shin</name>
<email>godfat@godfat.org</email>
</author>
<published>2018-06-08T17:35:29+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/gitlab/gitlab-ce.git/commit/?id=566caff73196e001381ea68fc11ed3a97f0b92b5'/>
<id>566caff73196e001381ea68fc11ed3a97f0b92b5</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Merge branch 'master' into bootstrap4</title>
<updated>2018-05-08T15:49:30+00:00</updated>
<author>
<name>Clement Ho</name>
<email>ClemMakesApps@gmail.com</email>
</author>
<published>2018-05-08T15:49:30+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/gitlab/gitlab-ce.git/commit/?id=5955caed321e242bfebe52a4b47346a01a50e4f6'/>
<id>5955caed321e242bfebe52a4b47346a01a50e4f6</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Merge branch 'master' into 33697-pipelines-json-endpoint</title>
<updated>2018-04-30T22:29:11+00:00</updated>
<author>
<name>Filipa Lacerda</name>
<email>filipa@gitlab.com</email>
</author>
<published>2018-04-30T22:29:11+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/gitlab/gitlab-ce.git/commit/?id=8a057334b8f5a3adcd91ae88da46da916ec14e4c'/>
<id>8a057334b8f5a3adcd91ae88da46da916ec14e4c</id>
<content type='text'>
* master: (106 commits)
  Merge branch '10-7-security_issue_42029' into 'security-10-7'
  Merge branch 'security-45689-fix-archive-cache-bug' into 'security-10-7'
  Add developer documentation on diff handling and limits
  Use fast timeouts for Gitaly FooInProgress RPC's
  Use GitLab Pages v0.9.1
  Docs: review product categories in doc/README
  Define custom base controller for Doorkeeper
  Use grpc 1.11.0
  Update index.md
  Makes namespaceless project destroy worker spec not depend on a specific migration version
  Docs: update Pages for newbies
  Remove legacy storage path call
  InvaildStateError -&gt; InvalidStateError
  Don't automatically remove artifacts for pages jobs after pages:deploy has run
  Resolve "Add how to use nip.io to Auto DevOps and Kubernetes documentation"
  Fix example config miss-alignment in uploads.object_store.connection
  Remove IDE image upload spec
  Add gitlab-pages admin ping rake task
  Don't run JS lint for QA either
  Add sha filter to list pipelines
  ...
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
* master: (106 commits)
  Merge branch '10-7-security_issue_42029' into 'security-10-7'
  Merge branch 'security-45689-fix-archive-cache-bug' into 'security-10-7'
  Add developer documentation on diff handling and limits
  Use fast timeouts for Gitaly FooInProgress RPC's
  Use GitLab Pages v0.9.1
  Docs: review product categories in doc/README
  Define custom base controller for Doorkeeper
  Use grpc 1.11.0
  Update index.md
  Makes namespaceless project destroy worker spec not depend on a specific migration version
  Docs: update Pages for newbies
  Remove legacy storage path call
  InvaildStateError -&gt; InvalidStateError
  Don't automatically remove artifacts for pages jobs after pages:deploy has run
  Resolve "Add how to use nip.io to Auto DevOps and Kubernetes documentation"
  Fix example config miss-alignment in uploads.object_store.connection
  Remove IDE image upload spec
  Add gitlab-pages admin ping rake task
  Don't run JS lint for QA either
  Add sha filter to list pipelines
  ...
</pre>
</div>
</content>
</entry>
</feed>
