<feed xmlns='http://www.w3.org/2005/Atom'>
<title>cgit-70, branch v0.8.1.1</title>
<subtitle>a fork of cgit with a Gopher interface</subtitle>
<link rel='alternate' type='text/html' href='https://git.katolaz.net/cgit-70/'/>
<entry>
<title>CGIT 0.8.1.1</title>
<updated>2009-01-27T19:35:49+00:00</updated>
<author>
<name>Lars Hjemli</name>
<email>hjemli@gmail.com</email>
</author>
<published>2009-01-27T19:35:49+00:00</published>
<link rel='alternate' type='text/html' href='https://git.katolaz.net/cgit-70/commit/?id=ba75f6613ebce2d716334d912932f1bd78ef124f'/>
<id>ba75f6613ebce2d716334d912932f1bd78ef124f</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>Makefile: install cgit.{css,png} in CGIT_DATA_PATH</title>
<updated>2009-01-12T07:56:54+00:00</updated>
<author>
<name>Todd Zullinger</name>
<email>tmz@pobox.com</email>
</author>
<published>2009-01-11T23:23:59+00:00</published>
<link rel='alternate' type='text/html' href='https://git.katolaz.net/cgit-70/commit/?id=d529c6fbdca7ce3782e75b3a74baad21ef2f92c3'/>
<id>d529c6fbdca7ce3782e75b3a74baad21ef2f92c3</id>
<content type='text'>
CGIT_DATA_PATH defaults to CGIT_SCRIPT_PATH, but allows users to
install the cgi and the data files in different locations.

Signed-off-by: Lars Hjemli &lt;hjemli@gmail.com&gt;
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
CGIT_DATA_PATH defaults to CGIT_SCRIPT_PATH, but allows users to
install the cgi and the data files in different locations.

Signed-off-by: Lars Hjemli &lt;hjemli@gmail.com&gt;
</pre>
</div>
</content>
</entry>
<entry>
<title>Makefile: add INSTALL var to set install command</title>
<updated>2009-01-12T07:22:24+00:00</updated>
<author>
<name>Todd Zullinger</name>
<email>tmz@pobox.com</email>
</author>
<published>2009-01-11T23:23:52+00:00</published>
<link rel='alternate' type='text/html' href='https://git.katolaz.net/cgit-70/commit/?id=4ac89ec8b4fe347ed6d2655a30b55f894021c173'/>
<id>4ac89ec8b4fe347ed6d2655a30b55f894021c173</id>
<content type='text'>
This also explicitly sets the modes for installed files (755 for the
.cgi, 644 for the .css and .png).

Signed-off-by: Lars Hjemli &lt;hjemli@gmail.com&gt;
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
This also explicitly sets the modes for installed files (755 for the
.cgi, 644 for the .css and .png).

Signed-off-by: Lars Hjemli &lt;hjemli@gmail.com&gt;
</pre>
</div>
</content>
</entry>
<entry>
<title>Fix tar.bz2 snapshot example</title>
<updated>2009-01-12T07:21:58+00:00</updated>
<author>
<name>Todd Zullinger</name>
<email>tmz@pobox.com</email>
</author>
<published>2009-01-11T23:23:39+00:00</published>
<link rel='alternate' type='text/html' href='https://git.katolaz.net/cgit-70/commit/?id=3796c2d8d21099007ea4b0572522003ceafb4eab'/>
<id>3796c2d8d21099007ea4b0572522003ceafb4eab</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>Avoid SEGFAULT on invalid requests</title>
<updated>2009-01-11T20:23:04+00:00</updated>
<author>
<name>Lars Hjemli</name>
<email>hjemli@gmail.com</email>
</author>
<published>2009-01-11T20:23:04+00:00</published>
<link rel='alternate' type='text/html' href='https://git.katolaz.net/cgit-70/commit/?id=eb14609dc46461728a065c0a243b338fc32fd762'/>
<id>eb14609dc46461728a065c0a243b338fc32fd762</id>
<content type='text'>
When an unknown page is requested, either on the querystring or via
PATH_INFO, we end up with a null-referencing cgit_cmd. This null-
pointer is then used as argument to the hc() function (which decides
what tab to render as 'active'), but this function failed to check if a
valid cmd was specified and a SEGFAULT would occur. This patch fixes the
issue by introducing a 'fallback-cmd' which specifies what tab to render
as 'active' when no valid cmd is requested.

While at it, we now also keep track of the active repository even if an
invalid cmd was requested since we want to show the error message about
the invalid request in the correct context.

Noticed-by: Robin Redeker &lt;elmex@ta-sa.org&gt;
Signed-off-by: Lars Hjemli &lt;hjemli@gmail.com&gt;
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
When an unknown page is requested, either on the querystring or via
PATH_INFO, we end up with a null-referencing cgit_cmd. This null-
pointer is then used as argument to the hc() function (which decides
what tab to render as 'active'), but this function failed to check if a
valid cmd was specified and a SEGFAULT would occur. This patch fixes the
issue by introducing a 'fallback-cmd' which specifies what tab to render
as 'active' when no valid cmd is requested.

While at it, we now also keep track of the active repository even if an
invalid cmd was requested since we want to show the error message about
the invalid request in the correct context.

