<feed xmlns='http://www.w3.org/2005/Atom'>
<title>cgit/ui-repolist.c, branch v0.8.2.2</title>
<subtitle>A hyperfast web frontend for git repositories written in C.</subtitle>
<id>http://git.cetero.st/cgit/atom/ui-repolist.c?h=v0.8.2.2</id>
<link rel='self' href='http://git.cetero.st/cgit/atom/ui-repolist.c?h=v0.8.2.2'/>
<link rel='alternate' type='text/html' href='http://git.cetero.st/cgit/'/>
<updated>2009-08-18T12:27:41Z</updated>
<entry>
<title>truncate buffer before reading empty files</title>
<updated>2009-08-18T12:27:41Z</updated>
<author>
<name>Simon Arlott</name>
<email>simon@fire.lp0.eu</email>
</author>
<published>2009-03-07T00:06:24Z</published>
<link rel='alternate' type='text/html' href='http://git.cetero.st/cgit/commit/?id=011f2e9bdddcbfe65da397629bca87d167313a28'/>
<id>urn:sha1:011f2e9bdddcbfe65da397629bca87d167313a28</id>
<content type='text'>
If readfile() reads an empty file, fgets() won't truncate the buffer
and it'll still contain the contents of the previously read file.

[lh: fixed similar issue in ui-repolist.c]

Signed-off-by: Simon Arlott &lt;simon@fire.lp0.eu&gt;
Signed-off-by: Lars Hjemli &lt;hjemli@gmail.com&gt;
</content>
</entry>
<entry>
<title>Merge branch 'full-log'</title>
<updated>2008-12-06T10:37:37Z</updated>
<author>
<name>Lars Hjemli</name>
<email>hjemli@gmail.com</email>
</author>
<published>2008-12-06T10:37:37Z</published>
<link rel='alternate' type='text/html' href='http://git.cetero.st/cgit/commit/?id=3c32fe07717f27fc891b66ccd06057fb810d03ad'/>
<id>urn:sha1:3c32fe07717f27fc891b66ccd06057fb810d03ad</id>
<content type='text'>
Conflicts:
	cgit.c
	cgit.h
</content>
</entry>
<entry>
<title>Merge branch 'lh/sort-repolist'</title>
<updated>2008-12-06T10:35:49Z</updated>
<author>
<name>Lars Hjemli</name>
<email>hjemli@gmail.com</email>
</author>
<published>2008-12-06T10:35:49Z</published>
<link rel='alternate' type='text/html' href='http://git.cetero.st/cgit/commit/?id=9c8be943f72b6f1bda5a31ce401899c3dd734e98'/>
<id>urn:sha1:9c8be943f72b6f1bda5a31ce401899c3dd734e98</id>
<content type='text'>
</content>
</entry>
<entry>
<title>ui-repolist: avoid build warning for strcasestr(3)</title>
<updated>2008-12-05T18:04:17Z</updated>
<author>
<name>Lars Hjemli</name>
<email>hjemli@gmail.com</email>
</author>
<published>2008-12-05T18:04:17Z</published>
<link rel='alternate' type='text/html' href='http://git.cetero.st/cgit/commit/?id=7115f7d257b5e3fb5d5d7ad6299214506fb35042'/>
<id>urn:sha1:7115f7d257b5e3fb5d5d7ad6299214506fb35042</id>
<content type='text'>
The non-standard function strcasestr is only defined if _GNU_SOURCE has
also been defined.

Signed-off-by: Lars Hjemli &lt;hjemli@gmail.com&gt;
</content>
</entry>
<entry>
<title>ui-log: add support for showing the full commit message</title>
<updated>2008-11-29T17:39:41Z</updated>
<author>
<name>Lars Hjemli</name>
<email>hjemli@gmail.com</email>
</author>
<published>2008-11-29T17:39:41Z</published>
<link rel='alternate' type='text/html' href='http://git.cetero.st/cgit/commit/?id=0274b57d55a12ed38259757dbfae96b79cfa2e0b'/>
<id>urn:sha1:0274b57d55a12ed38259757dbfae96b79cfa2e0b</id>
<content type='text'>
Some users prefer to see the full message, so to make these users happy
the new querystring parameter "showmsg" can be used to print the full
commit message per log entry.

