<feed xmlns='http://www.w3.org/2005/Atom'>
<title>cgit/cmd.c, branch v0.8.1</title>
<subtitle>A hyperfast web frontend for git repositories written in C.</subtitle>
<id>https://git.zx2c4.com/cgit/atom/cmd.c?h=v0.8.1</id>
<link rel='self' href='https://git.zx2c4.com/cgit/atom/cmd.c?h=v0.8.1'/>
<link rel='alternate' type='text/html' href='https://git.zx2c4.com/cgit/'/>
<updated>2008-10-11T18:09:42Z</updated>
<entry>
<title>ui-snapshot: add dwimmery</title>
<updated>2008-10-11T18:09:42Z</updated>
<author>
<name>Lars Hjemli</name>
<email>hjemli@gmail.com</email>
</author>
<published>2008-10-11T18:09:42Z</published>
<link rel='alternate' type='text/html' href='https://git.zx2c4.com/cgit/commit/?id=ed7ff095ca467cdc4c8a1a1459847d68e50c9b91'/>
<id>urn:sha1:ed7ff095ca467cdc4c8a1a1459847d68e50c9b91</id>
<content type='text'>
When downloading a snapshot, the snapshot name will often contain the repo
name combined with a tag. This patch tries to exploit this so that the
correct revision is downloaded even if no specific revision is specified.

PS: this only occurs if neither 'h' nor 'id' is specified in the query-
string.

PPS: this also fixes a bug which occurs when trying to download a filename
with an unsupported suffix: it used to try to print an error message to
the user but failed since it didn't prepare the output properly.

Signed-off-by: Lars Hjemli &lt;hjemli@gmail.com&gt;
</content>
</entry>
<entry>
<title>Merge branch 'lh/plain'</title>
<updated>2008-09-01T20:40:55Z</updated>
<author>
<name>Lars Hjemli</name>
<email>hjemli@gmail.com</email>
</author>
<published>2008-09-01T20:40:55Z</published>
<link rel='alternate' type='text/html' href='https://git.zx2c4.com/cgit/commit/?id=d532c4d1612c94347427fa1afda6afb7c34e512a'/>
<id>urn:sha1:d532c4d1612c94347427fa1afda6afb7c34e512a</id>
<content type='text'>
* lh/plain:
  Supply status description to html_status()
  ui-tree: link to plain view instead of blob view
  Implement plain view
</content>
</entry>
<entry>
<title>Merge branch 'lh/clone'</title>
<updated>2008-09-01T20:40:24Z</updated>
<author>
<name>Lars Hjemli</name>
<email>hjemli@gmail.com</email>
</author>
<published>2008-09-01T20:40:24Z</published>
<link rel='alternate' type='text/html' href='https://git.zx2c4.com/cgit/commit/?id=288d502b3d8e7fa916104b486bbb146521e5c716'/>
<id>urn:sha1:288d502b3d8e7fa916104b486bbb146521e5c716</id>
<content type='text'>
* lh/clone:
  Add support for cloning over http

Conflicts:
	cmd.c
</content>
</entry>
<entry>
<title>Implement plain view</title>
<updated>2008-08-06T09:21:30Z</updated>
<author>
<name>Lars Hjemli</name>
<email>hjemli@gmail.com</email>
</author>
<published>2008-08-06T08:53:50Z</published>
<link rel='alternate' type='text/html' href='https://git.zx2c4.com/cgit/commit/?id=e5da4bca54574522b28f88cab0dc8ebad9e35a73'/>
<id>urn:sha1:e5da4bca54574522b28f88cab0dc8ebad9e35a73</id>
<content type='text'>
This implements a way to access plain blobs by path (similar to the
tree view) instead of by sha1.

Signed-off-by: Lars Hjemli &lt;hjemli@gmail.com&gt;
</content>
</entry>
<entry>
<title>Add support for cloning over http</title>
<updated>2008-08-06T09:21:09Z</updated>
<author>
<name>Lars Hjemli</name>
<email>hjemli@gmail.com</email>
</author>
<published>2008-08-05T23:20:24Z</published>
<link rel='alternate' type='text/html' href='https://git.zx2c4.com/cgit/commit/?id=02a545e63454530c1639014d3239c14ced2022c6'/>
<id>urn:sha1:02a545e63454530c1639014d3239c14ced2022c6</id>
<content type='text'>
This patch implements basic support for cloning over http, based on the
work on git-http-backend by Shawn O. Pearce.

