<feed xmlns='http://www.w3.org/2005/Atom'>
<title>delta/gitlab/gitlab-ce.git/spec/lib, branch gitlab-git-http-server</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 'master' into joelkoglin/gitlab-ce-feature_fix_ldap_auth_issue_993</title>
<updated>2015-08-29T18:49:14+00:00</updated>
<author>
<name>Douwe Maan</name>
<email>douwe@gitlab.com</email>
</author>
<published>2015-08-29T18:49:14+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/gitlab/gitlab-ce.git/commit/?id=fe86c8dfbd81ef21d0d685105397f4bf6048b2f2'/>
<id>fe86c8dfbd81ef21d0d685105397f4bf6048b2f2</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 'rs-remove-user-color-scheme-class' into 'master'</title>
<updated>2015-08-27T16:24:51+00:00</updated>
<author>
<name>Douwe Maan</name>
<email>douwe@gitlab.com</email>
</author>
<published>2015-08-27T16:24:51+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/gitlab/gitlab-ce.git/commit/?id=30555c1d24af25aca0c6e85f52234a8a570b7691'/>
<id>30555c1d24af25aca0c6e85f52234a8a570b7691</id>
<content type='text'>
Apply syntax highlighting to fenced code blocks client-side

Instead of applying the syntax highlighting scheme class to these blocks
server-side, we use Javascript and Gon to apply the user's color scheme
(or the default) client-side.

This will make it easier to cache these blocks in the future because
they're no longer state-dependent.

See merge request !1203
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Apply syntax highlighting to fenced code blocks client-side

Instead of applying the syntax highlighting scheme class to these blocks
server-side, we use Javascript and Gon to apply the user's color scheme
(or the default) client-side.

This will make it easier to cache these blocks in the future because
they're no longer state-dependent.

See merge request !1203
</pre>
</div>
</content>
</entry>
<entry>
<title>Add Gitlab::ColorSchemes module</title>
<updated>2015-08-25T22:32:38+00:00</updated>
<author>
<name>Robert Speicher</name>
<email>rspeicher@gmail.com</email>
</author>
<published>2015-08-25T21:31:33+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/gitlab/gitlab-ce.git/commit/?id=4344b8d2d4367b19c6849c3cab0d02d17ddf2304'/>
<id>4344b8d2d4367b19c6849c3cab0d02d17ddf2304</id>
<content type='text'>
Very similar to Gitlab::Theme, this contains all of the definitions for
our syntax highlighting schemes.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Very similar to Gitlab::Theme, this contains all of the definitions for
our syntax highlighting schemes.
</pre>
</div>
</content>
</entry>
<entry>
<title>Re-enable the "links with adjacent text" UserReferenceFilter spec</title>
<updated>2015-08-25T01:56:01+00:00</updated>
<author>
<name>Robert Speicher</name>
<email>rspeicher@gmail.com</email>
</author>
<published>2015-08-25T01:56:01+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/gitlab/gitlab-ce.git/commit/?id=646c1f0324650c5736e85db0deb55dceb943fa7a'/>
<id>646c1f0324650c5736e85db0deb55dceb943fa7a</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Remove user OAuth tokens stored in database for Bitbucket, GitHub, and GitLab</title>
<updated>2015-08-23T16:23:44+00:00</updated>
<author>
<name>Stan Hu</name>
<email>stanhu@gmail.com</email>
</author>
<published>2015-08-07T07:06:20+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/gitlab/gitlab-ce.git/commit/?id=ed1d4fa477789659f9343593bf06d50e70750561'/>
<id>ed1d4fa477789659f9343593bf06d50e70750561</id>
<content type='text'>
and request them each session. Pass these tokens to the project import data.

This prevents the need to encrypt these tokens and clear them in case they
expire or get revoked.

For example, if you deleted and re-created OAuth2 keys for Bitbucket, you would get
an Error 500 with no way to recover:

```
Started GET "/import/bitbucket/status" for x.x.x.x at 2015-08-07 05:24:10 +0000
Processing by Import::BitbucketController#status as HTML
Completed 500 Internal Server Error in 607ms (ActiveRecord: 2.3ms)

NameError (uninitialized constant Import::BitbucketController::Unauthorized):
  app/controllers/import/bitbucket_controller.rb:77:in `rescue in go_to_bitbucket_for_permissions'
  app/controllers/import/bitbucket_controller.rb:74:in `go_to_bitbucket_for_permissions'
  app/controllers/import/bitbucket_controller.rb:86:in `bitbucket_unauthorized'
```

Closes #1871
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
and request them each session. Pass these tokens to the project import data.

This prevents the need to encrypt these tokens and clear them in case they
expire or get revoked.

For example, if you deleted and re-created OAuth2 keys for Bitbucket, you would get
an Error 500 with no way to recover:

```
Started GET "/import/bitbucket/status" for x.x.x.x at 2015-08-07 05:24:10 +0000
Processing by Import::BitbucketController#status as HTML
Completed 500 Internal Server Error in 607ms (ActiveRecord: 2.3ms)

NameError (uninitialized constant Import::BitbucketController::Unauthorized):
  app/controllers/import/bitbucket_controller.rb:77:in `rescue in go_to_bitbucket_for_permissions'
  app/controllers/import/bitbucket_controller.rb:74:in `go_to_bitbucket_for_permissions'
  app/controllers/import/bitbucket_controller.rb:86:in `bitbucket_unauthorized'
```

Closes #1871
</pre>
</div>
</content>
</entry>
<entry>
<title>Merge branch 'reply-by-email' into 'master'</title>
<updated>2015-08-22T00:00:08+00:00</updated>
<author>
<name>Robert Speicher</name>
<email>robert@gitlab.com</email>
</author>
<published>2015-08-22T00:00:08+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/gitlab/gitlab-ce.git/commit/?id=f0bdf7f8102405f272a42c04c1fa70dae7365854'/>
<id>f0bdf7f8102405f272a42c04c1fa70dae7365854</id>
<content type='text'>
Reply by email

Fixes #1360.

It's far from done, but _it works_.

See merge request !1173
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Reply by email

Fixes #1360.

It's far from done, but _it works_.

See merge request !1173
</pre>
</div>
</content>
</entry>
<entry>
<title>No HTML-only email please</title>
<updated>2015-08-21T23:09:55+00:00</updated>
<author>
<name>Douwe Maan</name>
<email>douwe@gitlab.com</email>
</author>
<published>2015-08-21T23:09:55+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/gitlab/gitlab-ce.git/commit/?id=15fc7bd6139f0b429c05c055b4cfab561c926e08'/>
<id>15fc7bd6139f0b429c05c055b4cfab561c926e08</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Block blocked users from replying to threads by email.</title>
<updated>2015-08-21T17:14:45+00:00</updated>
<author>
<name>Douwe Maan</name>
<email>douwe@gitlab.com</email>
</author>
<published>2015-08-21T17:14:45+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/gitlab/gitlab-ce.git/commit/?id=69708dab9f6e1c265dd2bf80eafc39bf68c356e0'/>
<id>69708dab9f6e1c265dd2bf80eafc39bf68c356e0</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Issue #993: Fixed login failure when extern_uid changes</title>
<updated>2015-08-21T16:36:27+00:00</updated>
<author>
<name>Joel Koglin</name>
<email>JoelKoglin@gmail.com</email>
</author>
<published>2015-07-21T21:03:26+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/gitlab/gitlab-ce.git/commit/?id=4d2f36118a3b21b6bb4ee702b98d032967ba463a'/>
<id>4d2f36118a3b21b6bb4ee702b98d032967ba463a</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Remove trailing HTML entities from non-Rinku autolinks as well.</title>
<updated>2015-08-21T01:25:16+00:00</updated>
<author>
<name>Robert Speicher</name>
<email>rspeicher@gmail.com</email>
</author>
<published>2015-08-21T01:25:16+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/gitlab/gitlab-ce.git/commit/?id=747fe7520b244a324b60049cbe22c22a5df29c82'/>
<id>747fe7520b244a324b60049cbe22c22a5df29c82</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
</feed>