Noticed-by: Robin Redeker &lt;elmex@ta-sa.org&gt;
Signed-off-by: Lars Hjemli &lt;hjemli@gmail.com&gt;
</pre>
</div>
</content>
</entry>
<entry>
<title>ui-tag: escape tagnames properly</title>
<updated>2009-01-11T15:37:47+00:00</updated>
<author>
<name>Lars Hjemli</name>
<email>hjemli@gmail.com</email>
</author>
<published>2009-01-11T15:37:47+00:00</published>
<link rel='alternate' type='text/html' href='https://git.katolaz.net/cgit-70/commit/?id=720b6ece90900df9f836a45d8e7f1cd56f62400a'/>
<id>720b6ece90900df9f836a45d8e7f1cd56f62400a</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>Makefile: avoid libcurl when building git</title>
<updated>2009-01-10T14:18:18+00:00</updated>
<author>
<name>Lars Hjemli</name>
<email>hjemli@gmail.com</email>
</author>
<published>2009-01-10T14:18:18+00:00</published>
<link rel='alternate' type='text/html' href='https://git.katolaz.net/cgit-70/commit/?id=c63aaff2adb83e5015841921fab233c2fe2e3b0a'/>
<id>c63aaff2adb83e5015841921fab233c2fe2e3b0a</id>
<content type='text'>
We don't need support for fetching/pushing in libgit.a, hence we don't need
to link with libcurl.

Noticed-by: Robin Redeker &lt;elmex@ta-sa.org&gt;
Signed-off-by: Lars Hjemli &lt;hjemli@gmail.com&gt;
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
We don't need support for fetching/pushing in libgit.a, hence we don't need
to link with libcurl.

Noticed-by: Robin Redeker &lt;elmex@ta-sa.org&gt;
Signed-off-by: Lars Hjemli &lt;hjemli@gmail.com&gt;
</pre>
</div>
</content>
</entry>
<entry>
<title>ui-tree.c: do not add blank line when displaying blobs</title>
<updated>2009-01-06T20:37:23+00:00</updated>
<author>
<name>Lars Hjemli</name>
<email>hjemli@gmail.com</email>
</author>
<published>2009-01-06T20:37:23+00:00</published>
<link rel='alternate' type='text/html' href='https://git.katolaz.net/cgit-70/commit/?id=f3c99cf1cee25ae95ffea6188b40734e877bce20'/>
<id>f3c99cf1cee25ae95ffea6188b40734e877bce20</id>
<content type='text'>
Also, fix a related bug in the test-suite.

Noticed-by: Jim Meyering &lt;jim@meyering.net&gt;
Signed-off-by: Lars Hjemli &lt;hjemli@gmail.com&gt;
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Also, fix a related bug in the test-suite.

Noticed-by: Jim Meyering &lt;jim@meyering.net&gt;
Signed-off-by: Lars Hjemli &lt;hjemli@gmail.com&gt;
</pre>
</div>
</content>
</entry>
<entry>
<title>ui-patch: whitespace changes in the patch generation code</title>
<updated>2008-12-30T10:16:25+00:00</updated>
<author>
<name>Tomas Carnecky</name>
<email>tom@dbservice.com</email>
</author>
<published>2008-12-30T10:14:52+00:00</published>
<link rel='alternate' type='text/html' href='https://git.katolaz.net/cgit-70/commit/?id=03afc5fe1fe70b6e44b60708c89708060e6d5a90'/>
<id>03afc5fe1fe70b6e44b60708c89708060e6d5a90</id>
<content type='text'>
Add a space between the committer name and email, and remove
superfluous spaces in the date header.

This makes cgit-generated patches match the output from git-format-patch
almost exactly, at least as far as the email headers go.

Signed-off-by: Tomas Carnecky &lt;tom@dbservice.com&gt;
Signed-off-by: Lars Hjemli &lt;hjemli@gmail.com&gt;
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Add a space between the committer name and email, and remove
superfluous spaces in the date header.

This makes cgit-generated patches match the output from git-format-patch
almost exactly, at least as far as the email headers go.

Signed-off-by: Tomas Carnecky &lt;tom@dbservice.com&gt;
Signed-off-by: Lars Hjemli &lt;hjemli@gmail.com&gt;
</pre>
</div>
</content>
</entry>
<entry>
<title>tests/setup.sh: allow testsuite to fail properly with POSIX standard shells</title>
<updated>2008-12-06T11:03:54+00:00</updated>
<author>
<name>Lars Hjemli</name>
<email>hjemli@gmail.com</email>
</author>
<published>2008-12-06T11:03:54+00:00</published>
<link rel='alternate' type='text/html' href='https://git.katolaz.net/cgit-70/commit/?id=b6faa78091a1340b73e291f1f87604f246d3f391'/>
<id>b6faa78091a1340b73e291f1f87604f246d3f391</id>
<content type='text'>
The "((expr))" construct is not implemented by e.g. dash, so this commit
replaces the construct with a more portable one.

Signed-off-by: Lars Hjemli &lt;hjemli@gmail.com&gt;
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
The "((expr))" construct is not implemented by e.g. dash, so this commit
replaces the construct with a more portable one.

Signed-off-by: Lars Hjemli &lt;hjemli@gmail.com&gt;
</pre>
</div>
</content>
</entry>
</feed>