Signed-off-by: Lars Hjemli &lt;hjemli@gmail.com&gt;
</content>
</entry>
<entry>
<title>Add atom-support</title>
<updated>2008-08-01T20:12:34Z</updated>
<author>
<name>Lars Hjemli</name>
<email>hjemli@gmail.com</email>
</author>
<published>2008-05-21T06:17:54Z</published>
<link rel='alternate' type='text/html' href='https://git.zx2c4.com/cgit/commit/?id=b2a3d31e8839b53a623b4c99124c2c637d0e3cbb'/>
<id>urn:sha1:b2a3d31e8839b53a623b4c99124c2c637d0e3cbb</id>
<content type='text'>
This enables a page which generates atom feeds for the current branch and
path, heavily inspired by the atom-support in gitweb.

Signed-off-by: Lars Hjemli &lt;hjemli@gmail.com&gt;
</content>
</entry>
<entry>
<title>allow blob extract blobs by head/path combination</title>
<updated>2008-06-24T21:33:24Z</updated>
<author>
<name>Michael Krelin</name>
<email>hacker@klever.net</email>
</author>
<published>2008-06-24T21:33:24Z</published>
<link rel='alternate' type='text/html' href='https://git.zx2c4.com/cgit/commit/?id=01d2dce7e73e3f022d186de27dd5d15574144ca8'/>
<id>urn:sha1:01d2dce7e73e3f022d186de27dd5d15574144ca8</id>
<content type='text'>
 If blob is invoked with no id=, it tries to look up h= and search for path= in
 there. Once found, proceed as normal, otherwise, fail as normal.

Signed-off-by: Michael Krelin &lt;hacker@klever.net&gt;
</content>
</entry>
<entry>
<title>Merge branch 'lh/cache'</title>
<updated>2008-05-03T08:10:07Z</updated>
<author>
<name>Lars Hjemli</name>
<email>hjemli@gmail.com</email>
</author>
<published>2008-05-03T08:10:07Z</published>
<link rel='alternate' type='text/html' href='https://git.zx2c4.com/cgit/commit/?id=e19683bedebc74593cb4c4518e47a334a5478e1e'/>
<id>urn:sha1:e19683bedebc74593cb4c4518e47a334a5478e1e</id>
<content type='text'>
* lh/cache:
  Add page 'ls_cache'
  Redesign the caching layer
</content>
</entry>
<entry>
<title>Add 'about site' and 'about repo' pages</title>
<updated>2008-04-28T23:09:41Z</updated>
<author>
<name>Lars Hjemli</name>
<email>hjemli@gmail.com</email>
</author>
<published>2008-04-28T23:09:41Z</published>
<link rel='alternate' type='text/html' href='https://git.zx2c4.com/cgit/commit/?id=71adba1f1678914063fc109cf3805afde2c68f75'/>
<id>urn:sha1:71adba1f1678914063fc109cf3805afde2c68f75</id>
<content type='text'>
This commit uses the options and changes from the last few commits to
implement a new 'about' command which works both with and without a
repo.

Signed-off-by: Lars Hjemli &lt;hjemli@gmail.com&gt;
</content>
</entry>
<entry>
<title>Add page 'ls_cache'</title>
<updated>2008-04-28T10:10:13Z</updated>
<author>
<name>Lars Hjemli</name>
<email>hjemli@gmail.com</email>
</author>
<published>2008-04-28T10:10:13Z</published>
<link rel='alternate' type='text/html' href='https://git.zx2c4.com/cgit/commit/?id=9000bbf865cb3578ba5ed3810dc44253cb46ec7f'/>
<id>urn:sha1:9000bbf865cb3578ba5ed3810dc44253cb46ec7f</id>
<content type='text'>
This new page will list all entries found in the current cache, which is
useful when reviewing the new cache implementation. There are no links to
the new page, but it's reachable by adding 'p=ls_cache' to any cgit url.

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