A link is provided in the log heading to make this function accessible,
and all links and forms tries to preserve the users preference.

Note: the new link is not displayed on the summary page since the point
of the summary page is to be a summary, but it is still obeyed if specified
manually.

Signed-off-by: Lars Hjemli &lt;hjemli@gmail.com&gt;
</content>
</entry>
<entry>
<title>ui-repolist: implement lazy caching of repo-&gt;mtime</title>
<updated>2008-11-29T15:46:37Z</updated>
<author>
<name>Lars Hjemli</name>
<email>hjemli@gmail.com</email>
</author>
<published>2008-11-29T15:46:37Z</published>
<link rel='alternate' type='text/html' href='http://git.cetero.st/cgit/commit/?id=8813170390f3c3a0f4743afbc92ede42953fa3b0'/>
<id>urn:sha1:8813170390f3c3a0f4743afbc92ede42953fa3b0</id>
<content type='text'>
When sorting the list of repositories by their last modification time,
cgit would (in the worst case) invoke fstat(3) four times and open(3)
twice for each callback from qsort(3). This obviously scales very badly.

Now, the calculated modtime for each repo is saved in repo-&gt;mtime, thus
keeping the number of stat/open invocations identical for sorted and
unsorted repo-listings.

Signed-off-by: Lars Hjemli &lt;hjemli@gmail.com&gt;
</content>
</entry>
<entry>
<title>ui-repolist: sort null values last</title>
<updated>2008-11-29T13:27:35Z</updated>
<author>
<name>Lars Hjemli</name>
<email>hjemli@gmail.com</email>
</author>
<published>2008-11-29T13:27:35Z</published>
<link rel='alternate' type='text/html' href='http://git.cetero.st/cgit/commit/?id=54272e60965ec6a98b49cbf67d72a4b1f5adc55b'/>
<id>urn:sha1:54272e60965ec6a98b49cbf67d72a4b1f5adc55b</id>
<content type='text'>
When sorting on e.g. owner, it's not interesting to get all repos
without owner at the top of the list.

Signed-off-by: Lars Hjemli &lt;hjemli@gmail.com&gt;
</content>
</entry>
<entry>
<title>ui-repolist: add support for sorting any column</title>
<updated>2008-11-29T13:08:51Z</updated>
<author>
<name>Lars Hjemli</name>
<email>hjemli@gmail.com</email>
</author>
<published>2008-11-29T13:08:51Z</published>
<link rel='alternate' type='text/html' href='http://git.cetero.st/cgit/commit/?id=f250c1ca2ea7f35d65f639e42e8b8f0657515e5d'/>
<id>urn:sha1:f250c1ca2ea7f35d65f639e42e8b8f0657515e5d</id>
<content type='text'>
Signed-off-by: Lars Hjemli &lt;hjemli@gmail.com&gt;
</content>
</entry>
<entry>
<title>ui-repolist: extract get_repo_modtime() from print_modtime()</title>
<updated>2008-11-29T12:33:02Z</updated>
<author>
<name>Lars Hjemli</name>
<email>hjemli@gmail.com</email>
</author>
<published>2008-11-29T12:33:02Z</published>
<link rel='alternate' type='text/html' href='http://git.cetero.st/cgit/commit/?id=cbac02c8b056e47b3e0092949c480c7ec64a3e0f'/>
<id>urn:sha1:cbac02c8b056e47b3e0092949c480c7ec64a3e0f</id>
<content type='text'>
The new function is then used by both print_modtime() and
cgit_reposort_modtime().

Signed-off-by: Lars Hjemli &lt;hjemli@gmail.com&gt;
</content>
</entry>
<entry>
<title>Add support for sorting by Age in the repolist</title>
<updated>2008-11-29T12:25:54Z</updated>
<author>
<name>Benjamin Close</name>
<email>Benjamin.Close@clearchain.com</email>
</author>
<published>2008-11-25T14:25:35Z</published>
<link rel='alternate' type='text/html' href='http://git.cetero.st/cgit/commit/?id=d71c0c725d7b5ddfc5b788d328a5fc7a27739662'/>
<id>urn:sha1:d71c0c725d7b5ddfc5b788d328a5fc7a27739662</id>
<content type='text'>
Signed-off-by: Lars Hjemli &lt;hjemli@gmail.com&gt;
</content>
</entry>
</feed>
