<feed xmlns='http://www.w3.org/2005/Atom'>
<title>delta/gitlab/gitlab-ce.git/app/controllers/admin, branch notes_fix</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>Merge branch 'impersonate' into 'master'</title>
<updated>2015-11-14T09:04:10+00:00</updated>
<author>
<name>Dmitriy Zaporozhets</name>
<email>dmitriy.zaporozhets@gmail.com</email>
</author>
<published>2015-11-14T09:04:10+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/gitlab/gitlab-ce.git/commit/?id=aec9f211e534900f602e769dcdd6f69730849f92'/>
<id>aec9f211e534900f602e769dcdd6f69730849f92</id>
<content type='text'>

refactor login as to be impersonation with better login/logout

Modifies the existing "login as" feature to be called impersonation.

This also adds:

* Application keep track of who is impersonating the user so they can revert back to the original user without having to log out.
* Stores the user profile via `HTTP_REFERER` so you get redirected back to the person you have impersonated once you stop.

## Screenshots:

![](http://sindacio.us/i/2015-10-28_17-52-41.png)
![](http://sindacio.us/i/2015-10-28_17-53-08.png)

See merge request !1702</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>

refactor login as to be impersonation with better login/logout

Modifies the existing "login as" feature to be called impersonation.

This also adds:

* Application keep track of who is impersonating the user so they can revert back to the original user without having to log out.
* Stores the user profile via `HTTP_REFERER` so you get redirected back to the person you have impersonated once you stop.

## Screenshots:

![](http://sindacio.us/i/2015-10-28_17-52-41.png)
![](http://sindacio.us/i/2015-10-28_17-53-08.png)

See merge request !1702</pre>
</div>
</content>
</entry>
<entry>
<title>Implement Build Artifacts</title>
<updated>2015-11-10T11:51:50+00:00</updated>
<author>
<name>Kamil Trzcinski</name>
<email>ayufan@ayufan.eu</email>
</author>
<published>2015-10-12T21:47:32+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/gitlab/gitlab-ce.git/commit/?id=d0e3e823a2dd56260550aec648b0cbfae64543ae'/>
<id>d0e3e823a2dd56260550aec648b0cbfae64543ae</id>
<content type='text'>
- Offloads uploading to GitLab Workhorse
- Use /authorize request for fast uploading
- Added backup recipes for artifacts
- Support download acceleration using X-Sendfile
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
- Offloads uploading to GitLab Workhorse
- Use /authorize request for fast uploading
- Added backup recipes for artifacts
- Support download acceleration using X-Sendfile
</pre>
</div>
</content>
</entry>
<entry>
<title>Enable shared runners for all new projects</title>
<updated>2015-11-05T16:02:02+00:00</updated>
<author>
<name>Kamil Trzcinski</name>
<email>ayufan@ayufan.eu</email>
</author>
<published>2015-11-03T13:45:41+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/gitlab/gitlab-ce.git/commit/?id=b18671a1b2c565a87663544441000063f6b83c8e'/>
<id>b18671a1b2c565a87663544441000063f6b83c8e</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>refactor login as to be impersonation with better login/logout</title>
<updated>2015-10-29T10:00:17+00:00</updated>
<author>
<name>James Newton</name>
<email>hello@jamesnewton.com</email>
</author>
<published>2015-10-28T15:39:23+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/gitlab/gitlab-ce.git/commit/?id=3bb626f91cb50bd2eff58681e22db942b7d6a087'/>
<id>3bb626f91cb50bd2eff58681e22db942b7d6a087</id>
<content type='text'>
Modifies the existing "login as" feature to be called impersonation, as
well as keeping track of who is impersonating to revert back to that
user without having to log out.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Modifies the existing "login as" feature to be called impersonation, as
well as keeping track of who is impersonating to revert back to that
user without having to log out.
</pre>
</div>
</content>
</entry>
<entry>
<title>Redirect to a default path if HTTP_REFERER is not set</title>
<updated>2015-10-20T14:45:48+00:00</updated>
<author>
<name>Stan Hu</name>
<email>stanhu@gmail.com</email>
</author>
<published>2015-10-20T07:28:28+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/gitlab/gitlab-ce.git/commit/?id=9bfc531ec611d108c45af239a1e5e016b892231b'/>
<id>9bfc531ec611d108c45af239a1e5e016b892231b</id>
<content type='text'>
Safari 9.0 does not yet honor the HTML5 `origin-when-cross-origin` mode,
and it's possible load balancers/proxies strip the HTTP_REFERER from
the request header. In these cases, default to some default path.

Closes #3122

Closes https://github.com/gitlabhq/gitlabhq/issues/9731
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Safari 9.0 does not yet honor the HTML5 `origin-when-cross-origin` mode,
and it's possible load balancers/proxies strip the HTTP_REFERER from
the request header. In these cases, default to some default path.

Closes #3122

Closes https://github.com/gitlabhq/gitlabhq/issues/9731
</pre>
</div>
</content>
</entry>
<entry>
<title>Merge branch 'master' into jrochkind/gitlab-ce-fix_2839_send_abuse_report_notify</title>
<updated>2015-10-18T09:31:49+00:00</updated>
<author>
<name>Douwe Maan</name>
<email>douwe@gitlab.com</email>
</author>
<published>2015-10-18T09:31:49+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/gitlab/gitlab-ce.git/commit/?id=df9062d0b50d08a8a484b9780aeb92c53bead530'/>
<id>df9062d0b50d08a8a484b9780aeb92c53bead530</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Improve invalidation of stored service password if the endpoint URL is changed</title>
<updated>2015-10-15T10:07:59+00:00</updated>
<author>
<name>Alex Lossent</name>
<email>alexandre.lossent@cern.ch</email>
</author>
<published>2015-10-15T07:09:01+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/gitlab/gitlab-ce.git/commit/?id=98e666ab6a61ef67c2ba15d31839fd1cf414d587'/>
<id>98e666ab6a61ef67c2ba15d31839fd1cf414d587</id>
<content type='text'>
Password can now be specified at the same time as the new URL, and the service
template admin pages now work.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Password can now be specified at the same time as the new URL, and the service
template admin pages now work.
</pre>
</div>
</content>
</entry>
<entry>
<title>Revert "Improve invalidation of stored service password if the endpoint URL is changed"</title>
<updated>2015-10-14T16:21:27+00:00</updated>
<author>
<name>Valery Sizov</name>
<email>vsv2711@gmail.com</email>
</author>
<published>2015-10-14T16:21:27+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/gitlab/gitlab-ce.git/commit/?id=b83a18a55cd03cfa6d0d631b8d4567ae29b5fe26'/>
<id>b83a18a55cd03cfa6d0d631b8d4567ae29b5fe26</id>
<content type='text'>
This reverts commit b46397548056e4e8ef00efe4f641c61ba1dd5230.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
This reverts commit b46397548056e4e8ef00efe4f641c61ba1dd5230.
</pre>
</div>
</content>
</entry>
<entry>
<title>Improve invalidation of stored service password if the endpoint URL is changed</title>
<updated>2015-10-14T13:27:59+00:00</updated>
<author>
<name>Alex Lossent</name>
<email>alexandre.lossent@cern.ch</email>
</author>
<published>2015-10-13T09:29:57+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/gitlab/gitlab-ce.git/commit/?id=b46397548056e4e8ef00efe4f641c61ba1dd5230'/>
<id>b46397548056e4e8ef00efe4f641c61ba1dd5230</id>
<content type='text'>
It now allows to specify a password at the same time as the new URL, and works
on the service template admin pages.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
It now allows to specify a password at the same time as the new URL, and works
on the service template admin pages.
</pre>
</div>
</content>
</entry>
<entry>
<title>Send an email (to support) when a user is reported for spam</title>
<updated>2015-10-08T21:33:57+00:00</updated>
<author>
<name>Jonathan Rochkind</name>
<email>jonathan@dnil.net</email>
</author>
<published>2015-10-08T15:13:28+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/gitlab/gitlab-ce.git/commit/?id=ae4fbae26cefbf10848719ee8c06d418c348420c'/>
<id>ae4fbae26cefbf10848719ee8c06d418c348420c</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
</feed>
