<feed xmlns='http://www.w3.org/2005/Atom'>
<title>cgit-70, branch v0.9.0.3</title>
<subtitle>a fork of cgit with a Gopher interface</subtitle>
<link rel='alternate' type='text/html' href='http://ns2.katolaz.net/cgit-70/'/>
<entry>
<title>CGIT-0.9.0.3</title>
<updated>2012-03-18T10:16:27+00:00</updated>
<author>
<name>Lars Hjemli</name>
<email>hjemli@gmail.com</email>
</author>
<published>2012-03-18T10:16:27+00:00</published>
<link rel='alternate' type='text/html' href='http://ns2.katolaz.net/cgit-70/commit/?id=e032761a5ebc3372ab0abd0c9bcd8436d89485ae'/>
<id>e032761a5ebc3372ab0abd0c9bcd8436d89485ae</id>
<content type='text'>
Signed-off-by: Lars Hjemli &lt;hjemli@gmail.com&gt;
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Signed-off-by: Lars Hjemli &lt;hjemli@gmail.com&gt;
</pre>
</div>
</content>
</entry>
<entry>
<title>segfault fix on some bogus requests</title>
<updated>2012-03-18T09:26:31+00:00</updated>
<author>
<name>Eric Wong</name>
<email>normalperson@yhbt.net</email>
</author>
<published>2012-01-04T09:01:51+00:00</published>
<link rel='alternate' type='text/html' href='http://ns2.katolaz.net/cgit-70/commit/?id=21418ec42a9a2de4c2c22eca7a1183b311914eca'/>
<id>21418ec42a9a2de4c2c22eca7a1183b311914eca</id>
<content type='text'>
ctx.qry.head can be NULL in some cases due to bad requests
by weird bots.  I managed to reproduce with:

   PATH_INFO=/repo.git/shop.php QUERY_STRING=id=

Signed-off-by: Eric Wong &lt;normalperson@yhbt.net&gt;
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
ctx.qry.head can be NULL in some cases due to bad requests
by weird bots.  I managed to reproduce with:

   PATH_INFO=/repo.git/shop.php QUERY_STRING=id=

Signed-off-by: Eric Wong &lt;normalperson@yhbt.net&gt;
</pre>
</div>
</content>
</entry>
<entry>
<title>use correct type for sizeof</title>
<updated>2012-03-18T09:26:31+00:00</updated>
<author>
<name>Jamie Couture</name>
<email>jamie.couture@gmail.com</email>
</author>
<published>2012-01-12T03:38:49+00:00</published>
<link rel='alternate' type='text/html' href='http://ns2.katolaz.net/cgit-70/commit/?id=6a575b8900734a4640427416885e73c83af70736'/>
<id>6a575b8900734a4640427416885e73c83af70736</id>
<content type='text'>
**L would have worked well too.  Depending on the distribution sizeof *L
may return 8 instead of 4. **L is preferable, but since we don't expect
this datatype to change very often, sizeof int is less subtle and easier
to understand.

Signed-off-by: Jamie Couture &lt;jamie.couture@gmail.com&gt;
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
**L would have worked well too.  Depending on the distribution sizeof *L
may return 8 instead of 4. **L is preferable, but since we don't expect
this datatype to change very often, sizeof int is less subtle and easier
to understand.

Signed-off-by: Jamie Couture &lt;jamie.couture@gmail.com&gt;
</pre>
</div>
</content>
</entry>
<entry>
<title>ui-ssdiff.c: correct length check for LCS table</title>
<updated>2012-01-08T10:01:49+00:00</updated>
<author>
<name>Eric Wong</name>
<email>normalperson@yhbt.net</email>
</author>
<published>2012-01-04T08:59:15+00:00</published>
<link rel='alternate' type='text/html' href='http://ns2.katolaz.net/cgit-70/commit/?id=19c31231fac828bb336db67b8cccc871bea1500e'/>
<id>19c31231fac828bb336db67b8cccc871bea1500e</id>
<content type='text'>
Each individual string may be too long for its respective
dimension of the LCS table.

Signed-off-by: Eric Wong &lt;normalperson@yhbt.net&gt;
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Each individual string may be too long for its respective
dimension of the LCS table.

Signed-off-by: Eric Wong &lt;normalperson@yhbt.net&gt;
</pre>
</div>
</content>
</entry>
<entry>
<title>Fix segmentation fault in empty repository</title>
<updated>2012-01-03T21:00:30+00:00</updated>
<author>
<name>John Keeping</name>
<email>john@metanate.com</email>
</author>
<published>2011-11-24T11:54:47+00:00</published>
<link rel='alternate' type='text/html' href='http://ns2.katolaz.net/cgit-70/commit/?id=94b7c76e531315b245f79a9e2dfd0655e6e45fee'/>
<id>94b7c76e531315b245f79a9e2dfd0655e6e45fee</id>
<content type='text'>
When a repository is empty, the ATOM feed link is written in the header,
but this involves formatting ctx-&gt;qry.head which is NULL in this case.
With glibc, vsnprintf formats "%s" with a NULL input as "(null)" but on
Solaris this results in a segmentation fault.  Since we don't have a
meaningful head for the atom feed in an empty repository, it's simplest
not to write out the link element at all.

