<feed xmlns='http://www.w3.org/2005/Atom'>
<title>delta/gitlab/gitlab-ce.git/app/views/shared/_issues.html.haml, branch gitlab-git-popen</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>Add issuable-list class to shared mr/issue lists to fix new responsive layout</title>
<updated>2017-06-30T16:52:59+00:00</updated>
<author>
<name>tauriedavis</name>
<email>taurie@gitlab.com</email>
</author>
<published>2017-06-30T16:52:59+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/gitlab/gitlab-ce.git/commit/?id=8fd0887fe4ab1c8ccee2fe023af2b6b2afd22ecc'/>
<id>8fd0887fe4ab1c8ccee2fe023af2b6b2afd22ecc</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Remove border from issues, todos and MR pages</title>
<updated>2017-01-27T22:20:19+00:00</updated>
<author>
<name>Oswaldo Ferreira</name>
<email>oswaldo@gitlab.com</email>
</author>
<published>2017-01-26T13:10:04+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/gitlab/gitlab-ce.git/commit/?id=6a5a5d0ec0ad08fafc007a88d2cd558f3c7add1b'/>
<id>6a5a5d0ec0ad08fafc007a88d2cd558f3c7add1b</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Refactor code when rendering a collection of issues</title>
<updated>2017-01-27T22:20:17+00:00</updated>
<author>
<name>Berna Castro</name>
<email>bernacas@gmail.com</email>
</author>
<published>2016-12-15T12:29:05+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/gitlab/gitlab-ce.git/commit/?id=1c749880e51b641e0e3385c58a3aa289fd1bbbb6'/>
<id>1c749880e51b641e0e3385c58a3aa289fd1bbbb6</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Don't group projects on dashboard#issues</title>
<updated>2017-01-27T22:20:16+00:00</updated>
<author>
<name>Berna Castro</name>
<email>bernacas@gmail.com</email>
</author>
<published>2016-12-15T12:07:35+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/gitlab/gitlab-ce.git/commit/?id=4e2b9d703f3b3d3f64a25ff9ae33eb56210c1715'/>
<id>4e2b9d703f3b3d3f64a25ff9ae33eb56210c1715</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Save a query on issue and MR lists</title>
<updated>2016-12-01T12:24:55+00:00</updated>
<author>
<name>Sean McGivern</name>
<email>sean@gitlab.com</email>
</author>
<published>2016-11-25T13:41:13+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/gitlab/gitlab-ce.git/commit/?id=79b5bfc113973e8564f7d78f5e76347693245900'/>
<id>79b5bfc113973e8564f7d78f5e76347693245900</id>
<content type='text'>
`any?` on an AR relation performs a `SELECT COUNT`, which we don't need.

1. We are very likely to have issues or MRs, so the `SELECT COUNT` is
   often unnecessary.
2. Even where there are no items returned, the overhead of the
   `SELECT *` instead of `SELECT COUNT` is relatively small.

Calling `to_a` on the relation lets us use `Enumerable#any?`, which will
return immediately if there are objects returned.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
`any?` on an AR relation performs a `SELECT COUNT`, which we don't need.

1. We are very likely to have issues or MRs, so the `SELECT COUNT` is
   often unnecessary.
2. Even where there are no items returned, the overhead of the
   `SELECT *` instead of `SELECT COUNT` is relatively small.

Calling `to_a` on the relation lets us use `Enumerable#any?`, which will
return immediately if there are objects returned.
</pre>
</div>
</content>
</entry>
<entry>
<title>Added empty state svg and set up blank conditional</title>
<updated>2016-11-18T03:57:36+00:00</updated>
<author>
<name>Luke "Jared" Bennett</name>
<email>lbennett@gitlab.com</email>
</author>
<published>2016-11-05T17:28:29+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/gitlab/gitlab-ce.git/commit/?id=a08fba63be60dd011f4d1a639d4df8fbacb09d14'/>
<id>a08fba63be60dd011f4d1a639d4df8fbacb09d14</id>
<content type='text'>
Added new spec step

Added empty state to dashboard

Split empty and filtered empty states

Moved empty_state icons into their own folder and DRY up empty state html

Fixed failing spec

Added to groups page

Review changes
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Added new spec step

Added empty state to dashboard

Split empty and filtered empty states

Moved empty_state icons into their own folder and DRY up empty state html

Fixed failing spec

Added to groups page

Review changes
</pre>
</div>
</content>
</entry>
<entry>
<title>Fix style</title>
<updated>2016-06-06T16:59:49+00:00</updated>
<author>
<name>Sean McGivern</name>
<email>sean@gitlab.com</email>
</author>
<published>2016-06-01T12:35:43+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/gitlab/gitlab-ce.git/commit/?id=1cc0209a8057c32cb7b073b822410f8b4c4ad3c9'/>
<id>1cc0209a8057c32cb7b073b822410f8b4c4ad3c9</id>
<content type='text'>
- `reorder(nil)` is better than `reorder('')`
- Only use ASCII in comments
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
- `reorder(nil)` is better than `reorder('')`
- Only use ASCII in comments
</pre>
</div>
</content>
</entry>
<entry>
<title>Don't try to count a relation with aliases</title>
<updated>2016-06-06T16:59:49+00:00</updated>
<author>
<name>Sean McGivern</name>
<email>sean@gitlab.com</email>
</author>
<published>2016-05-30T16:53:08+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/gitlab/gitlab-ce.git/commit/?id=b28237b4d269e1e191597324769113ee4254d7c3'/>
<id>b28237b4d269e1e191597324769113ee4254d7c3</id>
<content type='text'>
Work around ActiveRecord count and column aliases issue as described at:
  &lt;https://github.com/rails/rails/issues/15138#issuecomment-61325080&gt;

AR doesn't promise that `#count` (which is called by `#any?`) will work
for relations using `#select`, which means we need a workaround instead.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Work around ActiveRecord count and column aliases issue as described at:
  &lt;https://github.com/rails/rails/issues/15138#issuecomment-61325080&gt;

AR doesn't promise that `#count` (which is called by `#any?`) will work
for relations using `#select`, which means we need a workaround instead.
</pre>
</div>
</content>
</entry>
<entry>
<title>Refactor styles for issues list</title>
<updated>2016-02-26T13:44:39+00:00</updated>
<author>
<name>Dmitriy Zaporozhets</name>
<email>dmitriy.zaporozhets@gmail.com</email>
</author>
<published>2016-02-25T19:13:36+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/gitlab/gitlab-ce.git/commit/?id=2b5a6487ba8fe45dfc79ec605088ba4947d58172'/>
<id>2b5a6487ba8fe45dfc79ec605088ba4947d58172</id>
<content type='text'>
Signed-off-by: Dmitriy Zaporozhets &lt;dmitriy.zaporozhets@gmail.com&gt;
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Signed-off-by: Dmitriy Zaporozhets &lt;dmitriy.zaporozhets@gmail.com&gt;
</pre>
</div>
</content>
</entry>
<entry>
<title>Add "New X" link to dashboard/group milestone project-specific issue/MR panels</title>
<updated>2015-12-02T13:00:54+00:00</updated>
<author>
<name>Douwe Maan</name>
<email>douwe@gitlab.com</email>
</author>
<published>2015-12-02T13:00:54+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/gitlab/gitlab-ce.git/commit/?id=b66694d236f71474054c63b1e8a683abacf7fdc3'/>
<id>b66694d236f71474054c63b1e8a683abacf7fdc3</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
</feed>
