<feed xmlns='http://www.w3.org/2005/Atom'>
<title>delta/gitlab/gitlab-ce.git/app/views/shared/projects, branch docs/db-debugging</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>Groups tree enhancements for Groups Dashboard and Group Homepage</title>
<updated>2017-10-04T20:49:42+00:00</updated>
<author>
<name>Kushal Pandya</name>
<email>kushalspandya@gmail.com</email>
</author>
<published>2017-10-04T14:10:24+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/gitlab/gitlab-ce.git/commit/?id=de55396134e9e3de429c5c6df55ff06efb8ba329'/>
<id>de55396134e9e3de429c5c6df55ff06efb8ba329</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Adds cacheless render to Banzai object render</title>
<updated>2017-09-06T14:35:35+00:00</updated>
<author>
<name>Tiago Botelho</name>
<email>tiagonbotelho@hotmail.com</email>
</author>
<published>2017-08-23T16:53:29+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/gitlab/gitlab-ce.git/commit/?id=6d8e102c740b75ac9e1d168a84f532f6d9ebaa65'/>
<id>6d8e102c740b75ac9e1d168a84f532f6d9ebaa65</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Add an option to list only archived projects</title>
<updated>2017-08-24T08:11:07+00:00</updated>
<author>
<name>Mehdi Lahmam</name>
<email>mehdi@lahmam.com</email>
</author>
<published>2017-08-11T09:09:17+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/gitlab/gitlab-ce.git/commit/?id=55f4ddad2b765f3b7466af5b43ef319a330c9fcd'/>
<id>55f4ddad2b765f3b7466af5b43ef319a330c9fcd</id>
<content type='text'>
Closes #35994
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Closes #35994
</pre>
</div>
</content>
</entry>
<entry>
<title>Use Prev/Next pagination for exploring projects</title>
<updated>2017-08-14T11:53:42+00:00</updated>
<author>
<name>Yorick Peterse</name>
<email>yorickpeterse@gmail.com</email>
</author>
<published>2017-08-10T13:01:38+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/gitlab/gitlab-ce.git/commit/?id=c1f9403e45e636651010929b6113add34f8e6a8a'/>
<id>c1f9403e45e636651010929b6113add34f8e6a8a</id>
<content type='text'>
This changes the pagination of the "Explore" pages so they use a simpler
pagination system that only shows "Prev" and "Next" buttons. This
removes the need for getting the total number of rows to display, a
process that can easily take up to 2 seconds when browsing through a
large list of projects.

Fixes https://gitlab.com/gitlab-org/gitlab-ce/issues/27390
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
This changes the pagination of the "Explore" pages so they use a simpler
pagination system that only shows "Prev" and "Next" buttons. This
removes the need for getting the total number of rows to display, a
process that can easily take up to 2 seconds when browsing through a
large list of projects.

Fixes https://gitlab.com/gitlab-org/gitlab-ce/issues/27390
</pre>
</div>
</content>
</entry>
<entry>
<title>Merge branch 'dashboard-projects-controller-query-performance' into 'master'</title>
<updated>2017-08-07T15:06:12+00:00</updated>
<author>
<name>Sean McGivern</name>
<email>sean@mcgivern.me.uk</email>
</author>
<published>2017-08-07T15:06:12+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/gitlab/gitlab-ce.git/commit/?id=8c4d590973dcf137e163cda5ba4b2ec5da1ef2f8'/>
<id>8c4d590973dcf137e163cda5ba4b2ec5da1ef2f8</id>
<content type='text'>
Improve various parts of Dashboard::ProjectsController

See merge request !13319</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Improve various parts of Dashboard::ProjectsController

See merge request !13319</pre>
</div>
</content>
</entry>
<entry>
<title>Improve checking if projects would be returned</title>
<updated>2017-08-07T10:38:27+00:00</updated>
<author>
<name>Yorick Peterse</name>
<email>yorickpeterse@gmail.com</email>
</author>
<published>2017-08-04T13:40:33+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/gitlab/gitlab-ce.git/commit/?id=f77fda6437bfeb946510abdf5c56872af392f624'/>
<id>f77fda6437bfeb946510abdf5c56872af392f624</id>
<content type='text'>
In various places we check if the same relation would return projects.
This is done using "any?" which will run a COUNT query with any
LIMIT/OFFSET values still applied.

To work around all this we introduce 2 helper methods that take care of
doing the right thing. This leads to the produced queries being simpler
and fewer queries being executed.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
In various places we check if the same relation would return projects.
This is done using "any?" which will run a COUNT query with any
LIMIT/OFFSET values still applied.

To work around all this we introduce 2 helper methods that take care of
doing the right thing. This leads to the produced queries being simpler
and fewer queries being executed.
</pre>
</div>
</content>
</entry>
<entry>
<title>Add a missing whitespace in "private forks you have no access to"</title>
<updated>2017-08-06T19:49:14+00:00</updated>
<author>
<name>Mehdi Lahmam</name>
<email>mehdi@lahmam.com</email>
</author>
<published>2017-08-06T19:49:14+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/gitlab/gitlab-ce.git/commit/?id=d8f99a1d660b8d4bd446d194307827c952c41ff8'/>
<id>d8f99a1d660b8d4bd446d194307827c952c41ff8</id>
<content type='text'>
Fix #35786
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Fix #35786
</pre>
</div>
</content>
</entry>
<entry>
<title>Fix 500 error when rendering avatar for deleted project creator</title>
<updated>2017-07-28T15:23:40+00:00</updated>
<author>
<name>Athar Hameed</name>
<email>athar@gitlab.com</email>
</author>
<published>2017-07-28T15:23:40+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/gitlab/gitlab-ce.git/commit/?id=9442c33584d9667551447aa2d579aec03fb18d50'/>
<id>9442c33584d9667551447aa2d579aec03fb18d50</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Create and use project path helpers that only need a project, no namespace</title>
<updated>2017-07-05T16:11:59+00:00</updated>
<author>
<name>Douwe Maan</name>
<email>douwe@selenight.nl</email>
</author>
<published>2017-06-29T17:06:35+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/gitlab/gitlab-ce.git/commit/?id=fe13f110412d85c05dc68e5ee1db499f681bf722'/>
<id>fe13f110412d85c05dc68e5ee1db499f681bf722</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Removes pending delete from filter scopes</title>
<updated>2017-06-28T10:29:59+00:00</updated>
<author>
<name>Tiago Botelho</name>
<email>tiagonbotelho@hotmail.com</email>
</author>
<published>2017-06-13T15:32:50+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/gitlab/gitlab-ce.git/commit/?id=8e8eb97861a8a93625590274af8382e9333cbf91'/>
<id>8e8eb97861a8a93625590274af8382e9333cbf91</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
</feed>