Signed-off-by: John Keeping &lt;john@metanate.com&gt;
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
When a repository is empty, the ATOM feed link is written in the header,
but this involves formatting ctx-&gt;qry.head which is NULL in this case.
With glibc, vsnprintf formats "%s" with a NULL input as "(null)" but on
Solaris this results in a segmentation fault.  Since we don't have a
meaningful head for the atom feed in an empty repository, it's simplest
not to write out the link element at all.

Signed-off-by: John Keeping &lt;john@metanate.com&gt;
</pre>
</div>
</content>
</entry>
<entry>
<title>Makefile: fetch git tarballs from http://hjemli.net/git/git/</title>
<updated>2012-01-03T16:43:33+00:00</updated>
<author>
<name>Lars Hjemli</name>
<email>hjemli@gmail.com</email>
</author>
<published>2012-01-03T16:43:33+00:00</published>
<link rel='alternate' type='text/html' href='http://ns2.katolaz.net/cgit-70/commit/?id=fbd254d54e28e002a0d56b81c192156599df1e6b'/>
<id>fbd254d54e28e002a0d56b81c192156599df1e6b</id>
<content type='text'>
The git tarballs are currently not available from kernel.org, so for now
the makefile will download autogenerated tarballs from cgit.

Signed-off-by: Lars Hjemli &lt;hjemli@gmail.com&gt;
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
The git tarballs are currently not available from kernel.org, so for now
the makefile will download autogenerated tarballs from cgit.

Signed-off-by: Lars Hjemli &lt;hjemli@gmail.com&gt;
</pre>
</div>
</content>
</entry>
<entry>
<title>fix css color value and vertical-align value</title>
<updated>2012-01-03T16:25:46+00:00</updated>
<author>
<name>Norberto Lopes</name>
<email>nlopes.ml@gmail.com</email>
</author>
<published>2011-11-23T01:59:26+00:00</published>
<link rel='alternate' type='text/html' href='http://ns2.katolaz.net/cgit-70/commit/?id=dad620ee56b9c7e1a3217eba7ee750c4aa8d7e71'/>
<id>dad620ee56b9c7e1a3217eba7ee750c4aa8d7e71</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Fix diff mode switching when side-by-side-diffs=1</title>
<updated>2012-01-03T16:02:14+00:00</updated>
<author>
<name>Tim Chen</name>
<email>timchen1@gmail.com</email>
</author>
<published>2012-01-03T16:02:14+00:00</published>
<link rel='alternate' type='text/html' href='http://ns2.katolaz.net/cgit-70/commit/?id=f2ced535e9f2c2ada7f184735a07a1190a9d810f'/>
<id>f2ced535e9f2c2ada7f184735a07a1190a9d810f</id>
<content type='text'>
When side-by-side-diffs=1 was set in cgitrc, specyfing 'ss=0' in the query-
string would not switch to unified diffs. This patch fixes the issue by
introducing a separate variable to track the occurrence of "ss" in the
querystring.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
When side-by-side-diffs=1 was set in cgitrc, specyfing 'ss=0' in the query-
string would not switch to unified diffs. This patch fixes the issue by
introducing a separate variable to track the occurrence of "ss" in the
querystring.
</pre>
</div>
</content>
</entry>
<entry>
<title>ui-log.c: do not show remote heads if enable-remote-branches=0</title>
<updated>2012-01-03T15:35:06+00:00</updated>
<author>
<name>Georg Müller</name>
<email>georgmueller@gmx.net</email>
</author>
<published>2012-01-03T15:30:50+00:00</published>
<link rel='alternate' type='text/html' href='http://ns2.katolaz.net/cgit-70/commit/?id=0b6a716d1b9f18e8cc00940a7962e542b9358238'/>
<id>0b6a716d1b9f18e8cc00940a7962e542b9358238</id>
<content type='text'>
If remote branches are not enabled, the branches are still listed in
the log view. This patch removes them if enable-remote-branches=0.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
If remote branches are not enabled, the branches are still listed in
the log view. This patch removes them if enable-remote-branches=0.
</pre>
</div>
</content>
</entry>
<entry>
<title>Add sort parameter to pager of repo list</title>
<updated>2012-01-03T15:20:17+00:00</updated>
<author>
<name>Tobias Grimm</name>
<email>git@e-tobi.net</email>
</author>
<published>2011-07-31T00:44:05+00:00</published>
<link rel='alternate' type='text/html' href='http://ns2.katolaz.net/cgit-70/commit/?id=7530d94f05887b8065742adb614c368d8568a22c'/>
<id>7530d94f05887b8065742adb614c368d8568a22c</id>
<content type='text'>
When the repolist is paged, the page-links are missing the sort parameter,
causing the initial page to be custom sorted, but any clicked page will
then be with the default sort order again.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
When the repolist is paged, the page-links are missing the sort parameter,
causing the initial page to be custom sorted, but any clicked page will
then be with the default sort order again.
</pre>
</div>
</content>
</entry>
</feed>
